Pages:
Author

Topic: [ANN] Fantom | CPU Mineable | DarkSend | Masternode | Tor+I2P | sMP Releasing Sn - page 23. (Read 77888 times)

full member
Activity: 182
Merit: 100
★YoBit.Net★ 350+ Coins Exchange & Dice
DuckYeah, playtime is over because you know what our kindly BlackSmith told?

BlackSmith LX: Mbccompany, ?
Mbccompany: can you tell why fantom isn't listed here? the dev told that you didn't given a **** about his coin and is making accusation against this exchange calling yoshit
BlackSmith LX: Mbccompany, compilation issues
Mbccompany: He fixed it, in fact cex has it now
BlackSmith LX: Mbccompany, after such words of course we won't host it, now this coin is in black list

At the end the restrictions were made because you instead of staying calm went offensive against the exchange, i hope that c-cex will notice this and will do as newyorkcoin is having on Cryptonia where they are being delisted for being offensive and blackmail

P.s. the chat is real, isn't fake, there are testimonies and i can even provide a screen of the whole chat if you want it
sr. member
Activity: 476
Merit: 250
lol maybe we should have waited to add an exchange until the end of PoS at block 100k. Now C-Cex is getting most of the stakes!
sr. member
Activity: 476
Merit: 250
Very interesting. I like it.

What will the masternode rewards be?
legendary
Activity: 1526
Merit: 1002
Chipcoin Developer
Very sharp thinking man..
But I assume this all still a concept and its open for discussion/improvement right?  Huh
legendary
Activity: 1946
Merit: 1005
My mule don't like people laughing
So somehow, one of my machines ended up on a fork for a few hours and I had some connections too. So everyone should check with the block explorer to make sure they're on the same block.

82708 right now.

If you need to connect to the explorer, addnode=194.135.93.51

I am also working on a new type of explorer Wink
Example, www.chipcoin.info/explorer2

I hope to finsish the fantom version within a week or so, really busy atm  Wink

That's some fine stuff man!

Side note, this is my new PoS Scheme:

Code:

