From 40584dce62344fc3cf69989f4a8255f7659e2893 Mon Sep 17 00:00:00 2001 From: konoart Date: Tue, 15 Mar 2022 13:44:22 +0100 Subject: [PATCH] solana update explorer address urls --- packages/cryptoassets/src/currencies.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/cryptoassets/src/currencies.ts b/packages/cryptoassets/src/currencies.ts index ba7b83d31..572b3e111 100644 --- a/packages/cryptoassets/src/currencies.ts +++ b/packages/cryptoassets/src/currencies.ts @@ -2298,11 +2298,11 @@ const cryptocurrenciesById: Record = { ], explorerViews: [ { - address: "https://explorer.solana.com/", + address: "https://explorer.solana.com/address/$address", tx: "https://explorer.solana.com/tx/$hash", }, { - address: "https://solanabeach.io/", + address: "https://solanabeach.io/address/$address", tx: "https://solanabeach.io/transaction/$hash", }, ], @@ -3047,11 +3047,11 @@ const cryptocurrenciesById: Record = { ].map(makeTestnetUnit), explorerViews: [ { - address: "https://explorer.solana.com/?cluster=testnet", + address: "https://explorer.solana.com/address/$address?cluster=testnet", tx: "https://explorer.solana.com/tx/$hash?cluster=testnet", }, { - address: "https://solanabeach.io/?cluster=testnet", + address: "https://solanabeach.io/address/$address?cluster=testnet", tx: "https://solanabeach.io/transaction/$hash?cluster=testnet", }, ], @@ -3081,11 +3081,11 @@ const cryptocurrenciesById: Record = { ].map(makeTestnetUnit), explorerViews: [ { - address: "https://explorer.solana.com/?cluster=devnet", + address: "https://explorer.solana.com/address/$address?cluster=devnet", tx: "https://explorer.solana.com/tx/$hash?cluster=devnet", }, { - address: "https://solanabeach.io/?cluster=devnet", + address: "https://solanabeach.io/address/$address?cluster=devnet", tx: "https://solanabeach.io/transaction/$hash?cluster=devnet", }, ],