A community-owned registry of Squid archives in a json format.
Squid Archive provides easy access to the historical on-chain data with little modifications. It is essential for Squid pipelines. It can also be used on its own as a GraphQL-based block explorer with powerful filtering and search capabilities over historical events and transactions.
The primary use case of a Squid Archive is to serve data to a Squid Processor
The urls are not supposed to be accessed with a browser. To explore the endpoint with an interactive and human-friendly console, replace /graphql with /console in the url.
For example, for exploring Kusama historical data, open https://kusama.indexer.gc.subsquid.io/v4/console and use the pane on right hand side to filter (where:) and pick the fields of interest.
For example, the following query will return details on the last 10 transfers:
query RecentBalancesTransfers {
substrate_event(where: {name: {_eq: "balances.Transfer"}}, limit: 10, order_by: {blockNumber: desc}) {
blockNumber
blockId
data
}
}To learn more how to construct the queries, consult Hasura Docs
To contribute a new archive, make a PR updating registry.json specifying the network name and the url.