Querying historical blockchain data directly from an RPC node is slow and cumbersome. The Graph solves this with subgraphs — open APIs that index on-chain events and expose them through a standard GraphQL interface. Fuse maintains several pre-deployed subgraphs covering NFTs, block data, the Voltage DEX, and both directions of the Ethereum AMB bridge.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/fuseio/fuse-docs/llms.txt
Use this file to discover all available pages before exploring further.
Available Fuse subgraphs
| Subgraph | Description |
|---|---|
| fuse-nft | All NFTs minted and transferred on the Fuse Network |
| fuse-blocks | Block-level details of the Fuse Network |
| voltage-dex | Voltage DEX on-chain trading data: pairs, swaps, liquidity |
| fuse-ethereum-amb | Bridge events for the Fuse → Ethereum AMB bridge |
| etherem-fuse-amb | Bridge events for the Ethereum → Fuse AMB bridge |
The Graph’s smart contracts and indexing infrastructure run on Arbitrum One, even though the subgraphs index data from the Fuse Network.
Query a subgraph
Every subgraph on The Graph’s decentralized network has a query URL in the following format:Example: query recent Voltage DEX swaps
The following GraphQL query fetches the five most recent token swaps on Voltage DEX, ordered by descending timestamp:voltage-dex subgraph endpoint using fetch or any GraphQL client:
[api-key] with your API key from Subgraph Studio.
Publish your own subgraph
If the pre-deployed subgraphs do not cover your contract’s events, you can publish a custom subgraph to The Graph’s decentralized network.Create a subgraph in Subgraph Studio
Go to Subgraph Studio, connect your wallet, and click Create a Subgraph. Use Title Case for the name (for example, “My Contract Fuse”) — the name cannot be changed after creation.
Initialise the subgraph locally
Copy the The CLI prompts for network, contract address, and ABI. If your contract is verified on the Fuse Explorer, the CLI will fetch the ABI automatically.
graph init command from your subgraph’s page in Subgraph Studio:Build and deploy
Authenticate with your deploy key, then build and deploy:You will be prompted for a version label such as
v0.0.1.Additional resources
- Creating a subgraph — full reference for schema design, mappings, and event handlers.
- Querying The Graph — pagination, filtering, sorting, and full-text search in GraphQL.