Skip to content
Merged
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
2 changes: 1 addition & 1 deletion modules/sdk-core/src/bitgo/environments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ const mainnetBase: EnvironmentTemplate = {
},
icpNodeUrl: 'https://ic0.app',
worldExplorerBaseUrl: 'https://worldscan.org/',
somniaExplorerBaseUrl: 'https://shannon-explorer.somnia.network/', //TODO: WIN-5278: change it with mainnet explorer, when its available
somniaExplorerBaseUrl: 'https://mainnet.somnia.w3us.site/',
soneiumExplorerBaseUrl: 'https://soneium-minato.blockscout.com',
monExplorerBaseUrl: 'https://mainnet-beta.monvision.io',
stxNodeUrl: 'https://api.hiro.so',
Expand Down
6 changes: 3 additions & 3 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1516,9 +1516,9 @@ class SeiEvmTestnet extends Testnet implements EthereumNetwork {
class Somnia extends Mainnet implements EthereumNetwork {
name = 'Somnia';
family = CoinFamily.STT;
explorerUrl = 'https://shannon-explorer.somnia.network/tx/'; //TODO: WIN-5278: change it with mainnet explorer, when its available
chainId = 50312; //TODO: WIN-5278: change it with mainnet explorer, when its available
nativeCoinOperationHashPrefix = '50312'; //TODO: WIN-5278: change it with mainnet explorer, when its available
explorerUrl = 'https://mainnet.somnia.w3us.site/tx/';
chainId = 5031;
nativeCoinOperationHashPrefix = '5031';
}

class SomniaTestnet extends Testnet implements EthereumNetwork {
Expand Down