@@ -437,8 +437,8 @@ operator_remove_from_whitelist_devnet:
437437 RPC_URL=" http://localhost:8545" PRIVATE_KEY=" 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80" OUTPUT_PATH=./script/output/devnet/alignedlayer_deployment_output.json ./contracts/scripts/operator_remove_from_whitelist.sh $(OPERATOR_ADDRESS )
438438
439439operator_whitelist :
440- @echo " Whitelisting operator $( OPERATOR_ADDRESS) "
441- @. contracts/scripts/.env && . contracts/scripts/operator_whitelist.sh $(OPERATOR_ADDRESS )
440+ @echo " Whitelisting operator $( OPERATOR_ADDRESS) on $( NETWORK ) "
441+ @. contracts/scripts/.env. $( NETWORK ) && . contracts/scripts/operator_whitelist.sh $(OPERATOR_ADDRESS )
442442
443443operator_remove_from_whitelist :
444444 @echo " Removing operator $( OPERATOR_ADDRESS) "
@@ -837,7 +837,7 @@ generate_circom_groth16_bn256_no_pub_input_setup: ## Run the circom_groth16_bn25
837837__CONTRACTS_DEPLOYMENT__ : # # ____
838838deploy_aligned_contracts : # # Deploy Aligned Contracts. Parameters: NETWORK=<mainnet|holesky|sepolia>
839839 @echo " Deploying Aligned Contracts on $( NETWORK) network..."
840- @. co ntracts /scripts/.env.$(NETWORK ) && . contracts/scripts/deploy_aligned_contracts.sh
840+ @. contracts /scripts/.env.$(NETWORK ) && . contracts/scripts/deploy_aligned_contracts.sh
841841
842842deploy_pauser_registry : # # Deploy Pauser Registry
843843 @echo " Deploying Pauser Registry..."
@@ -1395,29 +1395,26 @@ ansible_batcher_create_env: ## Create empty variables files for the Batcher depl
13951395 @echo " Config files for the Batcher created in infra/ansible/playbooks/ini"
13961396 @echo " Please complete the values and run make ansible_batcher_deploy"
13971397
1398- ansible_batcher_deploy : # # Deploy the Batcher. Parameters: INVENTORY, KEYSTORE
1399- @if [ -z " $( INVENTORY) " ] || [ -z " $( KEYSTORE ) " ] ; then \
1400- echo " Error: Both INVENTORY and KEYSTORE must be set." ; \
1398+ ansible_batcher_deploy : # # Deploy the Batcher. Parameters: INVENTORY
1399+ @if [ -z " $( INVENTORY) " ]; then \
1400+ echo " Error: INVENTORY must be set." ; \
14011401 exit 1; \
14021402 fi
14031403 @ansible-playbook infra/ansible/playbooks/batcher.yaml \
1404- -i $(INVENTORY ) \
1405- -e " keystore_path=$( KEYSTORE) "
1404+ -i $(INVENTORY )
14061405
14071406ansible_aggregator_create_env : # # Create empty variables files for the Aggregator deploy
14081407 @cp -n infra/ansible/playbooks/ini/config-aggregator.ini.example infra/ansible/playbooks/ini/config-aggregator.ini
14091408 @echo " Config files for the Aggregator created in infra/ansible/playbooks/ini"
14101409 @echo " Please complete the values and run make ansible_aggregator_deploy"
14111410
14121411ansible_aggregator_deploy : # # Deploy the Operator. Parameters: INVENTORY
1413- @if [ -z " $( INVENTORY) " ] || [ -z " $( ECDSA_KEYSTORE ) " ] || [ -z " $( BLS_KEYSTORE ) " ] ; then \
1414- echo " Error: INVENTORY, ECDSA_KEYSTORE, BLS_KEYSTORE must be set." ; \
1412+ @if [ -z " $( INVENTORY) " ]; then \
1413+ echo " Error: INVENTORY must be set." ; \
14151414 exit 1; \
14161415 fi
14171416 @ansible-playbook infra/ansible/playbooks/aggregator.yaml \
1418- -i $(INVENTORY ) \
1419- -e " ecdsa_keystore_path=$( ECDSA_KEYSTORE) " \
1420- -e " bls_keystore_path=$( BLS_KEYSTORE) "
1417+ -i $(INVENTORY )
14211418
14221419ansible_operator_create_env : # # Create empty variables files for the Operator deploy
14231420 @cp -n infra/ansible/playbooks/ini/config-operator.ini.example infra/ansible/playbooks/ini/config-operator.ini
@@ -1426,14 +1423,12 @@ ansible_operator_create_env: ## Create empty variables files for the Operator de
14261423 @echo " Please complete the values and run make ansible_operator_deploy"
14271424
14281425ansible_operator_deploy : # # Deploy the Operator. Parameters: INVENTORY
1429- @if [ -z " $( INVENTORY) " ] || [ -z " $( ECDSA_KEYSTORE ) " ] || [ -z " $( BLS_KEYSTORE ) " ] ; then \
1430- echo " Error: INVENTORY, ECDSA_KEYSTORE, BLS_KEYSTORE must be set." ; \
1426+ @if [ -z " $( INVENTORY) " ]; then \
1427+ echo " Error: INVENTORY must be set." ; \
14311428 exit 1; \
14321429 fi
14331430 @ansible-playbook infra/ansible/playbooks/operator.yaml \
1434- -i $(INVENTORY ) \
1435- -e " ecdsa_keystore_path=$( ECDSA_KEYSTORE) " \
1436- -e " bls_keystore_path=$( BLS_KEYSTORE) "
1431+ -i $(INVENTORY )
14371432
14381433ansible_explorer_deploy : # # Deploy the Explorer. Parameters: INVENTORY
14391434 @ansible-playbook infra/ansible/playbooks/explorer.yaml \
0 commit comments