interface EvmCall {
    data: string;
    to: string;
    value: string;
}

Properties

Properties

data: string

The call data to send. This is the hex-encoded data of the function call consisting of the method selector and the function arguments.

^0x[0-9a-fA-F]*$

to: string

The address the call is directed to.

^0x[0-9a-fA-F]{40}$

value: string

The amount of ETH to send with the call, in wei.