From 5a379ee0fcb33ed1c8c2bf15b1085cc9a7b3eeb3 Mon Sep 17 00:00:00 2001 From: glais <16027769+glais@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:36:41 +1000 Subject: [PATCH 1/3] Added 3XPL to explorer options --- app/constants/explorers.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/constants/explorers.js b/app/constants/explorers.js index 0596fcde9..fb3afe5eb 100644 --- a/app/constants/explorers.js +++ b/app/constants/explorers.js @@ -41,4 +41,10 @@ export const EXPLORERS = [ name: 'https://shakescan.com/name/%s', address: 'https://shakescan.com/address/%s', }, + { + label: '3XPL Handshake', + tx: 'https://3xpl.com/handshake/transaction/%s', + name: 'https://3xpl.com/handshake/address/%s', + address: 'https://3xpl.com/handshake/address/%s', + }, ] From ea32e958247cf2ac4b886c16e67fa99287ece634 Mon Sep 17 00:00:00 2001 From: glais <16027769+glais@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:47:27 +1000 Subject: [PATCH 2/3] Added name to 3XPL and removed broken explorers --- app/constants/explorers.js | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/app/constants/explorers.js b/app/constants/explorers.js index fb3afe5eb..b75023e1c 100644 --- a/app/constants/explorers.js +++ b/app/constants/explorers.js @@ -24,27 +24,9 @@ export const EXPLORERS = [ address: 'https://e.hnsfans.com/address/%s', }, { - label: 'Block Explorer', - tx: 'https://blockexplorer.com/txs/%s', - name: 'https://blockexplorer.com/names/%s', - address: 'https://blockexplorer.com/addrs/%s', - }, - { - label: 'HNScan', - tx: 'https://hnscan.com/tx/%s', - name: 'https://hnscan.com/name/%s', - address: 'https://hnscan.com/address/%s', - }, - { - label: 'Shake Scan', - tx: 'https://shakescan.com/transaction/%s', - name: 'https://shakescan.com/name/%s', - address: 'https://shakescan.com/address/%s', - }, - { - label: '3XPL Handshake', + label: '3XPL', tx: 'https://3xpl.com/handshake/transaction/%s', - name: 'https://3xpl.com/handshake/address/%s', + name: 'https://3xpl.com/search?q=%s%2F', address: 'https://3xpl.com/handshake/address/%s', }, ] From aab8b065a86247698a377afb8801b45acebbde91 Mon Sep 17 00:00:00 2001 From: glais <16027769+glais@users.noreply.github.com> Date: Fri, 18 Aug 2023 22:40:35 +1000 Subject: [PATCH 3/3] Made 3xpl lowercase --- app/constants/explorers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/constants/explorers.js b/app/constants/explorers.js index b75023e1c..321d86470 100644 --- a/app/constants/explorers.js +++ b/app/constants/explorers.js @@ -24,7 +24,7 @@ export const EXPLORERS = [ address: 'https://e.hnsfans.com/address/%s', }, { - label: '3XPL', + label: '3xpl', tx: 'https://3xpl.com/handshake/transaction/%s', name: 'https://3xpl.com/search?q=%s%2F', address: 'https://3xpl.com/handshake/address/%s',