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