-
Notifications
You must be signed in to change notification settings - Fork 2
/
foundry.toml
66 lines (63 loc) · 1.46 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
62
63
64
65
[profile.default]
src = 'contracts'
test = 'test'
script = 'script'
out = 'artifacts'
libs = ['node_modules']
remappings = [
'@boringcrypto/=node_modules/@boringcrypto/',
'@ensdomains/=node_modules/@ensdomains/',
'eth-gas-reporter/=node_modules/eth-gas-reporter/',
'hardhat-deploy/=node_modules/hardhat-deploy/',
'hardhat/=node_modules/hardhat/',
]
libraries = []
cache = true
cache_path = 'cache'
broadcast = 'broadcast'
allow_paths = []
force = false
evm_version = 'london'
gas_reports = ['*']
auto_detect_solc = true
offline = false
optimizer = true
optimizer_runs = 200
verbosity = 0
ignored_error_codes = [
1878,
5574,
]
fuzz_runs = 256
ffi = false
sender = '0x00a329c0648769a73afac7f9381e08fb43dbea72'
tx_origin = '0x00a329c0648769a73afac7f9381e08fb43dbea72'
initial_balance = '0xffffffffffffffffffffffff'
block_number = 1
gas_limit = 9223372036854775807
block_base_fee_per_gas = 0
block_coinbase = '0x0000000000000000000000000000000000000000'
block_timestamp = 1
block_difficulty = 0
memory_limit = 33554432
extra_output = []
extra_output_files = []
fuzz_max_local_rejects = 1024
fuzz_max_global_rejects = 65536
names = false
sizes = false
via_ir = false
no_storage_caching = false
bytecode_hash = 'ipfs'
sparse_mode = false
build_info = false
[profile.default.rpc_storage_caching]
chains = 'all'
endpoints = 'all'
[fmt]
line_length = 80
tab_width = 4
bracket_spacing = false
int_types = 'long'
func_attrs_with_params_multiline = true
quote_style = 'double'