Skip to content

Commit 4801d51

Browse files
authored
Merge pull request #6251 from BitGo/COIN-3992
fix(statics): update explorer URLs for Cronos, Initia, and ASI networks
2 parents 9aa735e + d148897 commit 4801d51

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

modules/sdk-core/src/bitgo/environments.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ const mainnetBase: EnvironmentTemplate = {
174174
mantraNodeUrl: 'https://mantra-rest.publicnode.com/',
175175
cronosNodeUrl: 'https://cronos-pos-rest.publicnode.com/',
176176
fetchAiNodeUrl: 'https://rest-fetchhub.fetch.ai/',
177-
initiaNodeUrl: 'https://rest.initia.xyz/', //TODO: COIN-3992: post mainnet launch re-check or change this
177+
initiaNodeUrl: 'https://rest.initia.xyz/',
178178
asiNodeUrl: 'https://rest-fetchhub.fetch.ai/',
179179
dotNodeUrls: ['wss://rpc.polkadot.io'],
180180
substrateNodeUrls: ['wss://entrypoint-finney.opentensor.ai/'],

modules/statics/src/networks.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -890,13 +890,13 @@ class MantraTestnet extends Testnet implements AccountNetwork {
890890
class Cronos extends Mainnet implements AccountNetwork {
891891
name = 'Cronos POS';
892892
family = CoinFamily.CRONOS;
893-
explorerUrl = 'https://cronos-pos.org/explorer/';
893+
explorerUrl = 'https://cronos-pos.org/explorer/tx/';
894894
}
895895

896896
class CronosTestnet extends Testnet implements AccountNetwork {
897897
name = 'Testnet Cronos POS';
898898
family = CoinFamily.CRONOS;
899-
explorerUrl = 'https://cronos-pos.org/explorer/croeseid4/';
899+
explorerUrl = 'https://cronos-pos.org/explorer/croeseid4/tx/';
900900
}
901901

902902
class FetchAi extends Mainnet implements AccountNetwork {
@@ -914,25 +914,25 @@ class FetchAiTestnet extends Testnet implements AccountNetwork {
914914
class Initia extends Mainnet implements AccountNetwork {
915915
name = 'Initia';
916916
family = CoinFamily.INITIA;
917-
explorerUrl = 'https://scan.initia.xyz/'; //TODO: COIN-3992 : Post launch need to update this if changed
917+
explorerUrl = 'https://scan.initia.xyz/interwoven-1/txs/';
918918
}
919919

920920
class InitiaTestnet extends Testnet implements AccountNetwork {
921921
name = 'Testnet Initia';
922922
family = CoinFamily.INITIA;
923-
explorerUrl = 'https://scan.testnet.initia.xyz/initiation-2/';
923+
explorerUrl = 'https://scan.testnet.initia.xyz/initiation-2/txs/';
924924
}
925925

926926
class Asi extends Mainnet implements AccountNetwork {
927927
name = 'Fetch Native';
928928
family = CoinFamily.ASI;
929-
explorerUrl = 'https://companion.fetch.ai/fetchhub-4/';
929+
explorerUrl = 'https://companion.fetch.ai/fetchhub-4/transactions/';
930930
}
931931

932932
class AsiTestnet extends Testnet implements AccountNetwork {
933933
name = 'Testnet Fetch Native';
934934
family = CoinFamily.ASI;
935-
explorerUrl = 'https://companion.fetch.ai/dorado-1/';
935+
explorerUrl = 'https://companion.fetch.ai/dorado-1/transactions/';
936936
}
937937

938938
class Islm extends Mainnet implements AccountNetwork {

0 commit comments

Comments
 (0)