thornode.py 5.4 KB

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