@@ -267,7 +267,11 @@ operator_set_eigen_sdk_go_version_error:
267267 @echo " Error setting Eigen SDK version, missing ENVIRONMENT. Possible values for ENVIRONMENT=<devnet|testnet|mainnet>"
268268 exit 1
269269
270- operator_full_registration : operator_get_eth operator_register_with_eigen_layer operator_mint_mock_tokens operator_deposit_into_mock_strategy operator_whitelist_devnet operator_register_with_aligned_layer
270+ operator_full_registration_base : operator_get_eth operator_register_with_eigen_layer operator_whitelist_devnet
271+ operator_full_registration_weth : operator_full_registration_base operator_mint_mock_tokens operator_deposit_into_mock_strategy operator_register_with_aligned_layer_weth
272+ operator_full_registration_ali : operator_full_registration_base operator_mint_mock_tokens operator_deposit_into_mock_strategy operator_register_with_aligned_layer_ali
273+
274+ operator_full_registration : operator_full_registration_base operator_mint_mock_tokens operator_deposit_into_mock_strategy operator_register_with_aligned_layer_weth
271275
272276operator_register_and_start : $(GET_SDK_VERSION ) operator_full_registration operator_start
273277
@@ -358,7 +362,7 @@ operator_remove_from_whitelist:
358362
359363operator_deposit_into_mock_strategy :
360364 @echo " Depositing into mock strategy"
361- $(eval STRATEGY_ADDRESS = $(shell jq -r '.addresses.strategies.WETH ' contracts/script/output/devnet/eigenlayer_deployment_output.json) )
365+ $(eval STRATEGY_ADDRESS = $(shell jq -r '.addresses.strategies.ALI ' contracts/script/output/devnet/eigenlayer_deployment_output.json) )
362366 @go run operator/cmd/main.go deposit-into-strategy \
363367 --config $(CONFIG_FILE ) \
364368 --strategy-address $(STRATEGY_ADDRESS ) \
@@ -374,12 +378,21 @@ operator_deposit_into_strategy:
374378 --strategy-address $(STRATEGY_ADDRESS ) \
375379 --amount $(AMOUNT )
376380
377- operator_register_with_aligned_layer :
381+ operator_register_with_aligned_layer_weth :
378382 @echo " Registering operator with AlignedLayer"
379383 @go run operator/cmd/main.go register \
380- --config $(CONFIG_FILE )
384+ --config $(CONFIG_FILE ) \
385+ --quorum-number 0
386+
387+ operator_register_with_aligned_layer_ali :
388+ @echo " Registering operator with AlignedLayer"
389+ @go run operator/cmd/main.go register \
390+ --config $(CONFIG_FILE ) \
391+ --quorum-number 1
392+
393+ operator_deposit_and_register_weth : operator_deposit_into_strategy operator_register_with_aligned_layer_weth
381394
382- operator_deposit_and_register : operator_deposit_into_strategy operator_register_with_aligned_layer
395+ operator_deposit_and_register_ali : operator_deposit_into_strategy operator_register_with_aligned_layer_ali
383396
384397
385398# The verifier ID to enable or disable corresponds to the index of the verifier in the `ProvingSystemID` enum.
0 commit comments