From 6325179ca66bef7a2661c526def73c324c2e7eeb Mon Sep 17 00:00:00 2001 From: Vladyslav Dalechyn Date: Fri, 24 May 2024 18:33:20 +0300 Subject: [PATCH] chore: add base network --- foundry.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/foundry.toml b/foundry.toml index 16ab9d0..dacd6da 100644 --- a/foundry.toml +++ b/foundry.toml @@ -22,6 +22,7 @@ [etherscan] arbitrum = { key = "${API_KEY_ARBISCAN}" } avalanche = { key = "${API_KEY_SNOWTRACE}" } + base = { key = "${API_KEY_BASESCAN}" } bnb_smart_chain = { key = "${API_KEY_BSCSCAN}" } gnosis_chain = { key = "${API_KEY_GNOSISSCAN}" } goerli = { key = "${API_KEY_ETHERSCAN}" } @@ -43,6 +44,7 @@ [rpc_endpoints] arbitrum = "https://arbitrum-mainnet.infura.io/v3/${API_KEY_INFURA}" avalanche = "https://avalanche-mainnet.infura.io/v3/${API_KEY_INFURA}" + base = "https://mainnet.base.org" bnb_smart_chain = "https://bsc-dataseed.binance.org" gnosis_chain = "https://rpc.gnosischain.com" goerli = "https://goerli.infura.io/v3/${API_KEY_INFURA}"