POST

/

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

Returns all traces of a given transaction

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

transactionHash
string

The transaction hash that needs to be traced, encoded in hexadecimal format

object
object

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_traceTransaction",
    "params": ["0x7832ec555494bd6dd8578c3f47aea5c346185ed83a8a2be73bfc5b7918a283bd",
          {
               "tracer": "callTracer"
          }],
    "id": 1
}'
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "from": "0x14e1d181f211eb211b24fe53bd8ebb1580a00eab",
        "gas": "0x5208",
        "gasUsed": "0x5208",
        "to": "0x52100e671baa7af7af2f62ecadc2442453b65950",
        "input": "0x",
        "value": "0xad78ebc5ac6200000",
        "type": "CALL"
    }
}