Skip to main content

TypeScript shape

interface DetailedWalletStatsInput {
  walletAddress: string;
  networkId?: number | null;
  timestamp?: number | null;
  includeNetworkBreakdown?: boolean | null;
}
walletAddress
String!
Wallet address to fetch stats for.
networkId
Int
Optional network ID to scope the aggregate stats to a single chain.
timestamp
Int
Optional reference timestamp (unix seconds). Defaults to now.
includeNetworkBreakdown
Boolean
Include the per-network breakdown (default: false).
includeStatsYear1
Boolean
Include the 1-year window stats (default: false — the most expensive to compute).