Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naszam/echidnup
Install a specific Echidna version or revert to a specific commit.
https://github.com/naszam/echidnup
echidna ethereum fuzzing script
Last synced: 10 days ago
JSON representation
Install a specific Echidna version or revert to a specific commit.
- Host: GitHub
- URL: https://github.com/naszam/echidnup
- Owner: naszam
- Created: 2022-02-07T18:42:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-08T19:00:17.000Z (almost 3 years ago)
- Last Synced: 2024-07-30T18:34:43.404Z (4 months ago)
- Topics: echidna, ethereum, fuzzing, script
- Language: Shell
- Homepage:
- Size: 14.6 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# echidnup
Install a specific [Echidna](https://github.com/crytic/echidna) Version or revert to a specific commit.## Installing
```sh
curl https://naszam.github.io/echidnup/install | bash
```## Using
To install the **latest** commit:
```sh
echidnup
```To install a specific **tag** (in this case the `v1.7.3` tag):
```sh
echidnup v1.7.3
```To install a **specific** commit (in this case commit `8180d...d00bf5d`):
```sh
echidnup 8180d332c0e77e2ead4a4c4451688b4d1d00bf5d
```To install a specific **branch** (in this case the `dev-test-refactoring` branch's latest commit):
```sh
echidnup dev-test-refactoring
```To install a **fork's main branch** (in this case `naszam/echidna`'s main branch):
```sh
echidnup naszam/echidna
```To install a **specific commit in a fork** (in this case commit `8180d...d00bf5d` made in `naszam/echidna`):
```sh
echidnup naszam/echidna 8180d332c0e77e2ead4a4c4451688b4d1d00bf5d
```To install a **specific branch in a fork** (in this case the `patch-42` branch's latest commit in `naszam/echidna`):
```sh
echidnup naszam/echidna patch-42
```
*Inspired by [duppgrade](https://github.com/Rari-Capital/duppgrade) :sparkles:*