Skip to content

AppCallTransactionResultOfType\<T\>

@algorandfoundation/algokit-utils / types/app / AppCallTransactionResultOfType

types/app.AppCallTransactionResultOfType

The result of preparing and/or sending multiple transactions

Name
T

Optional confirmation: PendingTransactionResponse

The response if the transaction was sent and waited for

SendTransactionResult.confirmation

src/types/transaction.ts:57


Optional confirmations: PendingTransactionResponse[]

The responses if the transactions were sent and waited for, the index of the confirmation will match the index of the underlying transaction

SendTransactionResults.confirmations

src/types/transaction.ts:67


Optional return: T

If an ABI method was called the processed return value

src/types/app.ts:228


transaction: Transaction

The transaction

SendTransactionResult.transaction

src/types/transaction.ts:55


transactions: Transaction[]

The transactions that have been prepared and/or sent

SendTransactionResults.transactions

src/types/transaction.ts:63