Browse Source

bridge_ui: update oasis explorer links

Evan Gray 3 years ago
parent
commit
8eea035490
2 changed files with 3 additions and 3 deletions
  1. 2 2
      bridge_ui/src/components/ShowTx.tsx
  2. 1 1
      bridge_ui/src/components/SmartAddress.tsx

+ 2 - 2
bridge_ui/src/components/ShowTx.tsx

@@ -58,9 +58,9 @@ export default function ShowTx({
           tx?.id
         }`
       : chainId === CHAIN_ID_OASIS
-      ? `https://explorer.${
+      ? `https://${
           CLUSTER === "testnet" ? "testnet." : ""
-        }oasis.updev.si/tx/${tx?.id}`
+        }explorer.emerald.oasis.dev/tx/${tx?.id}`
       : chainId === CHAIN_ID_SOLANA
       ? `https://explorer.solana.com/tx/${tx?.id}${
           CLUSTER === "testnet"

+ 1 - 1
bridge_ui/src/components/SmartAddress.tsx

@@ -119,7 +119,7 @@ export default function SmartAddress({
     : chainId === CHAIN_ID_OASIS
     ? `https://explorer.${
         CLUSTER === "testnet" ? "testnet." : ""
-      }oasis.updev.si/address/${useableAddress}`
+      }explorer.emerald.oasis.dev/address/${useableAddress}`
     : chainId === CHAIN_ID_SOLANA
     ? `https://explorer.solana.com/address/${useableAddress}${
         CLUSTER === "testnet"