int64_t GetProofOfStakeReward(int64_t nFees, int64_t nCoinAge)
{
int64_t currentBalance = pwalletMain->GetBalance();
int64_t nSubsidy;
int64_t nQunti = 0.5 * COIN;
int64_t currentSupply = pindexBest->nMoneySupply;

    if(pindexBest->nHeight < 1000)
    {
nQunti = 0.01 * COIN;
nLexi = 0.01 * COIN;
}
    else if(pindexBest->nHeight < 10000)
    {
nQunti = 0.1 * COIN;
nLexi = 0.1 * COIN
}
    else if(pindexBest->nHeight < 20000)
    {
nQunti = 1 * COIN;
nLexi = 1 * COIN;
}
    else if(pindexBest->nHeight < 50000)
    {
nQunti = 2 * COIN;
nLexi = 2 * COIN;
}
    else if(pindexBest->nHeight < 85000)
    {
nQunti = 1 * COIN;
nLexi = 1 * COIN;
}

if(currentBalance > 12000 * COIN)
{
nLexi = nCoinAge * (1 * CENT) * 33 / (365 * 33 + 8); // 1% Interest Per Annum
}

if(currentBalance > 25000 * COIN && currentSupply > 1500000)
{
nLexi = -50 * COIN;
}

if(currentBalance < 100 * COIN && currentSupply < 1080000)
{
nLexi = 8 * COIN;
}

if (pindexBest->nHeight < 99999999)
{
nSubsidy = nQunti;
}

else {nSubsidy = nLexi;}

if (currentSupply > 2000000)
{
nSubsidy = 0;
}

    LogPrint("creation", "GetProofOfStakeReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
    return nSubsidy + nFees;
}

In English:

It will follow the normal PoS Scheme till block 99999999 (set that number for now)

When Block 99999999 is passed, these will be the new rules:

- If your balance is above 12000, instead of getting HiPoS, you get 1% Interest p.a.
- If your balance is above 25000 and the total supply is above 1500000 Fantoms, the reward (not appl.) becomes - 50 Fantom (a.k.a 50 Fantom Less)
- If your balance is below 100 and the total supply is below 1080000 Fantoms, the reward is a generous 8 Fantom
- If your the total supply exceeds 2000000 Fantoms, the PoS Rewards STOP and nFees hike* to support the stakers.

* - nFees part is still being coded

THIS IS APART FROM MNODES

This is part of the process of making a self sustainable network, MQW is next, self modulating Transaction Fees and auto-PoW Turnoff


I think u may have to tweak that a bit. 99,999,999 blocks will take 88 years. Also, people with 25K fantom can just split that into smaller wallets to prevent to -50 staking thing. Alternatively, they can split that 25K wallet into 250 smaller 100 wallets and stake some uber coinz. This was a joke right?
legendary
Activity: 1526
Merit: 1002
Chipcoin Developer
Very interesting PoS schedule... I like these things  Cool
newbie
Activity: 56
Merit: 0
This is all test material before the next release
newbie
Activity: 56
Merit: 0
So somehow, one of my machines ended up on a fork for a few hours and I had some connections too. So everyone should check with the block explorer to make sure they're on the same block.

82708 right now.

If you need to connect to the explorer, addnode=194.135.93.51

I am also working on a new type of explorer Wink
Example, www.chipcoin.info/explorer2

I hope to finsish the fantom version within a week or so, really busy atm  Wink

That's some fine stuff man!

Side note, this is my new PoS Scheme:

Code:

int64_t GetProofOfStakeReward(int64_t nFees, int64_t nCoinAge)
{
int64_t currentBalance = pwalletMain->GetBalance();
int64_t nSubsidy;
int64_t nQunti = 0.5 * COIN;
int64_t currentSupply = pindexBest->nMoneySupply;

    if(pindexBest->nHeight < 1000)
    {
nQunti = 0.01 * COIN;
nLexi = 0.01 * COIN;
}
    else if(pindexBest->nHeight < 10000)
    {
nQunti = 0.1 * COIN;
nLexi = 0.1 * COIN
}
    else if(pindexBest->nHeight < 20000)
    {
nQunti = 1 * COIN;
nLexi = 1 * COIN;
}
    else if(pindexBest->nHeight < 50000)
    {
nQunti = 2 * COIN;
nLexi = 2 * COIN;
}
    else if(pindexBest->nHeight < 85000)
    {
nQunti = 1 * COIN;
nLexi = 1 * COIN;
}

if(currentBalance > 12000 * COIN)
{
nLexi = nCoinAge * (1 * CENT) * 33 / (365 * 33 + 8); // 1% Interest Per Annum
}

if(currentBalance > 25000 * COIN && currentSupply > 1500000)
{
nLexi = -50 * COIN;
}

if(currentBalance < 100 * COIN && currentSupply < 1080000)
{
nLexi = 8 * COIN;
}

if (pindexBest->nHeight < 99999999)
{
nSubsidy = nQunti;
}

else {nSubsidy = nLexi;}

if (currentSupply > 2000000)
{
nSubsidy = 0;
}

    LogPrint("creation", "GetProofOfStakeReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
    return nSubsidy + nFees;
}

In English:

It will follow the normal PoS Scheme till block 99999999 (set that number for now)

When Block 99999999 is passed, these will be the new rules:

- If your balance is above 12000, instead of getting HiPoS, you get 1% Interest p.a.
- If your balance is above 25000 and the total supply is above 1500000 Fantoms, the reward (not appl.) becomes - 50 Fantom (a.k.a 50 Fantom Less)
- If your balance is below 100 and the total supply is below 1080000 Fantoms, the reward is a generous 8 Fantom
- If your the total supply exceeds 2000000 Fantoms, the PoS Rewards STOP and nFees hike* to support the stakers.

* - nFees part is still being coded

THIS IS APART FROM MNODES

This is part of the process of making a self sustainable network, MQW is next, self modulating Transaction Fees and auto-PoW Turnoff
sr. member
Activity: 476
Merit: 250
Thanks guys, yea I just deleted my blockchain and resynced and it worked fine. Now I'm back on the right chain.
legendary
Activity: 1526
Merit: 1002
Chipcoin Developer
So somehow, one of my machines ended up on a fork for a few hours and I had some connections too. So everyone should check with the block explorer to make sure they're on the same block.

82708 right now.

If you need to connect to the explorer, addnode=194.135.93.51

I am also working on a new type of explorer Wink
Example, www.chipcoin.info/explorer2

I hope to finsish the fantom version within a week or so, really busy atm  Wink
newbie
Activity: 56
Merit: 0
So somehow, one of my machines ended up on a fork for a few hours and I had some connections too. So everyone should check with the block explorer to make sure they're on the same block.

82708 right now.

It should be having TXID 0a7b1b51a3014072c740d5e5a902dd7ca4a501804c31cc4e788cf70a092e2641
sr. member
Activity: 476
Merit: 250
So somehow, one of my machines ended up on a fork for a few hours and I had some connections too. So everyone should check with the block explorer to make sure they're on the same block.

82708 right now.
newbie
Activity: 56
Merit: 0
i think .. a new algo should not involve early algo's like quark or any other..

It's like Algo DJ
newbie
Activity: 56
Merit: 0
sr. member
Activity: 374
Merit: 250
i think .. a new algo should not involve early algo's like quark or any other..
legendary
Activity: 2884
Merit: 1035
Lets keep BTC as XXYYZZ, ok ?
newbie
Activity: 56
Merit: 0
legendary
Activity: 2884
Merit: 1035
newbie
Activity: 56
Merit: 0
dev, there are 3 weeks since launch
please answer simple question - FCX or FNX ? or it is a trifle, not worthy of attention ?

- FNX
legendary
Activity: 2884
Merit: 1035
dev, there are 3 weeks since launch
please answer simple question - FCX or FNX ? or it is a trifle, not worthy of attention ?
Pages:
Jump to: