From 79ff0270948ad031ae8b7dcbec2af1a3746bdf3c Mon Sep 17 00:00:00 2001 From: Exlo <46317321+Exlo84@users.noreply.github.com> Date: Fri, 15 Oct 2021 21:00:37 +0200 Subject: [PATCH] updated explorer links --- renderer/tableTransactions.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/renderer/tableTransactions.js b/renderer/tableTransactions.js index 741b0a7..8e40b79 100755 --- a/renderer/tableTransactions.js +++ b/renderer/tableTransactions.js @@ -94,11 +94,11 @@ class tableTransactions { $("#txBlockHeight").html(rowData[1]); $("#txTimestamp").html(rowData[2]); $("#txHash").html(rowData[3]); - $("#txHash").attr("href", vsprintf("https://explorer.ether1.org/tx/%s", [rowData[3]])); + $("#txHash").attr("href", vsprintf("https://explorer.ethoprotocol.com/tx/%s", [rowData[3]])); $("#txFromAddress").html(rowData[4]); - $("#txFromAddress").attr("href", vsprintf("https://explorer.ether1.org/addr/%s", [rowData[4]])); + $("#txFromAddress").attr("href", vsprintf("https://explorer.ethoprotocol.com/address/%s", [rowData[4]])); $("#txToAddress").html(rowData[5]); - $("#txToAddress").attr("href", vsprintf("https://explorer.ether1.org/addr/%s", [rowData[5]])); + $("#txToAddress").attr("href", vsprintf("https://explorer.ethoprotocol.com/address/%s", [rowData[5]])); $("#txValue").html(web3Local.utils.fromWei(EthoUtils.toFixed(parseFloat(rowData[6])).toString(), "ether")); $("#dlgTransactionInfo a").off("click").on("click", function(even) {