Pages:
Author

Topic: [66] ★★★█ ATTENTION!!!█★★★ 66 Coin!NO MORE GIVEAWAY!█SAFE THE MINERS!█ (Read 5002 times)

full member
Activity: 196
Merit: 100
CapriPay
IMPORTANT
New nodes



Code:
addnode=162.251.113.163
addnode=158.255.212.165
full member
Activity: 196
Merit: 100
CapriPay
member
Activity: 70
Merit: 10
Plenty of mining room over at

http://66.hashrapid.com

Fire the miners up Tongue
copper member
Activity: 224
Merit: 100
Developer
So let's start mining because another big exchange dont added just if we have 200-250 mh/s ..

they said...

Last 24 hour 1.7 BTC Volume trade at 66/BTC...
copper member
Activity: 224
Merit: 100
Developer
66 Coins are being sold like bread right now Smiley

Yepp, after 5-6 hour this new ( giveaways stops )

see this :




So beautiful, but the price is really really cheapest
full member
Activity: 126
Merit: 100
66 Coins are being sold like bread right now Smiley
copper member
Activity: 224
Merit: 100
Developer
Prove that 66 does not have an unlimited supply of coins !

yep maybe after the all 66 coins mined u can mining 66 coins u can earn 0.00000001 coin after 10 days so its bullshit..
sr. member
Activity: 434
Merit: 250
Thank god lol the giveaways were killing mining, Hopefully it will pick up a bit now. Can't wait to see what bounties come up Smiley
legendary
Activity: 1624
Merit: 1001
All cryptos are FIAT digital currency. Do not use.
Prove that 66 does not have an unlimited supply of coins !

https://bitcointalksearch.org/topic/42-and-descendents-have-unlimited-coin-supply-hardcoded-fixed-444775

Introduction

With a market capitalization ranking of 61[1], the coin "42"[2] is advertised as the "Highest Priced Crypto Coin Ever"[3]. This high price is attributed to the coin's rarity, which is advertised to be limited to 42 total coins. Unfortunately, it looks like 42 coin and descendents thereof (like 8 coin) do not cap the money supply at the advertised number of coin. In fact, unlike most cryptocoins, the money supply of 42 appears to be unlimited.

Money Generation

In bitcoin and most descendents the money supply is capped algorithmically in the function that calculates the mining subsidy. This function is called GetBlockValue() in the source file "main.cpp". In the bitcoin code base, the source for this function is:

Code:
int64_t GetBlockValue(int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 50 * COIN;

    // Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years.
    nSubsidy >>= (nHeight / Params().SubsidyHalvingInterval());

    return nSubsidy + nFees;
}

Here, the subsidy is halved for each "halving interval", measured in blocks (although the calculation is obfuscated somewhat for the sake of computational efficiency). It can be proven[4] that if all halving intervals are the same length (210,000), then the maximum amount of bitcoin ever produced will be

    21,000,000 = 2 * 50 * 210,000

42 (and probably several descendants, such as Cool uses a GetBlockValue() function like the following, taken from the 42 code base:

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 0.000042 * COIN;
    if(nHeight < 419)
    {
       nSubsidy = 0.0000001 * COIN;
}
    if(nHeight == 1)
    {
       nSubsidy = 0.42 * COIN;
}
    if(nHeight == 420) // yay its 420 :) Time for a smoke
    {
       nSubsidy = 0.00042 * COIN;
}
    if(nHeight == 4242)
    {
       nSubsidy = 0.00042 * COIN;
}
    if(nHeight == 42424)
    {
       nSubsidy = 0.00042 * COIN;
}
    if(nHeight == 424242)
    {
       nSubsidy = 0.00042 * COIN;
}
    if(nHeight == 4242424)
    {
       nSubsidy = 0.00042 * COIN;
}
    return nSubsidy + nFees;
}

