@@ -167,6 +167,31 @@ start_proof_aggregator: is_aggregator_set ## Starts proof aggregator with provin
167167start_proof_aggregator_gpu : is_aggregator_set # # Starts proof aggregator with proving + GPU acceleration (CUDA)
168168 SP1_PROVER=cuda cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove,gpu,$(AGGREGATOR ) -- config-files/config-proof-aggregator.yaml
169169
170+ verify_aggregated_proof_sp1_holesky_stage :
171+ @echo " Verifying SP1 in aggregated proofs on holesky..."
172+ @cd batcher/aligned/ && \
173+ cargo run verify-agg-proof \
174+ --network holesky-stage \
175+ --from-block $(FROM_BLOCK ) \
176+ --proving_system SP1 \
177+ --public_input ../../scripts/test_files/sp1/sp1_fibonacci_4_1_3.pub \
178+ --program-id-file ../../scripts/test_files/sp1/sp1_fibonacci_4_1_3.vk \
179+ --beacon_url $(BEACON_URL ) \
180+ --rpc_url https://ethereum-holesky-rpc.publicnode.com
181+
182+ verify_aggregated_proof_risc0_holesky_stage :
183+ @echo " Verifying RISC0 in aggregated proofs on holesky..."
184+ @cd batcher/aligned/ && \
185+ cargo run verify-agg-proof \
186+ --network holesky-stage \
187+ --from-block $(FROM_BLOCK ) \
188+ --proving_system Risc0 \
189+ --program-id-file ../../scripts/test_files/risc_zero/fibonacci_proof_generator/fibonacci_id_2_0.bin \
190+ --public_input ../../scripts/test_files/risc_zero/fibonacci_proof_generator/risc_zero_fibonacci_2_0.pub \
191+ --beacon_url $(BEACON_URL ) \
192+ --rpc_url https://ethereum-holesky-rpc.publicnode.com
193+
194+
170195_AGGREGATOR_ :
171196
172197build_aggregator :
@@ -461,8 +486,8 @@ batcher_send_risc0_burst:
461486 --public_input ../../scripts/test_files/risc_zero/fibonacci_proof_generator/risc_zero_fibonacci_2_0.pub \
462487 --repetitions $(BURST_SIZE) \
463488 --proof_generator_addr 0x66f9664f97F2b50F62D13eA064982f936dE76657 \
464- --rpc_url $(RPC_URL) \
465- --network $(NETWORK)
489+ --rpc_url https://ethereum-holesky-rpc.publicnode.com \
490+ --network holesky-stage
466491
467492batcher_send_plonk_bn254_task : batcher/target/release/aligned
468493 @echo " Sending Groth16Bn254 1!=0 task to Batcher..."
0 commit comments