Pages:
Author

Topic: [ANN][KRYP] Kryptonite-X11 PoW DGW Landed 24th May 2014 @ 3.30pm BST - page 24. (Read 78097 times)

full member
Activity: 384
Merit: 100
full member
Activity: 384
Merit: 100
Can I make a nice blog post for a bounty? I will ask my friend to mine it also.

Info on this type of giveaway will go up on our official site/forums soon - we want to avoid doing things like that in this thread.

Please remember, that while our launch went smoothly (this time!) - we've been working very hard and need a chance to catch some breath!  Network was doing 4.6GH earlier, and we've had so much mail and messages it's taking ages to plow through!

Over the next 2 to 3 days, we'll be moving into the next phase of the project.  The websites will all be updated with lots more information about Kryptonite, the future, how you can take part in the project, and of course lots of info on giveaways, faucets and miners draws.

Thanks for your support and the huge amounts of offers to help!  If you've got in touch and we've not got back to you, please don't hesitate to try again!

CrakeJ and MalimbaS
legendary
Activity: 1421
Merit: 1001
I think maybe this coin is already dead before born, with 500,000 premine and 1 KRYP per block, there is a problem!

Why do so many premine?

This will not attract people!!

You should do something to not kill your project.

Maybe you should do a giveaway for current miners or  destroy some of KRYP premined because it is too!


As mentioned in OP and in this thread and our website, we will be starting some big giveaways in a few days time.  We plan to invest premine in miners and the development of Kryptonite - not in dumping coins......or destroying them, that would be crazy!

Full information about giveaways will be on our websites in the next few days.



Ok but why mine if you make great giveaway!!

There is nothing fair if people not mine this and can have more KRYP then people mining!!

Big giveaways are for active miners only!  More info to come, but yes, we want to be fair to, and give lots to miners!

That is good thanks, but today i mining with rented rigs and i don't know if tomorrow or after tomorrow i have fund for rent!

I hope i can enter on the giveaway maybe i sent you a screenshot of my mining pool

Thanks for your reply!
full member
Activity: 126
Merit: 100
full member
Activity: 384
Merit: 100
I think maybe this coin is already dead before born, with 500,000 premine and 1 KRYP per block, there is a problem!

Why do so many premine?

This will not attract people!!

You should do something to not kill your project.

Maybe you should do a giveaway for current miners or  destroy some of KRYP premined because it is too!


As mentioned in OP and in this thread and our website, we will be starting some big giveaways in a few days time.  We plan to invest premine in miners and the development of Kryptonite - not in dumping coins......or destroying them, that would be crazy!

Full information about giveaways will be on our websites in the next few days.



Ok but why mine if you make great giveaway!!

There is nothing fair if people not mine this and can have more KRYP then people mining!!

Big giveaways are for active miners only!  More info to come, but yes, we want to be fair to, and give lots to miners!
sr. member
Activity: 294
Merit: 250
Can I make a nice blog post for a bounty? I will ask my friend to mine it also.
full member
Activity: 210
Merit: 100
OSX Wallet - http://pcmerc.com/files/Kryptonite-Qt.dmg

Please report any issues to me so I may address them.


pcmerc~
http://pool.kryptochaos.com
full member
Activity: 210
Merit: 100
Come join us at our new Kryptonite pool:
 
http://pool.kryptochaos.com
 
1.5% fees, VARDIFF, STRATUM, MULTIPOOL / MULTICOIN, CLUSTERED!

Registration isn't required.

Use your're receive address for directly mined coins.

Generate a public key pair for mining the autoswitching.

Dedicated admin & network team
 
We care about your mining experience!

legendary
Activity: 1421
Merit: 1001
I think maybe this coin is already dead before born, with 500,000 premine and 1 KRYP per block, there is a problem!

Why do so many premine?

This will not attract people!!

You should do something to not kill your project.

Maybe you should do a giveaway for current miners or  destroy some of KRYP premined because it is too!


As mentioned in OP and in this thread and our website, we will be starting some big giveaways in a few days time.  We plan to invest premine in miners and the development of Kryptonite - not in dumping coins......or destroying them, that would be crazy!

Full information about giveaways will be on our websites in the next few days.



Ok but why mine if you make great giveaway!!

There is nothing fair if people not mine this and can have more KRYP then people mining!!
full member
Activity: 384
Merit: 100
I think maybe this coin is already dead before born, with 500,000 premine and 1 KRYP per block, there is a problem!

Why do so many premine?

This will not attract people!!

You should do something to not kill your project.

Maybe you should do a giveaway for current miners or  destroy some of KRYP premined because it is too!


As mentioned in OP and in this thread and our website, we will be starting some big giveaways in a few days time.  We plan to invest premine in miners and the development of Kryptonite - not in dumping coins......or destroying them, that would be crazy!

Full information about giveaways will be on our websites in the next few days.

