Arbitrum
This section provides information specific to the Arbitrum blockchain.
Sending Requests
We host one JSON-RPC API endpoint for Arbitrum Mainnet:
Archival Node: This node provides access to the entire blockchain history, starting from genesis, as is. You can learn more about its API here: RPC API. Only POST endpoints are supported.
Querying the Subgraph
You can query your subgraphs using the following methods:
By name:
https://proxy.arbitrum.chain.love/subgraphs/name/<SUBGRAPH_NAME>
# Assuming the subgraph name is `arbitrum/test`
curl -X POST \
-H "Content-Type: application/json" \
-d '{"query":"query MyQuery {\r\n jobs(first: 10) {\r\n id\r\n }\r\n}","variables":{}}' \
"https://proxy.arbitrum.chain.love/subgraphs/name/arbitrum/test"
Last updated