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 @@ -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',
Expand Down
1 change: 1 addition & 0 deletions modules/statics/src/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ export class CoinMap {
181228: 'thppeth',
6985385: 'h',
7080969: 'th',
4663: 'hoodeth',
46630: 'thoodeth',
324: 'zketh',
8453: 'baseeth',
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 @@ -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';
}
Comment thread
yashvanthbl137-crypto marked this conversation as resolved.

class HumanityProtocol extends Mainnet implements EthereumNetwork {
Expand Down
Loading