Subsquid for data indexing
This article guides you through the process of indexing the ICE/SNOW Network data using subsquid
We have already published some medium articles which explains about Subsquid whose links are provided below:
We have also deployed a squid at http://18.176.158.245:4350/graphql,where we have indexed ERC721,ERC20 and ERC1155 token transfers event of the Arctic testnet network.
You can head over to http://18.176.158.245:4350/graphql,which will open a GraphQL playground for playing with queries.
NOTE: Currenlty the endpoint http://18.176.158.245:4350/graphql is down.
For example: let us query 10 fungible tokens (ERC20) by their name, symbol, and address.
query MyQuery {
fTokens(limit: 10) {
id
name
symbol
}
}

GraphQl playground
You can play with queries here after all it’s a playground.
Subsquid’s documentation is full of useful information, and it’s the best place to start if you have questions about anything that wasn’t covered in this introductory section.
Last modified 4mo ago