BW-109: chain-46630 foundry config (fs_permissions, rpc, blockscout verifier) - #85
Merged
Conversation
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
0xGumpy
force-pushed
the
socks/bw-109-foundry-46630
branch
from
August 19, 2026 01:55
02a52b4 to
008f6dd
Compare
A chain= field with an unknown chain id makes forge abort every `forge script` run on this chain with 'Chain 46630 not supported', even without --verify. Verification uses explicit --verifier/--verifier-url flags, so the entry was dead config anyway. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
SocksNFlops
approved these changes
Aug 19, 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 the three foundry.toml entries needed to deploy on Robinhood testnet (chain 46630):
fs_permissions: read-write on./addresses/addresses-46630.json, alongside the existing 31337/998/999 entries. Without it,logAddresses()reverts at the very end of a deploy — after the whole stack is already on-chain.[rpc_endpoints]:robinhood-testnet = https://rpc.testnet.chain.robinhood.com.[etherscan]:robinhood-testnetpointed at the Blockscout-compatible endpointhttps://explorer.testnet.chain.robinhood.com/apiwithchain = 46630(endpoint probed live; the key only needs to be non-empty for Blockscout).Why
Deploy-blocking prep for the Robinhood testnet deployment (BW-109). Config-only change;
forge buildpasses.Sanity check done alongside:
renounceUnlessAdminis present and used by the deploy scripts, and no barerenounceRole(..., deployerAddress)exists inscript/outside BaseScript's guarded helper.🤖 Generated with Claude Code