Interface MetaTransaction

interface MetaTransaction {
    to: string;
    value?: null | bigint;
    data?: null | string;
    nonce?: bigint;
    gasLimit?: bigint;
    delegateCall?: boolean;
    revertOnError?: boolean;
}

Properties

to: string
value?: null | bigint
data?: null | string
nonce?: bigint
gasLimit?: bigint
delegateCall?: boolean
revertOnError?: boolean