-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathfoundry.toml
More file actions
32 lines (29 loc) · 929 Bytes
/
foundry.toml
File metadata and controls
32 lines (29 loc) · 929 Bytes
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
[profile.default]
src = 'src'
out = 'out'
test = 'tests'
script = 'scripts'
cache_path = 'cache'
libs = ['node_modules', 'lib']
fs_permissions = [{ access = "read", path = "tests/mocks/JsonBindings.sol" }]
ffi = true
evm_version = 'paris'
solc_version = '0.8.27'
bytecode_hash = 'none'
extra_output_files = ['metadata']
ignored_warnings_from = [
'src/contracts/facilitators/aave/interestStrategy/ZeroDiscountRateStrategy.sol',
'lib/aave-v3-origin/src/contracts/treasury/RevenueSplitter.sol',
'lib/aave-v3-origin/src/contracts/dependencies/openzeppelin/ReentrancyGuard.sol',
'lib/aave-v3-origin/src/contracts/protocol/tokenization/base/IncentivizedERC20.sol',
]
optimizer = true
optimizer_runs = 200
[profile.ci.fuzz]
runs = 1000
[bind_json]
out = "tests/mocks/JsonBindings.sol"
include = ["tests/helpers/EIP712Types.sol"]
[lint]
ignore = ["src/contracts/dependencies/**/*", "tests/**/*"]
lint_on_build = false