Interface: UnsafeMoveCallParams
Create an unsigned transaction to execute a Move call on the network, by calling the specified function in the module of a given package.
Properties
| Property | Type | Description |
|---|---|---|
signer | string | the transaction signer's IOTA address |
packageObjectId | string | the Move package ID, e.g. 0x2 |
module | string | the Move module name, e.g. pay |
function | string | the move function name, e.g. split |
typeArguments | string[] | the type arguments of the Move function |
arguments | unknown[] | the arguments to be passed into the Move function, in IotaJson format |
gas? | string | null | gas object to be used in this transaction, node will pick one from the signer's possession if not provided |
gasBudget | string | the gas budget, the transaction will fail if the gas cost exceed the budget |
executionMode? | | IotaTransactionBlockBuilderMode | null | Whether this is a Normal transaction or a Dev Inspect Transaction. Default to be IotaTransactionBlockBuilderMode::Commit when it's None. |
signal? | AbortSignal | - |