π°οΈSubgraph
All on-chain data and events from HyperVIBES are indexed via TheGraph.
You can build HyperVIBES-based applications without ever having to deploy a smart contract by creating a realm and building a web3 dapp frontend.
A unique subgraph is deployed for each blockchain network HyperVIBES is on.
βοΈLinks and ReposExamples Queries
Like all GraphQL APIs, you can use introspection to explore the schema, types, and queries available in the subgraph. Below are a few possible ways of using the subgraph:
List all realms
{
realms(orderBy: createdAtTimestamp, orderDirection: desc) {
id
name
description
token { address symbol name decimals }
createdAtTimestamp
}
}Get infusion info for an NFT across all realms
Get details and infused NFTs for a specific realm
Get details about a specific account (wallet / agent)
Last updated