Bitcoin Forum

Alternate cryptocurrencies => Altcoin Discussion => Topic started by: SistaFista on July 18, 2013, 08:32:25 PM



Title: [ANN] CYB Cryptobits
Post by: SistaFista on July 18, 2013, 08:32:25 PM
Cryptobits (CYB) is a new alt currency made for the Cryptocointalk forums.

 

Block Rewards-

2 Coins per block.

Block Times 2 minutes.

Retargets- 5 Blocks.

4 Million coins total.

2 coins per year for 5 years and halves every 5 years.

 

Premine .5% for Bounties and give-aways.

Client v1.3

Windows qt- https://mega.co.nz/#!LZ90HSbS!V6GqcggitIbOJog7p0w8KStcrU9b6vlZuQ06pNjTPkY
http://www.mediafire.com/download/26iqtcypk6qmw5j/cryptobits-qt-1.3.rar

Source- http://www.mediafire...qe5u5dlvdpc4lv4

Github https://github.com/C...aker/Cryptobits

 

Launching at block 28.

 

Default config file

 

rpcuser=USERNAME
rpcpassword=password
rpcallowip=127.0.0.1
daemon=1
server=1
gen=0
rpcport=29992
port=29993
addnode=121.215.159.167
addnode=92.25.209.65

 Pools:

http://cyb.coinmine.pl - 1% fee
Stratum Port: 9107
http://btcera.com:22221/static/
 

Bounties: First Round
Pools- 1K Cryptobits x 3 - 3K Bounties
Blockchain Browser - 2K Cryptobits x 1 - Must have api
Website trading with Cryptobits 1K x 2 - 2K Bounties
1K Giveaway- 20 Cryptobits for the first 50 address posters in this thread.
Mac/Linux Compiled Wallets 300 Cryptobits each.- Post working link in thread.
 
Website
Coming Soon.

https://cryptocointalk.com/topic/849-ann-cryptobits-cyb/


Title: Re: [ANN] CYB Cryptobits
Post by: xan_The_Dragon on July 19, 2013, 04:12:01 AM
Thankes added to the coll ection


Title: Re: [ANN] CYB Cryptobits
Post by: barwizi on July 19, 2013, 04:59:35 AM
why no ann here? pseudo premine


Title: Re: [ANN] CYB Cryptobits
Post by: Scooby903 on July 19, 2013, 05:02:22 AM
why no ann here? pseudo premine

"Cryptobits (CYB) is a new alt currency made for the Cryptocointalk forums."  - MrPotatoHead  (The dev)


I mentioned it earlier...hashrate has really picked up now



Title: Re: [ANN] CYB Cryptobits
Post by: barwizi on July 19, 2013, 05:08:26 AM
why no ann here? pseudo premine

"Cryptobits (CYB) is a new alt currency made for the Cryptocointalk forums."  - MrPotatoHead  (The dev)


I mentioned it earlier...hashrate has really picked up now



oy, you just said nothing. it's a pseudo premine because it was annoinced on a virtually empty forum, if it was announced here then when the following gre, moved to the other forum that would make sense. Essentially those who were in the know got to premine this crapcoin.


int64 static GetBlockValue(int nHeight, int64 nFees)
{
int64 nSubsidy = 2 * COIN;
   
    if(nHeight == 2) 
    {
        nSubsidy = 20000 * COIN;
    }
   
    nSubsidy >>= (nHeight / 1004000); // Approx 500 thousand blocks per year

    return nSubsidy + nFees;
}

static const int64 nTargetTimespan = 5 * 120; // Cryptobits: 10mnute retarget days
static const int64 nTargetSpacing = 120; // Cryptobits: 2 minute blocks
static const int64 nInterval = nTargetTimespan / nTargetSpacing;

// Thanks: Balthazar for suggesting the following fix
// https://bitcointalk.org/index.php?topic=182430.msg1904506#msg1904506
static const int64 nReTargetHistoryFact = 4; // look at 4 times the retarget
                                             // interval into the block history

