parent_command:crypto/onchain
usage: hist [-l LIMIT] [-s {timestamp,transactionHash,token,value}] [-r]

Display history for given ethereum blockchain balance. e.g. 0x3cD751E6b0078Be393132286c442345e5DC49699 [Source: Ethplorer]

optional arguments:
  -l LIMIT, --limit LIMIT
                        display N number records (default: 10)
  -s {timestamp,transactionHash,token,value}, --sort {timestamp,transactionHash,token,value}
                        Sort by given column. Default: timestamp (default: timestamp)
  -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 history of a specific ethereum blockchain balance: crypto/onchain/hist
- Show the history for a given ethereum blockchain balance with a limit of 5 records: crypto/onchain/hist -l 5
- Display the history of an ethereum blockchain balance sorted by transaction hash: crypto/onchain/hist -s transactionHash
- To view the history of an ethereum blockchain balance sorted by token: crypto/onchain/hist -s token
- Show the history for a given ethereum blockchain balance sorted by value: crypto/onchain/hist -s value
- Display the history of an ethereum blockchain balance with ascending order: crypto/onchain/hist -r
- View the history for a given ethereum blockchain balance with a limit of 7 records and sorted by transaction hash: crypto/onchain/hist -l 7 -s transactionHash
- To see the history of an ethereum blockchain balance with a limit of 10 records and sorted by value in ascending order: crypto/onchain/hist -l 10 -s value -r