Skip to content

Commit 3077c68

Browse files
committed
fix(statics): add accountExplorerUrl for vechain
Also correct explorer url Ticket: COIN-4492
1 parent 79ef464 commit 3077c68

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

modules/statics/src/networks.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1473,13 +1473,15 @@ class PolymeshTestnet extends Testnet implements AccountNetwork {
14731473
class Vet extends Mainnet implements AccountNetwork {
14741474
name = 'VeChain';
14751475
family = CoinFamily.VET;
1476-
explorerUrl = 'https://explore.vechain.org/';
1476+
explorerUrl = 'https://explore.vechain.org/transactions/';
1477+
accountExplorerUrl = 'https://explore.vechain.org/accounts/';
14771478
}
14781479

14791480
class VetTestnet extends Testnet implements AccountNetwork {
14801481
name = 'VeChainTestnet';
14811482
family = CoinFamily.VET;
1482-
explorerUrl = 'https://explore-testnet.vechain.org/';
1483+
explorerUrl = 'https://explore-testnet.vechain.org/transactions/';
1484+
accountExplorerUrl = 'https://explore-testnet.vechain.org/accounts/';
14831485
}
14841486

14851487
export const Networks = {

0 commit comments

Comments
 (0)