forked from allo-protocol/allo-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foundry.toml
46 lines (42 loc) · 985 Bytes
/
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
# Default Profile
[profile.default]
solc-version = "0.8.19"
optimizer = true
optimizer-runs = 1_000
src = 'contracts'
out = 'out'
libs = ['node_modules', 'lib']
test = 'test/foundry'
cache_path = 'cache_forge'
remappings = []
# Gas reporting
gas_reports = [
"ContractFactory",
"Registry",
"Allo",
"RFPSimpleStrategy",
"RFPCommitteeStrategy",
"QVSimpleStrategy",
"DonationVotingMerkleDistributionDirectTransferStrategy",
"DonationVotingMerkleDistributionVaultStrategy",
"QVImpactStreamStrategy",
"RecipientSuperApp",
"SuperAppBaseSQF",
"SQFSuperFluidStrategy"
]
gas_reports_ignore = [
"TestStrategy",
"QVBaseStrategyTestMock",
"Permit2",
"MockStrategy",
]
# Storage layout compatibility
build_info = true
extra_output = ["storageLayout"]
# Grants access to solc
allow_paths = ['node_modules']
[fmt]
ignore = ['contracts/strategies/_poc/qv-hackathon/SchemaResolver.sol']
[rpc_endpoints]
mainnet = "${MAINNET_RPC_URL}"
opgoerli = "${OPGOERLI_RPC_URL}"