thornode.py 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. swap.proto.thorchain.thornode: THORChain swap protocol network query ops
  12. """
  13. import json
  14. from ....amt import UniAmt
  15. class ThornodeRPCClient:
  16. http_hdrs = {'Content-Type': 'application/json'}
  17. proto = 'https'
  18. host = 'thornode.ninerealms.com'
  19. verify = True
  20. timeout = 5
  21. def __init__(self, tx, *, proto=None, host=None):
  22. self.cfg = tx.cfg
  23. if proto:
  24. self.proto = proto
  25. if host:
  26. self.host = host
  27. import requests
  28. self.session = requests.Session()
  29. self.session.trust_env = False # ignore *_PROXY environment vars
  30. self.session.headers = self.http_hdrs
  31. if self.cfg.proxy:
  32. self.session.proxies.update({
  33. 'http': f'socks5h://{self.cfg.proxy}',
  34. 'https': f'socks5h://{self.cfg.proxy}'
  35. })
  36. def get(self, path, *, timeout=None):
  37. return self.session.get(
  38. url = self.proto + '://' + self.host + path,
  39. timeout = timeout or self.timeout,
  40. verify = self.verify)
  41. class Thornode:
  42. def __init__(self, tx, amt):
  43. self.tx = tx
  44. self.in_amt = amt
  45. self.rpc = ThornodeRPCClient(tx)
  46. def get_quote(self):
  47. self.get_str = '/thorchain/quote/swap?from_asset={a}.{a}&to_asset={b}.{b}&amount={c}'.format(
  48. a = self.tx.send_proto.coin,
  49. b = self.tx.recv_proto.coin,
  50. c = self.in_amt.to_unit('satoshi'))
  51. self.result = self.rpc.get(self.get_str)
  52. self.data = json.loads(self.result.content)
  53. if not 'expiry' in self.data:
  54. from ....util import pp_fmt, die
  55. die(2, pp_fmt(self.data))
  56. def format_quote(self, trade_limit, usr_trade_limit, *, deduct_est_fee=False):
  57. from ....util import make_timestr, ymsg
  58. from ....util2 import format_elapsed_hr
  59. from ....color import blue, green, cyan, pink, orange, redbg, yelbg, grnbg
  60. from . import name
  61. d = self.data
  62. tx = self.tx
  63. in_coin = tx.send_proto.coin
  64. out_coin = tx.recv_proto.coin
  65. in_amt = self.in_amt
  66. out_amt = UniAmt(int(d['expected_amount_out']), from_unit='satoshi')
  67. if trade_limit:
  68. from . import ExpInt4
  69. e = ExpInt4(trade_limit.to_unit('satoshi'))
  70. tl_rounded = UniAmt(e.trunc, from_unit='satoshi')
  71. ratio = usr_trade_limit if type(usr_trade_limit) is float else float(tl_rounded / out_amt)
  72. direction = 'ABOVE' if ratio > 1 else 'below'
  73. mcolor, lblcolor = (
  74. (redbg, redbg) if (ratio < 0.93 or ratio > 0.999) else
  75. (yelbg, yelbg) if ratio < 0.97 else
  76. (green, grnbg))
  77. trade_limit_disp = f"""
  78. {lblcolor('Trade limit:')} {tl_rounded.hl()} {out_coin} """ + mcolor(
  79. f'({abs(1 - ratio) * 100:0.2f}% {direction} expected amount)')
  80. tx_size_adj = len(e.enc) - 1
  81. else:
  82. trade_limit_disp = ''
  83. tx_size_adj = 0
  84. _amount_in_label = 'Amount in:'
  85. if deduct_est_fee:
  86. if d['gas_rate_units'] == 'satsperbyte':
  87. in_amt -= tx.feespec2abs(d['recommended_gas_rate'] + 's', tx.estimate_size() + tx_size_adj)
  88. out_amt *= (in_amt / self.in_amt)
  89. _amount_in_label = 'Amount in (estimated):'
  90. else:
  91. ymsg('Warning: unknown gas unit ‘{}’, cannot estimate fee'.format(d['gas_rate_units']))
  92. min_in_amt = UniAmt(int(d['recommended_min_amount_in']), from_unit='satoshi')
  93. gas_unit = {
  94. 'satsperbyte': 'sat/byte',
  95. }.get(d['gas_rate_units'], d['gas_rate_units'])
  96. elapsed_disp = format_elapsed_hr(d['expiry'], future_msg='from now')
  97. fees = d['fees']
  98. fees_t = UniAmt(int(fees['total']), from_unit='satoshi')
  99. fees_pct_disp = str(fees['total_bps'] / 100) + '%'
  100. slip_pct_disp = str(fees['slippage_bps'] / 100) + '%'
  101. hdr = f'SWAP QUOTE (source: {self.rpc.host})'
  102. return f"""
  103. {cyan(hdr)}
  104. Protocol: {blue(name)}
  105. Direction: {orange(f'{in_coin} => {out_coin}')}
  106. Vault address: {cyan(d['inbound_address'])}
  107. Quote expires: {pink(elapsed_disp)} [{make_timestr(d['expiry'])}]
  108. {_amount_in_label:<22} {in_amt.hl()} {in_coin}
  109. Expected amount out: {out_amt.hl()} {out_coin}{trade_limit_disp}
  110. Rate: {(out_amt / in_amt).hl()} {out_coin}/{in_coin}
  111. Reverse rate: {(in_amt / out_amt).hl()} {in_coin}/{out_coin}
  112. Recommended minimum in amount: {min_in_amt.hl()} {in_coin}
  113. Recommended fee: {pink(d['recommended_gas_rate'])} {pink(gas_unit)}
  114. Fees:
  115. Total: {fees_t.hl()} {out_coin} ({pink(fees_pct_disp)})
  116. Slippage: {pink(slip_pct_disp)}
  117. """
  118. @property
  119. def inbound_address(self):
  120. return self.data['inbound_address']
  121. @property
  122. def rel_fee_hint(self):
  123. if self.data['gas_rate_units'] == 'satsperbyte':
  124. return f'{self.data["recommended_gas_rate"]}s'
  125. def __str__(self):
  126. from pprint import pformat
  127. return pformat(self.data)