> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# TokenTopTradersConnection

> Connection with token context and paginated list of top traders.

### TypeScript shape

```ts theme={null}
interface TokenTopTradersConnection {
  tokenAddress: string;
  networkId: number;
  tradingPeriod: TradingPeriod;
  items: TokenTopTrader[];
  offset: number | null;
}
```

<ResponseField name="tokenAddress" type="String!">Token contract address.</ResponseField>
<ResponseField name="networkId" type="Int!">Network ID.</ResponseField>
<ResponseField name="tradingPeriod" type="TradingPeriod!">Period used for stats. See [TradingPeriod](/api-reference/graphql/types/TradingPeriod).</ResponseField>
<ResponseField name="offset" type="Int!">Current pagination offset.</ResponseField>
<ResponseField name="items" type="[TokenTopTrader!]!">List of top traders. See [TokenTopTrader](/api-reference/graphql/types/TokenTopTrader).</ResponseField>
