We utilize SubQuery to provide a native Indexer supports for all Protocol and Dapps working on DERA chain.
# Write your query or mutation here
{
collections(
first: 5
orderBy: [BLOCK_HEIGHT_DESC]
filter: { chainId: { equalTo: 20240801 } }
) {
nodes {
chainId
id
blockHeight
address
}
}
nFTs(
first: 5
orderBy: [BLOCK_HEIGHT_DESC]
filter: { chainId: { equalTo: 20240801 } }
) {
nodes {
chainId
id
blockHeight
collection
tokenId
owner
}
}
dataRegistries(
first: 5
orderBy: [BLOCK_HEIGHT_DESC]
filter: { chainId: { equalTo: 20240801 } }
) {
nodes {
chainId
id
}
}
_metadata {
dynamicDatasources
}
}