Skip to content

Commit

Permalink
feat: remove polygon mumbai, add base and arb
Browse files Browse the repository at this point in the history
  • Loading branch information
xBA5ED committed Apr 21, 2024
1 parent 63f43cd commit 1a975d2
Show file tree
Hide file tree
Showing 6 changed files with 1,126 additions and 1,243 deletions.
4 changes: 3 additions & 1 deletion .example.env
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ RPC_ARBITRUM_SEPOLIA="https://rpc.ankr.com/arbitrum_sepolia"
RPC_OPTIMISM_MAINNET="https://rpc.ankr.com/optimism"
RPC_OPTIMISM_SEPOLIA="https://rpc.ankr.com/optimism_sepolia"
RPC_POLYGON_MAINNET="https://rpc.ankr.com/polygon"
RPC_POLYGON_MUMBAI="https://rpc.ankr.com/polygon_mumbai"
RPC_POLYGON_MUMBAI="https://rpc.ankr.com/polygon_mumbai"
RPC_BASE_MAINNET="https://base-rpc.publicnode.com"
RPC_BASE_SEPOLIA="https://base-sepolia-rpc.publicnode.com"
4 changes: 3 additions & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ ethereum ="${RPC_ETHEREUM_MAINNET}"
optimism = "${RPC_OPTIMISM_MAINNET}"
polygon = "${RPC_POLYGON_MUMBAI}"
arbitrum = "${RPC_ARBITRUM_MAINNET}"
base = "${RPC_BASE_MAINNET}"
arbitrum_sepolia = "${RPC_ARBITRUM_SEPOLIA}"
ethereum_sepolia ="${RPC_ETHEREUM_SEPOLIA}"
optimism_sepolia = "${RPC_OPTIMISM_SEPOLIA}"
polygon_mumbai = "${RPC_POLYGON_MUMBAI}"
base_sepolia = "${RPC_BASE_SEPOLIA}"

[profile.fork] # run via FOUNDRY_PROFILE=fork foundry test
fs_permissions = [{ access = "read", path = "./deployments/mainnet" }] # Get the deployment addresses for forking
Expand All @@ -30,4 +32,4 @@ match_contract = "_Fork"
[fmt]
number_underscore = "thousands"
multiline_func_header = "all"
wrap_comments = true
wrap_comments = true
Loading

0 comments on commit 1a975d2

Please sign in to comment.