//
// minimum amount of work that could possibly be required nTime after
// minimum work required was nBase
//
unsigned int ComputeMinWork(unsigned int nBase, int64 nTime)
{
    // Testnet has min-difficulty blocks
    // after nTargetSpacing*2 time between blocks:
    if (fTestNet && nTime > nTargetSpacing*2)
        return bnProofOfWorkLimit.GetCompact();

    CBigNum bnResult;
    bnResult.SetCompact(nBase);
    while (nTime > 0 && bnResult < bnProofOfWorkLimit)
    {
        // Maximum 400% adjustment...
        bnResult *= 4;
        // ... in best-case exactly 4-times-normal target time
        nTime -= nTargetTimespan*4;
    }
    if (bnResult > bnProofOfWorkLimit)
        bnResult = bnProofOfWorkLimit;
    return bnResult.GetCompact();
}

unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlock *pblock)
{
    unsigned int nProofOfWorkLimit = bnProofOfWorkLimit.GetCompact();

    // Genesis block
    if (pindexLast == NULL)
        return nProofOfWorkLimit;

    // Only change once per interval
    if ((pindexLast->nHeight+1) % nInterval != 0)
    {
        // Special difficulty rule for testnet:
        if (fTestNet)
        {
            // If the new block's timestamp is more than 2* 10 minutes
            // then allow mining of a min-difficulty block.
            if (pblock->nTime > pindexLast->nTime + nTargetSpacing*2)
                return nProofOfWorkLimit;
            else
            {
                // Return the last non-special-min-difficulty-rules-block
                const CBlockIndex* pindex = pindexLast;
                while (pindex->pprev && pindex->nHeight % nInterval != 0 && pindex->nBits == nProofOfWorkLimit)
                    pindex = pindex->pprev;
                return pindex->nBits;
            }
        }

        return pindexLast->nBits;
    }

    // Litecoin: This fixes an issue where a 51% attack can change difficulty at will.
    // Go back the full period unless it's the first retarget after genesis. Code courtesy of Art Forz
    int blockstogoback = nInterval-1;
    if ((pindexLast->nHeight+1) != nInterval)
        blockstogoback = nInterval;
    if (pindexLast->nHeight > COINFIX1_BLOCK) {
        blockstogoback = nReTargetHistoryFact * nInterval;
    }

    // Go back by what we want to be nReTargetHistoryFact*nInterval blocks
    const CBlockIndex* pindexFirst = pindexLast;
    for (int i = 0; pindexFirst && i < blockstogoback; i++)
        pindexFirst = pindexFirst->pprev;
    assert(pindexFirst);

    // Limit adjustment step
    int64 nActualTimespan = 0;
    if (pindexLast->nHeight > COINFIX1_BLOCK)
        // obtain average actual timespan
        nActualTimespan = (pindexLast->GetBlockTime() - pindexFirst->GetBlockTime())/nReTargetHistoryFact;
    else
        nActualTimespan = pindexLast->GetBlockTime() - pindexFirst->GetBlockTime();
    printf("  nActualTimespan = %"PRI64d"  before bounds\n", nActualTimespan);
    if (nActualTimespan < nTargetTimespan/4)
        nActualTimespan = nTargetTimespan/4;
    if (nActualTimespan > nTargetTimespan*4)
        nActualTimespan = nTargetTimespan*4;

    // Retarget
    CBigNum bnNew;
    bnNew.SetCompact(pindexLast->nBits);
    bnNew *= nActualTimespan;
    bnNew /= nTargetTimespan;

    if (bnNew > bnProofOfWorkLimit)
        bnNew = bnProofOfWorkLimit;

    /// debug print
    printf("GetNextWorkRequired RETARGET\n");
    printf("nTargetTimespan = %"PRI64d"    nActualTimespan = %"PRI64d"\n", nTargetTimespan, nActualTimespan);
    printf("Before: %08x  %s\n", pindexLast->nBits, CBigNum().SetCompact(pindexLast->nBits).getuint256().ToString().c_str());
    printf("After:  %08x  %s\n", bnNew.GetCompact(), bnNew.getuint256().ToString().c_str());

    return bnNew.GetCompact();
}


