Skip to main content

TypeScript shape

interface HoldersUpdate {
  holders: number;
  tokenId: string;
  tokenAddress: string;
  networkId: number;
  balances: Balance[];
}
holders
Int!
The number of distinct wallets holding the token (60s-cached total, not the size of balances).
tokenId
String!
Token identifier in tokenAddress:networkId form.
tokenAddress
String!
The token’s contract address.
networkId
Int!
Network ID the token is deployed on.
balances
[Balance!]!
The wallets whose balance changed in this batch (never empty). See Balance.