Skip to content

Commit

Permalink
Merge pull request #5131 from BitGo/WIN-1697-replace-explorer-with-mi…
Browse files Browse the repository at this point in the history
…ntscan-for-cosmos-chains

chore: replace explorers with mintscan for cosmos chains
  • Loading branch information
rakeshgsharma authored Nov 13, 2024
2 parents 7bf48fd + 49c23e6 commit d2d3821
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ class SuiTestnet extends Testnet implements AccountNetwork {
class Atom extends Mainnet implements AccountNetwork {
name = 'Cosmos Hub ATOM';
family = CoinFamily.ATOM;
explorerUrl = 'https://atomscan.com/transactions/';
explorerUrl = 'https://www.mintscan.io/cosmos/tx/';
}

class AtomTestnet extends Testnet implements AccountNetwork {
Expand Down Expand Up @@ -729,7 +729,7 @@ class TiaTestnet extends Testnet implements AccountNetwork {
class Hash extends Mainnet implements AccountNetwork {
name = 'Provenance';
family = CoinFamily.HASH;
explorerUrl = 'https://explorer.provenance.io/tx/';
explorerUrl = 'https://www.mintscan.io/provenance/tx/';
}

class HashTestnet extends Testnet implements AccountNetwork {
Expand Down Expand Up @@ -760,7 +760,7 @@ class Sei extends Mainnet implements AccountNetwork {
class SeiTestnet extends Testnet implements AccountNetwork {
name = 'Testnet Sei';
family = CoinFamily.SEI;
explorerUrl = 'https://www.seiscan.app/atlantic-2/txs/';
explorerUrl = 'https://www.mintscan.io/sei/tx/';
}

class Zeta extends Mainnet implements AccountNetwork {
Expand All @@ -778,7 +778,7 @@ class ZetaTestnet extends Testnet implements AccountNetwork {
class Injective extends Mainnet implements AccountNetwork {
name = 'Injective';
family = CoinFamily.INJECTIVE;
explorerUrl = 'https://explorer.injective.network/transaction/';
explorerUrl = 'https://www.mintscan.io/injective/tx/';
}

class InjectiveTestnet extends Testnet implements AccountNetwork {
Expand Down Expand Up @@ -814,7 +814,7 @@ class TonTestnet extends Testnet implements AccountNetwork {
class Coreum extends Mainnet implements AccountNetwork {
name = 'Coreum';
family = CoinFamily.COREUM;
explorerUrl = 'https://explorer.coreum.com/coreum/transactions/';
explorerUrl = 'https://www.mintscan.io/coreum/tx/';
}

class CoreumTestnet extends Testnet implements AccountNetwork {
Expand Down

0 comments on commit d2d3821

Please sign in to comment.