Skip to main content
Version: 0.96.0

Type Alias: EVMExtraArgsV2

EVMExtraArgsV2 = EVMExtraArgsV1 & { allowOutOfOrderExecution: boolean; }

Defined in: extra-args.ts:45

EVM extra arguments version 2 with out-of-order execution support. Also known as GenericExtraArgsV2.

Type Declaration

allowOutOfOrderExecution

allowOutOfOrderExecution: boolean

Whether to allow out-of-order message execution.

Example

TypeScript
const args: EVMExtraArgsV2 = {
gasLimit: 200_000n,
allowOutOfOrderExecution: true,
}