This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
succinct.json
49 lines (49 loc) · 2.29 KB
/
succinct.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"$schema": "https://raw.githubusercontent.com/succinctlabs/succinctx/main/assets/schema.json",
"entrypoints": [
{
"name": "next_header",
"framework": "plonky2x",
"baseDir": ".",
"buildCommand": "mkdir -p build && RUST_LOG=debug cargo run --bin next_header --release build && mv ./target/release/next_header ./build/next_header",
"proveCommand": "RUST_LOG=debug ./build/next_header prove input.json"
},
{
"name": "header_range_1024",
"framework": "plonky2x",
"baseDir": ".",
"buildCommand": "mkdir -p build && RUST_LOG=debug cargo run --bin header_range_1024 --release build && mv ./target/release/header_range_1024 ./build/header_range_1024",
"proveCommand": "RUST_LOG=debug ./build/header_range_1024 prove input.json",
"requiredArtifacts": [
"header_range_1024"
]
},
{
"name": "header_range_2048",
"framework": "plonky2x",
"baseDir": ".",
"buildCommand": "mkdir -p build && RUST_LOG=debug cargo run --bin header_range_2048 --release build && mv ./target/release/header_range_2048 ./build/header_range_2048",
"proveCommand": "RUST_LOG=debug ./build/header_range_2048 prove input.json",
"requiredArtifacts": [
"header_range_2048"
]
},
{
"name": "next_header_mocha",
"framework": "plonky2x",
"baseDir": ".",
"buildCommand": "mkdir -p build && RUST_LOG=debug cargo run --bin next_header_mocha --release build && mv ./target/release/next_header_mocha ./build/next_header_mocha",
"proveCommand": "RUST_LOG=debug ./build/next_header_mocha prove input.json"
},
{
"name": "header_range_mocha",
"framework": "plonky2x",
"baseDir": ".",
"buildCommand": "mkdir -p build && RUST_LOG=debug cargo run --bin header_range_mocha --release build && mv ./target/release/header_range_mocha ./build/header_range_mocha",
"proveCommand": "RUST_LOG=debug ./build/header_range_mocha prove input.json",
"requiredArtifacts": [
"header_range_mocha"
]
}
]
}