Skip to content

Commit d257aad

Browse files
committed
docs: update SP1 version
1 parent aa92155 commit d257aad

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

batcher/aligned/get_proof_test_files.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ CURRENT_TAG=$(curl -s -L \
66
https://api.github.com/repos/yetanotherco/aligned_layer/releases/latest \
77
| grep '"tag_name":' | awk -F'"' '{print $4}')
88

9-
SP1_ELF_URL="https://raw.githubusercontent.com/yetanotherco/aligned_layer/$CURRENT_TAG/scripts/test_files/sp1/sp1_fibonacci.elf"
10-
SP1_PROOF_URL="https://raw.githubusercontent.com/yetanotherco/aligned_layer/$CURRENT_TAG/scripts/test_files/sp1/sp1_fibonacci.proof"
9+
SP1_ELF_URL="https://raw.githubusercontent.com/yetanotherco/aligned_layer/$CURRENT_TAG/scripts/test_files/sp1/sp1_fibonacci_4_1_3.elf"
10+
SP1_PROOF_URL="https://raw.githubusercontent.com/yetanotherco/aligned_layer/$CURRENT_TAG/scripts/test_files/sp1/sp1_fibonacci_4_1_3.proof"
1111

12-
SP1_ELF_NAME="sp1_fibonacci.elf"
13-
SP1_PROOF_NAME="sp1_fibonacci.proof"
12+
SP1_ELF_NAME="sp1_fibonacci_4_1_3.elf"
13+
SP1_PROOF_NAME="sp1_fibonacci_4_1_3.proof"
1414

1515
BASE_DIR=$HOME
1616
ALIGNED_DIR="${ALIGNED_DIR-"$BASE_DIR/.aligned"}"

docs/1_introduction/1_try_aligned.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ curl -L https://raw.githubusercontent.com/yetanotherco/aligned_layer/main/batche
3131
rm -rf ~/.aligned/aligned_verification_data/ &&
3232
aligned submit \
3333
--proving_system SP1 \
34-
--proof ~/.aligned/test_files/sp1_fibonacci.proof \
35-
--vm_program ~/.aligned/test_files/sp1_fibonacci.elf \
34+
--proof ~/.aligned/test_files/sp1_fibonacci_4_1_3.proof \
35+
--vm_program ~/.aligned/test_files/sp1_fibonacci_4_1_3.elf \
3636
--aligned_verification_data_path ~/.aligned/aligned_verification_data \
3737
--batcher_url wss://batcher.alignedlayer.com \
3838
--network holesky \

docs/2_architecture/0_supported_verifiers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The following is the list of the verifiers currently supported by Aligned:
66

77
- :white_check_mark: gnark - Groth16 (with BN254) [(v0.10.0)](https://github.com/Consensys/gnark/releases/tag/v0.10.0)
88
- :white_check_mark: gnark - Plonk (with BN254 and BLS12-381) [(v0.10.0)](https://github.com/Consensys/gnark/releases/tag/v0.10.0)
9-
- :white_check_mark: SP1 [(v3.0.0)](https://github.com/succinctlabs/sp1/releases/tag/v3.0.0)
9+
- :white_check_mark: SP1 [(v4.1.3)](https://github.com/succinctlabs/sp1/releases/tag/v4.1.3)
1010
- :white_check_mark: Risc0 [(v1.1.2)](https://github.com/risc0/risc0/releases/tag/v1.1.2)
1111
- 🏗️ Circom
1212
- 🏗️ Lambdaworks

docs/3_guides/0_submitting_proofs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The following is the list of the verifiers currently supported by Aligned:
1212

1313
- :white_check_mark: gnark - Groth16 (with BN254)
1414
- :white_check_mark: gnark - Plonk (with BN254 and BLS12-381)
15-
- :white_check_mark: SP1 [(v3.0.0)](https://github.com/succinctlabs/sp1/releases/tag/v3.0.0)
15+
- :white_check_mark: SP1 [(v4.1.3)](https://github.com/succinctlabs/sp1/releases/tag/v4.1.3)
1616
- :white_check_mark: Risc0 [(v1.1.2)](https://github.com/risc0/risc0/releases/tag/v1.1.2)
1717

1818
Learn more about future verifiers [here](../2_architecture/0_supported_verifiers.md).
@@ -120,7 +120,7 @@ Proof submission is done via the `submit` command of the Aligned CLI. The argume
120120

121121
### SP1 proof
122122

123-
The current SP1 version used in Aligned is `v3.0.0`.
123+
The current SP1 version used in Aligned is `v4.1.3`.
124124

125125
The SP1 proof needs the proof file and the vm program file.
126126

@@ -144,8 +144,8 @@ aligned submit \
144144
rm -rf ./aligned_verification_data/ &&
145145
aligned submit \
146146
--proving_system SP1 \
147-
--proof ./scripts/test_files/sp1/sp1_fibonacci.proof \
148-
--vm_program ./scripts/test_files/sp1/sp1_fibonacci.elf \
147+
--proof ./scripts/test_files/sp1/sp1_fibonacci_4_1_3.proof \
148+
--vm_program ./scripts/test_files/sp1/sp1_fibonacci_4_1_3.elf \
149149
--batcher_url wss://batcher.alignedlayer.com \
150150
--keystore_path ~/.aligned_keystore/keystore0 \
151151
--network holesky \

docs/3_guides/2_build_your_first_aligned_application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Next, we will see how to execute ZKQuiz to get your own ZKQuiz NFT!
3131
2. [Foundry](https://getfoundry.sh)
3232

3333
{% hint style="info" %}
34-
ELF commitment was generated with Rust v1.80.1 and SP1 v3.0.0.
34+
ELF commitment was generated with Rust v1.80.1 and SP1 v4.1.3.
3535
{% endhint %}
3636

3737
### Usage

0 commit comments

Comments
 (0)