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

# WalletChartResponse

> Response shape for the walletChart query: a time-series of wallet trading activity.

### TypeScript shape

```ts theme={null}
interface WalletChartResponse {
  walletAddress: string;
  networkId: number | null;
  range: WalletChartRange;
  resolution: string;
  data: WalletChartData[];
  backfillState: WalletAggregateBackfillState | null;
}
```

<ResponseField name="walletAddress" type="String!">Wallet address the chart was computed for.</ResponseField>
<ResponseField name="networkId" type="Int">Network ID if scoped to a single chain, otherwise `null` for all chains.</ResponseField>
<ResponseField name="range" type="WalletChartRange!">Time range of the returned series. See [WalletChartRange](/api-reference/graphql/types/WalletChartRange).</ResponseField>
<ResponseField name="resolution" type="String!">Bucket resolution used (e.g. `1h`, `1d`).</ResponseField>
<ResponseField name="data" type="[WalletChartData!]!">Ordered array of chart buckets. See [WalletChartData](/api-reference/graphql/types/WalletChartData).</ResponseField>
<ResponseField name="backfillState" type="WalletAggregateBackfillState">Backfill state of the wallet's aggregates. See [WalletAggregateBackfillState](/api-reference/graphql/types/WalletAggregateBackfillState).</ResponseField>
