parent_command:crypto/onchain
usage: th [-l LIMIT] [-s {value}] [-r] [--hash]

Displays info about token history. e.g. 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 [Source: Ethplorer]

optional arguments:
  -l LIMIT, --limit LIMIT
                        display N number records (default: 10)
  -s {value}, --sort {value}
                        Sort by given column. Default: value (default: value)
  -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)
  --hash                Flag to show transaction hash (default: True)


Examples:
- To display the token history for a specific <COIN>: crypto/load <COIN>/onchain/th
- Show the top 5 token transactions for a <COIN>: crypto/load <COIN>/onchain/th -l 5
- Display the token history for <COIN> sorted by value: crypto/load <COIN>/onchain/th -s value
- Display the token history for <COIN> in ascending order: crypto/load <COIN>/onchain/th -r
- Show the token history for <COIN> with transaction hashes: crypto/load <COIN>/onchain/th --hash
- Display the top 3 token transactions for <COIN> sorted by value in ascending order: crypto/load <COIN>/onchain/th -l 3 -s value -r