Bitcoin Forum
May 11, 2024, 10:14:58 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 »
  Print  
Author Topic: [ANN] [Numus] | PoW | New dedal Algo | Masternodes  (Read 55140 times)
kisscat
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
December 20, 2017, 12:02:50 PM
 #201

POW Reward Scheme:
81 - 400 Block - 1 NMS per Block
401 - 30 000 Block - 10 NMS per Block
30 001 - 50 000 Block - 8 NMS per Block
50 001 - 70 000 Block - 6 NMS per Block
70 001 - 100 000 Block - 4 NMS per Block

POS Reward Scheme:
401 - 10 000 Block - 10 NMS per Block
10 001 - 30 000 Block - 12 NMS per Block
30 001 - 50 000 Block - 13 NMS per Block
50 001 - 70 000 Block - 14 NMS per Block
70 001 - 100 000 Block - 15 NMS per Block
100 001 - 200 000 Block - 10 NMS per Block
After 200 001 - 8 NMS per Block


WTF PoW reward is 8 NMS per block now?

 Angry Angry Angry
1715422498
Hero Member
*
Offline Offline

Posts: 1715422498

View Profile Personal Message (Offline)

Ignore
1715422498
Reply with quote  #2

1715422498
Report to moderator
1715422498
Hero Member
*
Offline Offline

Posts: 1715422498

View Profile Personal Message (Offline)

Ignore
1715422498
Reply with quote  #2

1715422498
Report to moderator
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, which will follow the rules of the network no matter what miners do. Even if every miner decided to create 1000 bitcoins per block, full nodes would stick to the rules and reject those blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715422498
Hero Member
*
Offline Offline

Posts: 1715422498

View Profile Personal Message (Offline)

Ignore
1715422498
Reply with quote  #2

1715422498
Report to moderator
1715422498
Hero Member
*
Offline Offline

Posts: 1715422498

View Profile Personal Message (Offline)

Ignore
1715422498
Reply with quote  #2

1715422498
Report to moderator
1715422498
Hero Member
*
Offline Offline

Posts: 1715422498

View Profile Personal Message (Offline)

Ignore
1715422498
Reply with quote  #2

1715422498
Report to moderator
newbiecoinminer
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
December 20, 2017, 12:33:08 PM
 #202

POW Reward Scheme:
81 - 400 Block - 1 NMS per Block
401 - 30 000 Block - 10 NMS per Block
30 001 - 50 000 Block - 8 NMS per Block
50 001 - 70 000 Block - 6 NMS per Block
70 001 - 100 000 Block - 4 NMS per Block

POS Reward Scheme:
401 - 10 000 Block - 10 NMS per Block
10 001 - 30 000 Block - 12 NMS per Block
30 001 - 50 000 Block - 13 NMS per Block
50 001 - 70 000 Block - 14 NMS per Block
70 001 - 100 000 Block - 15 NMS per Block
100 001 - 200 000 Block - 10 NMS per Block
After 200 001 - 8 NMS per Block


WTF PoW reward is 8 NMS per block now?

