Query examples
ERC20
Total supply and biggest token holders
{
erc20Contract(id: "<token-address-in-lowercase>") {
totalSupply {
value
}
balances(orderBy: valueExact, orderDirection: desc, where: { account_not: null }) {
account {
id
}
value
}
}
}