Pages:
Author

Topic: [ANN] Tamagucci | Nostalgia | Scrypt | ICO OVER | POW | Proof Of Care rewards! - page 4. (Read 21278 times)

sr. member
Activity: 295
Merit: 250
Huh

Code:
Total coins supply: 5.000.000
a 3.000.000 premine has taken place in the first 10 blocks.

source:
Code:
        if(nHeight == 1)
{
        nSubsidy = 30000000 * COIN; // 0.5 billion coins, that all pow coins
}

You are 100% CORRECT


This is a stupid typo, overlooked by me, OC and others that went trough the source.

Now, i already set this straight by burning 26.700.000 TAM to proven unspendable address T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb
See Earlz topic about this address. http://earlz.net/view/2014/10/22/0340/provably-spendable-altcoin-burn-addresses

It wont alter current supply in the source, but at least you know it's safe and burned!

TX id: c5842d66a5252f75297a44cda30122201799a4f65d8f4440816dd7f7ad8c1301

Remaining coins from premine:

750.000 Promo
1.500.000 PoC
1.050.000 ICO that is locked up for the next 7 days and will be burned to the same address.


Edit: Thanks for pointing that out. That's why open source exists.
Whoever found this typo, please PM your address, i'll give you a nice bounty for it.


Edit2



Thx, for burning them...
I'm still mining the coin.
Good Luck
legendary
Activity: 2548
Merit: 1009
Leading Crypto Sports Betting & Casino Platform
sr. member
Activity: 466
Merit: 250
Twitter Follow for no BS crypto: @SecretsOfCrypto
The guy premines 30 million in 1 block (an extra 27 million), sets up an ICO sends funds to the exchanges and claims he didn't know.. it was just a typo. Clearly the coins have been "burned" (on c-cex in exchange for BTC)

Ask c-cex how i send the coins... Using teamviewer on my mobile, so no, i didnt really noticed it.
Not a single TAM has been moved on my wallets, so dont worry.

Ask c-cex? a scam exchange that you are in bed with? no thanks. There is no point and even if I trusted them it proves nothing. Premine was meant to be 3 million, but it was instead 30 million. ICO was dumped on and your only excuse is you used teamviewer on  mobile? Even if you are telling the truth which I highly doubt, why aren't you burning 27 million? whats up with the extra 300,000?
hero member
Activity: 658
Merit: 500
The guy premines 30 million in 1 block (an extra 27 million), sets up an ICO sends funds to the exchanges and claims he didn't know.. it was just a typo. Clearly the coins have been "burned" (on c-cex in exchange for BTC)

Ask c-cex how i send the coins... Using teamviewer on my mobile, so no, i didnt really noticed it.
Not a single TAM has been moved on my wallets, so dont worry.
sr. member
Activity: 466
Merit: 250
Twitter Follow for no BS crypto: @SecretsOfCrypto
The guy premines 30 million in 1 block (an extra 27 million), sets up an ICO sends funds to the exchanges and claims he didn't know.. it was just a typo. Clearly the coins have been "burned" (on c-cex in exchange for BTC)
legendary
Activity: 2548
Merit: 1009
Leading Crypto Sports Betting & Casino Platform
so how much supply ??
30M + right now....

hero member
Activity: 658
Merit: 500
Huh

Code:
Total coins supply: 5.000.000
a 3.000.000 premine has taken place in the first 10 blocks.

source:
Code:
        if(nHeight == 1)
{
        nSubsidy = 30000000 * COIN; // 0.5 billion coins, that all pow coins
}

You are 100% CORRECT


This is a stupid typo, overlooked by me, OC and others that went trough the source.

Now, i already set this straight by burning 26.700.000 TAM to proven unspendable address T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb
See Earlz topic about this address. http://earlz.net/view/2014/10/22/0340/provably-spendable-altcoin-burn-addresses

It wont alter current supply in the source, but at least you know it's safe and burned!

TX id: c5842d66a5252f75297a44cda30122201799a4f65d8f4440816dd7f7ad8c1301

Remaining coins from premine:

