-
Notifications
You must be signed in to change notification settings - Fork 3
/
foundry.toml
16 lines (15 loc) · 1.08 KB
/
foundry.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[profile.default]
src = "src" # Set the source directory.
test = "test" # Set the test directory.
out = "out" # Set the output directory for the artifacts.
libs = ["lib"] # Configure an array of library directories.
solc_version = "0.8.26" # Set the Solidity compiler version.
optimizer = true # Enable the Solidity compiler optimiser.
optimizer_runs = 99999 # Configure the number of optimiser runs.
ffi = true # Enable the foreign function interface (ffi) cheatcode.
gas_reports = ["*"] # Enable gas reports for all contracts.
# Remapping for benchmarks.
remappings = [
"solady/src/=lib/gud-cdf/lib/solady/src/",
"solidity-cdf/=lib/solidity-cdf/src/",
]