We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fe2d64 commit 0726970Copy full SHA for 0726970
1 file changed
batcher/aligned/send_proof_with_random_address.sh
@@ -18,7 +18,15 @@ echo "Sending $PROOF_TYPE proof to the batcher"
18
19
20
if [ $PROOF_TYPE == "sp1" ]; then
21
- echo "TOD SP1"
+ 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
30
31
elif [ $PROOF_TYPE == "groth16" ]; then
32
cd batcher/aligned/
@@ -38,4 +46,7 @@ elif [ $PROOF_TYPE == "plonk" ]; then
38
46
elif [ $PROOF_TYPE == "risc0" ]; then
39
47
echo "TODO risc0 "
40
48
49
+else
50
+ echo "Incorrect proof type provided"
51
+ exit 1
41
52
fi
0 commit comments