From efaefd2fd901b93401d71ff494d03e78531f622f Mon Sep 17 00:00:00 2001 From: RK Date: Thu, 24 Jul 2025 01:22:09 +0000 Subject: [PATCH] Replace broken Blocktrades.us links with Binance (HIVE) and Upbit (HBD) --- src/app/components/modules/UserWallet.jsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/app/components/modules/UserWallet.jsx b/src/app/components/modules/UserWallet.jsx index 2364a322..c1e6c491 100644 --- a/src/app/components/modules/UserWallet.jsx +++ b/src/app/components/modules/UserWallet.jsx @@ -68,15 +68,14 @@ class UserWallet extends React.Component { const new_window = window.open(); new_window.opener = null; new_window.location = - 'https://blocktrades.us/?input_coin_type=eth&output_coin_type=hive&receive_address=' + - name; + 'https://www.binance.com/en/trade/HIVE_USDT'; }; this.onShowWithdrawHive = (e) => { e.preventDefault(); const new_window = window.open(); new_window.opener = null; new_window.location = - 'https://blocktrades.us/unregistered_trade/hive/eth'; + 'https://www.binance.com/en/trade/HIVE_USDT'; }; this.onShowDepositPower = (currentUserName, e) => { e.preventDefault(); @@ -91,15 +90,14 @@ class UserWallet extends React.Component { const new_window = window.open(); new_window.opener = null; new_window.location = - 'https://blocktrades.us/?input_coin_type=eth&output_coin_type=hbd&receive_address=' + - currentUserName; + 'https://upbit.com/exchange?code=CRIX.UPBIT.BTC-HBD'; }; this.onShowWithdrawHBD = (e) => { e.preventDefault(); const new_window = window.open(); new_window.opener = null; new_window.location = - 'https://blocktrades.us/unregistered_trade/hbd/eth'; + 'https://upbit.com/exchange?code=CRIX.UPBIT.BTC-HBD'; }; this.shouldComponentUpdate = shouldComponentUpdate(this, 'UserWallet'); } -- GitLab