import.py 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #!/usr/bin/env python3
  2. #
  3. # MMGen Wallet, a terminal-based cryptocurrency wallet
  4. # Copyright (C)2013-2025 The MMGen Project <mmgen@tuta.io>
  5. # Licensed under the GNU General Public License, Version 3:
  6. # https://www.gnu.org/licenses
  7. # Public project repositories:
  8. # https://github.com/mmgen/mmgen-wallet
  9. # https://gitlab.com/mmgen/mmgen-wallet
  10. """
  11. xmrwallet.ops.import: Monero wallet ops for the MMGen Suite
  12. """
  13. from ...util import msg, bmsg, die, suf
  14. from ..file.outputs import MoneroWalletOutputsFile
  15. from ..rpc import MoneroWalletRPC
  16. from .wallet import OpWallet
  17. class OpImportOutputs(OpWallet):
  18. action = 'importing wallet outputs into'
  19. start_daemon = False
  20. async def main(self, fn, wallet_idx, *, restart_daemon=True):
  21. if restart_daemon:
  22. await self.restart_wallet_daemon()
  23. h = MoneroWalletRPC(self, self.addr_data[0])
  24. self.head_msg(wallet_idx, fn)
  25. if restart_daemon:
  26. h.open_wallet(refresh=False)
  27. m = MoneroWalletOutputsFile.Unsigned(
  28. parent = self,
  29. fn = fn)
  30. res = self.c.call(
  31. 'import_outputs',
  32. outputs_data_hex = m.data.outputs_data_hex)
  33. idata = res['num_imported']
  34. bmsg(f'\n {idata} output{suf(idata)} imported')
  35. if m.data.sign:
  36. data = m.data._asdict()
  37. data.update(self.c.call('export_key_images', all=True))
  38. m = MoneroWalletOutputsFile.SignedNew(
  39. parent = self,
  40. wallet_fn = m.get_wallet_fn(fn),
  41. data = data)
  42. idata = m.data.signed_key_images or []
  43. bmsg(f' {len(idata)} key image{suf(idata)} signed')
  44. else:
  45. m.data = m.data._replace(imported=True)
  46. return m
  47. class OpImportKeyImages(OpWallet):
  48. action = 'importing key images into'
  49. stem = 'process'
  50. trust_monerod = True
  51. def post_main_failure(self):
  52. rw_msg = ' for requested wallets' if self.uargs.wallets else ''
  53. die(2, f'No signed key image files found{rw_msg}!')
  54. async def process_wallet(self, d, fn, last):
  55. keyimage_fn = MoneroWalletOutputsFile.Signed.find_fn_from_wallet_fn(self.cfg, fn, ret_on_no_match=True)
  56. if not keyimage_fn:
  57. msg(f'No signed key image file found for wallet #{d.idx}')
  58. return False
  59. h = MoneroWalletRPC(self, d)
  60. h.open_wallet()
  61. self.head_msg(d.idx, h.fn)
  62. m = MoneroWalletOutputsFile.Signed(parent=self, fn=keyimage_fn)
  63. data = m.data.signed_key_images or []
  64. bmsg(f'\n {len(data)} signed key image{suf(data)} to import')
  65. if data:
  66. res = self.c.call('import_key_images', signed_key_images=data)
  67. bmsg(f' Success: {res}')
  68. return True