julien/lovepublic Fork 0
dded29a03d3e4395f369c9e2c8fc829fba287322
Commits
Clone
git clone https://git.rickub.com/julien/love.git
git clone ssh://git@rickub.com/julien/love.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

foundry.toml · 47 lines · 887 BTOML Blame HistoryRaw
scaffold foundry project f37bb94 julienbrg 8h ago1[profile.default]
2src = "src"
3out = "out"
4libs = ["lib"]
5test = "test"
6script = "script"
7solc = "0.8.30"
8evm_version = "cancun"
9optimizer = true
10optimizer_runs = 200
11via_ir = false
12bytecode_hash = "none"
13verbosity = 2
14fs_permissions = [{ access = "read", path = "./out" }]
15
16[profile.ci]
17fuzz = { runs = 10_000 }
18verbosity = 4
19
20[profile.lite]
21optimizer = false
22
23[fuzz]
24runs = 1_000
25
26[invariant]
27runs = 256
28depth = 128
29fail_on_revert = false
30
31[fmt]
32line_length = 120
33tab_width = 4
34bracket_spacing = false
35int_types = "long"
36quote_style = "double"
37number_underscore = "thousands"
38multiline_func_header = "attributes_first"
39sort_imports = true
40
41[rpc_endpoints]
42base_sepolia = "${BASE_SEPOLIA_RPC_URL}"
43
44[etherscan]
45base_sepolia = { key = "${ETHERSCAN_API_KEY}", chain = 84532 }
46
47# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options