Type Alias: SuiExtraArgsV1
SuiExtraArgsV1 =
EVMExtraArgsV2& {receiverObjectIds:string[];tokenReceiver:string; }
Defined in: extra-args.ts:127
Sui extra arguments version 1.
Type Declaration
receiverObjectIds
receiverObjectIds:
string[]
Object IDs required for the receiver.
tokenReceiver
tokenReceiver:
string
Token receiver address on Sui.
Example
TypeScript
const args: SuiExtraArgsV1 = {
gasLimit: 200_000n,
allowOutOfOrderExecution: true,
tokenReceiver: '0x1234...abcd',
receiverObjectIds: ['0xobject1...', '0xobject2...'],
}