feat: add Robinhood Chain (hoodeth) mainnet contract deployment config#356
Merged
Conversation
7a02d6f to
c78dea4
Compare
c78dea4 to
fa35fc4
Compare
There was a problem hiding this comment.
Pull request overview
Adds Robinhood Chain (hoodeth) mainnet support to the deployment/config tooling by updating the chain ID, Hardhat network + explorer settings, and tuning deployment/verification behavior for that chain’s characteristics.
Changes:
- Updated
CHAIN_IDS.HOODETHfrom a placeholder to the Robinhood Chain mainnet chain ID (4663). - Added hoodeth-specific deployment gas limit (50M) in
getChainConfig. - Updated
hardhat.config.tshoodeth RPC + explorer URLs and introduced per-chain verification overrides (confirmation blocks / retries) for hoodeth.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
scripts/chainConfig.ts |
Adds HOODETH-specific gas limit and forwarder contract name selection. |
hardhat.config.ts |
Updates hoodeth mainnet RPC configuration and Blockscout explorer endpoints. |
deployUtils.ts |
Adds per-chain verification overrides (confirmations/retries) and wires them into waitAndVerify. |
config/chainIds.ts |
Sets HOODETH mainnet chain ID to 4663. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
nvrakesh06
previously approved these changes
May 7, 2026
fa35fc4 to
17d11f8
Compare
Contributor
Venkat-Annavazzala
approved these changes
May 7, 2026
nvrakesh06
approved these changes
May 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
HOODETHchain ID from placeholder999999to correct mainnet value4663(Robinhood Chain, ArbOS 51)HOODETHdeploy gas config:gasLimit: 50M,ForwarderV4/ForwarderFactoryV4hoodethnetwork inhardhat.config.tswith mainnet RPC,chainId, and Blockscout mainnet explorer URLsCHAIN_VERIFICATION_OVERRIDESindeployUtils.tsfor hoodeth: 2 block confirmations and 2 verification retries — Robinhood Chain is a low-activity private chain with ~98 min average block time; the defaults (5 confirmations, 10 retries × 60s) would cause CI timeoutsDeployed Addresses (Mainnet: hoodeth — Robinhood Chain, Chain ID: 4663)
deployment logs : https://docs.google.com/document/d/1hZWm1LRX0ObeZLU5v6yLu43RqiyusLjy-81zPa0lHpg/edit?usp=sharing
Gas Usage Analysis — Hoodeth Mainnet Deployment
The configured
gasLimitof 50M provides 17.7× headroom over the largest contract (WalletSimple at ~2.8M gas). This accounts for L1 data fee volatility on Arbitrum-based rollups, where the totalgasUsedincludes a variable L1 data posting component driven by Ethereum mainnet conditions.Test plan
Ticket: CGD-976