750.000 Promo
1.500.000 PoC
1.050.000 ICO that is locked up for the next 7 days and will be burned to the same address.


Edit: Thanks for pointing that out. That's why open source exists.
Whoever found this typo, please PM your address, i'll give you a nice bounty for it.


Edit2

sr. member
Activity: 466
Merit: 250
Twitter Follow for no BS crypto: @SecretsOfCrypto
Huh

Code:
Total coins supply: 5.000.000
a 3.000.000 premine has taken place in the first 10 blocks.

source:
Code:
        if(nHeight == 1)
{
        nSubsidy = 30000000 * COIN; // 0.5 billion coins, that all pow coins
}

Yep 100% scam, premined 30 million coins in block 1. Always do a quick check of the source code. A simple check can be done looking at GetProofOfWorkReward() usually in main.cpp (nHeight is the block number)

// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
   int64 nSubsidy = 0.0 * COIN;

   if(nHeight == 1)
   {
        nSubsidy = 30000000 * COIN;   // 0.5 billion coins, that all pow coins
   }
   else if(nHeight > 1 && nHeight < 100){nSubsidy = 0 * COIN;}
   else if(nHeight > 100 && nHeight < 500){nSubsidy = 1000 * COIN;}
   else if(nHeight > 500 && nHeight < 1266){nSubsidy = 100 * COIN;}
   else if(nHeight > 1266 && nHeight < 2265){nSubsidy = 500 * COIN;}
   else if(nHeight > 2265 && nHeight < 4265){nSubsidy = 150 * COIN;}
   else if(nHeight > 4265 && nHeight < 8266){nSubsidy = 75 * COIN;}
   else if(nHeight > 8267 && nHeight < 8766){nSubsidy = 850 * COIN;}


    return nSubsidy + nFees;
}
sr. member
Activity: 295
Merit: 250
Huh

Code:
Total coins supply: 5.000.000
a 3.000.000 premine has taken place in the first 10 blocks.

source:
Code:
        if(nHeight == 1)
{
        nSubsidy = 30000000 * COIN; // 0.5 billion coins, that all pow coins
}
legendary
Activity: 2702
Merit: 1030
Yes I am a pirate, 300 years too late!
Let the dumping begin!!  (and the buying!!)
legendary
Activity: 1428
Merit: 1001
Fucker of "the system"
everything is going swimmingly great job
legendary
Activity: 1120
Merit: 1000
really ? ICO  4.5k satoshi ?
Some hour ago I mine when block under 500 , and cost mining  just 157sat  Grin
This is awesome .
Waiting Sell My TAM  Wink

dammit, i was too lazy to mine it, was a nice 20x Smiley
sr. member
Activity: 350
Merit: 250
Interesting concept, I can't wait for the android game to launch already
legendary
Activity: 2548
Merit: 1009
Leading Crypto Sports Betting & Casino Platform
waiting low price to buy more again...
be patient  Smiley
hero member
Activity: 658
Merit: 500
this has got to be the biggest scam in ICO history, how are people investing?

3 mill current coins and 2 mill of that are devs premine, oh my god shame on you for investing


dump fest incoming. and a sad fact that dev refuses to post that premine address.

Block 1 has all the details. There is a bounty posted to setup a block explorer.
member
Activity: 92
Merit: 10
this has got to be the biggest scam in ICO history, how are people investing?

3 mill current coins and 2 mill of that are devs premine, oh my god shame on you for investing


dump fest incoming. and a sad fact that dev refuses to post that premine address.
legendary
Activity: 1453
Merit: 1030

HOLD UP !

We will host our ICO at c-cex.com.
We ensure that everything is up and running very soon.

Please, do not send any bitcoins to the provided ICO address until further notice!


No pun intended, I presume, when you say 'hold up' with an ICO coin.
hero member
Activity: 658
Merit: 500
Wallet update in a few hours.
hero member
Activity: 550
Merit: 500
your ICO is going tits up!

Sort this shit out man!

Yes, you should REALLY sort this out with C-Cex !!!
hero member
Activity: 1022
Merit: 1000
your ICO is going tits up!

Sort this shit out man!
Pages:
Jump to: