TransactionGroupToSend
@algorandfoundation/algokit-utils / types/transaction / TransactionGroupToSend
types/transaction.TransactionGroupToSend
A group of transactions to send together as an atomic group https://dev.algorand.co/concepts/transactions/atomic-txn-groups/
Table of contents
Section titled “Table of contents”Properties
Section titled “Properties”Properties
Section titled “Properties”sendParams
Section titled “sendParams”• Optional sendParams: Omit<SendTransactionParams, "fee" | "maxFee" | "skipSending" | "atc">
Any parameters to control the semantics of the send to the network
Defined in
Section titled “Defined in”signer
Section titled “signer”• Optional signer: SendTransactionFrom
Optional signer to pass in, required if at least one transaction provided is just the transaction, ignored otherwise
Defined in
Section titled “Defined in”transactions
Section titled “transactions”• transactions: (Transaction | TransactionToSign | Promise<SendTransactionResult>)[]
The list of transactions to send, which can either be a raw transaction (in which case signer is required),
the async result of an AlgoKit utils method that returns a SendTransactionResult (saves unwrapping the promise, be sure to pass skipSending: true, signer is also required)
or the transaction with its signer (signer is ignored)