Except in a few cases (blocks 1-420, 4242, 42424, ...) all blocks will have the same reward of 0.000042 coin (ignoring fees). Notice that the 42 version of GetBlockValue() has no halving interval and makes no attempt to curtail coin generation at the advertised maximum of 42 coin. Without a geometrically decreasing reward value, the money supply will grow indefinitely.

For 42, the advertised coin maximum of 42 coin will be produced before block 1,000,000 (42 / 0.000042), or in about 1.33 years. But the existing 42 code makes no provision to stop coin production at that time.

MAX_MONEY

One part of the code for most cryptocoins that may be confusing to developers is the MAX_MONEY constant in the source file called "main.h". MAX_MONEY has two uses in the 42 code: (1) as a sentinel return value (which won't be discussed) and (2) to check some transaction values to ensure that they make sense. For the latter purpose, MAX_MONEY is used in the inline function called MoneyRange() in the "main.h" file:

Code:
inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }

This function simply checks to ensure that a value is not negative and does not exceed MAX_MONEY. Nowhere in the 42 codebase is MAX_MONEY checked against a sum of the balances of all accounts, which would require the computationally expensive task of either (1) calculating every account balance in the block chain and then adding them up, or (2) summing the coinbase (money generating) transactions over all blocks. The running total of money supply is not explicitly kept in the block chain.

The MoneyRange() function is used a few times in the 42 code. An arbitrary example is checking the the sanity of a transaction, as in the CTransaction::CheckTransaction() function within "main.cpp":

Code:
if (!MoneyRange(nValueOut))
            return DoS(100, error("CTransaction::CheckTransaction() : txout total out of range"));

Nowhere in the code for 42 does is MoneyRange() used to validate the total money supply of 42.



Notes:

[1] http://coinmarketcap.com/
[2] My screen name, tx42, is unrelated to 42 coin.
[3] http://www.42coin.org/
[4] http://en.wikipedia.org/wiki/1/2_%2B_1/4_%2B_1/8_%2B_1/16_%2B_%E2%8B%AF


newbie
Activity: 30
Merit: 0
Diff low, I just got back mining for the big launch !!! Smiley

Make it 1000BTC / 66 coin please !!!  Grin
full member
Activity: 296
Merit: 100
Do you really want to do the community a service?

Then go away and take your shitcoin with you. This is the best that you could do. Crypto does not need your coin.

I'm mining, and keep on doing it. Of course I hope / pretend that 66 team starts marketing harder its coin otherwise it will be all lost in time like tears in rain ;-))
copper member
Activity: 224
Merit: 100
Developer
Okay, after the new maked two trade on coin swap... 66 Coin going to the moon!



full member
Activity: 126
Merit: 100
copper member
Activity: 224
Merit: 100
Developer
Haters gona hate  Grin

Nice news!


Yes, we belive after this new more people interested for 66coin and buyed it..

haha, no!


hmmm, after this new traded it a 66 coin for 150 BTC  Kiss  Wink


we belive in 66Coin.
hero member
Activity: 714
Merit: 500
Skol!
Haters gona hate  Grin

Nice news!


Yes, we belive after this new more people interested for 66coin and buyed it..

haha, no!
copper member
Activity: 224
Merit: 100
Developer
Haters gona hate  Grin

Nice news!


Yes, we belive after this new more people interested for 66coin and buyed it..
full member
Activity: 190
Merit: 100
copper member
Activity: 224
Merit: 100
Developer
copper member
Activity: 224
Merit: 100
Developer
Do you really want to do the community a service?

Then go away and take your shitcoin with you. This is the best that you could do. Crypto does not need your coin.


haha, i love this newbies... "shitcoin" haha ...

so why u angry? dont give  66 coins for free? Smiley



I don't even want any.

You're harming crypto by helping creating yet another shitcoin. The market is flooded. Stop this stuff and try to come up with a coin that actually furthers crypto instead of making some to further your own greed.

We take a new coin not a copy ( okay 42 is similar ) but it s not a copy coin we write the coin, we work with this coin 3-4 weeks!
See the website : 66coin.org..

Its not like a other shitcoin, It's 66 Coin



Pages:
Jump to: