Skip to content

Commit 84dc9b6

Browse files
committed
fix(statics): migrate xtzevm testnet from deprecated shadownet to ghostnet
Update XtzEvmTestnet network config to point to the new Etherlink ghostnet testnet (testnet.explorer.etherlink.com) from the deprecated shadownet. Chain ID remains 128123. Fixes: CECHO-864 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> TICKET: CECHO-864
1 parent 41a9575 commit 84dc9b6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ const testnetBase: EnvironmentTemplate = {
513513
apiToken: process.env.ETHERSCAN_API_TOKEN,
514514
},
515515
xtzevm: {
516-
baseUrl: 'https://shadownet.explorer.etherlink.com/api',
516+
baseUrl: 'https://testnet.explorer.etherlink.com/api',
517517
},
518518
flow: {
519519
baseUrl: 'https://evm-testnet.flowscan.io',

modules/statics/src/networks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -741,8 +741,8 @@ class XtzEvm extends Mainnet implements EthereumNetwork {
741741
class XtzEvmTestnet extends Testnet implements EthereumNetwork {
742742
name = 'Testnet XTZ EVM';
743743
family = CoinFamily.XTZEVM;
744-
explorerUrl = 'https://shadownet.explorer.etherlink.com/tx/';
745-
accountExplorerUrl = 'https://shadownet.explorer.etherlink.com/address/';
744+
explorerUrl = 'https://testnet.explorer.etherlink.com/tx/';
745+
accountExplorerUrl = 'https://testnet.explorer.etherlink.com/address/';
746746
chainId = 128123;
747747
nativeCoinOperationHashPrefix = '128123';
748748
}

0 commit comments

Comments
 (0)