Skip to main content

RpcCallResponse

data object
rpcCallIdstring<uuid>required

Unique ID referencing the server-side cached context. Pass this to /parse together with the raw responses. Valid for 5 minutes.

rpcCalls object[]required

Ordered list of JSON-RPC calls to execute against the target chain RPC. Each call uses multicall3 aggregate3.

  • Array [
  • methodstringrequired

    JSON-RPC method name

    Example: eth_call
    paramsundefined[]required

    JSON-RPC parameters (call object and block tag)

  • ]
  • RpcCallResponse
    {
    "data": {
    "rpcCallId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "rpcCalls": [
    {
    "method": "eth_call",
    "params": [
    null
    ]
    }
    ]
    }
    }