> ## 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.

# WindowedWalletBestTradeToken

> Token metadata for the best performing trade of a wallet within a window.

### TypeScript shape

```ts theme={null}
interface WindowedWalletBestTradeToken {
  address: string;
  networkId: number;
  name: string;
  symbol: string;
  logo: string | null;
  decimals: number;
}
```

<ResponseField name="address" type="String!">Token contract address.</ResponseField>
<ResponseField name="networkId" type="Int!">Network ID.</ResponseField>
<ResponseField name="name" type="String!">Token name.</ResponseField>
<ResponseField name="symbol" type="String!">Token symbol.</ResponseField>
<ResponseField name="logo" type="String">Logo URL.</ResponseField>
<ResponseField name="decimals" type="Int!">Decimals.</ResponseField>
