Skip to main content

TypeScript shape

interface WalletChartResponse {
  walletAddress: string;
  networkId: number | null;
  range: WalletChartRange;
  resolution: string;
  data: WalletChartData[];
  backfillState: WalletAggregateBackfillState | null;
}
walletAddress
String!
Wallet address the chart was computed for.
networkId
Int
Network ID if scoped to a single chain, otherwise null for all chains.
range
WalletChartRange!
Time range of the returned series. See WalletChartRange.
resolution
String!
Bucket resolution used (e.g. 1h, 1d).
data
[WalletChartData!]!
Ordered array of chart buckets. See WalletChartData.
backfillState
WalletAggregateBackfillState
Backfill state of the wallet’s aggregates. See WalletAggregateBackfillState.