Variable EthBaseTransactionStructConst

EthBaseTransactionStruct: Struct<{
    data: string;
    to: string;
    value: string;
}, {
    data: Struct<string, null>;
    to: Struct<string, null>;
    value: Struct<string, null>;
}> = ...

Struct containing the most basic transaction information required to construct a UserOperation.

Type declaration

  • data: string

    Data to pass to the recipient.

  • to: string

    Address of the transaction recipient.

  • value: string

    Amount of wei to transfer to the recipient.

Type declaration

  • data: Struct<string, null>

    Data to pass to the recipient.

  • to: Struct<string, null>

    Address of the transaction recipient.

  • value: Struct<string, null>

    Amount of wei to transfer to the recipient.