Pocket Network · Example Payload

Pocket Network Eth Block Number Example

Send a JSON-RPC eth_blockNumber call to the Grove-operated PATH gateway. Returns the latest Ethereum mainnet block height served by a Shannon supplier.

Web3BlockchainRPCDecentralized InfrastructurePocket NetworkGrovePATHShannonCosmosPOKT

Pocket Network Eth Block Number Example is an example object payload from Pocket Network, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

namedescriptionendpointrequestresponse

Example Payload

Raw ↑
{
  "name": "Ethereum eth_blockNumber via Grove PATH",
  "description": "Send a JSON-RPC eth_blockNumber call to the Grove-operated PATH gateway. Returns the latest Ethereum mainnet block height served by a Shannon supplier.",
  "endpoint": "POST https://eth.rpc.grove.city/v1/{appId}",
  "request": {
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "jsonrpc": "2.0",
      "id": 1,
      "method": "eth_blockNumber",
      "params": []
    }
  },
  "response": {
    "status": 200,
    "body": {
      "jsonrpc": "2.0",
      "id": 1,
      "result": "0x14a0c50"
    }
  }
}