An action that will be bundled into a user operation.

Export

Call

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

Properties

Properties

data: string

The hex-encoded data to send with the call.

Memberof

Call

to: string

The address the call is interacting with.

Memberof

Call

value: string

The string-encoded integer value to send with the call.

Memberof

Call