Transaction body for simulating an EVM call.

interface EVMSimulateCallQuery {
    address: Uint8Array;
    caller: Uint8Array;
    data: Uint8Array;
    gas_limit: longnum;
    gas_price: Uint8Array;
    leash?: Leash;
    value: Uint8Array;
}

Properties

address: Uint8Array
caller: Uint8Array
data: Uint8Array
gas_limit: longnum
gas_price: Uint8Array
leash?: Leash
value: Uint8Array