A call to be executed in a user operation.

interface EvmCall {
    data: `0x${string}`;
    to: `0x${string}`;
    value: bigint;
}

Properties

Properties

data: `0x${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.

to: `0x${string}`

The address the call is directed to.

value: bigint

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