@fuel-ts/program.MultiCallInvocationScope
Represents a scope for invoking multiple calls.
Name | Type | Description |
---|---|---|
TReturn | any | The type of the return value. |
BaseInvocationScope
<TReturn
>
↳ MultiCallInvocationScope
• new MultiCallInvocationScope<TReturn
>(contract
, funcScopes
)
Constructs an instance of MultiCallInvocationScope.
Name | Type |
---|---|
TReturn | any |
Name | Type | Description |
---|---|---|
contract | AbstractContract | The contract. |
funcScopes | FunctionInvocationScope <any [], any >[] | An array of function invocation scopes. |
BaseInvocationScope<TReturn>.constructor
packages/program/src/functions/multicall-scope.ts:19
• Private
#scriptDataOffset: number
= 0
BaseInvocationScope.#scriptDataOffset
packages/program/src/functions/base-invocation-scope.ts:54
• Protected
functionInvocationScopes: InvocationScopeLike
[] = []
BaseInvocationScope.functionInvocationScopes
packages/program/src/functions/base-invocation-scope.ts:50
• Protected
isMultiCall: boolean
= false
BaseInvocationScope.isMultiCall
packages/program/src/functions/base-invocation-scope.ts:53
• Protected
program: AbstractProgram
BaseInvocationScope.program
packages/program/src/functions/base-invocation-scope.ts:49
• Protected
requiredCoins: CoinQuantity
[] = []
BaseInvocationScope.requiredCoins
packages/program/src/functions/base-invocation-scope.ts:52
• transactionRequest: ScriptTransactionRequest
BaseInvocationScope.transactionRequest
packages/program/src/functions/base-invocation-scope.ts:48
• Protected
Optional
txParameters: Partial
<{ gasLimit
: BigNumberish
; gasPrice
: BigNumberish
; variableOutputs
: number
}>
BaseInvocationScope.txParameters
packages/program/src/functions/base-invocation-scope.ts:51
• Protected
get
calls(): ContractCall
[]
Getter for the contract calls.
An array of contract calls.
BaseInvocationScope.calls
packages/program/src/functions/base-invocation-scope.ts:75
▸ addCall(funcScope
): MultiCallInvocationScope
<TReturn
>
Adds a single function invocation scope to the multi-call invocation scope.
Name | Type | Description |
---|---|---|
funcScope | FunctionInvocationScope <any [], any > | The function invocation scope. |
MultiCallInvocationScope
<TReturn
>
The instance of MultiCallInvocationScope.
BaseInvocationScope.addCall
packages/program/src/functions/multicall-scope.ts:30
▸ addCalls(funcScopes
): MultiCallInvocationScope
<TReturn
>
Adds multiple function invocation scopes to the multi-call invocation scope.
Name | Type | Description |
---|---|---|
funcScopes | FunctionInvocationScope <any [], any >[] | An array of function invocation scopes. |
MultiCallInvocationScope
<TReturn
>
The instance of MultiCallInvocationScope.
BaseInvocationScope.addCalls
packages/program/src/functions/multicall-scope.ts:40
▸ addContracts(contracts
): MultiCallInvocationScope
<TReturn
>
Adds contracts to the invocation scope.
Name | Type | Description |
---|---|---|
contracts | AbstractContract [] | An array of contracts to add. |
MultiCallInvocationScope
<TReturn
>
The current instance of the class.
BaseInvocationScope.addContracts
packages/program/src/functions/base-invocation-scope.ts:244
▸ call<T
>(): Promise
<FunctionInvocationResult
<T
, void
>>
Submits a transaction.
Name | Type |
---|---|
T | TReturn |
Promise
<FunctionInvocationResult
<T
, void
>>
The result of the function invocation.
BaseInvocationScope.call
packages/program/src/functions/base-invocation-scope.ts:267
▸ Protected
checkGasLimitTotal(): void
Checks if the total gas limit is within the acceptable range.
void
BaseInvocationScope.checkGasLimitTotal
packages/program/src/functions/base-invocation-scope.ts:179
▸ dryRun<T
>(): Promise
<InvocationCallResult
<T
>>
Executes a transaction in dry run mode.
Name | Type |
---|---|
T | TReturn |
Promise
<InvocationCallResult
<T
>>
The result of the invocation call.
BaseInvocationScope.dryRun
packages/program/src/functions/base-invocation-scope.ts:313
▸ fundWithRequiredCoins(): Promise
<MultiCallInvocationScope
<TReturn
>>
Funds the transaction with the required coins.
Promise
<MultiCallInvocationScope
<TReturn
>>
The current instance of the class.
BaseInvocationScope.fundWithRequiredCoins
packages/program/src/functions/base-invocation-scope.ts:211
▸ Protected
getRequiredCoins(): CoinQuantity
[]
Gets the required coins for the transaction.
An array of required coin quantities.
BaseInvocationScope.getRequiredCoins
packages/program/src/functions/base-invocation-scope.ts:101
▸ getTransactionCost(options?
): Promise
<TransactionCost
>
Gets the transaction cost ny dry running the transaction.
Name | Type | Description |
---|---|---|
options? | Partial <{ fundTransaction : boolean ; gasPrice : BigNumberish ; tolerance : number }> | Optional transaction cost options. |
Promise
<TransactionCost
>
The transaction cost details.
BaseInvocationScope.getTransactionCost
packages/program/src/functions/base-invocation-scope.ts:194
▸ getTransactionRequest(): Promise
<TransactionRequest
>
Prepares and returns the transaction request object.
Promise
<TransactionRequest
>
The prepared transaction request.
BaseInvocationScope.getTransactionRequest
packages/program/src/functions/base-invocation-scope.ts:257
▸ Protected
prepareTransaction(): Promise
<void
>
Prepares the transaction by updating the script request, required coins, and checking the gas limit.
Promise
<void
>
BaseInvocationScope.prepareTransaction
packages/program/src/functions/base-invocation-scope.ts:160
▸ simulate<T
>(): Promise
<InvocationCallResult
<T
>>
Simulates a transaction.
Name | Type |
---|---|
T | TReturn |
Promise
<InvocationCallResult
<T
>>
The result of the invocation call.
BaseInvocationScope.simulate
packages/program/src/functions/base-invocation-scope.ts:286
▸ txParams(txParams
): MultiCallInvocationScope
<TReturn
>
Sets the transaction parameters.
Name | Type | Description |
---|---|---|
txParams | Partial <{ gasLimit : BigNumberish ; gasPrice : BigNumberish ; variableOutputs : number }> | The transaction parameters to set. |
MultiCallInvocationScope
<TReturn
>
The current instance of the class.
BaseInvocationScope.txParams
packages/program/src/functions/base-invocation-scope.ts:227
▸ Protected
updateRequiredCoins(): void
Updates the required coins for the transaction.
void
BaseInvocationScope.updateRequiredCoins
packages/program/src/functions/base-invocation-scope.ts:115
▸ Protected
updateScriptRequest(): void
Updates the script request with the current contract calls.
void
BaseInvocationScope.updateScriptRequest