Skip to content

Create Publication

We are looking for publications that demonstrate building dApps or smart contracts!
See the full list of Gitcoin bounties that are eligible for rewards.

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

src/types/transaction.ts:115


signer

Optional signer: SendTransactionFrom

Optional signer to pass in, required if at least one transaction provided is just the transaction, ignored otherwise

Defined in

src/types/transaction.ts:122


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)

Defined in

src/types/transaction.ts:120