julien/lovepublic Fork 0
main
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 · 50 lines · 945 BTOML Blame HistoryRaw
scaffold foundry project f37bb94 julienbrg 5h 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
Merge 5-weth-bytecode-verification into main 2f6da5e rickub 2h ago14fs_permissions = [
15 { access = "read", path = "./out" },
16 { access = "read", path = "./test/fixtures" },
17]
scaffold foundry project f37bb94 julienbrg 5h ago18
19[profile.ci]
20fuzz = { runs = 10_000 }
21verbosity = 4
22
23[profile.lite]
24optimizer = false
25
26[fuzz]
27runs = 1_000
28
29[invariant]
30runs = 256
31depth = 128
32fail_on_revert = false
33
34[fmt]
35line_length = 120
36tab_width = 4
37bracket_spacing = false
38int_types = "long"
39quote_style = "double"
40number_underscore = "thousands"
41multiline_func_header = "attributes_first"
42sort_imports = true
43
44[rpc_endpoints]
45base_sepolia = "${BASE_SEPOLIA_RPC_URL}"
46
47[etherscan]
48base_sepolia = { key = "${ETHERSCAN_API_KEY}", chain = 84532 }
49
50# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options