kinds:
Transaction, unsigned transaction.
Transaction
Signs an unsigned transaction in BCS format.| Field | Description | Type - Optional |
|---|---|---|
blockchainKind | Aptos | String |
kind | Transaction | String |
transaction | The unsigned BCS format transaction in hex encoding. More details bellow. | String |
Transaction Format
We accept two transaction kinds to be signed:- RawTransaction - the simplest transaction, no external fee payer, no secondary signers. See Aptos transaction documentation.
- SignedTransaction - for more complex transactions, you can pass a
SignedTransactionthat contains the RawTransaction and an authenticator depending on the transaction. Accepted authenticators are:- TransactionAuthenticatorFeePayer for sponsored transactions (single/multi sig)
- TransactionAuthenticatorMultiAgent for multi signature transactions (not sponsored)
