parent_command:crypto/onchain
usage: balance [-l LIMIT] [-s {index,balance,tokenName,tokenSymbol}] [-r]

Display info about tokens on given ethereum blockchain balance. [Source: Ethplorer]

optional arguments:
  -l LIMIT, --limit LIMIT
                        display N number records (default: 10)
  -s {index,balance,tokenName,tokenSymbol}, --sort {index,balance,tokenName,tokenSymbol}
                        Sort by given column. Default: index (default: index)
  -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 tokens on the Ethereum blockchain balance: crypto/onchain/balance
- To show the top 20 tokens on the Ethereum blockchain balance: crypto/onchain/balance -l 20
- To display the top 10 tokens sorted by balance: crypto/onchain/balance -s balance
- To display the top 15 tokens sorted by token name: crypto/onchain/balance -l 15 -s tokenName
- To display the top 10 tokens sorted by token symbol in ascending order: crypto/onchain/balance -s tokenSymbol -r
- To show the top 20 tokens sorted by balance in ascending order: crypto/onchain/balance -l 20 -s balance -r