Bitcoin Forum
May 05, 2024, 02:06:59 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Which is better
FCX - 6 (30%)
FNX - 14 (70%)
Total Voters: 20

Pages: « 1 ... 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 [76] 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 »
  Print  
Author Topic: [ANN] Fantom | CPU Mineable | DarkSend | Masternode | Tor+I2P | sMP Releasing Sn  (Read 77833 times)
quantumgravity
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile WWW
November 18, 2015, 01:50:49 AM
 #1501

Explorer will be back up tomorrow.. I migrated it to the new source already, but the database re-index takes a few hours with this many blocks..



Awesome! Thanks for the work. I'll be sure to throw a donation your way.

1714874819
Hero Member
*
Offline Offline

Posts: 1714874819

View Profile Personal Message (Offline)

Ignore
1714874819
Reply with quote  #2

1714874819
Report to moderator
The forum strives to allow free discussion of any ideas. All policies are built around this principle. This doesn't mean you can post garbage, though: posts should actually contain ideas, and these ideas should be argued reasonably.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
DuckYeah! (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
November 18, 2015, 02:37:59 AM
 #1502

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

Ah, Shared Hatred! Never Mind!

Now, I haven't said anything at all against C-CeX, so why should be I delisted
DuckYeah! (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
November 18, 2015, 02:41:55 AM
 #1503

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?

This looks for the total balance and the uber coinz only happen if the total supply is under 1080000 Fantom/
DuckYeah! (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
November 18, 2015, 02:45:57 AM
 #1504

Yobit has frozen my account for no reason and stolen coins from me. So, good riddance. Hold out for more legitimate exchanges.

I don't think Yobit froze accounts for no reasons, once one was found out that made another account and got both frozen but he forgot to tell that he had an older account until much later.

I have two accounts on there but I hardly ever use my old one. Maybe that was why. Either way, I am out 0.2 BTC which sucks.

Well is part your fault for having multiple accounts which is against yobit TOS, anyway let's end this offtopic here and see if the dev anyway has something to add to the whole thing

Also, if YoBit (not abusing not since that didn't turn out well) has a compilation issue, they could have informed me
jc12345
Legendary
*
Offline Offline

Activity: 1638
Merit: 1013


View Profile
November 18, 2015, 03:10:18 AM
 #1505

Yobit has frozen my account for no reason and stolen coins from me. So, good riddance. Hold out for more legitimate exchanges.

I don't think Yobit froze accounts for no reasons, once one was found out that made another account and got both frozen but he forgot to tell that he had an older account until much later.

I have two accounts on there but I hardly ever use my old one. Maybe that was why. Either way, I am out 0.2 BTC which sucks.

Well is part your fault for having multiple accounts which is against yobit TOS, anyway let's end this offtopic here and see if the dev anyway has something to add to the whole thing

Also, if YoBit (not abusing not since that didn't turn out well) has a compilation issue, they could have informed me

Or you can learn how to be more diplomatic. Diplomacy can get you a long way in life and with diplomacy you can get people that you hate to do things that are in the best interest of everyone. Even if you hate someone it is not in your interest to make it public and say it to someone's face. Learn this lesson that sometimes it is best to keep your opinions to yourself and keep your cards close to you, otherwise your are going to get stuck and might get no-where and be out in the cold on your own.. If you want to be arrogant you must have the resources and skills to get what you want on your own. Unfortunately, with experimental code and not seemlingly to be able to fix the code properly (at least that is how it looks and I could be wrong), you need to apply diplomacy to get want your want as arrogance will get you no-where in this case.

One way of action would be to apologize to Blacksmith, although it might be too late for diplomacy.
bones261
Legendary
*
Offline Offline

Activity: 1806
Merit: 1827



View Profile
November 18, 2015, 03:35:23 AM
 #1506

Why are we desperate to get onto YoBit?
Yobit -Salvation Army
C-Cex -Wal-Mart
Bittrex - Target
Cryptsy - Montgomery Ward
Poloniex - Sax 5th Ave
DuckYeah! (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
November 18, 2015, 03:43:26 AM
 #1507

Yobit has frozen my account for no reason and stolen coins from me. So, good riddance. Hold out for more legitimate exchanges.

I don't think Yobit froze accounts for no reasons, once one was found out that made another account and got both frozen but he forgot to tell that he had an older account until much later.

I have two accounts on there but I hardly ever use my old one. Maybe that was why. Either way, I am out 0.2 BTC which sucks.

Well is part your fault for having multiple accounts which is against yobit TOS, anyway let's end this offtopic here and see if the dev anyway has something to add to the whole thing

Also, if YoBit (not abusing not since that didn't turn out well) has a compilation issue, they could have informed me

Or you can learn how to be more diplomatic. Diplomacy can get you a long way in life and with diplomacy you can get people that you hate to do things that are in the best interest of everyone. Even if you hate someone it is not in your interest to make it public and say it to someone's face. Learn this lesson that sometimes it is best to keep your opinions to yourself and keep your cards close to you, otherwise your are going to get stuck and might get no-where and be out in the cold on your own.. If you want to be arrogant you must have the resources and skills to get what you want on your own. Unfortunately, with experimental code and not seemlingly to be able to fix the code properly (at least that is how it looks and I could be wrong), you need to apply diplomacy to get want your want as arrogance will get you no-where in this case.

One way of action would be to apologize to Blacksmith, although it might be too late for diplomacy.

In that case I will try to be diplomatic
lockepi
Sr. Member
****
Offline Offline

Activity: 469
Merit: 250


View Profile
November 18, 2015, 03:46:18 AM
 #1508

Why are we desperate to get onto YoBit?
Yobit -Salvation Army
C-Cex -Wal-Mart
Bittrex - Target
Cryptsy - Montgomery Ward
Poloniex - Sax 5th Ave


why are we so focused on exchanges. stick to development
ljm81new_again
Sr. Member
****
Offline Offline

Activity: 302
Merit: 250


View Profile
November 18, 2015, 05:29:00 AM
 #1509

Fuck yobit and fuck blacksmith they bring nothing to the table... NOTHING!!
quantumgravity
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile WWW
November 18, 2015, 05:40:50 AM
 #1510


why are we so focused on exchanges. stick to development

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

bones261
Legendary
*
Offline Offline

Activity: 1806
Merit: 1827



View Profile
November 18, 2015, 05:51:52 AM
 #1511


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
DuckYeah! (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
November 18, 2015, 07:04:32 AM
 #1512

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

quantumgravity
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile WWW
November 18, 2015, 07:57:04 AM
 #1513

I like this scheme a lot. It incentivizes having mulitple wallets open for large holders which will be good for the network.

quantumgravity
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile WWW
November 18, 2015, 07:58:09 AM
 #1514

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.

MbccompanyX
Full Member
***
Offline Offline

Activity: 182
Merit: 100

★YoBit.Net★ 350+ Coins Exchange & Dice


View Profile
November 18, 2015, 07:59:34 AM
 #1515

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....

DuckYeah! (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
November 18, 2015, 08:03:33 AM
 #1516

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
quantumgravity
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile WWW
November 18, 2015, 08:07:14 AM
 #1517

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?

quantumgravity
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile WWW
November 18, 2015, 08:09:00 AM
Last edit: November 18, 2015, 08:25:48 AM by quantumgravity
 #1518

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.

DuckYeah! (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
November 18, 2015, 08:40:29 AM
 #1519

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
joshafest
Sr. Member
****
Offline Offline

Activity: 374
Merit: 250


View Profile
November 18, 2015, 09:36:08 AM
 #1520

yobit said ...they blacklisted fantom...first they have compilation error.

▄███████████████▄
▄██▀ ▀██▄
▄▄██▀ ▀██▄▄
█████▀▀ ▄▀▀▀▀▀▀▀▄▄ ▀▀█████
██ ▄▀ ▄▄▄▀▀▀▀▄▀█▄▄ ██
▐█▌ ▄▀ ▄▀ ▄▄▄▀▀▀▄▀▀▀███ ▐█▌
██ ▄▀▄▀▄▀▀▄▄▄▀▀▀▀▀█ ▄█▀ ██
▐█▌ █▄▀▄▀▄█▀▀▀ ▀█▀ ▄▀▄▀█ ▐█▌
██ █▄▀▄▀▄▄█▀ ▄▀ ▄▀▄▀▄▀█ ██
▐█▌ ▀▄█████▀▄▄▀▀▄▄▀▄▀▄▀▄▀█ ▐█▌
██▌▀████▀██▄▄▀▀▄▄▀▄▀▄▀▄█▀ ▐██
██▌▀█▀▀█▄▀▀▄▀▀▄▄▀▄█▄▄█▀ ▐██
██▌ ▀ ▀███▄▄▄█████▀ ▐██
██▄ ▀▀▀▀▀ ▄██
▀██▄ ▄██▀
▀██▄ ▄██▀
▀██▄ ▄██▀
▀███▄███▀
▀███▀
DeepOnion
★ ★ ★ ★ ★ ❱❱❱ JOIN AIRDROP NOW!
TOR INTEGRATED & SECURED
Your Anonymity Guaranteed
Your Assets Secured by TOR
Guard Your Privacy!
|Bitcointalk
Reddit
Telegram
| ▄▄▀▄▄▀▄▄▀▄▀▀
▄▄██▀█▀▄▀▀▀
▄██▄█▄██▀
▄██████▀
▄██████▀
▄█▄▄▄▄▄▄▄▄▄██████▀
██████▀▀▀▀▀██████▀
▀█████ ▄███████
████████████▀██
██▀███████▀ ██
██ ▀████▀ ██
██ ▀▀ ██
▀█████████████▀
Pages: « 1 ... 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 [76] 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!