CDP Frontend SDK
    Preparing search index...

    Type Alias EvmCall

    Represents a call in an EVM user operation.

    type EvmCall = {
        to: EvmAddress;
        value?: bigint;
        data?: Hex;
    }
    Index

    Properties

    Properties

    The target address for the call.

    value?: bigint

    The value to send with the call (in wei).

    data?: Hex

    The data to send with the call.