legendary
Activity: 2282
Merit: 1051
unnamed.Exchange, join the Cool Kids!!!
did u allright send bittrex a mail including all informations,,
3 days to promote would be a easy thing
legendary
Activity: 1421
Merit: 1001
I think maybe this coin is already dead before born, with 500,000 premine and 1 KRYP per block, there is a problem!

Why do so many premine?

This will not attract people!!

You should do something to not kill your project.

Maybe you should do a giveaway for current miners or  destroy some of KRYP premined because it is too!

newbie
Activity: 51
Merit: 0
Your thread really blew up Cheesy
Glad everything is going well!
full member
Activity: 384
Merit: 100
if devs don't mess up and dump, this could be x11 bitcoin Cheesy

but I didn't like the coding style :/ I modified code a little, but I think the point will be clear. Lets see how GetBlockValue function works if we are on block 7130731

Code:
int nSubsidy = 0; // assigning value 1st time

if(nHeight == 1) // Premine 500,000 first block
  nSubsidy = 500000;  // nSubsidy 2nd time assign

if(nHeight > 1) // 1 coin for first week
  nSubsidy = 1;  // nSubsidy 3rd time assign

if(nHeight > 21222) //5 coins first month
  nSubsidy = 5;  // nSubsidy 4th time assign

if(nHeight > 106112) // 10 coins for 4 months
  nSubsidy = 10; // nSubsidy 5th time assign

if(nHeight > 445670) // 15 coins for 9 months
  nSubsidy = 15;  // nSubsidy 6th time assign

if(nHeight > 1209677) // 10 coins for 1 year
  nSubsidy = 10; // nSubsidy 7th time assign

if(nHeight > 2228353) // 5 coins for 4 years 10 months (9.75)
  nSubsidy = 5;  // nSubsidy 8th time assign

if(nHeight > 7130730) // no block reward after 7 years
  nSubsidy = 0;  // nSubsidy 9th time assign

hopefully compiler optimizes the code, else it will be 9 assignations in 1 function. Why don't write just like that:
Code:
if(nHeight > 1) // 1 coin for first week
  return 1*COIN + fees;  // function returns needed value and does not do other assignations.

Added to the next revision list!  Yeah, we shouldn't have let that slip through for sure.

No dumping here!
newbie
Activity: 51
Merit: 0
http://brookspool.bounceme.net
Low-diff tuned for X11!
Code:
-o stratum: stratum+tcp://brookspool.servehalflife.com: -u  -p anything
NO registration
NO withdrawal fee
Payout on block find
sr. member
Activity: 294
Merit: 250
if devs don't mess up and dump, this could be x11 bitcoin Cheesy

but I didn't like the coding style :/ I modified code a little, but I think the point will be clear. Lets see how GetBlockValue function works if we are on block 7130731

Code:
int nSubsidy = 0; // assigning value 1st time

if(nHeight == 1) // Premine 500,000 first block
  nSubsidy = 500000;  // nSubsidy 2nd time assign

if(nHeight > 1) // 1 coin for first week
  nSubsidy = 1;  // nSubsidy 3rd time assign

if(nHeight > 21222) //5 coins first month
  nSubsidy = 5;  // nSubsidy 4th time assign

if(nHeight > 106112) // 10 coins for 4 months
  nSubsidy = 10; // nSubsidy 5th time assign

if(nHeight > 445670) // 15 coins for 9 months
  nSubsidy = 15;  // nSubsidy 6th time assign

if(nHeight > 1209677) // 10 coins for 1 year
  nSubsidy = 10; // nSubsidy 7th time assign

if(nHeight > 2228353) // 5 coins for 4 years 10 months (9.75)
  nSubsidy = 5;  // nSubsidy 8th time assign

if(nHeight > 7130730) // no block reward after 7 years
  nSubsidy = 0;  // nSubsidy 9th time assign

hopefully compiler optimizes the code, else it will be 9 assignations in 1 function. Why don't write just like that:
Code:
if(nHeight > 1) // 1 coin for first week
  return 1*COIN + fees;  // function returns needed value and does not do other assignations.
full member
Activity: 168
Merit: 100
And we hit our first Block!
Keep the hashes incoming to find more and more blocks, please remember to spread the hash!
***Mined blocks mature in 3 days - 8283 blocks
www.thecryptopool.com
full member
Activity: 384
Merit: 100
We may well make some of our random acts of kindness over the next few days to pool owners who were not in the top 5. The support has been more than we could have ever imagined!  Watch this space!

The response has just been amazing!  Please be patient over the next few days as we catch some breath and start planning our giveaways which will start next week.  Winners will be chosen at random from active pool miners to receive up to 500 KRYP.  More detail to come.

Wow!  Thank you so much for your support - we look forward to building Kryptonite into a strong community!
full member
Activity: 161
Merit: 100
THANKS Smiley i have change it!
Pages:
Jump to: