• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

Dash Core v21.1.0 Release Announcement

Pasta

Active member
Dash Core Group
I'm announcing the release of Dash Core v21.1.0, the minor version on v21.

It is mandatory for masternodes to upgrade, failure to upgrade may result in PoSe banning; it is recommended for all node operators to upgrade.

This fixes an issue in EHF resigning, where masternodes would not resign for EHF if that had previously been in a EHF signing quorum. As a result, the threshold was unable to be met. We expect once a significant majority of MNs upgrade, the EHF will be automatically signed and mined.

https://github.com/dashpay/dash/releases/tag/v21.1.0
 
Runnig npm install -g dashmate gave the first errors.
Then i used sudo and got less errors but still erros shown in second image.

Any ideas?
 

Attachments

  • error.jpg
    error.jpg
    57.8 KB · Views: 47
  • error2.jpg
    error2.jpg
    31.2 KB · Views: 45
  • log.jpg
    log.jpg
    145.7 KB · Views: 47
Last edited:
After installing nvm (see above, which vampyren got through ChatGPT), you can then use nvm to install node.js v20 (vampyren was on very old node.js version 12.22.9 the current node.js version can be checked with command node -v)

The actual Dash installation guide (https://docs.dash.org/en/stable/docs/user/network/dashmate/index.html#dashmate-install) has installing both nvm & node.js v20 as follows :

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
source ~/.bashrc
nvm install 20

So that looks a bit more simplified. Additional steps if node.js keep using an older node.js version after reboot for some reason :

nvm alias default 20
nvm use 20

Install / Update Dashmate :

npm install -g dashmate
dashmate reset --keep-data
dashmate update
dashmate start
 
Last edited:
To all Evonode operators using Dashmate :

Platform 1.1.0 has been released on Github, please update Dashmate to v1.1.0 before 28th of August 2024 / before Platform activation !!
Github : https://github.com/dashpay/platform/releases/tag/v1.1.0

Using npm methode :

dashmate stop
npm install -g dashmate
dashmate reset --keep-data
dashmate update
dashmate start
dashmate status (also dashmate status masternode, dashmate status platform, dashmate status services)

Using Debian update methode (first verify below wget download link by rightclicking on amd64.deb download link on Github (https://github.com/dashpay/platform/releases/tag/v1.1.0), selecting copy link address and verify that link address through a paste in a notepad with below link address !!) :

dashmate stop
wget https://github.com/dashpay/platform/releases/download/v1.1.0/dashmate_1.1.0.483a9c5ba-1_amd64.deb
sudo apt update
sudo apt install ./dashmate_1.1.0.483a9c5ba-1_amd64.deb
dashmate reset --keep-data
dashmate update
dashmate start
dashmate status (also dashmate status masternode, dashmate status platform, dashmate status services)

Update 1 : added dashmate reset --keep-data in above instructions.
Update 2 : Platform v1.1.1 (hotfix) released, see https://www.dash.org/forum/index.php?threads/platform-1-1-1-released-hotfix.55213/#post-239272
 
Last edited:
Back
Top