Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 1.11 KB

transaction.md

File metadata and controls

14 lines (10 loc) · 1.11 KB

Transaction

Transaction

A single signed transaction, including all its signatures. The SignatureList will have a Signature for each Key in the transaction, either explicit or implicit, in the order that they appear in the transaction. For example, a CryptoTransfer will first have a Signature corresponding to the Key for the paying account, followed by a Signature corresponding to the Key for each account that is sending or receiving cryptocurrency in the transfer. Each Transaction should not have more than 50 levels.

Field Type Description
bodyData oneof
body TransactionBody the body of the transaction, which needs to be signed
bodyBytes TransactionBody serialized into bytes , which needs to be signed
sigs SignatureList The signatures on the body, to authorize the transaction; deprecated and to be succeeded by SignatureMap field
sigMap SignatureMap The signatures on the body with the new format, to authorize the transaction