From 3c8dd6e3d404a7ae79e491f223998c19ac369fd3 Mon Sep 17 00:00:00 2001 From: Paul Noel Date: Fri, 12 Jan 2024 09:23:58 -0600 Subject: [PATCH] dashboard: change explorer rpc --- common/src/explorer.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/common/src/explorer.ts b/common/src/explorer.ts index 9b4a1c8d..601a408a 100644 --- a/common/src/explorer.ts +++ b/common/src/explorer.ts @@ -136,10 +136,7 @@ export const explorerTx = (chainId: ChainId, tx: string) => ? `https://bigdipper.live/wormhole/transactions/${tx}` : ''; -export const explorerVaa = (key: string) => - `https://wormhole.com/explorer/?emitterChain=${key.split('/')[0]}&emitterAddress=${ - key.split('/')[1] - }&sequence=${key.split('/')[2]}`; +export const explorerVaa = (key: string) => `https://wormholescan.io/#/tx/${key}`; export const getExplorerTxHash = (chain: ChainId, txHash: string) => { let explorerTxHash = '';