julien/lovepublic Fork 0
f37bb9402180d830dcb0e0032df58e87e035d1bf
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 · 53 lines · 1.1 KBTOML 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]
42mainnet = "${MAINNET_RPC_URL}"
43sepolia = "${SEPOLIA_RPC_URL}"
44base = "${BASE_RPC_URL}"
45base_sepolia = "${BASE_SEPOLIA_RPC_URL}"
46
47[etherscan]
48mainnet = { key = "${ETHERSCAN_API_KEY}" }
49sepolia = { key = "${ETHERSCAN_API_KEY}" }
50base = { key = "${ETHERSCAN_API_KEY}", chain = 8453 }
51base_sepolia = { key = "${ETHERSCAN_API_KEY}", chain = 84532 }
52
53# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options