| scaffold foundry project f37bb94 julienbrg 5h ago | 1 | [profile.default] |
| 2 | src = "src" |
| 3 | out = "out" |
| 4 | libs = ["lib"] |
| 5 | test = "test" |
| 6 | script = "script" |
| 7 | solc = "0.8.30" |
| 8 | evm_version = "cancun" |
| 9 | optimizer = true |
| 10 | optimizer_runs = 200 |
| 11 | via_ir = false |
| 12 | bytecode_hash = "none" |
| 13 | verbosity = 2 |
| Merge 5-weth-bytecode-verification into main 2f6da5e rickub 2h ago | 14 | fs_permissions = [ |
| 15 | { access = "read", path = "./out" }, |
| 16 | { access = "read", path = "./test/fixtures" }, |
| 17 | ] |
| scaffold foundry project f37bb94 julienbrg 5h ago | 18 | |
| 19 | [profile.ci] |
| 20 | fuzz = { runs = 10_000 } |
| 21 | verbosity = 4 |
| 22 | |
| 23 | [profile.lite] |
| 24 | optimizer = false |
| 25 | |
| 26 | [fuzz] |
| 27 | runs = 1_000 |
| 28 | |
| 29 | [invariant] |
| 30 | runs = 256 |
| 31 | depth = 128 |
| 32 | fail_on_revert = false |
| 33 | |
| 34 | [fmt] |
| 35 | line_length = 120 |
| 36 | tab_width = 4 |
| 37 | bracket_spacing = false |
| 38 | int_types = "long" |
| 39 | quote_style = "double" |
| 40 | number_underscore = "thousands" |
| 41 | multiline_func_header = "attributes_first" |
| 42 | sort_imports = true |
| 43 | |
| 44 | [rpc_endpoints] |
| 45 | base_sepolia = "${BASE_SEPOLIA_RPC_URL}" |
| 46 | |
| 47 | [etherscan] |
| 48 | base_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 |