Skip to content

chore: add readme for explicit version install #277

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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 -- <version>
```

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
Expand Down
Loading