-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
37 lines (32 loc) · 802 Bytes
/
foundry.toml
File metadata and controls
37 lines (32 loc) · 802 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
33
34
35
36
37
[profile.default]
src = 'contracts'
out = 'generated/artifacts_forge'
libs = ['node_modules', 'lib']
test = 'tests'
cache_path = 'generated/cache_forge'
[profile.fork]
src = 'contracts'
out = 'generated/artifacts_forge'
libs = ['node_modules', 'lib']
test = 'tests_fork'
cache_path = 'generated/cache_forge'
ffi = true # Enable FFI for shell scripts (ABI fetching)
fs_permissions = [
{ access = "read", path = "./deployments" },
{ access = "read-write", path = "./cache" } # For ABI cache
]
[doc]
homepage= "HOME.md"
ignore = [
"*/EAS/*.sol",
"*/mock/*.sol",
"*/TellerV0Storage.sol",
"*/ProtocolFeeMock.sol",
"*/TellerV2Mock.sol",
"*/libraries/*.*",
"*/types/*.*",
"*/Types/*.*",
"*/interfaces/*.*",
"*/interfaces/escrow/*.*",
"*/README.md",
]