types transaction.TransactionGroupToSend
@algorandfoundation/algokit-utils / types/transaction / TransactionGroupToSend
Interface: TransactionGroupToSend¶
types/transaction.TransactionGroupToSend
A group of transactions to send together as an atomic group https://developer.algorand.org/docs/get-details/atomic_transfers/
Table of contents¶
Properties¶
Properties¶
sendParams¶
• Optional
sendParams: Omit
\<SendTransactionParams
, "fee"
| "maxFee"
| "skipSending"
| "atc"
>
Any parameters to control the semantics of the send to the network
Defined in¶
signer¶
• Optional
signer: SendTransactionFrom
Optional signer to pass in, required if at least one transaction provided is just the transaction, ignored otherwise
Defined in¶
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)