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

# WalletChartInput

> Input object for the walletChart query.

### TypeScript shape

```ts theme={null}
interface WalletChartInput {
  walletAddress: string;
  networkId?: number | null;
  range: RangeInput;
  resolution: string;
}
```

<ResponseField name="walletAddress" type="String!">Wallet address to fetch the chart for.</ResponseField>
<ResponseField name="networkId" type="Int">Optional network ID to scope the chart to a single chain.</ResponseField>
<ResponseField name="range" type="RangeInput!">Inclusive start / end range (unix seconds). See [RangeInput](/api-reference/graphql/types/RangeInput).</ResponseField>
<ResponseField name="resolution" type="String!">Bucket resolution (e.g. `5m`, `1h`, `1d`).</ResponseField>
