Post
Topic
Board Announcements (Altcoins)
Re: [ANN]Duality Blockchain Solutions has been dissolved, relaunch as Zero Dynamics!
by
Orestes
on 17/12/2024, 10:28:17 UTC
0-Dyn | Cash is a Dynamic(DYN) fork based on Dash. It has the Argon2d mining algorithm Masternode combination (here branded as servicenodes).

Miners can download the client software to start CPU mining.
Or if they want to mine using their NVidia GPU on their client, they can build from source using:

git clone https://github.com/zero-dynamics/cash-core
./autogen.sh
./configure --enable-gpu --enable-cuda
make
sudo make install

Make sure that all the necessary dependencies are installed.

Windows users can also mine using their GPU but they will have to set up WSL on Windows.

Once WSL is installed you can use the following commands:

In the Ubuntu terminal in Windows:
Code:
wget https://raw.githubusercontent.com/Zero-Dynamics/installationtools/refs/heads/master/adduser_and_xrdp_setup.sh
Code:
chmod +x adduser_and_xrdp_setup.sh && \
sudo ./adduser_and_xrdp_setup.sh

Now, open Remote Desktop on your Windows host machine, connect to localhost:3390, and log in with:
username: usr
password: pwd

To install NVIDIA CUDA 12.6 for WSL2 on Windows 11, in the Ubuntu desktop environment go to
Application > System > Xfce Terminal,

then run the following command:
Code:
wget raw.githubusercontent.com/Zero-Dynamics/installationtools/refs/heads/master/install_wsl_cuda.sh
Code:
chmod +x install_wsl_cuda.sh && \
./install_wsl_cuda.sh

The client can be installed using that same terminal by running:
Code:
wget raw.githubusercontent.com/Zero-Dynamics/installationtools/refs/heads/master/install_cash_with_shortcut.sh
Code:
chmod +x install_cash_with_shortcut.sh && \
./install_cash_with_shortcut.sh

A shortcut will be created on the desktop to start the client software, be sure to mark it as an executable after running the desktop shortcut, alternatively you can use the terminal, and run the following command:
Code:
chmod +x ./cash-core/src/qt/cash-qt && \
./cash-core/src/qt/cash-qt

If the client has trouble finding peers you can add them manually in the Console tab of the Tools window, run the following lines consecutively until the client connects:
Code:
addnode 178.21.79.32 onetry
addnode 178.21.79.33 onetry
addnode 178.21.79.34 onetry
addnode 178.21.79.35 onetry
addnode 178.21.79.36 onetry

After the wallet has finished the synchronization process you can start mining using the GPU tab in the Mining page. Good luck!