Crypto Wallet Watcher - Monitor addresses for incoming/outgoing transactions
Monitor crypto wallet addresses for incoming/outgoing transactions. Supports Bitcoin, Ethereum, and other major chains via public APIs.
requests library (pip install requests)| Command | Description |
|---|---|
balance | Get wallet balance |
transactions | List recent transactions |
watch | Add/remove addresses to watchlist |
alerts | Check for new transactions on watched addresses |
# Check ETH wallet balance
python3 scripts/crypto_wallet_watcher.py balance --address "0x..." --chain eth
# Check BTC wallet balance
python3 scripts/crypto_wallet_watcher.py balance --address "bc1q..." --chain btc
# List recent transactions
python3 scripts/crypto_wallet_watcher.py transactions --address "0x..." --chain eth --limit 10
# Add to watchlist
python3 scripts/crypto_wallet_watcher.py watch --add --address "0x..." --label "My ETH Wallet"
# Check for new activity on watched addresses
python3 scripts/crypto_wallet_watcher.py alerts