Skip to content

Commit

Permalink
fix(config): replace arbitrum_one -> arbitrum (#11)
Browse files Browse the repository at this point in the history
Turns out `arbitrum_one` is actually not a supported key in foundry
while `arbitrum` is.
  • Loading branch information
0x-r4bbit authored Dec 21, 2023
1 parent 2b90aeb commit b3275c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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}" }
Expand All @@ -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"
Expand Down

0 comments on commit b3275c9

Please sign in to comment.