From 71cbb70f8a278b7c3126eb0890b1ec7aad8cf6b3 Mon Sep 17 00:00:00 2001 From: r4bbit <445106+0x-r4bbit@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:57:37 +0100 Subject: [PATCH] fix(config): replace `arbitrum_one` -> `arbitrum` Turns out `arbitrum_one` is actually not a supported key in foundry while `arbitrum` is. --- foundry.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/foundry.toml b/foundry.toml index 5d2319e..1c87703 100644 --- a/foundry.toml +++ b/foundry.toml @@ -22,7 +22,7 @@ verbosity = 4 [etherscan] - arbitrum_one = { key = "${API_KEY_ARBISCAN}" } + arbitrum = { key = "${API_KEY_ARBISCAN}" } avalanche = { key = "${API_KEY_SNOWTRACE}" } bnb_smart_chain = { key = "${API_KEY_BSCSCAN}" } gnosis_chain = { key = "${API_KEY_GNOSISSCAN}" } @@ -43,7 +43,7 @@ wrap_comments = true [rpc_endpoints] - arbitrum_one = "https://arbitrum-mainnet.infura.io/v3/${API_KEY_INFURA}" + arbitrum = "https://arbitrum-mainnet.infura.io/v3/${API_KEY_INFURA}" avalanche = "https://avalanche-mainnet.infura.io/v3/${API_KEY_INFURA}" bnb_smart_chain = "https://bsc-dataseed.binance.org" gnosis_chain = "https://rpc.gnosischain.com"