Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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:*