@@ -7,7 +7,7 @@ CONFIG_FILE?=config-files/config.yaml
77export OPERATOR_ADDRESS ?= $(shell yq -r '.operator.address' $(CONFIG_FILE ) )
88AGG_CONFIG_FILE? =config-files/config-aggregator.yaml
99
10- OPERATOR_VERSION =v0.15.1
10+ OPERATOR_VERSION =v0.15.2
1111EIGEN_SDK_GO_VERSION_TESTNET =v0.2.0-beta.1
1212EIGEN_SDK_GO_VERSION_MAINNET =v0.2.0-beta.1
1313
@@ -159,13 +159,13 @@ is_aggregator_set:
159159 fi
160160
161161start_proof_aggregator_dev : is_aggregator_set # # Starts proof aggregator with mock proofs (DEV mode)
162- RISC0_DEV_MODE=1 cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features $( AGGREGATOR ) -- config-files/config-proof-aggregator-mock.yaml
162+ AGGREGATOR= $( AGGREGATOR ) RISC0_DEV_MODE=1 cargo run --manifest-path ./aggregation_mode/Cargo.toml --release -- config-files/config-proof-aggregator-mock.yaml
163163
164164start_proof_aggregator : is_aggregator_set # # Starts proof aggregator with proving activated
165- cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove, $( AGGREGATOR ) -- config-files/config-proof-aggregator.yaml
165+ AGGREGATOR= $( AGGREGATOR ) cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove -- config-files/config-proof-aggregator.yaml
166166
167167start_proof_aggregator_gpu : is_aggregator_set # # Starts proof aggregator with proving + GPU acceleration (CUDA)
168- SP1_PROVER=cuda cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove,gpu, $( AGGREGATOR ) -- config-files/config-proof-aggregator.yaml
168+ AGGREGATOR= $( AGGREGATOR ) SP1_PROVER=cuda cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove,gpu -- config-files/config-proof-aggregator.yaml
169169
170170verify_aggregated_proof_sp1_holesky_stage :
171171 @echo " Verifying SP1 in aggregated proofs on holesky..."
@@ -191,7 +191,6 @@ verify_aggregated_proof_risc0_holesky_stage:
191191 --beacon_url $(BEACON_URL ) \
192192 --rpc_url https://ethereum-holesky-rpc.publicnode.com
193193
194-
195194_AGGREGATOR_ :
196195
197196build_aggregator :
@@ -738,7 +737,7 @@ build_aligned_contracts:
738737
739738show_aligned_error_codes :
740739 @echo " \nAlignedLayerServiceManager errors:"
741- @cd contracts && forge inspect src/core/IAligedLayerServiceManager .sol:IAlignedLayerServiceManager errors
740+ @cd contracts && forge inspect src/core/IAlignedLayerServiceManager .sol:IAlignedLayerServiceManager errors
742741 @echo " \nBatcherPaymentService errors:"
743742 @cd contracts && forge inspect src/core/BatcherPaymentService.sol:BatcherPaymentService errors
744743
0 commit comments