Skip to content

Commit

Permalink
fix: set url for solana transactions to the storage account
Browse files Browse the repository at this point in the history
  • Loading branch information
barnjamin committed Oct 26, 2023
1 parent 48f3895 commit 8c50455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/explorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const explorerTx = (chainId: ChainId, tx: string) =>
: chainId === CHAIN_ID_ACALA
? `https://blockscout.acala.network/tx/${tx}`
: chainId === CHAIN_ID_SOLANA
? `https://solscan.io/tx/${tx}`
? `https://solscan.io/account/${tx}`
: chainId === CHAIN_ID_TERRA
? `https://finder.terra.money/columbus-5/tx/${tx}`
: chainId === CHAIN_ID_TERRA2
Expand Down

0 comments on commit 8c50455

Please sign in to comment.