-
Notifications
You must be signed in to change notification settings - Fork 33
/
foundry.toml
37 lines (36 loc) · 1.19 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
31
32
33
34
35
36
37
[profile.default]
ffi = true
remappings = [
'ds-test/=lib/ds-test/src/',
'forge-std/=lib/forge-std/src/',
'interfaces/=src/interfaces',
'modules/=src/modules',
'policies/=src/policies',
'libraries/=src/libraries',
'solmate/=lib/solmate/src/',
'balancer-v2/=lib/balancer-v2/',
'layer-zero/=lib/solidity-examples/contracts/',
'@openzeppelin/=lib/openzeppelin-contracts/',
'bonds/=lib/bonds/src/',
'test/=src/test/',
'clones/=lib/clones-with-immutable-args/src/',
'proposal-sim=lib/forge-proposal-simulator/',
'proposal-sim/proposals/=lib/forge-proposal-simulator/proposals/',
'proposals/=src/proposals/',
'openzeppelin/=lib/openzeppelin-contracts/contracts',
'@addresses/=lib/forge-proposal-simulator/addresses/',
'@proposals/=lib/forge-proposal-simulator/proposals/',
'@utils/=lib/forge-proposal-simulator/utils/'
]
fs_permissions = [
{access = "write", path = "./src/test/sim/out/"},
{access = "write", path = "./deployments/"},
{access = "read", path = "./src/scripts/"},
{access = "read", path = "./src/proposals/addresses.json"},
]
solc_version = "0.8.15"
optimizer = true
optimizer_runs = 10
chain_id = 1
[fuzz]
runs = 256