Skip to content

Commit

Permalink
Update to release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HDauven committed Dec 11, 2024
1 parent 048ee00 commit 502db14
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,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.5/node-installer.sh | sudo sh
curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/download/v0.4.0/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.5/node-installer.sh | sudo sh -s devnet
curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/download/v0.4.0/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:
Expand Down
Binary file modified bin/rusk
100644 → 100755
Binary file not shown.
Binary file modified bin/rusk-wallet
Binary file not shown.
3 changes: 1 addition & 2 deletions bin/ruskquery
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
#!/bin/bash

# Keep /02/Chain for now
API_ENDPOINT="http://127.0.0.1:8080"
RUSK_VERSION="0.8.0"
CONTENT_TYPE="application/json"
INSTALLER_VERSION="v0.3.5"
INSTALLER_VERSION="v0.4.0"

show_help() {
echo "Dusk Query Tool"
Expand Down
6 changes: 3 additions & 3 deletions node-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ configure_network() {
;;
testnet)
kadcast_id="0x2"
bootstrapping_nodes="['188.166.70.129:9000','139.59.146.237:9000']"
genesis_timestamp="'2024-10-22T08:00:00Z'"
bootstrapping_nodes="['104.248.194.214:9000','164.92.247.97:9000','146.190.56.220:9000']"
genesis_timestamp="'2024-12-12T09:00:00Z'"
;;
devnet)
kadcast_id="0x3"
Expand Down Expand Up @@ -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.4.0.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")
Expand Down

0 comments on commit 502db14

Please sign in to comment.