Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: replace explorers with mintscan for cosmos chains #5131

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,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 @@ -717,7 +717,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 @@ -748,7 +748,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 @@ -766,7 +766,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 @@ -802,7 +802,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
Loading