Skip to content

Commit

Permalink
Update to release 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
HDauven committed Dec 27, 2024
1 parent 970245d commit 0d4b5d7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The log files can be found in `/var/log/rusk.log` and `/var/log/rusk-recovery.lo

:information_source: To run the **latest release** of the Node Installer execute the following command:
```sh
curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/download/v0.5.0/node-installer.sh | sudo bash
curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/download/v0.5.1/node-installer.sh | sudo bash
```

:warning: **CAUTION** To run the **not release yet** unstable version of the Node Installer execute the following command:
Expand All @@ -59,14 +59,14 @@ curl --proto '=https' --tlsv1.2 -sSfL https://raw.githubusercontent.com/dusk-net

By default, the installer runs the node for our mainnet. If you'd like to run a node for the Nocturne testnet or Lunare devnet, you can pass `testnet` or `devnet` as an option during installation:
```sh
curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/download/v0.5.0/node-installer.sh | sudo bash -s testnet
curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/download/v0.5.1/node-installer.sh | sudo bash -s testnet
```

### Features

It is possible to run an archive node through the installer. By default, the installer will download a Provisioner node with proving capabilities. By setting a `FEATURE` variable to `archive`, it's possible to download an archive node binary:
```sh
curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/download/v0.5.0/node-installer.sh | FEATURE="archive" sudo bash
curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/download/v0.5.1/node-installer.sh | FEATURE="archive" sudo bash
```

## ⚙️ Configuration
Expand Down
2 changes: 1 addition & 1 deletion bin/ruskquery
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
API_ENDPOINT="http://127.0.0.1:8080"
RUSK_VERSION="1.0.0-rc.0"
CONTENT_TYPE="application/json"
INSTALLER_VERSION="v0.5.0"
INSTALLER_VERSION="v0.5.1"

show_help() {
echo "Dusk Query Tool"
Expand Down
4 changes: 2 additions & 2 deletions node-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ configure_network() {
case "$network" in
mainnet)
kadcast_id="0x40"
bootstrapping_nodes="['134.122.56.74', '104.248.139.145', '146.190.140.211']"
bootstrapping_nodes="['134.122.56.74:9000', '104.248.139.145:9000', '146.190.140.211:9000']"
genesis_timestamp="'2024-12-29T12:00:00Z'"
base_state="https://nodes.dusk.network/genesis-state"
;;
Expand Down Expand Up @@ -185,7 +185,7 @@ mkdir -p /opt/dusk/services
mkdir -p /opt/dusk/installer
mkdir -p ~/.dusk/rusk-wallet

INSTALLER_URL="https://github.com/dusk-network/node-installer/tarball/main"
INSTALLER_URL="https://github.com/dusk-network/node-installer/archive/refs/tags/v0.5.1.tar.gz"

echo "Downloading installer package for additional scripts and configurations"
curl -so /opt/dusk/installer/installer.tar.gz -L "$INSTALLER_URL"
Expand Down

0 comments on commit 0d4b5d7

Please sign in to comment.