what is the staking rate for denarius?
I haven't tried staking yet, as my laptop is not a very high-end one. But it seems like there is a 6% APR on your current amount of coins. That means that if you got 1,000 coins and if you are staking 24-hours a day, 365-days a year, then you should get 60 coins from staking. That amounts to more than 0.1% per week. Someone please correct me if I am wrong.
Is there a guide about how to compile the wallet on Ubuntu? With the masternodes release happening soon it will be helpful. Can't remember how I did it last time but I struggled a little.
Thank you.
I am afraid that I don't have one with me right now. It might be a good idea to ask this question in the Denariustalk forum (there is a thread titled: "Denarius(DNR) Wallet" in the Tutorials & Help section (denariustalk.org).
Actually I could not get this chain of responses.. looks like all are drunk from legendary to jr. Members.. or I only may be..🤣🤣
Run the following commands in order on a fresh Ubuntu 14.04/16.04 Server, 17.10 works but may need some small changes
To compile/run the graphical Denarius wallet (QT) on Ubuntu:
Update Ubuntu
sudo apt-get update
Install required deps
sudo apt-get install git build-essential libboost-all-dev libqrencode-dev libminiupnpc-dev libssl-dev libdb++-dev libqt4-dev
Clone the repo
git clone https://github.com/carsenk/denarius
CD into the cloned repo
cd denarius
Now build your makefiles
qmake "USE_UPNP=1" "USE_QRCODE=1" "USE_LEVELDB=1" denarius-qt.pro
(USE_LEVELDB Flag is only required on v1.0.7.0, it will no longer be required on future releases)
Now compile
make -j8
(-j8 (8 is the number of cores of your processor to compile on, this speeds up the compilation process)
To run and start Denarius after compiling, run
./Denarius
To run Denarius in headless daemon mode (denariusd), use this guide to compile on Ubuntu or VPSs:
sudo apt-get update
Install required deps
sudo apt-get install git build-essential libboost-all-dev libqrencode-dev libminiupnpc-dev libssl-dev libdb++-dev
Clone the repo
git clone https://github.com/carsenk/denarius
CD into the cloned repo
cd denarius
CD into the /src folder
cd src
Now compile
make -f makefile.unix -j8
(-j8 (8 is the number of cores of your processor to compile on, this speeds up the compilation process)
To run and start denariusd after compiling, run
./denariusd
https://denariustalk.org/index.php?/topic/138-guide-building-denarius-qtdenariusd-on-ubuntu/&tab=comments#comment-2202