diff --git a/README.md b/README.md index beb322c..01bc4e1 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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 diff --git a/bin/ruskquery b/bin/ruskquery index 988eb78..34cb4e3 100644 --- a/bin/ruskquery +++ b/bin/ruskquery @@ -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" diff --git a/node-installer.sh b/node-installer.sh index d7de452..0173d17 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -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" ;; @@ -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"