Skip to content

Commit 5298c49

Browse files
committed
common: fix exploreVaa url
1 parent 3a6ad3a commit 5298c49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/src/explorer.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ export const explorerTx = (network: Network, chainId: ChainId, tx: string) =>
206206
: // chainId === chainToChainId('Wormscan') <-- not supported on testnet dashboard
207207
'';
208208

209-
export const explorerVaa = (network: string, key: string) =>
210-
network === 'mainnet'
209+
export const explorerVaa = (network: Network, key: string) =>
210+
network === 'Mainnet'
211211
? `https://wormholescan.io/#/tx/${key}`
212212
: `https://wormholescan.io/#/tx/${key}?network=TESTNET`;
213213

0 commit comments

Comments
 (0)