Bitcoin Forum
May 04, 2024, 08:52:01 PM *
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 ... 25 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)
BanzaiBTC
Legendary
*
Offline Offline

Activity: 1526
Merit: 1002


Chipcoin Developer


View Profile WWW
November 17, 2015, 05:51:50 PM
 #1481

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
1714855921
Hero Member
*
Offline Offline

Posts: 1714855921

View Profile Personal Message (Offline)

Ignore
1714855921
Reply with quote  #2

1714855921
Report to moderator
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, but full nodes are more resource-heavy, and they must do a lengthy initial syncing process. As a result, lightweight clients with somewhat less security are commonly used.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714855921
Hero Member
*
Offline Offline

Posts: 1714855921

View Profile Personal Message (Offline)

Ignore
1714855921
Reply with quote  #2

1714855921
Report to moderator
quantumgravity
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile WWW
November 17, 2015, 06:00:48 PM
 #1482

Thanks guys, yea I just deleted my blockchain and resynced and it worked fine. Now I'm back on the right chain.

DuckYeah! (OP)
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
November 17, 2015, 06:16:12 PM
 #1483

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

Activity: 56
Merit: 0


View Profile
November 17, 2015, 06:20:12 PM
 #1484

This is all test material before the next release
BanzaiBTC
Legendary
*
Offline Offline

Activity: 1526
Merit: 1002


Chipcoin Developer


View Profile WWW
November 17, 2015, 06:22:37 PM
 #1485

Very interesting PoS schedule... I like these things  Cool
MisO69
Legendary
*
Offline Offline

Activity: 1946
Merit: 1005


My mule don't like people laughing


View Profile
November 17, 2015, 06:30:15 PM
 #1486

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?
BanzaiBTC
Legendary
*
Offline Offline

Activity: 1526
Merit: 1002


Chipcoin Developer


View Profile WWW
November 17, 2015, 06:46:24 PM
 #1487

Very sharp thinking man..
But I assume this all still a concept and its open for discussion/improvement right?  Huh
quantumgravity
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile WWW
November 17, 2015, 07:04:19 PM
 #1488

Very interesting. I like it.

What will the masternode rewards be?

quantumgravity
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile WWW
November 17, 2015, 08:39:12 PM
 #1489

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!

MbccompanyX
Full Member
***
Offline Offline

Activity: 182
Merit: 100

★YoBit.Net★ 350+ Coins Exchange & Dice


View Profile
November 17, 2015, 09:27:22 PM
 #1490

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

raetsch
Legendary
*
Offline Offline

Activity: 957
Merit: 1006



View Profile
November 17, 2015, 09:39:51 PM
 #1491

i can confirm it, but have not made a screenshot  Tongue
quantumgravity
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile WWW
November 17, 2015, 09:45:28 PM
 #1492

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

MbccompanyX
Full Member
***
Offline Offline

Activity: 182
Merit: 100

★YoBit.Net★ 350+ Coins Exchange & Dice


View Profile
November 17, 2015, 09:48:27 PM
 #1493

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.

BanzaiBTC
Legendary
*
Offline Offline

Activity: 1526
Merit: 1002


Chipcoin Developer


View Profile WWW
November 17, 2015, 09:48:48 PM
 #1494

My explorer server appears to be in a reboot loop lol.. working on it
quantumgravity
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250



View Profile WWW
November 17, 2015, 09:52:29 PM
 #1495

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.

MbccompanyX
Full Member
***
Offline Offline

Activity: 182
Merit: 100

★YoBit.Net★ 350+ Coins Exchange & Dice


View Profile
November 17, 2015, 09:59:44 PM
 #1496

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

tamara163
Legendary
*
Offline Offline

Activity: 1027
Merit: 1000


View Profile
November 17, 2015, 11:27:06 PM
 #1497

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
I don't want to see you here!
don't like it,don't eat!
stop blaming everyone else!
you're like an old grandma at the market!
solstice
Full Member
***
Offline Offline

Activity: 181
Merit: 100


View Profile
November 17, 2015, 11:56:37 PM
 #1498

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
I don't want to see you here!
don't like it,don't eat!
stop blaming everyone else!
you're like an old grandma at the market!

Not a smart move from someone who want this coin getting listed on another exchange. Stupidity at its fullest!

Sir_Astral
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


View Profile
November 18, 2015, 12:01:21 AM
 #1499

Thread is full of fudsters.
BanzaiBTC
Legendary
*
Offline Offline

Activity: 1526
Merit: 1002


Chipcoin Developer


View Profile WWW
November 18, 2015, 01:33:32 AM
 #1500

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

Pages: « 1 ... 25 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!