Skip to main content
Version: v2

SuiExtraArgsV1

gasLimitstringrequired

Gas limit for message execution on the destination chain.

Example: 300000
allowOutOfOrderExecutionbooleanrequired

Whether this message can be executed out of order relative to other messages from the same sender.

Example: false
tokenReceiverstringrequired

Address for token delivery, separate from the message receiver.

Example: 0x0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
receiverObjectIdsstring[]required

Sui Object IDs needed for message execution. These are specific objects on the Sui blockchain that the transaction will interact with.

Example: ["0x1111111111111111111111111111111111111111111111111111111111111111","0x2222222222222222222222222222222222222222222222222222222222222222"]
JSON
SuiExtraArgsV1
{
"gasLimit": "300000",
"allowOutOfOrderExecution": false,
"tokenReceiver": "0x0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
"receiverObjectIds": [
"0x1111111111111111111111111111111111111111111111111111111111111111",
"0x2222222222222222222222222222222222222222222222222222222222222222"
]
}