POST

/

id
jsonrpc
method
params
curl --request POST \
  --url https://rpc1.taurus.axiomesh.io/

Runs an eth_call within the context of the given block execution using the final state of parent block as the base.

Body

id
number

Serves as a unique identifier for the request

jsonrpc
string

Indicates the version of JSON-RPC being used

method
string

Represents the name of the remote procedure or method to be called

params
array

Contains the list of parameters passed to the remote method

Response

id
number

Returns unique identifier for the request

jsonrpc
string

Returns the version of JSON-RPC being used

result
object
curl  'https://example-rpc.axiomesh.io' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "method": "debug_traceCall",
    "params": [{"from": "0xfaE0FE655D27B5c0584479E982D5d8f7dFD057d8","to": "0x2299E9B1a4e08b5d67017E19d75d3a24bb1074Df","value": "0x5f5e100"}, "latest",{
               "tracer": "callTracer"
          }],
    "id": 1
}'
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "from": "0xfae0fe655d27b5c0584479e982d5d8f7dfd057d8",
        "gas": "0x11e1a300",
        "gasUsed": "0x5208",
        "to": "0x2299e9b1a4e08b5d67017e19d75d3a24bb1074df",
        "input": "0x",
        "value": "0x5f5e100",
        "type": "CALL"
    }
}