123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- #!/usr/bin/env python3
- #
- # MMGen Wallet, a terminal-based cryptocurrency wallet
- # Copyright (C)2013-2025 The MMGen Project <mmgen@tuta.io>
- # Licensed under the GNU General Public License, Version 3:
- # https://www.gnu.org/licenses
- # Public project repositories:
- # https://github.com/mmgen/mmgen-wallet
- # https://gitlab.com/mmgen/mmgen-wallet
- """
- swap.proto.thorchain.thornode: THORChain swap protocol network query ops
- """
- import json
- from ....amt import UniAmt
- class ThornodeRPCClient:
- http_hdrs = {'Content-Type': 'application/json'}
- proto = 'https'
- host = 'thornode.ninerealms.com'
- verify = True
- timeout = 5
- def __init__(self, tx, *, proto=None, host=None):
- self.cfg = tx.cfg
- if proto:
- self.proto = proto
- if host:
- self.host = host
- import requests
- self.session = requests.Session()
- self.session.trust_env = False # ignore *_PROXY environment vars
- self.session.headers = self.http_hdrs
- if self.cfg.proxy:
- self.session.proxies.update({
- 'http': f'socks5h://{self.cfg.proxy}',
- 'https': f'socks5h://{self.cfg.proxy}'
- })
- def get(self, path, *, timeout=None):
- return self.session.get(
- url = self.proto + '://' + self.host + path,
- timeout = timeout or self.timeout,
- verify = self.verify)
- class Thornode:
- def __init__(self, tx, amt):
- self.tx = tx
- self.in_amt = amt
- self.rpc = ThornodeRPCClient(tx)
- def get_quote(self):
- self.get_str = '/thorchain/quote/swap?from_asset={a}.{a}&to_asset={b}.{b}&amount={c}'.format(
- a = self.tx.send_proto.coin,
- b = self.tx.recv_proto.coin,
- c = self.in_amt.to_unit('satoshi'))
- self.result = self.rpc.get(self.get_str)
- self.data = json.loads(self.result.content)
- if not 'expiry' in self.data:
- from ....util import pp_fmt, die
- die(2, pp_fmt(self.data))
- def format_quote(self, trade_limit, usr_trade_limit, *, deduct_est_fee=False):
- from ....util import make_timestr, ymsg
- from ....util2 import format_elapsed_hr
- from ....color import blue, green, cyan, pink, orange, redbg, yelbg, grnbg
- from . import name
- d = self.data
- tx = self.tx
- in_coin = tx.send_proto.coin
- out_coin = tx.recv_proto.coin
- in_amt = self.in_amt
- out_amt = UniAmt(int(d['expected_amount_out']), from_unit='satoshi')
- if trade_limit:
- from . import ExpInt4
- e = ExpInt4(trade_limit.to_unit('satoshi'))
- tl_rounded = UniAmt(e.trunc, from_unit='satoshi')
- ratio = usr_trade_limit if type(usr_trade_limit) is float else float(tl_rounded / out_amt)
- direction = 'ABOVE' if ratio > 1 else 'below'
- mcolor, lblcolor = (
- (redbg, redbg) if (ratio < 0.93 or ratio > 0.999) else
- (yelbg, yelbg) if ratio < 0.97 else
- (green, grnbg))
- trade_limit_disp = f"""
- {lblcolor('Trade limit:')} {tl_rounded.hl()} {out_coin} """ + mcolor(
- f'({abs(1 - ratio) * 100:0.2f}% {direction} expected amount)')
- tx_size_adj = len(e.enc) - 1
- else:
- trade_limit_disp = ''
- tx_size_adj = 0
- _amount_in_label = 'Amount in:'
- if deduct_est_fee:
- if d['gas_rate_units'] == 'satsperbyte':
- in_amt -= tx.feespec2abs(d['recommended_gas_rate'] + 's', tx.estimate_size() + tx_size_adj)
- out_amt *= (in_amt / self.in_amt)
- _amount_in_label = 'Amount in (estimated):'
- else:
- ymsg('Warning: unknown gas unit ‘{}’, cannot estimate fee'.format(d['gas_rate_units']))
- min_in_amt = UniAmt(int(d['recommended_min_amount_in']), from_unit='satoshi')
- gas_unit = {
- 'satsperbyte': 'sat/byte',
- }.get(d['gas_rate_units'], d['gas_rate_units'])
- elapsed_disp = format_elapsed_hr(d['expiry'], future_msg='from now')
- fees = d['fees']
- fees_t = UniAmt(int(fees['total']), from_unit='satoshi')
- fees_pct_disp = str(fees['total_bps'] / 100) + '%'
- slip_pct_disp = str(fees['slippage_bps'] / 100) + '%'
- hdr = f'SWAP QUOTE (source: {self.rpc.host})'
- return f"""
- {cyan(hdr)}
- Protocol: {blue(name)}
- Direction: {orange(f'{in_coin} => {out_coin}')}
- Vault address: {cyan(d['inbound_address'])}
- Quote expires: {pink(elapsed_disp)} [{make_timestr(d['expiry'])}]
- {_amount_in_label:<22} {in_amt.hl()} {in_coin}
- Expected amount out: {out_amt.hl()} {out_coin}{trade_limit_disp}
- Rate: {(out_amt / in_amt).hl()} {out_coin}/{in_coin}
- Reverse rate: {(in_amt / out_amt).hl()} {in_coin}/{out_coin}
- Recommended minimum in amount: {min_in_amt.hl()} {in_coin}
- Recommended fee: {pink(d['recommended_gas_rate'])} {pink(gas_unit)}
- Fees:
- Total: {fees_t.hl()} {out_coin} ({pink(fees_pct_disp)})
- Slippage: {pink(slip_pct_disp)}
- """
- @property
- def inbound_address(self):
- return self.data['inbound_address']
- @property
- def rel_fee_hint(self):
- if self.data['gas_rate_units'] == 'satsperbyte':
- return f'{self.data["recommended_gas_rate"]}s'
- def __str__(self):
- from pprint import pformat
- return pformat(self.data)
|