We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fccdb62 commit 3dda259Copy full SHA for 3dda259
circom/foundry.toml
@@ -1,9 +1,25 @@
1
+# https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
2
+
3
[profile.default]
-src = 'tmp'
-out = "artifacts"
4
-libs = ["./node_modules", "lib"]
+src = "src"
5
+test = "test"
6
+script = "script"
7
+out = "out"
8
+libs = ["node_modules"]
9
optimizer = true
-optimizer_runs = 200
-evm_version = 'shanghai'
-via-ir = true
-solc = "0.8.26"
10
+optimizer_runs = 10_000
11
+solc = "0.8.30"
12
+evm_version = "prague"
13
14
+[profile.ci]
15
+verbosity = 4
16
17
+[fmt]
18
+bracket_spacing = true
19
+int_types = "long"
20
+line_length = 120
21
+multiline_func_header = "all"
22
+number_underscore = "thousands"
23
+quote_style = "double"
24
+tab_width = 4
25
+wrap_comments = true
0 commit comments