Astar
This section provides information specific to the Astar blockchain.
Querying the Subgraph
Chain.Love Indexing on Astar supports RPC and subgraph deployment for the following networks:
Astar
Shiden
Shibuya
You can query your subgraphs using the following methods:
By name:
https://proxy.graph.astar.network/subgraphs/name/<SUBGRAPH_NAME>
# Assuming the subgraph name is `astar/test-subgraph-1`
curl -X POST \
-H "Content-Type: application/json" \
-d '{"query":"query MyQuery {\r\n accounts(first: 10) {\r\n id\r\n }\r\n}","variables":{}}' \
"https://proxy.graph.astar.network/subgraphs/name/astar/test-subgraph-1"
Last updated