# Monitor Whale Wallet Transactions

**Use case:** 

Monitor a whale wallet for new transactions daily: date, hash, from/to, value, USD, method, status. Only new records.

## Input

```json
{
  "outputType": "transactions",
  "addresses": [
    "vitalik.eth"
  ],
  "chain": "ethereum",
  "includeTokenHoldings": true,
  "includeNftHoldings": false,
  "direction": "all",
  "maxResultsPerAddress": 50,
  "maxResults": 1000,
  "monitorMode": true,
  "monitorKey": "whale-watch",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "chainName": {
    "label": "Chain",
    "format": "text"
  },
  "timestamp": {
    "label": "Time",
    "format": "text"
  },
  "hash": {
    "label": "Hash",
    "format": "text"
  },
  "direction": {
    "label": "Dir",
    "format": "text"
  },
  "from": {
    "label": "From",
    "format": "text"
  },
  "to": {
    "label": "To",
    "format": "text"
  },
  "value": {
    "label": "Value",
    "format": "number"
  },
  "valueUsd": {
    "label": "Value (USD)",
    "format": "number"
  },
  "fee": {
    "label": "Fee",
    "format": "number"
  },
  "method": {
    "label": "Method",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "explorerUrl": {
    "label": "Explorer",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Crypto Wallet Scraper - Balances, Tokens, NFTs & Transactions](https://apify.com/scrapesage/crypto-wallet-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/crypto-wallet-scraper) to learn more, explore other use cases, and run it yourself.