Skip to content

Commit df61c76

Browse files
authored
hotfix: use eigenSDK v0.1.13 for devnet (#1895)
2 parents 004debe + 6fdcc2d commit df61c76

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export OPERATOR_ADDRESS ?= $(shell yq -r '.operator.address' $(CONFIG_FILE))
88
AGG_CONFIG_FILE?=config-files/config-aggregator.yaml
99

1010
OPERATOR_VERSION=v0.15.2
11+
EIGEN_SDK_GO_VERSION_DEVNET=v0.1.13
1112
EIGEN_SDK_GO_VERSION_TESTNET=v0.2.0-beta.1
1213
EIGEN_SDK_GO_VERSION_MAINNET=v0.2.0-beta.1
1314

@@ -71,6 +72,9 @@ go_deps:
7172
install_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+
7478
anvil_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

195201
operator_set_eigen_sdk_go_version_mainnet:
196202
@echo "Setting Eigen SDK version to: $(EIGEN_SDK_GO_VERSION_MAINNET)"

scripts/mint_mock_token.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mock_token_address=$(cast call "$mock_strategy_address" "underlyingToken()")
1717

1818
operator_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
2323
fi;

0 commit comments

Comments
 (0)