-
Notifications
You must be signed in to change notification settings - Fork 3
/
foundry.toml
92 lines (86 loc) · 1.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[profile.default]
solc_version = '0.8.17'
auto_detect_solc = false
src = 'src'
test = 'test'
script = 'script'
out = 'out'
libs = ['lib']
auto_detect_remappings = true
libraries = []
cache = true
cache_path = 'cache'
broadcast = 'broadcast'
allow_paths = []
include_paths = []
force = false
evm_version = 'london'
gas_reports = ['*']
gas_reports_ignore = []
offline = false
optimizer = true
optimizer_runs = 1_000_000
verbosity = 0
ignored_error_codes = [
'license',
'code-size',
]
deny_warnings = false
build_info = false
ffi = false
sender = '0x1804c8ab1f12e6bbf3894d4083f33e07309d1f38'
tx_origin = '0x1804c8ab1f12e6bbf3894d4083f33e07309d1f38'
initial_balance = '0xffffffffffffffffffffffff'
block_number = 1
gas_limit = 9223372036854775807
block_base_fee_per_gas = 0
block_coinbase = '0x0000000000000000000000000000000000000000'
block_timestamp = 1
block_difficulty = 0
block_prevrandao = '0x0000000000000000000000000000000000000000000000000000000000000000'
memory_limit = 33554432
extra_output = []
extra_output_files = []
names = false
sizes = false
via_ir = false
no_storage_caching = false
bytecode_hash = 'ipfs'
cbor_metadata = true
sparse_mode = false
[[profile.default.fs_permissions]]
access = 'read'
path = 'script/input'
[profile.default.rpc_storage_caching]
chains = 'all'
endpoints = 'all'
[fmt]
line_length = 120
tab_width = 4
bracket_spacing = false
int_types = 'long'
multiline_func_header = 'attributes_first'
quote_style = 'double'
number_underscore = 'preserve'
single_line_statement_blocks = 'preserve'
override_spacing = false
wrap_comments = false
ignore = []
[doc]
out = 'docs'
title = ''
book = 'book.toml'
[fuzz]
runs = 256
max_test_rejects = 65536
dictionary_weight = 40
include_storage = true
include_push_bytes = true
[invariant]
runs = 256
depth = 15
fail_on_revert = false
call_override = false
dictionary_weight = 80
include_storage = true
include_push_bytes = true