-
Notifications
You must be signed in to change notification settings - Fork 56
/
foundry.toml
61 lines (54 loc) · 3.39 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[profile.default]
out = 'out'
libs = ['lib']
ffi = true
fs_permissions = [
{ access = "read", path = "./test/auth/mocks/AuthWrappers.huff" },
{ access = "read", path = "./test/auth/mocks/OwnedWrappers.huff" },
{ access = "read", path = "./test/auth/mocks/RolesAuthorityWrappers.huff" },
{ access = "read", path = "./test/data-structures/mocks/ArrayWrappers.huff" },
{ access = "read", path = "./test/data-structures/mocks/HashmapWrappers.huff" },
{ access = "read", path = "./test/data-structures/mocks/BytesWrappers.huff" },
{ access = "read", path = "./test/math/mocks/FixedPointMathWrappers.huff" },
{ access = "read", path = "./test/math/mocks/SafeMathWrappers.huff" },
{ access = "read", path = "./test/math/mocks/MathWrappers.huff" },
{ access = "read", path = "./test/math/mocks/TrigonometryWrappers.huff" },
{ access = "read", path = "./test/mechanisms/huff-vrgda/mocks/LinearVRGDAWrappers.huff" },
{ access = "read", path = "./test/mechanisms/huff-vrgda/mocks/LogisticVRGDAWrappers.huff" },
{ access = "read", path = "./test/proxies/mocks/ClonesWrappers.huff" },
{ access = "read", path = "./test/proxies/mocks/ProxyWrappers.huff" },
{ access = "read", path = "./test/proxies/mocks/ProxyFactoryWrappers.huff" },
{ access = "read", path = "./test/tokens/mocks/ERC20MintableWrappers.huff" },
{ access = "read", path = "./test/tokens/mocks/ERC20Wrappers.huff" },
{ access = "read", path = "./test/tokens/mocks/ERC721Wrappers.huff" },
{ access = "read", path = "./test/tokens/mocks/ERC1155Wrappers.huff" },
{ access = "read", path = "./test/tokens/mocks/ERC4626Wrappers.huff" },
{ access = "read", path = "./test/utils/mocks/BitPackLibWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/CallWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/ErrorWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/EthersWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/JumpTableUtilWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/LibBitWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/MerkleDistributorWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/MerkleProofLibWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/MulticallableWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/Create3Wrappers.huff" },
{ access = "read", path = "./test/utils/mocks/PausableWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/ReentrancyGuardWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/RefundedWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/SafeTransferLibWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/ShufflingWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/InsertionSortWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/SSTORE2Wrappers.huff" },
{ access = "read", path = "./test/utils/mocks/TSOwnableWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/ECDSAWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/ConstantsWrappers.huff" },
{ access = "read", path = "./test/utils/mocks/DateTimeLibWrappers.huff" }
]
remappings = [
"forge-std/=lib/forge-std/src/",
"foundry-huff/=lib/foundry-huff/src/",
"solmate/=lib/solmate/src/"
]
[profile.default.fuzz]
runs = 1000