File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,15 @@ echo "Sending $PROOF_TYPE proof to the batcher"
1818
1919
2020if [ $PROOF_TYPE == " sp1" ]; then
21- echo " TOD SP1"
21+ cd batcher/aligned/
22+ cargo run --release -- submit \
23+ --proving_system SP1 \
24+ --proof ../../scripts/test_files/sp1/sp1_fibonacci_4_1_3.proof \
25+ --vm_program ../../scripts/test_files/sp1/sp1_fibonacci_4_1_3.elf \
26+ --proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657 \
27+ --random_address \
28+ --rpc_url $RPC_URL \
29+ --network $NETWORK
2230
2331elif [ $PROOF_TYPE == " groth16" ]; then
2432 cd batcher/aligned/
@@ -38,4 +46,7 @@ elif [ $PROOF_TYPE == "plonk" ]; then
3846elif [ $PROOF_TYPE == " risc0" ]; then
3947 echo " TODO risc0 "
4048
49+ else
50+ echo " Incorrect proof type provided"
51+ exit 1
4152fi
You can’t perform that action at this time.
0 commit comments