From 008f6dd78af2525b8bd25873e3890547a51da54c Mon Sep 17 00:00:00 2001 From: 0xGumpy Date: Tue, 18 Aug 2026 21:27:03 -0400 Subject: [PATCH 1/2] BW-109: add chain-46630 foundry config Co-Authored-By: Claude Fable 5 --- foundry.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/foundry.toml b/foundry.toml index 3ed1514..c53fec7 100644 --- a/foundry.toml +++ b/foundry.toml @@ -19,6 +19,7 @@ fs_permissions = [ { access = "read-write", path = "./addresses/addresses-31337.json"}, { access = "read-write", path = "./addresses/addresses-998.json"}, { access = "read-write", path = "./addresses/addresses-999.json"}, + { access = "read-write", path = "./addresses/addresses-46630.json"}, { access = "read", path = "./script/artifacts/WHYPE9.json"} ] @@ -36,9 +37,11 @@ tab_width = 2 [etherscan] hyperliquid = { key = "${API_KEY_ETHERSCAN}" } + robinhood-testnet = { key = "${API_KEY_ETHERSCAN}", url = "https://explorer.testnet.chain.robinhood.com/api", chain = 46630 } [rpc_endpoints] hyperliquid = "https://rpc.hyperliquid.xyz/evm" hyperliquid-testnet = "https://rpc.hyperliquid-testnet.xyz/evm" + robinhood-testnet = "https://rpc.testnet.chain.robinhood.com" # See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options \ No newline at end of file From 9a727439bc8be3c98c1442cf5561b0d5f2e8aa34 Mon Sep 17 00:00:00 2001 From: 0xGumpy Date: Tue, 18 Aug 2026 22:04:12 -0400 Subject: [PATCH 2/2] BW-109: drop [etherscan] 46630 entry -- it breaks forge script 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 --- foundry.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/foundry.toml b/foundry.toml index c53fec7..3a6319c 100644 --- a/foundry.toml +++ b/foundry.toml @@ -37,11 +37,10 @@ tab_width = 2 [etherscan] hyperliquid = { key = "${API_KEY_ETHERSCAN}" } - robinhood-testnet = { key = "${API_KEY_ETHERSCAN}", url = "https://explorer.testnet.chain.robinhood.com/api", chain = 46630 } [rpc_endpoints] hyperliquid = "https://rpc.hyperliquid.xyz/evm" hyperliquid-testnet = "https://rpc.hyperliquid-testnet.xyz/evm" robinhood-testnet = "https://rpc.testnet.chain.robinhood.com" -# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options \ No newline at end of file +# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options