@@ -171,13 +171,13 @@ reset_last_aggregated_block:
171171 @echo ' {"last_aggregated_block":0}' > config-files/proof-aggregator.last_aggregated_block.json
172172
173173start_proof_aggregator_dev : is_aggregator_set reset_last_aggregated_block # # Starts proof aggregator with mock proofs (DEV mode)
174- AGGREGATOR=$(AGGREGATOR ) RISC0_DEV_MODE=1 cargo run --manifest-path ./aggregation_mode/Cargo.toml --release -- config-files/config-proof-aggregator-mock.yaml
174+ AGGREGATOR=$(AGGREGATOR ) RISC0_DEV_MODE=1 cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin proof_aggregator -- config-files/config-proof-aggregator-mock.yaml
175175
176176start_proof_aggregator : is_aggregator_set reset_last_aggregated_block # # Starts proof aggregator with proving activated
177- AGGREGATOR=$(AGGREGATOR ) cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove -- config-files/config-proof-aggregator.yaml
177+ AGGREGATOR=$(AGGREGATOR ) cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove --bin proof_aggregator -- config-files/config-proof-aggregator.yaml
178178
179179start_proof_aggregator_gpu : is_aggregator_set reset_last_aggregated_block # # Starts proof aggregator with proving + GPU acceleration (CUDA)
180- AGGREGATOR=$(AGGREGATOR ) SP1_PROVER=cuda cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove,gpu -- config-files/config-proof-aggregator.yaml
180+ AGGREGATOR=$(AGGREGATOR ) SP1_PROVER=cuda cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove,gpu --bin proof_aggregator -- config-files/config-proof-aggregator.yaml
181181
182182verify_aggregated_proof_sp1_holesky_stage :
183183 @echo " Verifying SP1 in aggregated proofs on holesky..."
@@ -204,7 +204,11 @@ verify_aggregated_proof_risc0_holesky_stage:
204204 --rpc_url https://ethereum-holesky-rpc.publicnode.com
205205
206206install_aggregation_mode : # # Install the aggregation mode with proving enabled
207- cargo install --path aggregation_mode --features prove,gpu
207+ cargo install --path aggregation_mode --features prove,gpu --bin proof_aggregator
208+
209+ agg_mode_write_program_ids : # # Write proof aggregator zkvm programs ids
210+ @cd aggregation_mode && \
211+ cargo run --release --bin write_program_image_id_vk_hash
208212
209213_AGGREGATOR_ :
210214
0 commit comments