Bitcoin Forum
June 13, 2024, 08:35:16 PM *
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 »
  Print  
Author Topic: ◀ PrimeChain | Verify Prime Numbers | LESS THAN 500 COINS CREATED PER DAY ▶  (Read 76723 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
August 16, 2015, 04:12:41 AM
 #161

I'm going to be loading up the trivia bot in #MMXIV on Freenode IRC with at least 5000 Negativity today. Each answer will reward coins based on how many hints you needed, and unanswered questions will rain to the channel, so it will be worth it to just chill and hang out in there this weekend  Wink

Scratch that, we're setting up a new channel now

#Negativity on Freenode IRC (Click here for webchat if you don't have an IRC client)
Make sure you are registered with Nickserv, or you will get kicked. This is to ensure coins are not lost on throwaway nicks from the trivia and rains


Ok, it's up now. Giving away over 5000 NEG this weekend in here

fonzerrellie
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000

Kaspa


View Profile
August 16, 2015, 04:55:38 AM
 #162

this thing stakes like a mofo  Grin

#Expanse $EXP 500 transactions 4 .1 EXP 1st Clone of ETH 
WAVES
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
August 16, 2015, 05:26:23 AM
 #163

this thing stakes like a mofo  Grin

You can get them in IRC now too #Negativity

samspaces
Legendary
*
Offline Offline

Activity: 1453
Merit: 1030


View Profile
August 16, 2015, 05:26:41 AM
 #164

Started out with 10000. Then after the first resync I had a wallet without errors with 25000. My IP was in red, so after another resync, now I have 250.

Guess I'm out.
MoreBloodWine
Legendary
*
Offline Offline

Activity: 1050
Merit: 1001


View Profile
August 16, 2015, 05:27:16 AM
 #165

Started out with 10000. Then after the first resync I had a wallet without errors with 25000. My IP was in red, so after another resync, now I have 250.

Guess I'm out.
How the hell did u start with 10k ?

To be decided...
samspaces
Legendary
*
Offline Offline

Activity: 1453
Merit: 1030


View Profile
August 16, 2015, 05:28:20 AM
 #166

Started out with 10000. Then after the first resync I had a wallet without errors with 25000. My IP was in red, so after another resync, now I have 250.

Guess I'm out.
How the hell did u start with 10k ?

I mined them.
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
August 16, 2015, 05:30:11 AM
 #167

Started out with 10000. Then after the first resync I had a wallet without errors with 25000. My IP was in red, so after another resync, now I have 250.

Guess I'm out.
How the hell did u start with 10k ?

I mined them.

The fork kicks in after mining ended, so they are still there. Try repairwallet

rapta
Sr. Member
****
Offline Offline

Activity: 325
Merit: 250


View Profile
August 16, 2015, 05:36:47 AM
 #168

NEG/BTC trading is now up on coingather

https://www.coingather.com/exchange/NEG/BTC

Happy trading!
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
August 16, 2015, 06:14:10 AM
 #169

Lots of updates in the OP:


Negativity is infectious
Current Version: 5.0.0.0






UPDATE IMMEDIATELY
Resync your blockchain from the beginning
Bootstrap for the blockchain can be found here:
https://drive.google.com/file/d/0B9tCHKMNZjyYTTZ3bm5IcTkxZDA
-Close all open Negativity wallets and clients
-Make copies of wallet.dat and Negativity.conf
-Remove all other files and folders in /Roaming/Negativity
-Reload wallet and allow syncing from the beginning
* Can reindex if you prefer, but I suggest against it *


Negativity will take (input coinage * block number) and check to see if that result is a prime number
The way it checks is by using nAttempt to divide nCandidate by every number between 2 and (nCandidate - 1)
If the result is an integer, that means nCandidate is divisible evenly by nAttempt, and not a prime, as prime numbers are only divisible evenly by itself and 1

A recent example of a number checked for primality was 20,197,337,050, which was not a prime number and generated 10 NEG as reward
If a number is found to be a prime number, the reward for that block will be 10,000 NEG




Regular reward of 10 NEG per block
10,000 NEG rewarded for discovering a prime
Reward Code Below:

Code:
int64 GetProofOfStakeReward(int64 nCoinAge, int nHeight)
{
int64 nSubsidy = (nHeight - (nHeight + (nHeight % 10))) * COIN;
int64 nAttempt = 2;
int64 nCandidate = (nCoinAge * nHeight);
double nResult = 1;

    if (nHeight > 101000) {
do {
nResult = (nCandidate / nAttempt);
if (floor(nResult) == nResult) {
nSubsidy = 10 * COIN;    
return nSubsidy;
} else {
nAttempt = (nAttempt + 1);
}
} while (nAttempt < nCandidate);
nSubsidy = 10000 * COIN;
return nSubsidy;
} else {
if ((nHeight % 2) < 1)
    {
        nSubsidy = ((nHeight % 100) + 1) * COIN;
    }
}
    return nSubsidy;
}











Sample Negativity.conf:



addnode=104.200.154.14
addnode=75.130.163.51
addnode=82.44.30.10
addnode=89.67.49.189
addnode=2.50.95.216
addnode=66.222.226.245
addnode=70.92.184.203
addnode=193.219.117.63
addnode=188.165.167.97
addnode=89.67.49.189
addnode=199.7.156.128
addnode=121.222.228.190
addnode=99.137.226.94
addnode=81.227.243.16
addnode=76.26.93.255
addnode=82.211.30.147
maxconnections=999

iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
August 16, 2015, 06:28:41 AM
 #170

NEG/BTC trading is now up on coingather

https://www.coingather.com/exchange/NEG/BTC

Happy trading!

Thanks, got it in the OP

jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
August 16, 2015, 08:12:31 AM
 #171

Spots, if you are serious about the search for prime numbers, you can register a project for it - see link below. Some alt-coins are already there and have found some impressive numbers. It is great research if you can become involved as it will strengthen future cryptographic methods.

http://primerecords.dk/simultprime.htm
Battareus
Hero Member
*****
Offline Offline

Activity: 826
Merit: 501


View Profile
August 16, 2015, 02:52:48 PM
 #172

Why the topic is still opened?
martinyin
Hero Member
*****
Offline Offline

Activity: 512
Merit: 500

★YoBit.Net★ 1400+ Coins Exchange


View Profile
August 16, 2015, 03:00:47 PM
 #173

Why the topic is still opened?

why the topic should not be open?

Am I spamming? Report me!
martinyin
Hero Member
*****
Offline Offline

Activity: 512
Merit: 500

★YoBit.Net★ 1400+ Coins Exchange


View Profile
August 16, 2015, 03:02:15 PM
 #174

hi dev, any thought to hit Yobit, at least there are people trading in there.

Am I spamming? Report me!
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
August 16, 2015, 03:09:28 PM
 #175

hi dev, any thought to hit Yobit, at least there are people trading in there.

No, Yobit sucks

AngelLox
Sr. Member
****
Offline Offline

Activity: 466
Merit: 250



View Profile
August 16, 2015, 03:23:49 PM
 #176

hi dev, any thought to hit Yobit, at least there are people trading in there.
No, Yobit sucks
Lol. How about c-cex?
iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
August 16, 2015, 03:38:47 PM
 #177

hi dev, any thought to hit Yobit, at least there are people trading in there.
No, Yobit sucks
Lol. How about c-cex?


They would be good, yes  Wink

iGotSpots (OP)
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
August 16, 2015, 06:49:42 PM
 #178

I'm going to be loading up the trivia bot in #MMXIV on Freenode IRC with at least 5000 Negativity today. Each answer will reward coins based on how many hints you needed, and unanswered questions will rain to the channel, so it will be worth it to just chill and hang out in there this weekend  Wink

Scratch that, we're setting up a new channel now

#Negativity on Freenode IRC (Click here for webchat if you don't have an IRC client)
Make sure you are registered with Nickserv, or you will get kicked. This is to ensure coins are not lost on throwaway nicks from the trivia and rains


Ok, it's up now. Giving away over 5000 NEG this weekend in here

Still over 3000 to go. Once we get to 40 people, I'm going to increase the rains to 10 each

fonzerrellie
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000

Kaspa


View Profile
August 16, 2015, 08:55:01 PM
 #179

network weight has been on a steady rise, def need more peeps staking tho... and an exchange with some volume

#Expanse $EXP 500 transactions 4 .1 EXP 1st Clone of ETH 
WAVES
martinyin
Hero Member
*****
Offline Offline

Activity: 512
Merit: 500

★YoBit.Net★ 1400+ Coins Exchange


View Profile
August 16, 2015, 09:15:01 PM
 #180

IMO, yobit is way better than c-cex

hi dev, any thought to hit Yobit, at least there are people trading in there.
No, Yobit sucks
Lol. How about c-cex?


They would be good, yes  Wink

Am I spamming? Report me!
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 »
  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!