this coin is dead if 3 people with at least a 20mh each farm point at it for more than an hour.


Title: Re: [ANN] CYB Cryptobits
Post by: feeleep on July 19, 2013, 05:30:54 AM
I just created a pool (as always until first block is find this is beta ):
 
http://cyb.coinmine.pl
Stratum Port: 9107


Title: Re: [ANN] CYB Cryptobits
Post by: Francisco on July 19, 2013, 05:44:57 AM
I just created a pool (as always until first block is find this is beta ):
 
http://cyb.coinmine.pl
Stratum Port: 9107

Just joined you, hopefully we'll have better luck than I did solo.  Been mining since block 103 and haven't gotten one.


Title: Re: [ANN] CYB Cryptobits
Post by: muddafudda on July 19, 2013, 07:28:18 AM
Possibly barwizi. Any one have any to sell anyways, too hard to mine with my little hash power


Title: Re: [ANN] CYB Cryptobits
Post by: simichent on July 19, 2013, 07:48:21 AM
WTS 8 CYB........offers?


Title: Re: [ANN] CYB Cryptobits
Post by: Tony116 on July 19, 2013, 08:51:28 AM
i can't download wallet :(


Title: Re: [ANN] CYB Cryptobits
Post by: muddafudda on July 19, 2013, 09:29:14 AM
Which one. They are all working for me I think.

How much for the 8, lots of 50 would be  better.


Title: Re: [ANN] CYB Cryptobits
Post by: simichent on July 19, 2013, 09:46:06 AM
Which one. They are all working for me I think.

How much for the 8, lots of 50 would be  better.

only have 10 atm make me an offer on 50 and ill get on it


Title: Re: [ANN] CYB Cryptobits
Post by: vivabnet on July 19, 2013, 12:08:02 PM
0 active connections!!! What happens?  ??? ??? ??? ??? ??? ???


Title: Re: [ANN] CYB Cryptobits
Post by: SistaFista on July 19, 2013, 12:45:01 PM
why no ann here? pseudo premine

"Cryptobits (CYB) is a new alt currency made for the Cryptocointalk forums."  - MrPotatoHead  (The dev)


I mentioned it earlier...hashrate has really picked up now



oy, you just said nothing. it's a pseudo premine because it was annoinced on a virtually empty forum, if it was announced here then when the following gre, moved to the other forum that would make sense. Essentially those who were in the know got to premine this crapcoin.


int64 static GetBlockValue(int nHeight, int64 nFees)
{
int64 nSubsidy = 2 * COIN;
   
    if(nHeight == 2) 
    {
        nSubsidy = 20000 * COIN;
    }
   
    nSubsidy >>= (nHeight / 1004000); // Approx 500 thousand blocks per year

    return nSubsidy + nFees;
}

static const int64 nTargetTimespan = 5 * 120; // Cryptobits: 10mnute retarget days
static const int64 nTargetSpacing = 120; // Cryptobits: 2 minute blocks
static const int64 nInterval = nTargetTimespan / nTargetSpacing;

// Thanks: Balthazar for suggesting the following fix
// https://bitcointalk.org/index.php?topic=182430.msg1904506#msg1904506
static const int64 nReTargetHistoryFact = 4; // look at 4 times the retarget
                                             // interval into the block history

//
// minimum amount of work that could possibly be required nTime after
// minimum work required was nBase
//
unsigned int ComputeMinWork(unsigned int nBase, int64 nTime)
{
    // Testnet has min-difficulty blocks
    // after nTargetSpacing*2 time between blocks:
    if (fTestNet && nTime > nTargetSpacing*2)
        return bnProofOfWorkLimit.GetCompact();

    CBigNum bnResult;
    bnResult.SetCompact(nBase);
    while (nTime > 0 && bnResult < bnProofOfWorkLimit)
    {
        // Maximum 400% adjustment...
        bnResult *= 4;
        // ... in best-case exactly 4-times-normal target time
        nTime -= nTargetTimespan*4;
    }
    if (bnResult > bnProofOfWorkLimit)
        bnResult = bnProofOfWorkLimit;
    return bnResult.GetCompact();
}

unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlock *pblock)
{
    unsigned int nProofOfWorkLimit = bnProofOfWorkLimit.GetCompact();

    // Genesis block
    if (pindexLast == NULL)
        return nProofOfWorkLimit;

    // Only change once per interval
    if ((pindexLast->nHeight+1) % nInterval != 0)
    {
        // Special difficulty rule for testnet:
        if (fTestNet)
        {
            // If the new block's timestamp is more than 2* 10 minutes
            // then allow mining of a min-difficulty block.
            if (pblock->nTime > pindexLast->nTime + nTargetSpacing*2)
                return nProofOfWorkLimit;
            else
            {
                // Return the last non-special-min-difficulty-rules-block
                const CBlockIndex* pindex = pindexLast;
                while (pindex->pprev && pindex->nHeight % nInterval != 0 && pindex->nBits == nProofOfWorkLimit)
                    pindex = pindex->pprev;
                return pindex->nBits;
            }
        }

        return pindexLast->nBits;
    }

    // Litecoin: This fixes an issue where a 51% attack can change difficulty at will.
    // Go back the full period unless it's the first retarget after genesis. Code courtesy of Art Forz
    int blockstogoback = nInterval-1;
    if ((pindexLast->nHeight+1) != nInterval)
        blockstogoback = nInterval;
    if (pindexLast->nHeight > COINFIX1_BLOCK) {
        blockstogoback = nReTargetHistoryFact * nInterval;
    }

    // Go back by what we want to be nReTargetHistoryFact*nInterval blocks
    const CBlockIndex* pindexFirst = pindexLast;
    for (int i = 0; pindexFirst && i < blockstogoback; i++)
        pindexFirst = pindexFirst->pprev;
    assert(pindexFirst);

    // Limit adjustment step
    int64 nActualTimespan = 0;
    if (pindexLast->nHeight > COINFIX1_BLOCK)
        // obtain average actual timespan
        nActualTimespan = (pindexLast->GetBlockTime() - pindexFirst->GetBlockTime())/nReTargetHistoryFact;
    else
        nActualTimespan = pindexLast->GetBlockTime() - pindexFirst->GetBlockTime();
    printf("  nActualTimespan = %"PRI64d"  before bounds\n", nActualTimespan);
    if (nActualTimespan < nTargetTimespan/4)
        nActualTimespan = nTargetTimespan/4;
    if (nActualTimespan > nTargetTimespan*4)
        nActualTimespan = nTargetTimespan*4;

    // Retarget
    CBigNum bnNew;
    bnNew.SetCompact(pindexLast->nBits);
    bnNew *= nActualTimespan;
    bnNew /= nTargetTimespan;

    if (bnNew > bnProofOfWorkLimit)
        bnNew = bnProofOfWorkLimit;

    /// debug print
    printf("GetNextWorkRequired RETARGET\n");
    printf("nTargetTimespan = %"PRI64d"    nActualTimespan = %"PRI64d"\n", nTargetTimespan, nActualTimespan);
    printf("Before: %08x  %s\n", pindexLast->nBits, CBigNum().SetCompact(pindexLast->nBits).getuint256().ToString().c_str());
    printf("After:  %08x  %s\n", bnNew.GetCompact(), bnNew.getuint256().ToString().c_str());

    return bnNew.GetCompact();
}


this coin is dead if 3 people with at least a 20mh each farm point at it for more than an hour.

I made this thread as soon as I saw the post and that it was posted 11mins into release.


Title: Re: [ANN] CYB Cryptobits
Post by: TheSpiral on July 19, 2013, 01:07:50 PM
For those just tuning in: difficulty is at 1.2
No solo mine hoarding for me :p


Title: Re: [ANN] CYB Cryptobits
Post by: eule on July 19, 2013, 01:09:24 PM
Links are broken.  :P


Title: Re: [ANN] CYB Cryptobits
Post by: muddafudda on July 19, 2013, 01:50:54 PM
QT http://www.mediafire.com/download/4cx8b34xsyx6sdb/cryptobits2.rar (http://www.mediafire.com/download/4cx8b34xsyx6sdb/cryptobits2.rar)
Source http://www.mediafire.com/?qe5u5dlvdpc4lv4 (http://www.mediafire.com/?qe5u5dlvdpc4lv4)
Github https://github.com/Cryptomaker/Cryptobits (https://github.com/Cryptomaker/Cryptobits)
from the link.


Title: Re: [ANN] CYB Cryptobits
Post by: barwizi on July 19, 2013, 07:29:15 PM
why no ann here? pseudo premine

"Cryptobits (CYB) is a new alt currency made for the Cryptocointalk forums."  - MrPotatoHead  (The dev)


I mentioned it earlier...hashrate has really picked up now



oy, you just said nothing. it's a pseudo premine because it was annoinced on a virtually empty forum, if it was announced here then when the following gre, moved to the other forum that would make sense. Essentially those who were in the know got to premine this crapcoin.


int64 static GetBlockValue(int nHeight, int64 nFees)
{
int64 nSubsidy = 2 * COIN;
   
    if(nHeight == 2) 
    {
        nSubsidy = 20000 * COIN;
    }
   
    nSubsidy >>= (nHeight / 1004000); // Approx 500 thousand blocks per year

    return nSubsidy + nFees;
}

static const int64 nTargetTimespan = 5 * 120; // Cryptobits: 10mnute retarget days
static const int64 nTargetSpacing = 120; // Cryptobits: 2 minute blocks
static const int64 nInterval = nTargetTimespan / nTargetSpacing;

// Thanks: Balthazar for suggesting the following fix
// https://bitcointalk.org/index.php?topic=182430.msg1904506#msg1904506
static const int64 nReTargetHistoryFact = 4; // look at 4 times the retarget
                                             // interval into the block history

//
// minimum amount of work that could possibly be required nTime after
// minimum work required was nBase
//
unsigned int ComputeMinWork(unsigned int nBase, int64 nTime)
{
    // Testnet has min-difficulty blocks
    // after nTargetSpacing*2 time between blocks:
    if (fTestNet && nTime > nTargetSpacing*2)
        return bnProofOfWorkLimit.GetCompact();

    CBigNum bnResult;
    bnResult.SetCompact(nBase);
    while (nTime > 0 && bnResult < bnProofOfWorkLimit)
    {
        // Maximum 400% adjustment...
        bnResult *= 4;
        // ... in best-case exactly 4-times-normal target time
        nTime -= nTargetTimespan*4;
    }
    if (bnResult > bnProofOfWorkLimit)
        bnResult = bnProofOfWorkLimit;
    return bnResult.GetCompact();
}

unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlock *pblock)
{
    unsigned int nProofOfWorkLimit = bnProofOfWorkLimit.GetCompact();

    // Genesis block
    if (pindexLast == NULL)
        return nProofOfWorkLimit;

    // Only change once per interval
    if ((pindexLast->nHeight+1) % nInterval != 0)
    {
        // Special difficulty rule for testnet:
        if (fTestNet)
        {
            // If the new block's timestamp is more than 2* 10 minutes
            // then allow mining of a min-difficulty block.
            if (pblock->nTime > pindexLast->nTime + nTargetSpacing*2)
                return nProofOfWorkLimit;
            else
            {
                // Return the last non-special-min-difficulty-rules-block
                const CBlockIndex* pindex = pindexLast;
                while (pindex->pprev && pindex->nHeight % nInterval != 0 && pindex->nBits == nProofOfWorkLimit)
                    pindex = pindex->pprev;
                return pindex->nBits;
            }
        }

        return pindexLast->nBits;
    }

    // Litecoin: This fixes an issue where a 51% attack can change difficulty at will.
    // Go back the full period unless it's the first retarget after genesis. Code courtesy of Art Forz
    int blockstogoback = nInterval-1;
    if ((pindexLast->nHeight+1) != nInterval)
        blockstogoback = nInterval;
    if (pindexLast->nHeight > COINFIX1_BLOCK) {
        blockstogoback = nReTargetHistoryFact * nInterval;
    }

    // Go back by what we want to be nReTargetHistoryFact*nInterval blocks
    const CBlockIndex* pindexFirst = pindexLast;
    for (int i = 0; pindexFirst && i < blockstogoback; i++)
        pindexFirst = pindexFirst->pprev;
    assert(pindexFirst);

    // Limit adjustment step
    int64 nActualTimespan = 0;
    if (pindexLast->nHeight > COINFIX1_BLOCK)
        // obtain average actual timespan
        nActualTimespan = (pindexLast->GetBlockTime() - pindexFirst->GetBlockTime())/nReTargetHistoryFact;
    else
        nActualTimespan = pindexLast->GetBlockTime() - pindexFirst->GetBlockTime();
    printf("  nActualTimespan = %"PRI64d"  before bounds\n", nActualTimespan);
    if (nActualTimespan < nTargetTimespan/4)
        nActualTimespan = nTargetTimespan/4;
    if (nActualTimespan > nTargetTimespan*4)
        nActualTimespan = nTargetTimespan*4;

    // Retarget
    CBigNum bnNew;
    bnNew.SetCompact(pindexLast->nBits);
    bnNew *= nActualTimespan;
    bnNew /= nTargetTimespan;

    if (bnNew > bnProofOfWorkLimit)
        bnNew = bnProofOfWorkLimit;

    /// debug print
    printf("GetNextWorkRequired RETARGET\n");
    printf("nTargetTimespan = %"PRI64d"    nActualTimespan = %"PRI64d"\n", nTargetTimespan, nActualTimespan);
    printf("Before: %08x  %s\n", pindexLast->nBits, CBigNum().SetCompact(pindexLast->nBits).getuint256().ToString().c_str());
    printf("After:  %08x  %s\n", bnNew.GetCompact(), bnNew.getuint256().ToString().c_str());

    return bnNew.GetCompact();
}


this coin is dead if 3 people with at least a 20mh each farm point at it for more than an hour.

I made this thread as soon as I saw the post and that it was posted 11mins into release.


ever seen a five minute video of a 20mh+ farm? please, be honest and see that this coin was wrongly launched.  i highlighted that code because the difficulty algo has no place in today's crypto world.


Title: Re: [ANN] CYB Cryptobits
Post by: SistaFista on July 19, 2013, 11:05:40 PM
Im just a messanger, please dont shoot :) next time I will leave you all in the dark


Title: Re: [ANN] CYB Cryptobits
Post by: Scooby903 on July 20, 2013, 12:31:04 AM
Which one. They are all working for me I think.

How much for the 8, lots of 50 would be  better.

How many you want?  i have 200 at the moment...


Title: Re: [ANN] CYB Cryptobits
Post by: flyingcat on July 20, 2013, 12:39:19 AM
premined 0.5% for future dump...  ;D


Title: Re: [ANN] CYB Cryptobits
Post by: vivabnet on July 20, 2013, 12:40:11 AM
non connection


Title: Re: [ANN] CYB Cryptobits
Post by: emunebtk on July 26, 2013, 07:43:19 AM
surprised this coin hasnt gotten a whole lot of love? http://cyb.coinmine.pl seems to be mining with no problems in case anyone wants to jump on. Ive gotta say I do like the name..sounds legit


Title: Re: [ANN] CYB Cryptobits
Post by: SistaFista on July 26, 2013, 11:54:02 PM
New client with checkpoint, please update.


Title: Re: [ANN] CYB Cryptobits
Post by: emunebtk on July 27, 2013, 12:40:57 AM
updated and working great!


Title: Re: [ANN] CYB Cryptobits
Post by: Cryptobits on July 27, 2013, 03:12:20 AM
Yeah, I'll push the update letter today. Just making sure it was all good


Title: Re: [ANN] CYB Cryptobits
Post by: emunebtk on July 28, 2013, 07:11:26 PM
Need more love in the network peeps! come join in the pool :)


