Skip to main content

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.

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