From 8c03f1a9673a344ed3114253ea65edb5b8810674 Mon Sep 17 00:00:00 2001 From: Chris Hager Date: Tue, 9 Jan 2024 12:49:16 +0100 Subject: [PATCH] more suaveup readme --- README.md | 7 ++++++- suave/suaveup/README.md | 14 ++++++++++++++ suave/suaveup/suaveup | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fcc3ebd77..6eb98aad8 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/suave/suaveup/README.md b/suave/suaveup/README.md index 7c6fb5a56..cedf7f0f0 100644 --- a/suave/suaveup/README.md +++ b/suave/suaveup/README.md @@ -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). diff --git a/suave/suaveup/suaveup b/suave/suaveup/suaveup index 79355cc55..62602c6e3 100755 --- a/suave/suaveup/suaveup +++ b/suave/suaveup/suaveup @@ -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"