diff --git a/modules/sdk-core/src/bitgo/environments.ts b/modules/sdk-core/src/bitgo/environments.ts index 72f63456d3..12f8540389 100644 --- a/modules/sdk-core/src/bitgo/environments.ts +++ b/modules/sdk-core/src/bitgo/environments.ts @@ -349,7 +349,7 @@ const mainnetBase: EnvironmentTemplate = { baseUrl: 'https://unichain.blockscout.com/api', }, hoodeth: { - baseUrl: 'https://explorer.testnet.chain.robinhood.com/api', // TODO: update to mainnet explorer API when available + baseUrl: 'https://8crv4vmq6tiu1yqr.blockscout.com/api', }, hppeth: { baseUrl: 'https://explorer.hpp.io/api', diff --git a/modules/statics/src/map.ts b/modules/statics/src/map.ts index 8fcea73412..71e653f1b4 100644 --- a/modules/statics/src/map.ts +++ b/modules/statics/src/map.ts @@ -122,6 +122,7 @@ export class CoinMap { 181228: 'thppeth', 6985385: 'h', 7080969: 'th', + 4663: 'hoodeth', 46630: 'thoodeth', 324: 'zketh', 8453: 'baseeth', diff --git a/modules/statics/src/networks.ts b/modules/statics/src/networks.ts index df720eece1..9cf7d41603 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -1852,10 +1852,10 @@ class HoodethTestnet extends Testnet implements EthereumNetwork { class Hoodeth extends Mainnet implements EthereumNetwork { name = 'Robinhood Chain'; family = CoinFamily.HOODETH; - explorerUrl = 'https://explorer.testnet.chain.robinhood.com/tx/'; // TODO: update to mainnet explorer when available - accountExplorerUrl = 'https://explorer.testnet.chain.robinhood.com/address/'; // TODO: update to mainnet explorer when available - chainId = 46630; // TODO: update to mainnet chain id when available - nativeCoinOperationHashPrefix = '46630'; // TODO: update to mainnet chain id when available + explorerUrl = 'https://8crv4vmq6tiu1yqr.blockscout.com/tx/'; + accountExplorerUrl = 'https://8crv4vmq6tiu1yqr.blockscout.com/address/'; + chainId = 4663; + nativeCoinOperationHashPrefix = '4663'; } class HumanityProtocol extends Mainnet implements EthereumNetwork {