Update:
Looks like dev didn't pay enough attention to NMS reward scheme:
// miner's coin base reward
int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
{    int64_t nSubsidy = 0 * COIN;
if (nHeight > 0 && nHeight <= 50) {        nSubsidy = 10000 * COIN; // premine    }
else if (nHeight > 50 && nHeight <= 80) {        nSubsidy = 0 * COIN; // premine to be confirmed    }       
else if (nHeight > 80 && nHeight <= 400) {        nSubsidy = 1 * COIN; // instamine prevention    }       
else if (nHeight > 400 && nHeight <= 10 * 1000) {        nSubsidy = 10 * COIN; // initial block reward    }
else if (nHeight > 10 * 1000 && nHeight <= 30 * 1000) {        nSubsidy = 8 * COIN; // initial block reward    }
else if (nHeight > 30 * 1000 && nHeight <= 50 * 1000) {        nSubsidy = 6 * COIN; // initial block reward    }

AND THERE IS A ERROR IN THE CODE:
else if (nHeight > 70 * 1000 && nHeight <= 70 * 1000) {        nSubsidy = 4 * COIN; // initial block reward    }
It should be     else if (nHeight > 50 * 1000 && nHeight <= 70 * 1000) {        nSubsidy = 4 * COIN; // initial block reward    }

else if (nHeight > 70 * 1000 && nHeight <= 100 * 1000) {        nSubsidy = 2 * COIN;    }
else if (nHeight > 100 * 1000) {        nSubsidy = 0 * COIN;    }
return nSubsidy + nFees;


Wow. Thats not good. My mining rewards went down further. DEV any clarifications? Is it supposed to be 10k or 30k?
fleer
Full Member
***
Offline Offline

Activity: 364
Merit: 100



View Profile
December 20, 2017, 01:29:29 PM
 #203

lol so unless there is a new wallet, the rewards will be 0 for pow blocks 50k-70k?

●                                                           Z I X X                                                           ●
[     DISCORD     ]  [    TWITTER    ]  [ ANN THREAD ]  [   FACEBOOK   ]
|    Automated Shared MNs    |   80% Masternode Rewards   |    Highest "Locked %"    |
shubaduba
Full Member
***
Offline Offline

Activity: 158
Merit: 100


mine safe o/


View Profile
December 20, 2017, 01:32:57 PM
 #204

lol so unless there is a new wallet, the rewards will be 0 for pow blocks 50k-70k?

Yeah, And I deserve a bounty for finding that before everything could go wrong Smiley
ntrader
Full Member
***
Offline Offline

Activity: 264
Merit: 101



View Profile WWW
December 20, 2017, 01:36:29 PM
 #205

Did you saw rich list? Lools like one person own addresses 1-33 with 10007 NMS on every wallet
https://altmix.org/coins/14-Numus/explorer/richList
Alastord
Full Member
***
Offline Offline

Activity: 236
Merit: 100



View Profile
December 20, 2017, 01:49:53 PM
 #206

Did you saw rich list? Lools like one person own addresses 1-33 with 10007 NMS on every wallet
https://altmix.org/coins/14-Numus/explorer/richList

It's dev premine.
thaian
Member
**
Offline Offline

Activity: 182
Merit: 15


View Profile
December 20, 2017, 01:53:07 PM
 #207

Can Asic mine  ?

fleer
Full Member
***
Offline Offline

Activity: 364
Merit: 100



View Profile
December 20, 2017, 02:00:59 PM
 #208

probably some day there will be a skein asic, but this pow ends in 52 days and it's unlikely there will be any

●                                                           Z I X X                                                           ●
[     DISCORD     ]  [    TWITTER    ]  [ ANN THREAD ]  [   FACEBOOK   ]
|    Automated Shared MNs    |   80% Masternode Rewards   |    Highest "Locked %"    |
shubaduba
Full Member
***
Offline Offline

Activity: 158
Merit: 100


mine safe o/


View Profile
December 20, 2017, 02:03:39 PM
 #209

Can Asic mine  ?
probably some day there will be a skein asic, but this pow ends in 52 days and it's unlikely there will be any

There is Baikal X10 Giant ASIC, which can mine skein with 5 GH/s speed.
That is equal to 5x1080ti GPUs, so it is not that profitable as other algos.
numuscrypto (OP)
Newbie
*
Offline Offline

Activity: 66
Merit: 0


View Profile
December 20, 2017, 02:06:57 PM
 #210

There is mistake in announcements, sorry for that. Also double checked reward plan, and found error. Patch will be released soon.
fleer
Full Member
***
Offline Offline

Activity: 364
Merit: 100



View Profile
December 20, 2017, 03:13:29 PM
 #211

Can Asic mine  ?
probably some day there will be a skein asic, but this pow ends in 52 days and it's unlikely there will be any

There is Baikal X10 Giant ASIC, which can mine skein with 5 GH/s speed.
That is equal to 5x1080ti GPUs, so it is not that profitable as other algos.

intersting.  those are almost equal in price hardware wise too

●                                                           Z I X X                                                           ●
[     DISCORD     ]  [    TWITTER    ]  [ ANN THREAD ]  [   FACEBOOK   ]
|    Automated Shared MNs    |   80% Masternode Rewards   |    Highest "Locked %"    |
numuscrypto (OP)
Newbie
*
Offline Offline

Activity: 66
Merit: 0


View Profile
December 20, 2017, 03:47:28 PM
 #212

Numus update to 1.0.0.2 released. Please update your wallets and node before block 50 000.
https://github.com/numuscrypto/numuscore/releases/tag/1.0.0.2
zccopwrx
Full Member
***
Offline Offline

Activity: 306
Merit: 100



View Profile
December 20, 2017, 04:25:34 PM
 #213

Numus update to 1.0.0.2 released. Please update your wallets and node before block 50 000.
https://github.com/numuscrypto/numuscore/releases/tag/1.0.0.2

Hashfaster.com is on the latest wallet!

HASH ON.
cheesybread
Newbie
*
Offline Offline

Activity: 92
Merit: 0


View Profile
December 20, 2017, 05:13:46 PM
 #214

I'm about to setup a masternode but it's saying on the wallet that it only needs 500 coins not 5000? Is this a typo or is it actually less?

http://i67.tinypic.com/dfk3s1.png
numuscrypto (OP)
Newbie
*
Offline Offline

Activity: 66
Merit: 0


View Profile
December 20, 2017, 06:31:17 PM
 #215

I'm about to setup a masternode but it's saying on the wallet that it only needs 500 coins not 5000? Is this a typo or is it actually less?

http://i67.tinypic.com/dfk3s1.png
5000, just fixed it, next release you correct amount will be shown.
cheesybread
Newbie
*
Offline Offline

Activity: 92
Merit: 0


View Profile
December 20, 2017, 06:33:43 PM
 #216

I'm about to setup a masternode but it's saying on the wallet that it only needs 500 coins not 5000? Is this a typo or is it actually less?

http://i67.tinypic.com/dfk3s1.png
5000, just fixed it, next release you correct amount will be shown.


Awesome.


I just setup my masternode!!!!!!! I'm freaking stoked!!!!!!!!

Hopefully since I own a masternode all to myself I get my posts answered Smiley


http://i63.tinypic.com/lh6vp.png
gerimaster
Newbie
*
Offline Offline

Activity: 88
Merit: 0


View Profile
December 20, 2017, 06:45:13 PM
 #217

Go and check the discord channel for the coin (Updated wallet version 1.0.0.2 up to 50000 blocks) Workername usage!
Below are the steps


Come join the fun and get your mine on over at https://rigempire.com/

Stratum  : stratum+tcp://rigempire.com:4933
User     : YOUR_NMS_ADDRESS.workername
Password : c=NMS


Website  : https://rigempire.com/
Payout   : Every 1 hours
Fee      : 0.5%

Example command line :

ccminer -a skein -o stratum+tcp://rigempire.com:4933 -u YOUR_NMS_ADDRESS.workername -p c=NMS
cheesybread
Newbie
*
Offline Offline

Activity: 92
Merit: 0


View Profile
December 20, 2017, 07:31:20 PM
 #218

Is anybody else running a masternode? Do you know how long it takes for the Active time to show up? It says it's running but it's been almost an hour and the time hasn't updated. The 'last seen' is about an hour too
redison
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
December 20, 2017, 07:31:41 PM
 #219

I would like to know, when NMS will be in cryptopia?  Undecided Undecided
Thanks a lot
halker2010
Sr. Member
****
Offline Offline

Activity: 532
Merit: 250

The harder your life is the more meaning it has.


View Profile
December 20, 2017, 07:49:26 PM
Last edit: December 20, 2017, 08:06:37 PM by halker2010
 #220

well started mining and looking forward to new exchanges and testing the great pos feature also can we get a estimate time for the road map and bounties?
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!