Author

Topic: [B3]B3Coin Hybrid POW/POS [Scrypt] - ANTI-INSTAMINE, NO PREMINE, NO ICO, NO IPO - page 211. (Read 242093 times)

hero member
Activity: 1974
Merit: 592
hero member
Activity: 644
Merit: 500
sr. member
Activity: 374
Merit: 250
Help in development process
Donate some.
legendary
Activity: 1778
Merit: 1000
sr. member
Activity: 374
Merit: 250
good work thanks dev

please  donate
vote on cryptopia and c cex .
sr. member
Activity: 415
Merit: 250
sr. member
Activity: 374
Merit: 250
100 blocks to update.... whats in update fixes, new features?

added checkpoint .
fixed mining bugs pow
legendary
Activity: 1778
Merit: 1000
100 blocks to update.... whats in update fixes, new features?
Lets wait for DEV
sr. member
Activity: 415
Merit: 250
100 blocks to update.... whats in update fixes, new features?
legendary
Activity: 1778
Merit: 1000
I hate it when coins like this come out. You never know when to buy them and you want to start staking as soon as you can so that makes it even harder to choose.
B3 is a good coin  Cool

But the dump is already started ( massive ). I already lost enough money on this coin (i wont sell with this big lost), good coins almost always result in good prices. Bad coins results in bad prices. Tell me what we have here? I dont want to fud, because i dropped enough hashes to this coin, but i like to be realistic.

So tell me, what is good? A working wallet? Because more we dont have at this moment.
B3 has NO INSTAMINE, NO PREMINE, NO extra funds for DEV.

People were in a hurry to dump, even though the DEV is active.

We are already on a MAJOR EXCHANGE, less than 4 days after POW MINING began. We also have a BLOCK EXPLORER.
hero member
Activity: 644
Merit: 500
I hate it when coins like this come out. You never know when to buy them and you want to start staking as soon as you can so that makes it even harder to choose.
B3 is a good coin  Cool

But the dump is already started ( massive ). I already lost enough money on this coin (i wont sell with this big lost), good coins almost always result in good prices. Bad coins results in bad prices. Tell me what we have here? I dont want to fud, because i dropped enough hashes to this coin, but i like to be realistic.

So tell me, what is good? A working wallet? Because more we dont have at this moment.
legendary
Activity: 1778
Merit: 1000
I hate it when coins like this come out. You never know when to buy them and you want to start staking as soon as you can so that makes it even harder to choose.
B3 is a good coin  Cool
hero member
Activity: 770
Merit: 500
I hate it when coins like this come out. You never know when to buy them and you want to start staking as soon as you can so that makes it even harder to choose.
sr. member
Activity: 374
Merit: 250
member
Activity: 102
Merit: 10
Hey guys,

I'm quite a newbie to cryptocurrencies, my B3 wallet seems to not sync. Any ideas ? :/

edit: I see all those addnode but i don't know where to put it.

you need to creat a file named "b3.conf" in appdata 
and inside it you need to past all nodes.

as :

addnode=192.168.43.5



It's working thank you Cheesy
sr. member
Activity: 374
Merit: 250
i locked poll ...

we will have no control on coin supply according to poll
sr. member
Activity: 374
Merit: 250
Hey guys,

I'm quite a newbie to cryptocurrencies, my B3 wallet seems to not sync. Any ideas ? :/

edit: I see all those addnode but i don't know where to put it.

you need to creat a file named "b3.conf" in appdata 
and inside it you need to past all nodes.

as :

addnode=192.168.43.5

member
Activity: 102
Merit: 10
Hey guys,

I'm quite a newbie to cryptocurrencies, my B3 wallet seems to not sync. Any ideas ? :/

edit: I see all those addnode but i don't know where to put it.
sr. member
Activity: 296
Merit: 250
No Bounty for this coin?
This coin has NO PREMINE.

DEV has no free coins

Code:
int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 5 * COIN;
   if(pindexBest->nHeight <= 500)
    {
        nSubsidy = 0 * COIN;
    }
    if((pindexBest->nHeight <= 1500)&&(pindexBest->nHeight > 500) )
    {
        nSubsidy = 100 * COIN;
    }
    if((pindexBest->nHeight < 10000)&&(pindexBest->nHeight > 1500) )
    {
        nSubsidy = 10 * COIN;
    }

    return nSubsidy + nFees;

}
const int DAILY_BLOCKCOUNT =  2880;
int64_t COIN_YEAR_REWARD = 1 * CENT;
// miner's coin stake reward
int64_t GetProofOfStakeReward(int nHeight, int64_t nCoinAge, int64_t nFees)
{
    int64_t nRewardCoinYear;


    nRewardCoinYear = 5 * COIN_YEAR_REWARD;

    if(pindexBest->nHeight <= 15000)
        nRewardCoinYear = 500 * COIN_YEAR_REWARD;
    else if((pindexBest->nHeight <= 20000)&&(pindexBest->nHeight > 15000))
        nRewardCoinYear = 750 * COIN_YEAR_REWARD;
    else if((pindexBest->nHeight <= 25000)&&(pindexBest->nHeight > 20000))
        nRewardCoinYear = 1000 * COIN_YEAR_REWARD;
    else if((pindexBest->nHeight <= 30000)&&(pindexBest->nHeight > 25000))
        nRewardCoinYear = 5000 * COIN_YEAR_REWARD;
    else if((pindexBest->nHeight <= 35000)&&(pindexBest->nHeight > 30000))
        nRewardCoinYear = 1000 * COIN_YEAR_REWARD;
    else if((pindexBest->nHeight <= 40000)&&(pindexBest->nHeight > 35000))
        nRewardCoinYear = 500 * COIN_YEAR_REWARD;
    else if((pindexBest->nHeight <= 45000)&&(pindexBest->nHeight > 40000))
        nRewardCoinYear = 250 * COIN_YEAR_REWARD;
    else if((pindexBest->nHeight <= 50000)&&(pindexBest->nHeight > 45000))
        nRewardCoinYear = 100 * COIN_YEAR_REWARD;
    else if((pindexBest->nHeight <= 1000000)&&(pindexBest->nHeight > 50000))
        nRewardCoinYear = 20 * COIN_YEAR_REWARD;         
    else
        nRewardCoinYear = 0.45 * COIN_YEAR_REWARD;

    int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;

    return nSubsidy + nFees;
}

Wink nice coin
legendary
Activity: 1778
Merit: 1000
What is the correct wallet version, and why does the blockchain say it's from 2015?
B3Coin
Wormhole  v1.0.0.0-g32a928e

DEV will soon release another update  Cool
Jump to: