parent_command:crypto/onchain
usage: holders [-l LIMIT] [-s {balance,share}] [-r]

Display top ERC20 token holders: e.g. 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 [Source: Ethplorer]

optional arguments:
  -l LIMIT, --limit LIMIT
                        display N number records (default: 10)
  -s {balance,share}, --sort {balance,share}
                        Sort by given column. Default: share (default: share)
  -r, --reverse         Data is sorted in descending order by default. Reverse flag will sort it in an ascending way. Only works when raw data is displayed. (default: False)


Examples:
- To display the top 10 ERC20 token holders for a specific coin: crypto/load <COIN>/onchain/holders
- To show the top 20 ERC20 token holders sorted by balance: crypto/load <COIN>/onchain/holders -l 20 -s balance
- To display the top 5 ERC20 token holders sorted by share: crypto/load <COIN>/onchain/holders -l 5 -s share
- To display the top 10 ERC20 token holders sorted by balance in ascending order: crypto/load <COIN>/onchain/holders -s balance -r
- To show the top 15 ERC20 token holders sorted by share in ascending order: crypto/load <COIN>/onchain/holders -l 15 -s share -r