Skip to main content

Returns

backfillWalletAggregates
WalletAggregateBackfillStateResponse!
Current backfill state for the wallet. See WalletAggregateBackfillStateResponse.

Arguments

input
WalletAggregateBackfillInput!
required
See WalletAggregateBackfillInput.

Example

mutation BackfillWalletAggregates($input: WalletAggregateBackfillInput!) {
  backfillWalletAggregates(input: $input) {
    walletAddress
    status
  }
}
Variables:
{
  "input": {
    "walletAddress": "0x9924cb8290b0e81d74bbf715583bb77aff87d704",
    "networkIds": [1, 56, 8453]
  }
}

Playground