Skip to content
Draft
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions modules/sdk-core/src/bitgo/environments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ const mainnetBase: EnvironmentTemplate = {
baseUrl: 'https://api.etherscan.io/v2',
},
ip: {
baseUrl: 'https://www.storyscan.io',
baseUrl: 'https://datanetscan.io',
},
somi: {
baseUrl: 'https://mainnet.somnia.w3us.site',
Expand Down Expand Up @@ -522,7 +522,7 @@ const testnetBase: EnvironmentTemplate = {
baseUrl: 'https://api.etherscan.io/v2',
},
ip: {
baseUrl: 'https://aeneid.storyscan.io',
baseUrl: 'https://aeneid.datanetscan.io',
},
tbaseeth: {
baseUrl: 'https://api.etherscan.io/v2',
Expand Down
8 changes: 4 additions & 4 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1686,17 +1686,17 @@ class CoredaoTestnet extends Testnet implements EthereumNetwork {
class IP extends Mainnet implements EthereumNetwork {
name = 'Data Network';
family = CoinFamily.IP;
explorerUrl = 'https://www.storyscan.io/tx/';
accountExplorerUrl = 'https://www.storyscan.io/address/';
explorerUrl = 'https://datanetscan.io/tx/';
accountExplorerUrl = 'https://datanetscan.io/address/';
chainId = 1514;
nativeCoinOperationHashPrefix = '1514';
}

class IPTestnet extends Testnet implements EthereumNetwork {
name = 'Data Network Testnet';
family = CoinFamily.IP;
explorerUrl = 'https://aeneid.storyscan.io/tx/';
accountExplorerUrl = 'https://aeneid.storyscan.io/address/';
explorerUrl = 'https://aeneid.datanetscan.io/tx/';
accountExplorerUrl = 'https://aeneid.datanetscan.io/address/';
chainId = 1315;
nativeCoinOperationHashPrefix = '1315';
}
Expand Down
Loading