unspent.py 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2022 The MMGen Project <mmgen@tuta.io>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. """
  19. proto.eth.twuo: Ethereum tracking wallet unspent outputs class
  20. """
  21. from ....globalvars import g
  22. from ....tw.common import TwLabel
  23. from ....tw.unspent import TwUnspentOutputs
  24. # No unspent outputs with Ethereum, but naming must be consistent
  25. class EthereumTwUnspentOutputs(TwUnspentOutputs):
  26. class MMGenTwUnspentOutput(TwUnspentOutputs.MMGenTwUnspentOutput):
  27. valid_attrs = {'txid','vout','amt','amt2','comment','twmmid','addr','confs','skip'}
  28. invalid_attrs = {'proto'}
  29. has_age = False
  30. can_group = False
  31. col_adj = 29
  32. hdr_lbl = 'tracked accounts'
  33. desc = 'account balances'
  34. item_desc = 'account'
  35. dump_fn_pfx = 'balances'
  36. prompt = """
  37. Sort options: [a]mount, a[d]dress, [r]everse, [M]mgen addr
  38. Display options: show [m]mgen addr, r[e]draw screen
  39. Actions: [q]uit view, [p]rint to file, pager [v]iew, [w]ide view,
  40. add [l]abel, [D]elete address, [R]efresh balance:
  41. """
  42. key_mappings = {
  43. 'a':'s_amt',
  44. 'd':'s_addr',
  45. 'r':'d_reverse',
  46. 'M':'s_twmmid',
  47. 'm':'d_mmid',
  48. 'e':'d_redraw',
  49. 'q':'a_quit',
  50. 'p':'a_print_detail',
  51. 'v':'a_view',
  52. 'w':'a_view_detail',
  53. 'l':'a_comment_add',
  54. 'D':'a_addr_delete',
  55. 'R':'a_balance_refresh' }
  56. squeezed_fs_fs = squeezed_hdr_fs_fs = ' {{n:{cw}}} {{a}} {{A}}'
  57. wide_fs_fs = ' {{n:4}} {{a}} {{m}} {{A:{aw}}} {{l}}'
  58. no_data_errmsg = 'No accounts in tracking wallet!'
  59. def subheader(self,color):
  60. if g.cached_balances:
  61. from ....color import nocolor,yellow
  62. return (nocolor,yellow)[color](
  63. 'WARNING: Using cached balances. These may be out of date!') + '\n'
  64. else:
  65. return ''
  66. def do_sort(self,key=None,reverse=False):
  67. if key == 'txid': return
  68. super().do_sort(key=key,reverse=reverse)
  69. async def get_rpc_data(self):
  70. wl = self.wallet.sorted_list
  71. if self.addrs:
  72. wl = [d for d in wl if d['addr'] in self.addrs]
  73. return [{
  74. 'account': TwLabel(self.proto,d['mmid']+' '+d['comment']),
  75. 'address': d['addr'],
  76. 'amount': await self.wallet.get_balance(d['addr']),
  77. 'confirmations': 0, # TODO
  78. } for d in wl]
  79. def age_disp(self,o,age_fmt): # TODO
  80. pass
  81. class EthereumTokenTwUnspentOutputs(EthereumTwUnspentOutputs):
  82. prompt_fs = 'Total to spend: {} {}\n\n'
  83. col_adj = 37
  84. squeezed_fs_fs = squeezed_hdr_fs_fs = ' {{n:{cw}}} {{a}} {{A}} {{A2}}'
  85. wide_fs_fs = ' {{n:4}} {{a}} {{m}} {{A:{aw}}} {{A2:{aw}}} {{l}}'
  86. async def __init__(self,proto,*args,**kwargs):
  87. await super().__init__(proto,*args,**kwargs)
  88. self.proto.tokensym = self.wallet.symbol
  89. @property
  90. def disp_prec(self):
  91. return 10 # truncate precision for narrow display
  92. async def get_data(self,*args,**kwargs):
  93. await super().get_data(*args,**kwargs)
  94. for e in self.data:
  95. e.amt2 = await self.wallet.get_eth_balance(e.addr)