File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export OPERATOR_ADDRESS ?= $(shell yq -r '.operator.address' $(CONFIG_FILE))
88AGG_CONFIG_FILE? =config-files/config-aggregator.yaml
99
1010OPERATOR_VERSION =v0.15.2
11+ EIGEN_SDK_GO_VERSION_DEVNET =v0.1.13
1112EIGEN_SDK_GO_VERSION_TESTNET =v0.2.0-beta.1
1213EIGEN_SDK_GO_VERSION_MAINNET =v0.2.0-beta.1
1314
@@ -71,6 +72,9 @@ go_deps:
7172install_foundry :
7273 curl -L https://foundry.paradigm.xyz | bash
7374
75+ install_eigenlayer_cli_devnet : # # Install Eigenlayer CLI v0.11.3 (Devnet compatible)
76+ curl -sSfL https://raw.githubusercontent.com/layr-labs/eigenlayer-cli/master/scripts/install.sh | sh -s -- v0.11.3
77+
7478anvil_deploy_eigen_contracts :
7579 @echo " Deploying Eigen Contracts..."
7680 . contracts/scripts/anvil/deploy_eigen_contracts.sh
@@ -190,7 +194,9 @@ operator_set_eigen_sdk_go_version_testnet:
190194 @echo " Setting Eigen SDK version to: $( EIGEN_SDK_GO_VERSION_TESTNET) "
191195 go get github.com/Layr-Labs/eigensdk-go@$(EIGEN_SDK_GO_VERSION_TESTNET )
192196
193- operator_set_eigen_sdk_go_version_devnet : operator_set_eigen_sdk_go_version_mainnet
197+ operator_set_eigen_sdk_go_version_devnet :
198+ @echo " Setting Eigen SDK version to: $( EIGEN_SDK_GO_VERSION_DEVNET) "
199+ go get github.com/Layr-Labs/eigensdk-go@$(EIGEN_SDK_GO_VERSION_DEVNET )
194200
195201operator_set_eigen_sdk_go_version_mainnet :
196202 @echo " Setting Eigen SDK version to: $( EIGEN_SDK_GO_VERSION_MAINNET) "
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ mock_token_address=$(cast call "$mock_strategy_address" "underlyingToken()")
1717
1818operator_address=$( cat " $1 " | yq -r ' .operator.address' )
1919
20- if [[-z " $mock_token_address " ]]; then
20+ if [[ -z " $mock_token_address " ]]; then
2121 echo " Mock token address is empty, please deploy the contracts first"
2222 exit 1
2323fi ;
You can’t perform that action at this time.
0 commit comments