Skip to content

Commit

Permalink
more suaveup readme
Browse files Browse the repository at this point in the history
  • Loading branch information
metachris committed Jan 9, 2024
1 parent d3242f8 commit 179f5c9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,14 @@ For a deeper dive, check out the following links:

### Starting a local devnet


There's two ways to start the local devnet: with Docker or directly using the suave-geth binary.

#### Install the latest suave-geth release binary

```bash
curl -L https://suaveup.flashbots.net | bash
```

#### Building from source

```bash
Expand Down
14 changes: 14 additions & 0 deletions suave/suaveup/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# `suaveup`

Update or revert to a specific SUAVE release with ease.

Install the latest version of suave-geth:

```bash
curl -L https://suaveup.flashbots.net | bash
```

Or a specific version (i.e. v0.1.0):

```bash
curl -L https://suaveup.flashbots.net | bash -s -- --version v0.1.0
```

You can also just download the bash script and use it without curl: [suaveup](./suaveup).
2 changes: 1 addition & 1 deletion suave/suaveup/suaveup
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if [ -z "$VERSION" ]; then
VERSION=$(get_latest_release)
fi

echo "🔎 Downloading version: $VERSION ..."
echo "🔎 Downloading suave-geth $VERSION ..."

if [ "$(uname -m)" = "x86_64" ]; then
ARCH_STRING="linux_amd64"
Expand Down

0 comments on commit 179f5c9

Please sign in to comment.