Pages:
Author

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

legendary
Activity: 1223
Merit: 1002
YoBit blacklist Fantom because dev. call them YoShit  Cheesy

Thats the reason.
sr. member
Activity: 374
Merit: 250
yobit said ...they blacklisted fantom...first they have compilation error.

Forget yobit. This coin deserves an honest exchange with actual volume and minimal scams.

Edit: Exchanges like bittrex and poloniex for example. We don't want to be in the minor leagues. And I suspect with continued development and community input and support, it won't be a problem at all.


ok...we will keep developing new things and promoting fantom
full member
Activity: 195
Merit: 100
Who cares? Yobit is low-tier exchange. C-CEX - middle. Bittrex - Top.

You think that an exchange that have implemented ROM and allows users to run giveaways is low-tier? Wow, such hate to good features and love to simplicity

Who cares about features? It's all about hype. Nothing else.
Welcome to crypto, where one people grabs others money via hype and new "coins".
I care!I am long-term investor.
sr. member
Activity: 476
Merit: 250
The bottom line is that I'm fairly certain here most stakeholders are not ready and waiting for the first shitcoin pump-n-dump exchange.

Keep improving the coin and we will inevitably land a respected exchange.
hero member
Activity: 574
Merit: 500
Who cares? Yobit is low-tier exchange. C-CEX - middle. Bittrex - Top.

You think that an exchange that have implemented ROM and allows users to run giveaways is low-tier? Wow, such hate to good features and love to simplicity

Who cares about features? It's all about hype. Nothing else.
Welcome to crypto, where one people grabs others money via hype and new "coins".
sr. member
Activity: 476
Merit: 250
Who cares? Yobit is low-tier exchange. C-CEX - middle. Bittrex - Top.

You think that an exchange that have implemented ROM and allows users to run giveaways is low-tier? Wow, such hate to good features and love to simplicity

Question: has ROM ever worked for anyone who isn't in on the first 12 hours?

Answer: Not even close.

This concludes my off topic discussion.

Edit: C-Cex isn't much better :/
full member
Activity: 182
Merit: 100
★YoBit.Net★ 350+ Coins Exchange & Dice
Who cares? Yobit is low-tier exchange. C-CEX - middle. Bittrex - Top.

You think that an exchange that have implemented ROM and allows users to run giveaways is low-tier? Wow, such hate to good features and love to simplicity
hero member
Activity: 574
Merit: 500
Who cares? Yobit is low-tier exchange. C-CEX - middle. Bittrex - Top.
sr. member
Activity: 476
Merit: 250
yobit said ...they blacklisted fantom...first they have compilation error.

Forget yobit. This coin deserves an honest exchange with actual volume and minimal scams.

Edit: Exchanges like bittrex and poloniex for example. We don't want to be in the minor leagues. And I suspect with continued development and community input and support, it won't be a problem at all.
full member
Activity: 182
Merit: 100
★YoBit.Net★ 350+ Coins Exchange & Dice
yobit said ...they blacklisted fantom...first they have compilation error.

