Skip to content

创建文章

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 app.AppCallParams

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

Interface: AppCallParams

types/app.AppCallParams

Parameters representing a call to an app.

Hierarchy

AppCallParams

Table of contents

Properties

Properties

appId

appId: number | bigint

The id of the app to call

Defined in

src/types/app.ts:166


args

Optional args: AppCallArgs

The arguments passed in to the app call

Defined in

src/types/app.ts:176


atc

Optional atc: AtomicTransactionComposer

An optional AtomicTransactionComposer to add the transaction to, if specified then skipSending: undefined has the same effect as skipSending: true

Inherited from

SendTransactionParams.atc

Defined in

src/types/transaction.ts:35


callType

callType: "no_op" | "opt_in" | "close_out" | "clear_state" | "delete_application" | NoOpOC | OptInOC | CloseOutOC | ClearStateOC | DeleteApplicationOC

The type of call, everything except create (see createApp) and update (see updateApp)

Defined in

src/types/app.ts:168


fee

Optional fee: AlgoAmount

The flat fee you want to pay, useful for covering extra fees in a transaction group or app call

Inherited from

SendTransactionParams.fee

Defined in

src/types/transaction.ts:39


from

from: SendTransactionFrom

The account to make the call from

Defined in

src/types/app.ts:170


maxFee

Optional maxFee: AlgoAmount

The maximum fee that you are happy to pay (default: unbounded) - if this is set it's possible the transaction could get rejected during network congestion

Inherited from

SendTransactionParams.maxFee

Defined in

src/types/transaction.ts:41


maxRoundsToWaitForConfirmation

Optional maxRoundsToWaitForConfirmation: number

The maximum number of rounds to wait for confirmation, only applies if skipWaiting is undefined or false, default: wait up to 5 rounds

Inherited from

SendTransactionParams.maxRoundsToWaitForConfirmation

Defined in

src/types/transaction.ts:43


note

Optional note: TransactionNote

The (optional) transaction note

Defined in

src/types/app.ts:174


populateAppCallResources

Optional populateAppCallResources: boolean

WARNING: Not recommended for production use due to https://github.com/algorand/go-algorand/issues/5914. Whether to use simulate to automatically populate app call resources in the txn objects. Defaults to true when there are app calls in the group.

Inherited from

SendTransactionParams.populateAppCallResources

Defined in

src/types/transaction.ts:45


skipSending

Optional skipSending: boolean

Whether to skip signing and sending the transaction to the chain (default: transaction signed and sent to chain, unless atc specified) and instead just return the raw transaction, e.g. so you can add it to a group of transactions

Inherited from

SendTransactionParams.skipSending

Defined in

src/types/transaction.ts:31


skipWaiting

Optional skipWaiting: boolean

Whether to skip waiting for the submitted transaction (only relevant if skipSending is false or unset)

Inherited from

SendTransactionParams.skipWaiting

Defined in

src/types/transaction.ts:33


suppressLog

Optional suppressLog: boolean

Whether to suppress log messages from transaction send, default: do not suppress

Inherited from

SendTransactionParams.suppressLog

Defined in

src/types/transaction.ts:37


transactionParams

Optional transactionParams: SuggestedParams

Optional transaction parameters

Defined in

src/types/app.ts:172