Skip to main content

TypeScript shape

interface HoldersResponse {
  items: Balance[];
  count: number;
  cursor: string | null;
  status: HoldersStatus;
  top10HoldersPercent: number | null;
}
items
[Balance!]!
List of holder balances. See Balance.
count
Int!
Total count of holders.
cursor
String
Cursor for next page.
status
HoldersStatus!
Whether holder data is enabled. See HoldersStatus.
top10HoldersPercent
Float
Percentage held by top 10 holders.