Skip to content

Commit

Permalink
update the protobuf with current released devnet. (aptos-labs#10729)
Browse files Browse the repository at this point in the history
  • Loading branch information
larry-aptos authored Oct 31, 2023
1 parent 7dee94c commit aee3069
Show file tree
Hide file tree
Showing 4 changed files with 1,456 additions and 1,432 deletions.
19 changes: 12 additions & 7 deletions protos/proto/aptos/transaction/v1/transaction.proto
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,8 @@ message Signature {
TYPE_MULTI_ED25519 = 2;
TYPE_MULTI_AGENT = 3;
TYPE_FEE_PAYER = 4;
TYPE_SINGLE_SENDER = 5;
TYPE_SINGLE_SENDER = 6;
reserved 5;
}

Type type = 1;
Expand All @@ -412,7 +413,8 @@ message Signature {
MultiEd25519Signature multi_ed25519 = 3;
MultiAgentSignature multi_agent = 4;
FeePayerSignature fee_payer = 5;
SingleSender single_sender = 6;
// 6 is reserved.
SingleSender single_sender = 7;
}
}

Expand Down Expand Up @@ -489,15 +491,18 @@ message AccountSignature {
TYPE_UNSPECIFIED = 0;
TYPE_ED25519 = 1;
TYPE_MULTI_ED25519 = 2;
TYPE_SINGLE_KEY = 3;
TYPE_MULTI_KEY = 4;
TYPE_SINGLE_KEY = 4;
TYPE_MULTI_KEY = 5;

reserved 3;
}

Type type = 1;
oneof signature {
Ed25519Signature ed25519 = 2;
MultiEd25519Signature multi_ed25519 = 3;
SingleKeySignature single_key_signature = 4;
MultiKeySignature multi_key_signature = 5;
// 4 is reserved.
SingleKeySignature single_key_signature = 5;
MultiKeySignature multi_key_signature = 6;
}
}
}
70 changes: 35 additions & 35 deletions protos/python/aptos_protos/aptos/transaction/v1/transaction_pb2.py

Large diffs are not rendered by default.

Loading

0 comments on commit aee3069

Please sign in to comment.