-
Notifications
You must be signed in to change notification settings - Fork 3
/
foundry.toml
18 lines (17 loc) · 1.33 KB
/
foundry.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[profile.default]
src = 'contracts' # the source directory
test = 'test' # the test directory
out = 'artifacts' # the output directory (for artifacts)
cache = true # whether to cache builds or not
force = false # whether to ignore the cache (clean build)
solc_version = "0.8.17"
optimizer = true # enable or disable the solc optimizer
optimizer_runs = 1000 # the number of optimizer runs
verbosity = 3 # The verbosity of tests
ignored_error_codes = [] # a list of ignored solc error codes
block_number = 10000
block_timestamp = 1640966400 # 2022/01/01 00:00
initial_balance = '0xffffffffffffffffffffffff' # the initial balance of the test contract
gas_limit = 9223372036854775807 # the gas limit in tests
gas_price = 0 # the gas price (in wei) in tests
# See more config options https://github.com/foundry-rs/foundry/tree/master/config