-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfoundry.toml
30 lines (27 loc) · 1.1 KB
/
foundry.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[profile.default]
src = "src"
out = "out"
libs = ["lib"]
remappings = [
"@forge-proposal-simulator=lib/forge-proposal-simulator/",
"@addresses/=lib/forge-proposal-simulator/addresses/",
"@examples/=lib/forge-proposal-simulator/examples/",
"@forge-std/=lib/forge-proposal-simulator/lib/forge-std/src/",
"@interface/=lib/forge-proposal-simulator/src/interface/",
"@mocks/=lib/forge-proposal-simulator/mocks/",
"@proposals/=lib/forge-proposal-simulator/src/proposals/",
"@script/=lib/forge-proposal-simulator/script/",
"@test/=test/",
"@utils/=lib/forge-proposal-simulator/utils/",
"forge-proposal-simulator/=lib/forge-proposal-simulator/",
"forge-std/=lib/forge-proposal-simulator/lib/forge-std/src/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
]
fs_permissions = [{ access = "read", path = "./addresses/"}]
[fmt]
line_length = 70
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
[rpc_endpoints]
localhost = "http://127.0.0.1:8545"
sepolia = "${SEPOLIA_RPC_URL}"
ethereum = "${ETH_RPC_URL}"