eth_call

Executes a new message call immediately without creating a transaction on the blockchain. Used to call contract functions that don't modify state.

Parameters

transaction       (object)
    from          (string)
    to            (string) Required
    gas           (integer)
    gasPrice      (integer)
    value         (integer)
    data          (string)
    
blockNumber       (string)

state_override    (object)
    address       (string)
        balance   (string)
        nonce     (string)
        code      (string)
        state     (object)
        stateDiff (integer)

Returns


Request

Response

Last updated