feat: add Robinhood Chain (4663) support#215
Merged
Merged
Conversation
Collaborator
Author
|
Added Robinhood to the token-storage-detection service as well (Chain enum + chain id mapping). Activation is env-side: set ROBINHOOD_RPC (or ROBINHOOD_FORK_RPC) in the prd-token-storage-detection-env secret - chains without the env var are skipped, so this is inert until configured. Also verified the provisioned RPC_4663 endpoint supports debug_traceCall with callTracer + stateOverrides (the exact simulator shape) - the config checklist item about a debug-capable RPC is satisfied by that provider. v2.2.1 suite is now deployed and verified on 4663 (factory 0x000000002c9A..., Nexus 0x0000000020fe2F..., K1 validator 0x0000000002d3cC..., bootstrap, forwarder, composability contracts, NodePaymasterFactory). |
This was referenced Jul 9, 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.
What
Adds Robinhood Chain mainnet (Arbitrum Orbit / Nitro, chain id 4663, ETH gas token) to the node, following the same pattern as previous chain integrations (katana #, megaeth):
src/modules/chains/constants.ts:robinhoodChainviem chain definition (not yet in our viem version) added toCHAIN_DEFINITIONSk8s/values.prod.yaml:supported_chains.robinhood(gcpsecretkeyprd-mee-mode-robinhood-config) +nodeEnabledChainsentries for both node deployments.github/workflows/prd-refresh-secrets-restart.yml:mee-node-robinhood-4663-configsadded to the refresh listFeasibility (verified live against the chain)
0x78F3556b67E17Df817D51Ef5a990cDaF09E8d3A9(8 decimals, 0.5%/24h)Contracts
Current-gen stx suite deployed and verified on 4663 (standard addresses: Nexus
0x0000b1C0B95D..., factory0x0000B1c0dCFd..., NodePaymasterFactory0x0000B1C05975...etc). v2.2.1 suite deployment is prepared and pending a go-ahead.Chain config (to be added manually in GCP Secret Manager as
prd-mee-mode-robinhood-config)Suggested, mirroring Arbitrum One (
type: arbitrumreuses the ArbGasInfo L1-fee path) but pricing via the chain-local Chainlink feed:{ "name": "Robinhood Chain", "rpcs": ["<provider RPC with debug_traceCall>"], "isTestChain": false, "chainId": "4663", "type": "arbitrum", "eip1559": true, "price": { "chainId": "4663", "oracle": "0x78F3556b67E17Df817D51Ef5a990cDaF09E8d3A9" }, "paymasterFunding": "0.01", "paymasterFundingThreshold": "0.001", "executor": { "workerCount": 3, "workerFunding": "0.001", "workerFundingThreshold": "0.0005" }, "batcher": { "batchGasLimit": "16000000" }, "paymentTokens": [ { "name": "ETH", "address": "0x0000000000000000000000000000000000000000", "symbol": "ETH", "decimals": 18, "price": { "chainId": "4663", "oracle": "0x78F3556b67E17Df817D51Ef5a990cDaF09E8d3A9" } } ] }Checklist before activation
prd-mee-mode-robinhood-configcreated (manual, with debug-capable RPC)SUPPORTED_CHAINSentry (separate repo)