Title: Re: [ANN] CYB Cryptobits
Post by: xxzxsq on August 02, 2013, 05:40:18 AM
Just joined you ;D


Title: Re: [ANN] CYB Cryptobits
Post by: krasnyoktyabr on August 02, 2013, 05:41:21 AM
Just joined you ;D

Nice to have some company on the pool :D


Title: Re: [ANN] CYB Cryptobits
Post by: sonihr on August 02, 2013, 06:06:43 AM
Still waiting for my 1000 CYB bounty for the 2nd pool....

http://btcera.com:22221/static/


Title: Re: [ANN] CYB Cryptobits
Post by: krasnyoktyabr on August 02, 2013, 06:09:50 AM
Still waiting for my 1000 CYB bounty for the 2nd pool....

http://btcera.com:22221/static/

I can verify that this pool has been up and running for at least 36 hours and is fully functional.


Title: Re: [ANN] CYB Cryptobits
Post by: barwizi on August 02, 2013, 06:25:56 AM
is this still alive?


Title: Re: [ANN] CYB Cryptobits
Post by: krasnyoktyabr on August 02, 2013, 06:29:38 AM
is this still alive?

Just barely :)

I love a coin I can solo-mine a few blocks each day. It's more gratifying to find a few blocks by yourself in a row.


Title: Re: [ANN] CYB Cryptobits
Post by: sonihr on August 03, 2013, 08:46:23 PM
I got my CYB bounty for the 2nd pool!

Now I have set the fee to 1% for those who want to mine on my pool.

more info on how to mine CYB http://cyb.btcera.com/



Title: Re: [ANN] CYB Cryptobits
Post by: TmottaDing on August 17, 2013, 09:58:23 PM
On the coin mining it now @ coinmine.pl all has worked fine for me for over 24 hours.


6Cj8TAsbJJB7X95bUM2UTdwoKzdoDCHYio


Title: Re: [ANN] CYB Cryptobits
Post by: muddafudda on August 18, 2013, 04:40:21 AM
Mined this at low diff, for those jumping on now it may be too late. Diff retargets really hard not allowing flash mining. You need to do the time to get the coin.


Title: Re: [ANN] CYB Cryptobits
Post by: FinShaggy on September 13, 2013, 02:22:32 PM
Are there ways to earn this coin without mining, maybe by writing?


Title: Re: [ANN] CYB Cryptobits
Post by: vivabnet on September 21, 2013, 03:53:17 AM
What is trading sites? So long


Title: Re: [ANN] CYB Cryptobits
Post by: SimonTower on October 08, 2013, 04:16:19 PM
Yeah, we need an Exchange!


Title: Re: [ANN] CYB Cryptobits
Post by: abrx on October 08, 2013, 04:36:21 PM
Where can I find some of the specifications hash algorithm used by this fork?


Title: Re: [ANN] CYB Cryptobits
Post by: saamxx on October 08, 2013, 04:59:12 PM
Coin revived from the dead :o

Welcome to the hell ;D


Title: Re: [ANN] CYB Cryptobits
Post by: muddafudda on October 09, 2013, 06:03:19 AM
Shit haven't mined enough yet!!


Title: Re: [ANN] CYB Cryptobits
Post by: SimonTower on October 10, 2013, 11:40:29 AM
Shit haven't mined enough yet!!

I can sell some if You want:)


Title: Re: [ANN] CYB Cryptobits
Post by: vivabnet on December 06, 2013, 02:13:02 AM
Still not update any more. Website, shop ....


Title: Re: [ANN] CYB Cryptobits
Post by: skl1 on December 12, 2013, 12:02:10 PM
CYB to Cryptsy soon maybe?
Show some support by request it at support-new coins to consider.


Title: Re: [ANN] CYB Cryptobits
Post by: skl1 on December 13, 2013, 12:30:50 PM
we need pool for CYB


Title: Re: [ANN] CYB Cryptobits
Post by: sonihr on December 23, 2013, 09:16:09 PM
I have set the pool back up for everyone!

http://btcera.com:22221