new_swap.py 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. tx.new_swap: new swap transaction class
  12. """
  13. from .new import New
  14. from ..amt import UniAmt
  15. class NewSwap(New):
  16. desc = 'swap transaction'
  17. def __init__(self, *args, **kwargs):
  18. import importlib
  19. self.is_swap = True
  20. self.swap_proto = kwargs['cfg'].swap_proto
  21. self.swap_proto_mod = importlib.import_module(f'mmgen.swap.proto.{self.swap_proto}')
  22. New.__init__(self, *args, **kwargs)
  23. def process_swap_options(self):
  24. if s := self.cfg.trade_limit:
  25. self.usr_trade_limit = (
  26. 1 - float(s[:-1]) / 100 if s.endswith('%') else
  27. UniAmt(self.cfg.trade_limit))
  28. else:
  29. self.usr_trade_limit = None
  30. def update_vault_output(self, amt, *, deduct_est_fee=False):
  31. sp = self.swap_proto_mod
  32. c = sp.rpc_client(self, amt)
  33. from ..util import msg
  34. from ..term import get_char
  35. def get_trade_limit():
  36. if type(self.usr_trade_limit) is UniAmt:
  37. return self.usr_trade_limit
  38. elif type(self.usr_trade_limit) is float:
  39. return (
  40. UniAmt(int(c.data['expected_amount_out']), from_unit='satoshi')
  41. * self.usr_trade_limit)
  42. while True:
  43. self.cfg._util.qmsg(f'Retrieving data from {c.rpc.host}...')
  44. c.get_quote()
  45. trade_limit = get_trade_limit()
  46. self.cfg._util.qmsg('OK')
  47. msg(c.format_quote(trade_limit, self.usr_trade_limit, deduct_est_fee=deduct_est_fee))
  48. ch = get_char('Press ‘r’ to refresh quote, any other key to continue: ')
  49. msg('')
  50. if ch not in 'Rr':
  51. break
  52. self.swap_quote_expiry = c.data['expiry']
  53. self.update_vault_addr(c.inbound_address)
  54. self.update_data_output(trade_limit)
  55. return c.rel_fee_hint