# ETH Wallet Large Movement Tracker

**Use case:** 

Track large ETH and ERC-20 movements for multiple wallets. Get current balances and flagged transactions above your set threshold.

## Input

```json
{
  "wallets": [
    "0x28C6c06298d514Db089934071355E5743bf21d60",
    "0x000000000000000000000000000000000000dEaD"
  ],
  "chainId": 1,
  "minValueEth": 1,
  "maxConcurrency": 2
}
```

## Output

```json
{
  "wallet": {
    "label": "Wallet",
    "format": "text"
  },
  "chainId": {
    "label": "Chain ID",
    "format": "number"
  },
  "found": {
    "label": "Found",
    "format": "boolean"
  },
  "nativeBalance": {
    "label": "Balance (native token)",
    "format": "number"
  },
  "nativeSymbol": {
    "label": "Native token",
    "format": "text"
  },
  "movementCount": {
    "label": "Large movements",
    "format": "number"
  },
  "largeMovements": {
    "label": "Large movements detail",
    "format": "array"
  },
  "tokenTransfers": {
    "label": "Token transfers",
    "format": "array"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Whale Wallet Tracker](https://apify.com/zinin/whale-wallet-tracker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zinin/whale-wallet-tracker) to learn more, explore other use cases, and run it yourself.