Under Construction/ Python 3.6
Tracking Ethereum Token Whales
This script parses the data found in etherscan(Live Blockchain Explorer) and traces currentTokenHolders or currentTokenTransfers.
Run as python currentTokenTransfersWatcher.py [ERC20 Contract] [watched minimum quantity]
you can search ERC20 Contract in https://etherscan.io/tokens
default token is EOS ERC20 Contract,default watched minimum quantity is 10000
e.g.
python currentTokenTransfersWatcher.py 0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0 10000
python currentTokenTransfersWatcher.py
Run as python currentTokenHoldersWatcher.py [ERC20 Contract] [watch max top holders]
you can search ERC20 Contract in https://etherscan.io/tokens
default token is EOS ERC20 Contract,default watched top holders number is 100(the max value is 10000)
e.g.
python currentTokenHoldersWatcher.py 0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0 100
python currentTokenHoldersWatcher.py
Note: This is the first draft. Thanks to nikoskar,I directly fork from him.