bryant.coleman
Legendary
Offline
Activity: 3766
Merit: 1217
|
|
February 18, 2018, 05:30:39 PM |
|
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.
|
|
|
|
buzzkillb
|
|
February 18, 2018, 06:43:21 PM |
|
Anyone wanting to test on DNR testnet with masternodes, the POW rewards are committing in a few hours. Need to join discord to get some testnet funds too. Working on a guide that is relatively easy enough to copy and paste commands to test with and prepare for mainnet masternodes. https://denariustalk.org/index.php?/topic/129-dnr-masternode-setup/
|
|
|
|
d3athgu1s3
|
|
February 19, 2018, 02:23:10 AM |
|
Judging by the description, this is an attempt to create a new Dash and Monera, with a new interface, but no more
Nice random statement yo. Where did it come from?
|
|
|
|
AngryWhiteWolf
|
|
February 19, 2018, 10:08:18 AM |
|
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.
|
|
|
|
bryant.coleman
Legendary
Offline
Activity: 3766
Merit: 1217
|
|
February 19, 2018, 10:27:18 AM |
|
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).
|
|
|
|
FacelessCrypto
Full Member
Offline
Activity: 539
Merit: 105
IDENA.IO - Proof-Of-Person Blockchain
|
|
February 19, 2018, 06:08:37 PM |
|
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..🤣🤣
|
|
|
|
buzzkillb
|
|
February 19, 2018, 06:23:13 PM |
|
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 just posted a link 2 posts above you how to compile the testnet wallet in ubuntu. Probably very similar for mainnet.
|
|
|
|
kingcarsen (OP)
|
|
February 19, 2018, 06:56:47 PM Last edit: February 19, 2018, 07:28:49 PM by kingcarsen |
|
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 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 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 (-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 To run Denarius in headless daemon mode (denariusd), use this guide to compile on Ubuntu or VPSs: 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 into the /src folder 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 https://denariustalk.org/index.php?/topic/138-guide-building-denarius-qtdenariusd-on-ubuntu/&tab=comments#comment-2202
|
|
|
|
ekze
Jr. Member
Offline
Activity: 210
Merit: 6
|
|
February 19, 2018, 07:45:11 PM Last edit: February 20, 2018, 11:13:05 AM by ekze |
|
|
|
|
|
rendravolt
|
|
February 19, 2018, 08:22:45 PM |
|
I always see Denarius growing from time to time, seeing with enthusiasm and doing hard work, is great.
|
|
|
|
vella85
|
|
February 19, 2018, 10:40:19 PM |
|
From what I have seen from people posting on Twitter, the masternodes test is going well with not too many issues/bugs so hopefully it won't be too long now before we see masternodes implemented here. Still the price is very cheap and could be a good time to own enough DNR for a masternode as I'm sure once they are implemented and people start to see DNR listed on Masternode websites, the price will surely go up.
|
I can promote your project on X to my 100k+ followers for a reasonable price. Just DM me for prices.
|
|
|
tam cheng
Newbie
Offline
Activity: 50
Merit: 0
|
|
February 19, 2018, 11:36:56 PM |
|
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 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 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 (-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 To run Denarius in headless daemon mode (denariusd), use this guide to compile on Ubuntu or VPSs: 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 into the /src folder 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 https://denariustalk.org/index.php?/topic/138-guide-building-denarius-qtdenariusd-on-ubuntu/&tab=comments#comment-2202Hello kingcarsen, When will be the Master node release?
|
|
|
|
mornabo
|
|
February 20, 2018, 12:00:53 AM Last edit: February 20, 2018, 12:46:49 AM by mornabo |
|
Carlsen, any updates on getting listed on new exchanges? I see DNR sitting on sitty exchanges and the volume also is too low to speculate upon.
May be you want to say shitty exchanges..my request to all is those exchanges may be not high end.. but still they help DNR.. but that do not mean that we should not get DNR listed in good exchanges.. so will you be please list preferred order of best exchanges. This will help DNR and Mr.Carsen😀to focus on next focus exchange.. in the current exchange such as cryptopia DNR volume can reach 25 btc, I think it does not include a small volume, sometimes I get my order in a short time when the market is busy but sometimes DNR market is also quiet, adding to the exchange it's a good idea for the market and enthusiasts for DNR to be bigger, maybe I would recommend DNR can be listed in Bittrex, Polonix, Binance, it will lift the price of DNR higher, The exchanges are aware of DNR and I guess they're just waiting to add it? It seems like there is more interest to add pump coins as they are the ones who seem to be able to raise huge listing fees to entice exchanges to put them up.. I heard the Binance fee was 25BTC, who can afford that?! Might be able to use crowdfunding or donate from user? I think some big exchanges also ask for dowries for they coins can be listed in exchange, I think it's natural? or there are some big exchanges that just ask from request of its users to get in? if I'm not mistaken, a few years ago poloniex used that way, where if there are many users who request for one coin. then that coin will be listed on poloniex?
|
|
|
|
d3athgu1s3
|
|
February 20, 2018, 01:00:04 AM |
|
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 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 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 (-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 To run Denarius in headless daemon mode (denariusd), use this guide to compile on Ubuntu or VPSs: 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 into the /src folder 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 https://denariustalk.org/index.php?/topic/138-guide-building-denarius-qtdenariusd-on-ubuntu/&tab=comments#comment-2202Hello kingcarsen, When will be the Master node release? It's been repeated many times, there is no timeline here. It will release when it is ready, which is anytime soon this year. So buy up before it's too late.
|
|
|
|
enkayz
Full Member
Offline
Activity: 298
Merit: 100
hashbag.cc
|
|
February 20, 2018, 06:57:19 AM |
|
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 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 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 (-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 To run Denarius in headless daemon mode (denariusd), use this guide to compile on Ubuntu or VPSs: 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 into the /src folder 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 https://denariustalk.org/index.php?/topic/138-guide-building-denarius-qtdenariusd-on-ubuntu/&tab=comments#comment-2202Hello kingcarsen, When will be the Master node release? It's been repeated many times, there is no timeline here. It will release when it is ready, which is anytime soon this year. So buy up before it's too late. Just to note, the masternode (and pos reward fix) release will not introduce masternodes straight away. Similar to other feature rollouts, there will be a new network protocol introduced in the release which will activate at a set block height. The exact height is not decided yet, but it will allow a couple of months for everyone to get the updated release installed before the new version of the protocol is used for blocks - at that point any blocks generated by older clients will not be accepted by newer clients - unless nobody updates and the majority of clients remain on older releases. However seeing as the new release will increase staking profits, enable masternodes, implement new anonymous transactions and the like, we expect everyone will want to update within the period that is set for the change to occur. So in regards to 'masternodes could be here any day', it is not really the case, the release itself may be here any day however at that point, the 'date' for masternodes to start working will be in the source code for everyone to see. I expect the price to start rising sharply once this release is committed and the date is set in stone.
|
|
|
|
|
steve0nz
|
|
February 20, 2018, 09:14:54 AM |
|
how many coins are needed for a node?
|
|
|
|
kingcarsen (OP)
|
|
February 20, 2018, 09:20:06 AM |
|
how many coins are needed for a node?
5,000 DNR, Announcement to update will be coming soon! Date currently is set for March 14th 2018 0:00 GMT for hybrid masternodes to go live for the first time ever in crypto history on the mainnet. v2.0.0.0 will be released very soon after some last minute testing Also don't take it the wrong way steve0nz, because it is a solid question, just modified your comment a little bit to make this a more informative tweet https://twitter.com/carsenjk/status/965879574373347328
|
|
|
|
enkayz
Full Member
Offline
Activity: 298
Merit: 100
hashbag.cc
|
|
February 20, 2018, 01:08:08 PM |
|
Forgive me if this is a dumb question, but I like this project and would like to know one detail:
If the project is going to end PoW at 10M, then begin PoS.... how can supply be 10M MAX?
PoW does not end at 10M, it ends at block 3M by which time there will be roughly 7M DNR in circulation, since it is a hybrid system and not every block will be PoW. PoS does not begin at 10M either, it is already on the network - and will continue to generate coins until the 10M max supply is reached
|
|
|
|
bryant.coleman
Legendary
Offline
Activity: 3766
Merit: 1217
|
|
February 20, 2018, 03:40:39 PM |
|
how many coins are needed for a node?
5,000 DNR, Announcement to update will be coming soon! Date currently is set for March 14th 2018 0:00 GMT for hybrid masternodes to go live for the first time ever in crypto history on the mainnet. v2.0.0.0 will be released very soon after some last minute testing Also don't take it the wrong way steve0nz, because it is a solid question, just modified your comment a little bit to make this a more informative tweet https://twitter.com/carsenjk/status/9658795743733473285,000 DNR is going to cost around $16,500 (as per the current exchange rates). I won't be able to do this, but all the best for everyone going for it. And hopefully with the masternodes, the exchange rate may go up by 100% to 200% in the short-term.
|
|
|
|
|