TransactionGroupToSend
Defined in: src/transaction/types.ts:111
A group of transactions to send together as an group https://dev.algorand.co/concepts/transactions/atomic-txn-groups/
Properties
Section titled “Properties”sendParams?
Section titled “sendParams?”
optionalsendParams:Omit<SendTransactionParams,"fee"|"maxFee"|"skipSending"|"atc">
Defined in: src/transaction/types.ts:113
Any parameters to control the semantics of the send to the network
signer?
Section titled “signer?”
optionalsigner:SendingAddress
Defined in: src/transaction/types.ts:120
Optional signer to pass in, required if at least one transaction provided is just the transaction, ignored otherwise
transactions
Section titled “transactions”transactions: (
Transaction|TransactionToSign|Promise<SendTransactionResult>)[]
Defined in: src/transaction/types.ts:118
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)