From 9fb6af6246d8ecb146902f9336552c8103c59ae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bego=C3=B1a=20Alvarez?= Date: Tue, 4 Jun 2024 12:18:21 +0200 Subject: [PATCH] feat: add IOTA EVM explorer link --- client/src/app/AppUtils.tsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/client/src/app/AppUtils.tsx b/client/src/app/AppUtils.tsx index 71137b95a..521f48459 100644 --- a/client/src/app/AppUtils.tsx +++ b/client/src/app/AppUtils.tsx @@ -86,6 +86,16 @@ export const getPages = (currentNetwork: INetwork | undefined, networks: INetwor label: "EVM", disabled: !hasNetworks || !isStardust, routes: [ + { + label: "IOTA EVM Explorer", + url: "https://explorer.evm.iota.org/", + isExternal: true, + }, + { + label: "IOTA EVM Testnet Explorer", + url: "https://explorer.evm.testnet.iotaledger.net/", + isExternal: true, + }, { label: "ShimmerEVM Explorer", url: "https://explorer.evm.shimmer.network/", @@ -96,11 +106,6 @@ export const getPages = (currentNetwork: INetwork | undefined, networks: INetwor url: "https://explorer.evm.testnet.shimmer.network/", isExternal: true, }, - { - label: "IOTA EVM Testnet Explorer", - url: "https://explorer.evm.testnet.iotaledger.net/", - isExternal: true, - }, ], }, ];