s_mexc_to_erc20.py 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902
  1. import time
  2. import traceback
  3. import copy
  4. import os
  5. from web3_py_client import EthClient
  6. from mexc_client import MexcClient
  7. from decimal import Decimal, ROUND_DOWN
  8. from as_utils import add_state_flow_entry
  9. from checker.logger_config import get_logger
  10. from pprint import pformat
  11. web3 = EthClient()
  12. web3_backup = EthClient(os.getenv("RPC_URL_2"))
  13. mexc = MexcClient()
  14. # 配置日志
  15. logger = get_logger('as')
  16. class ArbitrageProcess:
  17. def __init__(self, gas_limit_multiplier, gas_price_multiplier, process_item,
  18. core_data, core_lock,
  19. pending_data, pending_lock,
  20. mexc_data, mexc_lock,
  21. ):
  22. """
  23. 初始化套利流程
  24. Args:
  25. gas_limit_multiplier: gas limit倍数, 一般都不加倍
  26. gas_price_multiplier: gas price倍数, 可以提高交易成功率
  27. process_item: 信號發送端傳入的原始參數
  28. """
  29. self.NETWORK = 'ETH'
  30. tx = process_item['tx']
  31. tx.pop('gasPrice', None)
  32. tx.pop('value', None)
  33. tx.pop('minReceiveAmount', None)
  34. tx.pop('slippage', None)
  35. tx.pop('maxSpendAmount', None)
  36. tx.pop('signatureData', None)
  37. self.core_data = core_data
  38. self.core_lock = core_lock
  39. self.pending_data = pending_data
  40. self.pending_lock = pending_lock
  41. self.mexc_data = mexc_data
  42. self.mexc_lock = mexc_lock
  43. # symbol轉大寫
  44. self.symbol = process_item['symbol'].upper()
  45. self.coin = self.symbol.split('_')[0]
  46. self.base_coin = self.symbol.split('_')[1]
  47. with self.core_lock:
  48. self.eth_price = self.core_data['eth_price']
  49. with self.mexc_lock:
  50. self.withdraw_info = copy.deepcopy(self.mexc_data['coin_info_map'][self.coin][self.NETWORK])
  51. self.WITHDRAW_FEE = Decimal(self.withdraw_info['withdrawFee']) # 提現手續費
  52. self.WITHDRAW_ENABLE = self.withdraw_info['withdrawEnable'] # 是否启用提现
  53. withdraw_info_formated = pformat(self.withdraw_info, indent=2)
  54. logger.info(f'提現信息識別, 手續費:{self.WITHDRAW_FEE}\n{withdraw_info_formated}')
  55. self.tx = tx
  56. self.mexc_price = Decimal(process_item['cexPrice'])
  57. self.profit = Decimal(process_item['profit']) # 這個利潤是實際到手利潤
  58. self.profit_limit = Decimal(process_item['profitLimit']) # 這個利潤是實際到手利潤的limit
  59. self.gas_limit_multiplier = gas_limit_multiplier
  60. self.gas_price_multiplier = gas_price_multiplier
  61. self.from_token_addr = process_item['fromToken']
  62. self.from_token_decimal = Decimal(process_item['fromTokenDecimal'])
  63. self.to_token_addr = process_item['toToken']
  64. self.to_token_decimal = Decimal(process_item['toTokenDecimal'])
  65. self.user_exchange_wallet = process_item['userExchangeWallet']
  66. self.user_wallet = process_item['userWallet']
  67. self.process_item = process_item
  68. # 存储当前套利交易的细节信息,例如买入数量、价格等
  69. self.sell_price = Decimal(0)
  70. self.sell_value = Decimal(0)
  71. self.buy_price = Decimal(0)
  72. self.buy_value = Decimal(0)
  73. self.chain_tx_hash = None # 链上卖出的tx hash
  74. self.exchange_buy_amount = Decimal(process_item['fromTokenAmountHuman']) # 交易所买入量
  75. self.exchange_buy_amount = self.exchange_buy_amount + self.WITHDRAW_FEE # 买入量考虑提现手续费
  76. self.already_bought_amount = Decimal(0)
  77. self.exchange_withdrawal_id = None # 交易所提现id
  78. self.exchange_withdrawal_amount = None # 交易所提现数量
  79. self.actual_profit = Decimal(0) # 實際利潤
  80. # 定义可能的状态
  81. self.STATES = [
  82. "CHECK", # 检查余额、估算gas等
  83. "BUYING_ON_EXCHANGE", # 正在中心化交易所买入现货
  84. "WAITING_BUY_CONFIRM", # 等待现货买入订单确认
  85. "SELLING_ON_CHAIN", # 正在链上卖出
  86. "WAITING_CHAIN_CONFIRM", # 等待链上交易确认
  87. "WAITING_EXCHANGE_ROLLBACK", # 等待交易所回滚
  88. "WAITING_TRANSFER_ARRIVE", # 等待交易所到账
  89. "TRANSFERRING_TO_CHAIN", # 正在向链上转账
  90. "WAITING_WITHDRAWAL_CONFIRM", # 等待链上提现确认
  91. "COMPLETED", # 套利流程完成
  92. "REJECT", # 套利被程序拒绝
  93. "FAILED" # 套利流程失败
  94. ]
  95. self.STATE_IDLE = "IDLE"
  96. self.STATE_CHECK = "CHECK"
  97. self.STATE_BUYING_ON_EXCHANGE = "BUYING_ON_EXCHANGE"
  98. # self.STATE_WAITING_BUY_CONFIRM = "WAITING_BUY_CONFIRM"
  99. self.STATE_SELLING_ON_CHAIN = "SELLING_ON_CHAIN"
  100. self.STATE_WAITING_CHAIN_CONFIRM = "WAITING_CHAIN_CONFIRM"
  101. self.STATE_WAITING_EXCHANGE_ROLLBACK = "WAITING_EXCHANGE_ROLLBACK"
  102. self.STATE_WAITING_TRANSFER_ARRIVE = "WAITING_TRANSFER_ARRIVE"
  103. self.STATE_TRANSFERRING_TO_CHAIN = "TRANSFERRING_TO_CHAIN"
  104. self.STATE_WAITING_WITHDRAWAL_CONFIRM = "WAITING_WITHDRAWAL_CONFIRM"
  105. self.STATE_COMPLETED = "COMPLETED"
  106. self.STATE_REJECT = "REJECT"
  107. self.STATE_FAILED = "FAILED"
  108. # 所有前置信息获取都没有问题的话就等待开机信号
  109. self.current_state = self.STATE_IDLE
  110. exchange_info_params = {
  111. "symbols": self.symbol.replace('_', '')
  112. }
  113. exchange_info_rst = mexc.market.get_exchangeInfo(exchange_info_params)
  114. # 返回值检查
  115. if 'symbols' not in exchange_info_rst or len(exchange_info_rst['symbols']) != 1:
  116. params_formated = pformat(exchange_info_params, indent=2)
  117. info_formated = pformat(exchange_info_rst, indent=2)
  118. msg = f'获取交易规则时出现错误\n{exchange_info_params}\n{info_formated}'
  119. logger.error(msg)
  120. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  121. self.current_state = self.STATE_FAILED
  122. return
  123. # 返回的交易对信息核对]
  124. exchange_info = exchange_info_rst['symbols'][0]
  125. if exchange_info['symbol'].upper() != self.symbol.replace('_', ''):
  126. info_formated = pformat(exchange_info, indent=2)
  127. msg = f'获取到的交易规则与交易币对无关\n{info_formated}'
  128. logger.error(msg)
  129. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  130. self.current_state = self.STATE_FAILED
  131. return
  132. # 精度取得, 假如是RATOUSDT这个交易对的话:
  133. self.coin_asset_precision = Decimal(f'1e-{exchange_info['baseAssetPrecision']}') # 这是RATO的精度
  134. self.base_coin_asset_precision = Decimal(f'1e-{exchange_info['quoteAssetPrecision']}') # 这是USDT的精度
  135. self.price_precision = Decimal(f'1e-{exchange_info['quotePrecision']}') # 这是价格的精度
  136. def _set_state(self, state):
  137. """
  138. 设置系统状态,并打印日志
  139. """
  140. if state in self.STATES:
  141. logger.info(f"状态变更:{self.current_state} -> {state}")
  142. logger.info('')
  143. self.current_state = state
  144. else:
  145. logger.error(f"尝试设置无效状态:{state}")
  146. def run_arbitrage_step(self):
  147. """
  148. 根据当前状态执行套利流程的下一步
  149. 这是一个周期性调用的函数,例如在主循环中调用
  150. """
  151. if self.current_state == self.STATE_CHECK:
  152. self._execute_check()
  153. elif self.current_state == self.STATE_BUYING_ON_EXCHANGE:
  154. self._execute_buy_on_exchange()
  155. elif self.current_state == self.STATE_SELLING_ON_CHAIN:
  156. self._selling_on_chain()
  157. elif self.current_state == self.STATE_WAITING_CHAIN_CONFIRM:
  158. self._wait_chain_confirm()
  159. elif self.current_state == self.STATE_WAITING_EXCHANGE_ROLLBACK:
  160. self._wait_exchange_rollback()
  161. elif self.current_state == self.STATE_WAITING_TRANSFER_ARRIVE:
  162. self._wait_transfer_arrive()
  163. elif self.current_state == self.STATE_TRANSFERRING_TO_CHAIN:
  164. self._execute_transfer_to_chain()
  165. elif self.current_state == self.STATE_WAITING_WITHDRAWAL_CONFIRM:
  166. self._wait_withdrawal_confirm()
  167. elif self.current_state == self.STATE_COMPLETED:
  168. msg = "套利流程成功完成!"
  169. logger.info(msg)
  170. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  171. elif self.current_state == self.STATE_REJECT:
  172. msg = "套利流程被程序拒绝"
  173. logger.error(msg)
  174. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  175. elif self.current_state == self.STATE_FAILED:
  176. msg = "套利流程失败!"
  177. logger.error(msg)
  178. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  179. def _execute_check(self):
  180. """
  181. 前置检查,防止低能错误
  182. """
  183. try:
  184. # step1,檢查交易所的餘額是否夠用,给2%的余量
  185. pseudo_value_to_buy = (self.exchange_buy_amount * self.mexc_price) * Decimal(1.02)
  186. pseudo_value_to_buy = pseudo_value_to_buy.quantize(self.coin_asset_precision, rounding=ROUND_DOWN)
  187. # 交易所套保余额判断
  188. with self.mexc_lock:
  189. balances = self.mexc_data['account_info']['balances']
  190. for balance in balances:
  191. if balance['asset'] == self.base_coin:
  192. if Decimal(balance['free']) < pseudo_value_to_buy:
  193. msg = f"交易所剩余{self.base_coin}: {balance['free']}, 买入要使用:{pseudo_value_to_buy}, 不能触发交易。"
  194. logger.info(msg)
  195. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  196. self._set_state(self.STATE_REJECT)
  197. return
  198. else:
  199. msg = f"交易所剩余{self.base_coin}: {balance['free']}, 买入要使用:{pseudo_value_to_buy}, 余额校验通过。"
  200. logger.info(msg)
  201. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  202. break
  203. # 检查该币对是否有提现权限
  204. if not self.WITHDRAW_ENABLE:
  205. coin_info_formated = pformat(self.withdraw_info, indent=2)
  206. msg = f"{self.coin}不允许提现。\n{coin_info_formated}"
  207. logger.info(msg)
  208. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  209. self._set_state(self.STATE_REJECT)
  210. return
  211. # step2,估算gas
  212. logger.info("獲取區塊信息")
  213. with self.core_lock:
  214. latest_block = copy.deepcopy(self.core_data['block'])
  215. self.tx['maxPriorityFeePerGas'] = int(int(self.tx['maxPriorityFeePerGas']) * self.gas_price_multiplier)
  216. self.tx['maxFeePerGas'] = int(int(latest_block['baseFeePerGas']) * 2 + self.tx['maxPriorityFeePerGas'])
  217. gas_price = Decimal(self.tx['maxPriorityFeePerGas'] + self.tx['maxFeePerGas'])
  218. gas_price_gwei = gas_price / Decimal('1e9')
  219. gas_price_gwei = gas_price_gwei.quantize(Decimal('1e-9'), rounding=ROUND_DOWN)
  220. tx_formated = pformat(self.tx, indent=2)
  221. logger.info(f"鏈上各種校驗\n{tx_formated}")
  222. estimated_gas_origin = web3.w3.eth.estimate_gas(self.tx)
  223. estimated_gas = int(estimated_gas_origin * self.gas_limit_multiplier)
  224. estimated_wei = Decimal(estimated_gas) * gas_price
  225. estimated_eth = Decimal(estimated_wei / Decimal('1e18')) / Decimal(2) # 除以2才是比較接近正常消耗的gas費,否則會過於高估
  226. estimated_eth = estimated_eth.quantize(Decimal('1e-8'), rounding=ROUND_DOWN)
  227. msg = f"估算的燃气量: {estimated_gas}, eth消耗: {estimated_eth}, gas price: {gas_price_gwei} gwei, gas估算通過"
  228. logger.info(msg)
  229. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  230. # step3, 費用與利潤比較
  231. estimated_eth_value = estimated_eth * self.eth_price
  232. estimated_eth_value = estimated_eth_value.quantize(Decimal('1e-2'), rounding=ROUND_DOWN)
  233. cost = estimated_eth_value + self.WITHDRAW_FEE * self.mexc_price # 成本
  234. if self.profit < cost:
  235. msg = f"費用判斷不通過! profit: {self.profit}, eth_value:{estimated_eth_value}, eth: {estimated_eth}, eth_price: {self.eth_price}"
  236. logger.info(msg)
  237. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  238. self._set_state(self.STATE_REJECT)
  239. return
  240. msg = f"費用判斷通過! profit: {self.profit}, eth_value:{estimated_eth_value}, eth: {estimated_eth}, eth_price: {self.eth_price}"
  241. logger.info(msg)
  242. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  243. # step4, 與賬戶eth餘額比對(至少留0.002,不然沒gas了)
  244. MARGIN = Decimal(0.002)
  245. # 暫時鎖住core_data
  246. with self.core_lock:
  247. eth_balance = self.core_data['eth_balance']
  248. if eth_balance - estimated_eth < MARGIN:
  249. msg = f"gas餘額判斷不通過! MARGIN:{MARGIN}, estimated_eth: {estimated_eth}, eth_balance: {eth_balance}"
  250. logger.info(msg)
  251. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  252. self._set_state(self.STATE_REJECT)
  253. return
  254. # 餘額判斷通過后預扣除balance,防止綫程更新不及時導致其他綫程誤發送tx
  255. self.core_data['eth_balance'] = self.core_data['eth_balance'] - estimated_eth
  256. msg = f"gas餘額判斷通過! MARGIN:{MARGIN}, estimated_eth: {estimated_eth}, eth_balance: {eth_balance}"
  257. logger.info(msg)
  258. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  259. # final, 設定交易狀態,開始交易
  260. self._set_state(self.STATE_BUYING_ON_EXCHANGE)
  261. except Exception as e:
  262. exc_traceback = traceback.format_exc()
  263. msg = f"前置檢查未通過\n{exc_traceback}"
  264. logger.error(msg)
  265. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  266. self._set_state(self.STATE_REJECT)
  267. # traceback.print_exc()
  268. # 以下是每个状态对应的具体执行函数
  269. def _execute_buy_on_exchange(self):
  270. """
  271. 在中心化交易所买入现货
  272. """
  273. msg = "执行:中心化交易所买入现货..."
  274. logger.info(msg)
  275. add_state_flow_entry(self.process_item, self.current_state, msg, "pending")
  276. try:
  277. order_times = 0
  278. self.already_bought_amount = Decimal(0)
  279. while self.already_bought_amount < self.exchange_buy_amount and order_times < 5:
  280. order_times = order_times + 1
  281. # 第一步直接买入,这个数量用固定数量
  282. pseudo_amount_to_buy = self.exchange_buy_amount - self.already_bought_amount
  283. # 处理精度
  284. pseudo_amount_to_buy = pseudo_amount_to_buy.quantize(self.coin_asset_precision, rounding=ROUND_DOWN)
  285. # 初始化 quantity 变量
  286. quantity_for_api = None
  287. # 用求余法判断是否是整数
  288. if pseudo_amount_to_buy % 1 == 0:
  289. # 如果是整数,转换为 int 类型。某些API可能只接受整数交易对的整数数量
  290. quantity_for_api = int(pseudo_amount_to_buy)
  291. else:
  292. # 如果是非整数,转换为 float 类型。这是最常见的API数量类型
  293. quantity_for_api = float(pseudo_amount_to_buy)
  294. order_params = {
  295. "symbol": self.symbol.replace('_', ''),
  296. "side": "BUY",
  297. "type": "MARKET",
  298. "quantity": quantity_for_api, # 以【幣】的數量進行買入
  299. }
  300. order_params_formated = pformat(order_params, indent=2)
  301. exchange_buy_order = mexc.trade.post_order(order_params)
  302. exchange_buy_order_formated = pformat(exchange_buy_order, indent=2)
  303. msg = f"[{order_times}]交易所现货买入订单已发送 \n params:{order_params_formated} \n rst: {exchange_buy_order_formated}"
  304. if 'orderId' not in exchange_buy_order:
  305. logger.error(msg)
  306. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  307. continue
  308. # 查询交易所订单状态
  309. exchange_buy_order_id = exchange_buy_order['orderId']
  310. waiting_times = 5
  311. while waiting_times > 0:
  312. params = {
  313. "symbol": self.symbol.replace('_', ''),
  314. "orderId": exchange_buy_order_id
  315. }
  316. order = mexc.trade.get_order(params)
  317. if order['status'] in ["FILLED", "PARTIALLY_CANCELED"]:
  318. # 以实际成交数量为准
  319. money = Decimal(order['cummulativeQuoteQty'])
  320. self.already_bought_amount = self.already_bought_amount + Decimal(order['executedQty'])
  321. self.buy_value = self.buy_value + money
  322. self.buy_price = self.buy_value / self.already_bought_amount
  323. self.buy_price = self.buy_price.quantize(self.price_precision, rounding=ROUND_DOWN)
  324. order_formated = pformat(order, indent=2)
  325. msg = f"交易所现货买入订单已完成, 价格:{self.buy_price}, money: {money}\n order: {order_formated}"
  326. logger.info(msg)
  327. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  328. self.exchange_withdrawal_amount = self.already_bought_amount
  329. break
  330. else:
  331. time.sleep(1)
  332. waiting_times = waiting_times - 1
  333. if order_times < 5:
  334. msg = 'mexc现货买入流程完成'
  335. logger.info(msg)
  336. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  337. self._set_state(self.STATE_SELLING_ON_CHAIN)
  338. else:
  339. msg = 'mexc现货买入流程失败, 重试次数大于5'
  340. logger.info(msg)
  341. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  342. self._set_state(self.STATE_WAITING_EXCHANGE_ROLLBACK)
  343. except Exception as e:
  344. exc_traceback = traceback.format_exc()
  345. msg = f"交易所现货买入下单失败\n{exc_traceback}"
  346. logger.error(msg)
  347. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  348. self._set_state(self.STATE_FAILED)
  349. # traceback.print_exc()
  350. def _selling_on_chain(self):
  351. """
  352. 在链上执行卖出操作
  353. """
  354. msg = "执行:链上卖出操作..."
  355. logger.info(msg)
  356. add_state_flow_entry(self.process_item, self.current_state, msg, "pending")
  357. try:
  358. # 交易前nonce
  359. with self.core_lock:
  360. self.tx['nonce'] = self.core_data['nonce']
  361. # 调用链上客户端执行卖出交易
  362. signed_tx = web3._sign(self.tx, self.gas_limit_multiplier)
  363. self.chain_tx_hash = web3.w3.to_hex(signed_tx.hash)
  364. try:
  365. # 主要节点先发交易
  366. web3.w3.eth.send_raw_transaction(signed_tx.raw_transaction)
  367. # 使用备用节点再发一次交易
  368. web3_backup.w3.eth.send_raw_transaction(signed_tx.raw_transaction)
  369. except Exception as e:
  370. msg = f"据反饋說链上卖出失败:{e}, 交易哈希:{self.chain_tx_hash}"
  371. logger.error(msg)
  372. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  373. # 交易成功后刷新全局nonce
  374. with self.core_lock:
  375. self.core_data['nonce'] = self.core_data['nonce'] + 1
  376. block_number = self.core_data['block_number']
  377. # 將hash放入pending裏,等待確認
  378. with self.pending_lock:
  379. self.pending_data[self.chain_tx_hash] = {
  380. "block_number": block_number,
  381. "tx_details": None,
  382. "reponse": None,
  383. }
  384. # 交易成功
  385. msg = f"再次確認交易是否上鏈:{self.chain_tx_hash}"
  386. logger.info(msg)
  387. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  388. self._set_state(self.STATE_WAITING_CHAIN_CONFIRM)
  389. except Exception as e:
  390. exc_traceback = traceback.format_exc()
  391. msg = f"鏈上買入未處理的錯誤, 交易哈希:{self.chain_tx_hash}\n{exc_traceback}"
  392. logger.error(msg)
  393. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  394. self._set_state(self.STATE_WAITING_CHAIN_CONFIRM)
  395. # traceback.print_exc()
  396. def _wait_chain_confirm(self):
  397. """
  398. 等待链上交易确认
  399. """
  400. chain_tx_hash = self.chain_tx_hash
  401. msg = f"等待链上交易确认:{chain_tx_hash}"
  402. logger.info(msg)
  403. add_state_flow_entry(self.process_item, self.current_state, msg, "pending")
  404. try:
  405. # 給120秒時間進行確認
  406. waiting_times = 120
  407. while waiting_times > 0:
  408. with self.pending_lock:
  409. tx_details = copy.deepcopy(self.pending_data[chain_tx_hash]['tx_details'])
  410. if tx_details is None:
  411. waiting_times = waiting_times - 1
  412. time.sleep(1)
  413. continue
  414. # # 交易確認后,移除出pending列表
  415. # with self.pending_lock:
  416. # del self.pending_data[chain_tx_hash]
  417. # 交易失敗的邏輯處理,直接進行回滾
  418. if 'fromTokenDetails' not in tx_details \
  419. or 'toTokenDetails' not in tx_details:
  420. msg = f"链上交易失敗。{tx_details}"
  421. logger.info(msg)
  422. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  423. self._set_state(self.STATE_WAITING_EXCHANGE_ROLLBACK)
  424. break
  425. tx_details_formated = pformat(tx_details, indent=2)
  426. msg = f"链上交易已确认。\n details: {tx_details_formated}"
  427. logger.info(msg)
  428. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  429. # 獲取交易信息
  430. from_token_details = tx_details['fromTokenDetails']
  431. to_token_details = tx_details['toTokenDetails']
  432. from_token_amount = Decimal(from_token_details['amount'])
  433. from_token_amount_human = from_token_amount / (Decimal(10) ** self.from_token_decimal)
  434. from_token_amount_human = from_token_amount_human.quantize(self.coin_asset_precision, rounding=ROUND_DOWN)
  435. to_token_amount = Decimal(to_token_details['amount'])
  436. to_token_amount_human = to_token_amount / (Decimal(10) ** self.to_token_decimal)
  437. to_token_amount_human = to_token_amount_human.quantize(self.base_coin_asset_precision, rounding=ROUND_DOWN)
  438. self.sell_value = to_token_amount_human
  439. self.sell_price = to_token_amount_human / from_token_amount_human
  440. self.sell_price = self.sell_price.quantize(self.price_precision, rounding=ROUND_DOWN)
  441. # 交易預估利潤百分比計算
  442. rate = self.sell_price / self.buy_price
  443. rate = rate.quantize(Decimal('1e-4'), rounding=ROUND_DOWN)
  444. msg = f"【比率{rate}】。用{from_token_amount_human}卖出{to_token_amount_human},价格{self.sell_price}。"
  445. logger.info(msg)
  446. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  447. # 計算實際利潤
  448. value = self.sell_value - self.buy_value
  449. actual_gas_price = Decimal(tx_details['gasPrice'])
  450. actual_gas_price_gwei = actual_gas_price / Decimal('1e9')
  451. actual_gas_price_gwei = actual_gas_price_gwei.quantize(Decimal('1e-9'), rounding=ROUND_DOWN)
  452. actual_gas_used = Decimal(tx_details['gasUsed'])
  453. actual_wei = actual_gas_price * actual_gas_used
  454. actual_eth = actual_wei / Decimal('1e18')
  455. actual_eth = actual_eth.quantize(Decimal('1e-8'), rounding=ROUND_DOWN)
  456. actual_fee_used = actual_eth * self.eth_price
  457. actual_fee_used = actual_fee_used.quantize(Decimal('1e-4'), rounding=ROUND_DOWN)
  458. actual_profit = value - actual_fee_used - self.WITHDRAW_FEE * self.mexc_price
  459. msg = f"【最終利潤】{actual_profit}{self.base_coin}(已扣除所有手續費、滑點)\
  460. \n鏈上ETH使用: {actual_eth}({actual_fee_used} USD), gas_price: {actual_gas_price_gwei} GWEI, gas_used: {actual_gas_used}\
  461. \n交易所出售代幣利潤: {value}, 提現手續費: {self.WITHDRAW_FEE}\
  462. "
  463. logger.info(msg)
  464. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  465. self._set_state(self.STATE_WAITING_TRANSFER_ARRIVE)
  466. break
  467. # 如果120秒都沒確認成功,該交易大概率沒有上鏈
  468. if waiting_times <= 0:
  469. with self.pending_lock:
  470. response = copy.deepcopy(self.pending_data[chain_tx_hash])
  471. response_formated = pformat(response, indent=2)
  472. msg = f"链上交易确认失败:{chain_tx_hash}\n{response_formated}"
  473. logger.error(msg)
  474. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  475. self._set_state(self.STATE_WAITING_EXCHANGE_ROLLBACK)
  476. except Exception as e:
  477. exc_traceback = traceback.format_exc()
  478. msg = f"查询链上确认状态时发生错误\n{exc_traceback}"
  479. logger.error(msg)
  480. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  481. self._set_state(self.STATE_WAITING_EXCHANGE_ROLLBACK)
  482. # traceback.print_exc()
  483. def _wait_exchange_rollback(self):
  484. """
  485. 市价进行交易所交易回滚
  486. """
  487. msg = "执行:中心化交易所卖出现货回滚..."
  488. logger.info(msg)
  489. add_state_flow_entry(self.process_item, self.current_state, msg, "pending")
  490. try:
  491. # 使用预提现数量进行回滚
  492. pseudo_amount_to_sell = Decimal(self.already_bought_amount)
  493. # 处理精度
  494. pseudo_amount_to_sell = pseudo_amount_to_sell.quantize(self.coin_asset_precision, rounding=ROUND_DOWN)
  495. # 交易所币余额判断
  496. with self.mexc_lock:
  497. balances = self.mexc_data['account_info']['balances']
  498. for balance in balances:
  499. if balance['asset'] == self.coin:
  500. pseudo_amount_to_sell = min(Decimal(balance['free']), pseudo_amount_to_sell)
  501. if pseudo_amount_to_sell * self.mexc_price < Decimal('10'):
  502. msg = f"交易所剩余{self.coin}: {balance['free']}, 小于10, 不能触发回滚交易。"
  503. logger.info(msg)
  504. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  505. self._set_state(self.STATE_FAILED)
  506. return
  507. else:
  508. msg = f"交易所剩余{self.coin}: {balance['free']}, 交易所准备使用:{pseudo_amount_to_sell}, 余额校验通过(可以回滚)。"
  509. logger.info(msg)
  510. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  511. break
  512. ready_to_sell = pseudo_amount_to_sell
  513. order_params = {
  514. "symbol": self.symbol.replace('_', ''),
  515. "side": "SELL",
  516. "price": self.buy_price,
  517. "type": "LIMIT",
  518. "quantity": float(pseudo_amount_to_sell),
  519. }
  520. order_params_formated = pformat(order_params, indent=2)
  521. exchange_sell_order = mexc.trade.post_order(order_params)
  522. exchange_sell_order_formated = pformat(exchange_sell_order, indent=2)
  523. if 'orderId' not in exchange_sell_order:
  524. msg = f"【回滚】交易所现货卖出下单失败\n params:{order_params_formated}\norder: {exchange_sell_order_formated}"
  525. logger.error(msg)
  526. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  527. self._set_state("FAILED")
  528. return
  529. exchange_sell_order_id = exchange_sell_order['orderId']
  530. msg = f"【回滚】交易所现货卖出订单已发送, 订单ID: {exchange_sell_order_id}"
  531. logger.info(msg)
  532. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  533. # 查询交易所订单状态
  534. last_query_rst = None
  535. while True:
  536. params = {
  537. "symbol": self.symbol.replace('_', ''),
  538. "orderId": exchange_sell_order_id
  539. }
  540. order = mexc.trade.get_order(params)
  541. order_formated = pformat(order, indent=2)
  542. last_query_rst = order
  543. if order['status'] == "FILLED":
  544. money = Decimal(order['cummulativeQuoteQty'])
  545. amount = self.exchange_buy_amount
  546. price = money / amount
  547. price = price.quantize(self.price_precision, rounding=ROUND_DOWN)
  548. msg = f"【回滚】交易所现货卖出订单已完全成交, 价格:{price}。\norder: {order_formated}"
  549. logger.info(msg)
  550. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  551. self._set_state(self.STATE_FAILED)
  552. return
  553. else:
  554. # 继续等待成交
  555. pass
  556. time.sleep(1)
  557. last_query_rst_formated = pformat(last_query_rst, indent=2)
  558. msg = f"【回滚】回滚交易订单查询超时, 订单ID: {exchange_sell_order_id}\n最终状态:{last_query_rst_formated}"
  559. logger.info(msg)
  560. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  561. self._set_state(self.STATE_FAILED)
  562. except Exception as e:
  563. exc_traceback = traceback.format_exc()
  564. msg = f"【回滚】交易所回滚交易失败\n{exc_traceback}"
  565. logger.error(msg)
  566. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  567. self._set_state(self.STATE_FAILED)
  568. # traceback.print_exc()
  569. def _wait_transfer_arrive(self):
  570. """
  571. 等待资产在交易所内到账
  572. """
  573. msg = f"等待资产在交易所到账..."
  574. logger.info(msg)
  575. add_state_flow_entry(self.process_item, self.current_state, msg, "pending")
  576. try:
  577. is_arrived = False
  578. # 先進行快速提現判斷,如果不滿足條件就走後面的等待充值模式,雙模,這個步驟最多等待10分鐘
  579. waiting_times = 10
  580. last_deposit_state = None
  581. while waiting_times > 0:
  582. time.sleep(60)
  583. with self.mexc_lock:
  584. deposit_list = copy.deepcopy(self.mexc_data['deposit_list'])
  585. # 是否已經在列表中了,抹茶識別充值會稍微有點慢,所以要耐心等
  586. is_list = False
  587. # pending中的數量
  588. pending_amount = Decimal(0)
  589. for deposit in deposit_list:
  590. # 不屬于該路徑需要監聽的代幣
  591. if deposit['coin'] != f'{self.base_coin}-{self.NETWORK}':
  592. continue
  593. # 處理pending數量
  594. if Decimal(deposit['confirmTimes']) < Decimal(deposit['unlockConfirm']):
  595. pending_amount = pending_amount + Decimal(deposit['amount'])
  596. # 檢查到沒到列表中
  597. if deposit['transHash'] != self.chain_tx_hash:
  598. continue
  599. last_deposit_state = deposit
  600. is_list = True
  601. # 檢查是否滿足快速提現的條件
  602. if is_list:
  603. # 交易所代幣余额判断
  604. with self.mexc_lock:
  605. balances = copy.deepcopy(self.mexc_data['account_info']['balances'])
  606. asset_balance = 0
  607. for balance in balances:
  608. if balance['asset'] == self.base_coin:
  609. asset_balance = Decimal(balance['free'])
  610. # 交易所賣出餘額
  611. buy_value = self.buy_value
  612. # 最終判斷
  613. if buy_value + asset_balance > pending_amount:
  614. last_deposit_state_formated = pformat(last_deposit_state, indent=2)
  615. msg = f"【flash】资产可以進行快速提現。\nbuy_value {buy_value}, asset_balance {asset_balance}, pending_amount {pending_amount}\n{last_deposit_state_formated}"
  616. logger.info(msg)
  617. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  618. self._set_state(self.STATE_TRANSFERRING_TO_CHAIN)
  619. return
  620. else:
  621. logger.info(f"buy_value{buy_value}, asset_balance{asset_balance}, pending_amount{pending_amount}")
  622. logger.info(f"正在檢查快速提現條件...({waiting_times}/10)")
  623. waiting_times = waiting_times - 1
  624. # 最多等待30分钟
  625. waiting_times = 30
  626. last_deposit_state = None
  627. last_deposit_state_formated = None
  628. while waiting_times > 0:
  629. with self.mexc_lock:
  630. deposit_list = copy.deepcopy(self.mexc_data['deposit_list'])
  631. for deposit in deposit_list:
  632. if deposit['transHash'] != self.chain_tx_hash:
  633. continue
  634. last_deposit_state = deposit
  635. last_deposit_state_formated = pformat(last_deposit_state, indent=2)
  636. logger.info(f"等待资产在交易所到账...({deposit['confirmTimes']}/{deposit['unlockConfirm']})")
  637. if Decimal(deposit['confirmTimes']) >= Decimal(deposit['unlockConfirm']):
  638. is_arrived = True
  639. if is_arrived:
  640. msg = f"资产已在交易所到账。\n{last_deposit_state_formated}"
  641. logger.info(msg)
  642. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  643. self._set_state(self.STATE_TRANSFERRING_TO_CHAIN)
  644. return
  645. time.sleep(60)
  646. waiting_times = waiting_times - 1
  647. msg = f"等待充值到账超时(超过30分钟)。\n{last_deposit_state_formated}"
  648. logger.error(msg)
  649. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  650. self._set_state(self.STATE_FAILED)
  651. except Exception as e:
  652. msg = f"查询交易所到账状态时发生错误:{e}"
  653. logger.error(msg)
  654. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  655. self._set_state(self.STATE_FAILED)
  656. traceback.print_exc()
  657. def _execute_transfer_to_chain(self):
  658. """
  659. 将交易后获得的币(例如RATO)转账回链上
  660. """
  661. msg = "执行:交易所计价资产转账回链上..."
  662. logger.info(msg)
  663. add_state_flow_entry(self.process_item, self.current_state, msg, "pending")
  664. try:
  665. self.exchange_buy_amount = self.exchange_buy_amount.quantize(self.coin_asset_precision, rounding=ROUND_DOWN)
  666. pseudo_withdrawal_amount = str(self.exchange_buy_amount)
  667. withdrawal_params = {
  668. 'coin': self.coin,
  669. 'netWork': 'ETH',
  670. 'address': self.user_wallet,
  671. 'amount': pseudo_withdrawal_amount
  672. }
  673. withdrawal_params_formated = pformat(withdrawal_params, indent=2)
  674. withdrawal_rst = mexc.wallet.post_withdraw(withdrawal_params)
  675. withdrawal_rst_formated = pformat(withdrawal_rst, indent=2)
  676. if "id" not in withdrawal_rst:
  677. msg = f"交易所提现失败\n參數: {withdrawal_params_formated}\n響應: {withdrawal_rst_formated}"
  678. logger.error(msg)
  679. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  680. self._set_state(self.STATE_FAILED)
  681. else:
  682. self.exchange_withdrawal_id = withdrawal_rst["id"]
  683. msg = f"交易所提现已发送\n{withdrawal_rst_formated}"
  684. logger.info(msg)
  685. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  686. self._set_state(self.STATE_WAITING_WITHDRAWAL_CONFIRM)
  687. except Exception as e:
  688. msg = f"转账回链上失败: {e}"
  689. logger.error(msg)
  690. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  691. self._set_state(self.STATE_FAILED)
  692. traceback.print_exc()
  693. def _wait_withdrawal_confirm(self):
  694. """
  695. 等待交易所提现到链上确认
  696. """
  697. exchange_withdrawal_id = self.exchange_withdrawal_id
  698. msg = f"等待交易所提现确认:{exchange_withdrawal_id}"
  699. logger.info(msg)
  700. add_state_flow_entry(self.process_item, self.current_state, msg, "pending")
  701. try:
  702. is_arrived = False
  703. # 最多等待30分钟
  704. waiting_times = 60
  705. last_deposit_state = None
  706. last_deposit_state_formated = None
  707. while waiting_times > 0:
  708. with self.mexc_lock:
  709. withdraw_list = copy.deepcopy(self.mexc_data['withdraw_list'])
  710. if not isinstance(withdraw_list, list):
  711. msg = f"查询交易所提现状态时发生错误:{withdraw_list}"
  712. logger.error(msg)
  713. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  714. self._set_state("FAILED")
  715. return
  716. for withdrawal in withdraw_list:
  717. if withdrawal['id'] != exchange_withdrawal_id:
  718. continue
  719. last_deposit_state = withdrawal
  720. last_deposit_state_formated = pformat(last_deposit_state, indent=2)
  721. if withdrawal['status'] == 7:
  722. is_arrived = True
  723. if is_arrived:
  724. msg = f"提现请求已上链:\n{last_deposit_state_formated}"
  725. logger.info(msg)
  726. add_state_flow_entry(self.process_item, self.current_state, msg, "success")
  727. self._set_state(self.STATE_COMPLETED)
  728. return
  729. time.sleep(30)
  730. waiting_times = waiting_times - 1
  731. msg = f"等待提现到账超时(超过30分钟):\n{last_deposit_state_formated}"
  732. logger.error(msg)
  733. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  734. self._set_state(self.STATE_FAILED)
  735. except Exception as e:
  736. msg = f"查询交易所提现状态时发生错误:{e}"
  737. logger.error(msg)
  738. add_state_flow_entry(self.process_item, self.current_state, msg, "fail")
  739. self._set_state(self.STATE_FAILED)
  740. traceback.print_exc()