Type alias AbstractCall

AbstractCall: {
    gasLimit: bigint;
    to: Address;
} & OneOf<{
    data?: Hex;
    value: bigint;
} | {
    data: Hex;
    value?: bigint;
} | {
    data: Hex;
    value: bigint;
}>

Represents an abstract call to be executed in the transaction

Type declaration

  • gasLimit: bigint

    Gas limit for the call execution

  • to: Address

    Address of the contract to call