-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathfoundry.toml
More file actions
39 lines (37 loc) · 835 Bytes
/
foundry.toml
File metadata and controls
39 lines (37 loc) · 835 Bytes
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
[profile.default]
src = 'src'
out = 'out'
libs = ['lib']
test = 'test'
solc_version = "0.8.18"
optimizer = true
optimizer_runs = 200
gas_reports = [
"IPNFT",
"IPNFTV2",
"SchmackoSwap",
"Tokenizer",
"IPToken",
"CrowdSale",
"LockingCrowdSale",
"StakedLockingCrowdSale",
"TimelockedToken",
"TermsAcceptedPermissioner",
"SignedMintAuthorizer",
]
fs_permissions = [
{ access = "read-write", path = "./SALEID.txt" },
{ access = "read", path = "./out" },
]
[fmt]
bracket_spacing = true
line_length = 150
tab_width = 4
quote_style = 'double'
func_attrs_with_params_multiline = true
override_spacing = false
sort_imports = true
[rpc_endpoints]
optimism = "https://optimism-goerli.infura.io/v3/${INFURA_KEY}"
goerli = "https://goerli.infura.io/v3/${INFURA_KEY}"
mainnet = "https://mainnet.infura.io/v3/${INFURA_KEY}"