Skip to content

Commit

Permalink
dashboard: change explorer rpc
Browse files Browse the repository at this point in the history
  • Loading branch information
panoel authored and evan-gray committed Jan 12, 2024
1 parent 13dc6d8 commit f0e4caf
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions common/src/explorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '';
Expand Down

0 comments on commit f0e4caf

Please sign in to comment.