Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Rari-Capital/duppgrade
Update or revert to a specific DappTools commit with ease.
https://github.com/Rari-Capital/duppgrade
Last synced: about 2 months ago
JSON representation
Update or revert to a specific DappTools commit with ease.
- Host: GitHub
- URL: https://github.com/Rari-Capital/duppgrade
- Owner: Rari-Capital
- License: agpl-3.0
- Created: 2021-08-09T03:05:11.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-03T18:38:53.000Z (about 3 years ago)
- Last Synced: 2024-08-04T23:08:42.036Z (5 months ago)
- Language: Shell
- Homepage:
- Size: 36.1 KB
- Stars: 37
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-smart-contract-development - duppgrade
- awesome-dapptools - duppgrade
README
# duppgrade
Update or revert to a specific [DappTools](https://github.com/dapphub/dapptools) commit with ease.
## Installing
```sh
curl https://rari-capital.github.io/duppgrade/install | bash
```## Using
To install the **latest** commit:
```sh
duppgrade
```To install a specific **tag** (in this case the `hevm/0.48.0` tag):
```sh
duppgrade hevm/0.48.0
```To install a **specific** commit (in this case commit `213a3...05583`):
```sh
duppgrade 213a3c5cc07b9210124afc06ca63926aee305583
```To install a specific **branch** (in this case the `london` branch's latest commit):
```sh
duppgrade london
```To install a **fork's main branch** (in this case `transmissions11/dapptools`'s main branch):
```sh
duppgrade transmissions11/dapptools
```To install a **specific commit in a fork** (in this case commit `e7594...399ab` made in `transmissions11/dapptools`):
```sh
duppgrade transmissions11/dapptools e7594a6a8228bfb2494385e02d4e79d8fa2399ab
```To install a **specific branch in a fork** (in this case the `patch-10` branch's latest commit in `transmissions11/dapptools`):
```sh
duppgrade transmissions11/dapptools patch-10
```