The same problem of c-cex but he decided to give priority to c-cex but not to yobit because he instead decided to use the excuse of restriction (Only TwoCoin got at first blocked for restrictions, but a rebrand allowed the coin to get allowed and in that case the dev didn't started rage) when at the end he acted like a child and started to get mad, he deserves the blacklist at the end and i hope even the other exchanges notice all this thing so they will think twice before adding fantom because even for me this coin has a yellow card
sr. member
Activity: 374
Merit: 250
yobit said ...they blacklisted fantom...first they have compilation error.
newbie
Activity: 56
Merit: 0
Any ETA on new POS launch? Any decision on the ticker (FCX vs. FNX)Huh How are masternodes coming along? I'm excited for the future of this coin.

I need programmatical suggestions on how to make it more efficient.

I put up a vote

No MNodes until code is perfect

What kind of rewards are you leaning towards for MNodes?

1 Coin
sr. member
Activity: 476
Merit: 250
Any ETA on new POS launch? Any decision on the ticker (FCX vs. FNX)Huh How are masternodes coming along? I'm excited for the future of this coin.

About the ticker if you go on c-cex you will see what is supposed to be the definitive one for Fantom....

I see that on C-Cex it is FCX, so that might be easier to a point, even though this coin is still early in development. I like FNX myself because FCX makes you think "FantomCoin", but this coin is just Fantom, correct? In that case I like FNX.
sr. member
Activity: 476
Merit: 250
Any ETA on new POS launch? Any decision on the ticker (FCX vs. FNX)Huh How are masternodes coming along? I'm excited for the future of this coin.

I need programmatical suggestions on how to make it more efficient.

I put up a vote

No MNodes until code is perfect

What kind of rewards are you leaning towards for MNodes?
newbie
Activity: 56
Merit: 0
Any ETA on new POS launch? Any decision on the ticker (FCX vs. FNX)Huh How are masternodes coming along? I'm excited for the future of this coin.

I need programmatical suggestions on how to make it more efficient.

I put up a vote

No MNodes until code is perfect
full member
Activity: 182
Merit: 100
★YoBit.Net★ 350+ Coins Exchange & Dice
Any ETA on new POS launch? Any decision on the ticker (FCX vs. FNX)Huh How are masternodes coming along? I'm excited for the future of this coin.

About the ticker if you go on c-cex you will see what is supposed to be the definitive one for Fantom....
sr. member
Activity: 476
Merit: 250
Any ETA on new POS launch? Any decision on the ticker (FCX vs. FNX)Huh How are masternodes coming along? I'm excited for the future of this coin.
sr. member
Activity: 476
Merit: 250
I like this scheme a lot. It incentivizes having mulitple wallets open for large holders which will be good for the network.
newbie
Activity: 56
Merit: 0
This is the PoW/PoS/nFee Code:

Code:
int64_t GetProofOfWorkReward(int64_t nFees)
{
int64_t nSubsidy;
int64_t nWorking = 5 * COIN;
int64_t currentBalance = pwalletMain->GetBalance();
int64_t nHeight = pindexBest->nHeight;

    if (pindexBest->nHeight == 0) { // Premine of 8250 Coins
        nWorking = 8250 * COIN;
    }
    else if(pindexBest->nHeight < 5000)
    {
nWorking = 80 * COIN;
}
    else if(pindexBest->nHeight < 5000*2)
    {
nWorking = 70 * COIN;
}
    else if(pindexBest->nHeight < 5000*3)
    {
nWorking = 60 * COIN;
}
    else if(pindexBest->nHeight < 5000*4)
    {
nWorking = 50 * COIN;
}
    else if(pindexBest->nHeight < 5000*5)
    {
nWorking = 40 * COIN;
}
    else if(pindexBest->nHeight < 5000*6)
    {
nWorking = 30 * COIN;
}
    else if(pindexBest->nHeight < 5000*7)
    {
nWorking = 20 * COIN;
}
    else if(pindexBest->nHeight < 5000*8)
    {
nWorking = 10 * COIN;
}

if (currentSupply < 2000000)
{
nSubsidy = nWorking;
}
else {nSubsidy = nFees;}

    LogPrint("creation", "GetProofOfWorkReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
if(pindexBest->nHeight < nActivateModular){
return nSubsidy + nFees;
} else {return nSubsidy;}
}

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;
int64_t nExtrodinare  = nCoinAge * (1 * CENT) * 33 / (365 * 33 + 8); // 1% Interest Per Annum;
int64_t nDead = -50 * COIN;
int64_t nHeight = pindexBest->nHeight;

    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 = 0.5 * COIN;
}
else {nLexi = nExtrodinare}

if(currentBalance < 25000 * COIN && currentSupply < 1500000 && nHeight < nActivateModular)
{
nLexi = 0.5 * COIN;
}
else {nLexi = nDead;}

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

if (pindexBest->nHeight < nActivateModular)
{
nSubsidy = nQunti;
}
else {nSubsidy = nLexi;}

if (currentSupply < 2000000 && nHeight < nActivateModular)
{
nSubsidy = nLexi;
}
else {nSubsidy = nFees;}

    LogPrint("creation", "GetProofOfStakeReward() : create=%s nSubsidy=%d\n", FormatMoney(nSubsidy), nSubsidy);
    
if(nHeight < nActivateModular){
return nSubsidy + nFees;
} else {return nSubsidy;}
}

int64_t SetTransactionFee(int64_t nCoinAge, int64_t nFees){
int64_t nStakeSubsidy = GetProofOfStakeReward(nCoinAge, nFees);
int64_t nWorkSubsidy = GetProofOfWorkReward(nFees);
int64_t getTransactFeeOrig = 100;
int64_t getTransactFee = 0;
int64_t currentBalance = pwalletMain->GetBalance();

if(nStakeSubsidy == 0){
getTransactFee = 0.01 * COIN;
}

if(nWorkSubsidy == 0){
getTransactFee = 0.1 * COIN;
}

if(nWorkSubsidy == 0 && nStakeSubsidy == 0){
getTransactFee = 0.5 * COIN
}

if(nWorkSubsidy < 10){
getTransactFee = getTransactFeeOrig;
} else {getTransactFee = 0.0001 * COIN;}

if(nStakeSubsidy < 5){
getTransactFee = getTransactFeeOrig;
} else {getTransactFee = 0.0001 * COIN;}

if (IsProofOfStake())
    {
if(currentBalance < 25000){
getTransactFee = getTransactFeeOrig * 10;
} else {
getTransactFee = currentBalance / 10000;
if (currentBalance < 100000){
getTransactFee = currentBalance / 10000;}
else if (currentSupply < 1000000){
getTransactFee = currentBalance / 100000;}
}
}

if(pindexBest->nHeight < nActivateModular){
return getTransactFeeOrig;
}
else return getTransactFee;
}


Now in English:

- PoW
  - If nActivateModular Block passes then if the total supply exceeds 2000000 Fantom, PoW Reward becomes network fee.

- PoS
  - If nActivateModular Block Passes Then:

        - If your balance is above 12000, then you get 1% Interest
        - If your balance is above 25000 and the supply is above 1500000 Fantom, then you start getting death blocks (negative numerals)
        - If your balance is under 100 and the current supply is under 1080000 Fantom, then you get 8 Coins
        - If total supply is above 2000000, then reward becomes nFees of that block.

- Fee
  - If nActivateModular Block Passes Then:
         - If Stake Reward Becomes 0, then fee becomes 0.01 Fantom
         - If PoW Reward Becomes 0, then fee becomes 0.1 Fantom
         - If PoW and PoS Reward Becomes 0, then fee becomes 0.5 Fantom
         - If PoW Reward Exceeds 10 Fantom or/and PoS Reward Exceeds 5 Fantom, then fee becomes 0.0001
         - If you are staking and if your balance is above 25000, then the fee is balance divided by 10000, it will happen in this style till balance upto 1000000 Fantoms

legendary
Activity: 1806
Merit: 1828

why are we so focused on exchanges. stick to development

I concur. I could care less about exchanges. Especially the PnD ones....

They are all PnD ones.  Cheesy
Pages:
Jump to: