CDP SDK TypeScript - v1.31.0
    Preparing search index...

    A call to be executed in a user operation.

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

    Properties

    Properties

    to: `0x${string}`

    The address the call is directed to.

    value: bigint

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

    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.