Skip to main content

TypeScript shape

interface TokenTopTradersConnection {
  tokenAddress: string;
  networkId: number;
  tradingPeriod: TradingPeriod;
  items: TokenTopTrader[];
  offset: number | null;
}
tokenAddress
String!
Token contract address.
networkId
Int!
Network ID.
tradingPeriod
TradingPeriod!
Period used for stats. See TradingPeriod.
offset
Int!
Current pagination offset.
items
[TokenTopTrader!]!
List of top traders. See TokenTopTrader.