12345678910111213141516171819202122232425262728293031323334353637383940 |
- """
- proto.btc.tw.prune: Bitcoin base protocol tracking wallet address list prune class
- """
- from ....tw.prune import TwAddressesPrune
- from .addresses import BitcoinTwAddresses
- class BitcoinTwAddressesPrune(BitcoinTwAddresses,TwAddressesPrune):
- prompt_fs_in = [
- 'Sort options: [a]mt, [A]ge, [M]mgen addr, [r]everse',
- 'Column options: toggle [D]ays/date/confs/block',
- 'Filters: show [E]mpty addrs, [U]sed addrs, all [L]abels',
- 'View/Actions: pager [v]iew, [w]ide view, r[e]draw{s}',
- 'Pruning: [q]uit pruning, [p]rune, [u]nprune, [c]lear prune list:']
- key_mappings = {
- 'a':'s_amt',
- 'A':'s_age',
- 'M':'s_twmmid',
- 'r':'s_reverse',
- 'D':'d_days',
- 'e':'d_redraw',
- 'E':'d_showempty',
- 'U':'d_showused',
- 'L':'d_all_labels',
- 'v':'a_view',
- 'w':'a_view_detail',
- 'p':'a_prune',
- 'u':'a_unprune',
- 'c':'a_clear_prune_list' }
|