diff --git a/README.md b/README.md index 836b1d8..f9c263b 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,12 @@ 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.3.3/node-installer.sh | sudo sh +curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/download/v0.3.4/node-installer.sh | sudo sh ``` By default, the installer runs the node for our Nocturne testnet. If you'd like to run a node for the Lunare devnet or mainnet, you can pass `devnet` or `mainnet` as an option during installation: ```sh -curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/download/v0.3.3/node-installer.sh | sudo sh -s devnet +curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/download/v0.3.4/node-installer.sh | sudo sh -s devnet ``` :warning: **CAUTION** To run the **not release yet** unstable version of the Node Installer execute the following command: diff --git a/bin/download_state.sh b/bin/download_state.sh index bc72b9f..233c0b4 100644 --- a/bin/download_state.sh +++ b/bin/download_state.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -STATE_LIST_URL="https://nodes.dusk.network/state/list" +STATE_LIST_URL="https://testnet.nodes.dusk.network/state/list" # Function to display a warning message display_warning() { @@ -67,7 +67,7 @@ fi display_warning # Download the file -STATE_URL="https://nodes.dusk.network/state/$state_number" +STATE_URL="https://testnet.nodes.dusk.network/state/$state_number" echo "Downloading state $state_number from $STATE_URL..." if ! curl -f -so /tmp/state.tar.gz -L "$STATE_URL"; then diff --git a/bin/rusk-wallet b/bin/rusk-wallet index a97d258..d647c36 100755 Binary files a/bin/rusk-wallet and b/bin/rusk-wallet differ diff --git a/bin/ruskquery b/bin/ruskquery index 20f0272..0fec104 100644 --- a/bin/ruskquery +++ b/bin/ruskquery @@ -4,7 +4,7 @@ API_ENDPOINT="http://127.0.0.1:8080" RUSK_VERSION="0.8.0" CONTENT_TYPE="application/json" -INSTALLER_VERSION="v0.3.3" +INSTALLER_VERSION="v0.3.4" show_help() { echo "Dusk Query Tool" diff --git a/node-installer.sh b/node-installer.sh index 2e28fe7..0d95868 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -148,7 +148,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.3.4.tar.gz" # RUSK_TAG=$(get_latest_tag "rusk") # RUSK_URL=$(curl -s "https://api.github.com/repos/dusk-network/rusk/releases/tags/${RUSK_TAG}" | jq -r '.assets[].browser_download_url' | grep linux) # WALLET_TAG=$(get_latest_tag "rusk-wallet")