From a9c3ce0f00641622082751aa4d7593213531dd31 Mon Sep 17 00:00:00 2001 From: Madhur Shrimal Date: Thu, 19 Dec 2024 10:19:04 -0800 Subject: [PATCH] chore: add readme for explicit version install (#277) --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 2d1374b2..e0290230 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ EigenLayer CLI is used to interact with EigenLayer core contracts. * [Supported Key Management Backends](#supported-key-management-backends) * [Supported Operating Systems](#supported-operating-systems) * [Install `eigenlayer` CLI using a binary](#install-eigenlayer-cli-using-a-binary) + * [Installing a particular binary version](#installing-a-particular-binary-version) * [Installing in a custom location](#installing-in-a-custom-location) * [Install `eigenlayer` CLI using Go](#install-eigenlayer-cli-using-go) * [Install `eigenlayer` CLI from source](#install-eigenlayer-cli-from-source) @@ -52,6 +53,17 @@ To add the binary to your path, run: export PATH=$PATH:~/bin ``` +### Installing a particular binary version +To download a binary for a particular version, run: +```bash +curl -sSfL https://raw.githubusercontent.com/layr-labs/eigenlayer-cli/master/scripts/install.sh | sh -s -- +``` + +Example: To install version `v0.11.0`, run: +```bash +curl -sSfL https://raw.githubusercontent.com/layr-labs/eigenlayer-cli/master/scripts/install.sh | sh -s -- v0.11.0 +``` + ### Installing in a custom location To download the binary in a custom location, run: ```bash