Bitcoin Forum
March 29, 2024, 02:43:19 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 ... 302 »
  Print  
Author Topic: [ANN][SLR] SolarCoin | PoW to PoS v. 2.0 | Solar Proof of Generation (§1 = 1MWh)  (Read 466748 times)
onsightit
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


truth=(true?true:false);


View Profile WWW
September 22, 2015, 07:00:58 PM
 #1801

I may have a way to "void" the high interest payments before they are confirmed and put a 10% cap on interest.  I need to do a quick test.

-Steve

Edit: Test was successful. I am also going to put a cap on coin age of 1 year (365 days).  So, if you have coins older than one year, you can move them to a new address to reset the age and still earn interest on them.



Steve, cap or no cap, all results so far show that the error comes not from the currently defined parameters (constant and/or variable), but from a multiplier which is somewhere in the code and which was never intended to be there. Even if you change the parameters, the error will persist if not identified and removed.

It is the 98 Billion in the Generator Pool. Those coins are included in the Interest calculation. This is the only reason that could possibly even get close to the 1000 percent payouts!

98,000,000,000 divided by 34,000,000 = 2882.352941176471

Since the 98 Billion are dormant the 34 million have a higher payout... They are dormant though so the 98Billion also do not STAKE.

Hi CryptoNick,

The coin supply number used in the interest rate calculation is 34145512, the value returned by GetCurrentCoinSupply().  It grows by 1.35 SLR every block to compensate for 710000 in SLR grants per year.


// get current interest rate by targeting for network stake dependent inflation rate PoST
double GetCurrentInterestRate(CBlockIndex* pindexPrev)
{
double nAverageWeight = GetAverageStakeWeight(pindexPrev);
double inflationRate = GetCurrentInflationRate(nAverageWeight) / 100;
double interestRate = ((inflationRate * GetCurrentCoinSupply()) / nAverageWeight) * 100;

return interestRate;
}

// get current inflation rate using average stake weight ~1.5-2.5% (measure of liquidity) PoST
double GetCurrentInflationRate(double nAverageWeight)
{
double inflationRate = (17*(log(nAverageWeight/20)))/100;

return inflationRate;
}

-Steve

VRC: VMTMcvFjZHAshmVNLY5KYVHCTqcfEnH6Bd  SLR: 8W7D6D7rortYp51BK9MSrfripSoZWyVPVr  BTC: 1LbgAsTDtyWEGjiSaguJhJbaHBPgcMnHfP  BCC: 1Ta39PK67VXTD2xnmPNo5J9KJyBVHdYmy
1711723399
Hero Member
*
Offline Offline

Posts: 1711723399

View Profile Personal Message (Offline)

Ignore
1711723399
Reply with quote  #2

1711723399
Report to moderator
Unlike traditional banking where clients have only a few account numbers, with Bitcoin people can create an unlimited number of accounts (addresses). This can be used to easily track payments, and it improves anonymity.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1711723399
Hero Member
*
Offline Offline

Posts: 1711723399

View Profile Personal Message (Offline)

Ignore
1711723399
Reply with quote  #2

1711723399
Report to moderator
1711723399
Hero Member
*
Offline Offline

Posts: 1711723399

View Profile Personal Message (Offline)

Ignore
1711723399
Reply with quote  #2

1711723399
Report to moderator
1711723399
Hero Member
*
Offline Offline

Posts: 1711723399

View Profile Personal Message (Offline)

Ignore
1711723399
Reply with quote  #2

1711723399
Report to moderator
Epiphany
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250


View Profile WWW
September 22, 2015, 07:05:11 PM
 #1802

Why not have coin age be right after the generator coins were issued, so 18 months instead of a year?

Bitcoin:     17tzgWkXMBazch4koAhokMTcCtbc4TaYkE
Ether:        0xfe700f4aeec47e52eafad00f81977bb89738e0ae
​SolarCoin: 8MDk963sEh7RCMo3y3st7hTzMs7FzSdWSx
Dogecoin: DEgdH6CFTLSEeVVPqfE18ySCQqDWmLxp33
y_virtual
Sr. Member
****
Offline Offline

Activity: 377
Merit: 251

Note to self: it's not you doing it, it's us.


View Profile
September 22, 2015, 07:06:30 PM
 #1803

I may have a way to "void" the high interest payments before they are confirmed and put a 10% cap on interest.  I need to do a quick test.

-Steve

Edit: Test was successful. I am also going to put a cap on coin age of 1 year (365 days).  So, if you have coins older than one year, you can move them to a new address to reset the age and still earn interest on them.



Steve, cap or no cap, all results so far show that the error comes not from the currently defined parameters (constant and/or variable), but from a multiplier which is somewhere in the code and which was never intended to be there. Even if you change the parameters, the error will persist if not identified and removed.

Hi y_virtual,

No, in testnet, I was able to achieve about 4% interest and 2.2% inflation.  That was a smaller network, but the parameters are all correct, and I had 34M coins staking.

Nick has just agreed (verbally) to a 10% cap and a limit on the coin age of one year.  Note: You can move your "older" coins to a new address if you want them to earn interest.

New wallet coming out soon...

-Steve


"No, in testnet, I was able to achieve about 4% interest and 2.2% inflation.  That was a smaller network, but the parameters are all correct, and I had 34M coins staking."
Exactly! I am saying same thing here - parameters are all correct! The error comes from somewhere else. You change the parameters, put caps, you will continue to have correct results in testnet, and wrong results when live. It's simple - with the current parameters and parameter ranges, you can not get the current results whatever age/interest you use for the calc, so whatever change in the parameters you implement, the error will still persist.
Epiphany
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250


View Profile WWW
September 22, 2015, 07:14:24 PM
 #1804

So if my coins are older than a year and I move them to a new address, I effectively have brand new coins and get no benefit for having held them all this time? Or do they get to be a year old somehow?

Bitcoin:     17tzgWkXMBazch4koAhokMTcCtbc4TaYkE
Ether:        0xfe700f4aeec47e52eafad00f81977bb89738e0ae
​SolarCoin: 8MDk963sEh7RCMo3y3st7hTzMs7FzSdWSx
Dogecoin: DEgdH6CFTLSEeVVPqfE18ySCQqDWmLxp33
biodieselchris
Hero Member
*****
Offline Offline

Activity: 579
Merit: 500


CoinQuacker


View Profile WWW
September 22, 2015, 07:32:44 PM
Last edit: September 22, 2015, 07:42:54 PM by biodieselchris
 #1805

I'd like everyone to consider taking a few minutes of your time and thinking about what's happened:

I got into Solarcoin a little over 2 years ago when it all started. I chose to invest because I like the idea behind this coin very much, AND because for the price it was a very good deal because at the time there were only a few million in circulation. Up untill yesterday there were a little over 34 Million Solarcoins created. That's almost the same amount as litecoin, so I can really see the potential of this coin if demand starts rising.
HOWEVER since yesterdays fork at block 830000 after the implementation of POST a sh*tload of new coins have been created out of thin air effectively making me and many others very rich at current SLR prices. These interest payments wont be confirmed untill 350 more blocks or so, that means we still have time to revert the change and go back to where we were before POST.
I suggest looking into the interest code as y_virtual said and try to find the error. like he said something like /100 sounds about right.

IF we choose to keep everything as it is i'm afraid solarcoin is doomed. Think about it , the orderbook on bittrex (the only exchange at the time being) is so thin, I could wipe out all the buy orders with my first interest payment and still have more SLR than I started off with. At the time being it looks like over 20 Million new SLR coins have been created.
It's basic supply and demand guys, you don't need to be a rocket scientist to understand that the price would collapse and Solarcoin would have a VERY hard time surviving.
Let me finish off by saying if things stay the way they are I no longer want to be part of this community.
Up untill now I have been very happy with the way Solarcoin was headed but this is simply crazy.
I hope the developers will come to their senses and switch back to mining for the time being


yes and no solarcoiner - there's actually ~98.1B SLRs that will come into existence, and in fact, have already been minted just waiting to be distributed. So 34M, or 10X, or even 100X that is really very little compared to the total. What's shifted, and really only slightly so, is the number that will eventually be awarded for solar energy production versus those that miners/stakes have/will be getting. This was important to consider even prior to the fork because it says a lot about trusting the Foundation: they control, at what is priced right now at ~3/4 of a cent, some $750M in coins that are contracted by the Foundation to be distributed in a very certain way. But unlike crypto-trust, this is people-trust, and a lot of things could happen to SLR if say 10X or 100X price appreciation occurred. Examples include theft or loss of one of the premined MWh payment private keys or internal malfeasance at the foundation. I'm not saying whether it's likely or my personal prediction (I too bought coins in the spring of 2014 because I like the concept), but it is obviously possible.


biodieselchris
Hero Member
*****
Offline Offline

Activity: 579
Merit: 500


CoinQuacker


View Profile WWW
September 22, 2015, 07:37:39 PM
 #1806

This was exactly what I warned about. Big Wallets and few stakers. I wasn't taken seriously. You guys are forgetting about the 98 Billion that are in the Generator Pool, do the math on that. The Generator Pool is included in PoST I am pretty sure that is why the payouts are so big.

Orphan the blocks before they mature. That way the transactions will stay.

if that's the case keep the stake the way it is and get solar signed up? That's the key success anyways.

Steve - if we send coins to a new address, and then something else goes wrong and there needs to be a rollback again, are those coins lost? (burned essentially?)

mazzaneo
Sr. Member
****
Offline Offline

Activity: 300
Merit: 250



View Profile
September 22, 2015, 07:40:10 PM
 #1807

how do you determine the age of you coins anyway?
Is it purely based on the last time a transaction was made from that wallet?

BitSend ◢◤Clients | Source
www.bitsend.info
█▄
█████▄
████████▄
███████████▄
██████████████
███████████▀
████████▀
█████▀
█▀












Your Digital Network | 10MB Blocks
Algo: XEVAN | DK3 | Masternodes
Bitcore - BTX/BTC -Project












BSD -USDT | Bittrex | C.Gather | S.Exchange
Cryptopia | NovaExchange | Livecoin
CoinPayments | Faucet | Bitsend Airdrop













████
 ████
  ████
   ████
    ████
     ████
      ████
       ████
        ████
       ████
      ████
     ████
    ████
   ████
  ████
 ████
████

████
 ████
  ████
   ████
    ████
     ████
      ████
       ████
        ████
       ████
      ████
     ████
    ████
   ████
  ████
 ████
████
Solaris33
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
September 22, 2015, 07:44:56 PM
 #1808

The generator pool coins are excluded from staking.
The coin supply is the amount in circulation.
The interest rate will be capped at 10% and there will be no coin age restriction.
Hence, no need to move coins to a new address.
Interest can be earned on SLR from launch date.
onsightit
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


truth=(true?true:false);


View Profile WWW
September 22, 2015, 07:45:41 PM
 #1809

This was exactly what I warned about. Big Wallets and few stakers. I wasn't taken seriously. You guys are forgetting about the 98 Billion that are in the Generator Pool, do the math on that. The Generator Pool is included in PoST I am pretty sure that is why the payouts are so big.

Orphan the blocks before they mature. That way the transactions will stay.

if that's the case keep the stake the way it is and get solar signed up? That's the key success anyways.

Steve - if we send coins to a new address, and then something else goes wrong and there needs to be a rollback again, are those coins lost? (burned essentially?)

Just got off the phone with the foundation and they have agreed to not limit the coin age to one year.  So, there will be no need to send coins to another address.

I am wrapping up testing and will issue the new wallet very soon.

-Steve

VRC: VMTMcvFjZHAshmVNLY5KYVHCTqcfEnH6Bd  SLR: 8W7D6D7rortYp51BK9MSrfripSoZWyVPVr  BTC: 1LbgAsTDtyWEGjiSaguJhJbaHBPgcMnHfP  BCC: 1Ta39PK67VXTD2xnmPNo5J9KJyBVHdYmy
Epiphany
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250


View Profile WWW
September 22, 2015, 07:47:20 PM
 #1810

The generator pool coins are excluded from staking.
The coin supply is the amount in circulation.
The interest rate will be capped at 10% and there will be no coin age restriction.
Hence, no need to move coins to a new address.
Interest can be earned on SLR from launch date.

Thank you Joe. Smiley

Bitcoin:     17tzgWkXMBazch4koAhokMTcCtbc4TaYkE
Ether:        0xfe700f4aeec47e52eafad00f81977bb89738e0ae
​SolarCoin: 8MDk963sEh7RCMo3y3st7hTzMs7FzSdWSx
Dogecoin: DEgdH6CFTLSEeVVPqfE18ySCQqDWmLxp33
solarcoiner
Sr. Member
****
Offline Offline

Activity: 445
Merit: 250


View Profile
September 22, 2015, 08:02:21 PM
 #1811

I'd like everyone to consider taking a few minutes of your time and thinking about what's happened:

I got into Solarcoin a little over 2 years ago when it all started. I chose to invest because I like the idea behind this coin very much, AND because for the price it was a very good deal because at the time there were only a few million in circulation. Up untill yesterday there were a little over 34 Million Solarcoins created. That's almost the same amount as litecoin, so I can really see the potential of this coin if demand starts rising.
HOWEVER since yesterdays fork at block 830000 after the implementation of POST a sh*tload of new coins have been created out of thin air effectively making me and many others very rich at current SLR prices. These interest payments wont be confirmed untill 350 more blocks or so, that means we still have time to revert the change and go back to where we were before POST.
I suggest looking into the interest code as y_virtual said and try to find the error. like he said something like /100 sounds about right.

IF we choose to keep everything as it is i'm afraid solarcoin is doomed. Think about it , the orderbook on bittrex (the only exchange at the time being) is so thin, I could wipe out all the buy orders with my first interest payment and still have more SLR than I started off with. At the time being it looks like over 20 Million new SLR coins have been created.
It's basic supply and demand guys, you don't need to be a rocket scientist to understand that the price would collapse and Solarcoin would have a VERY hard time surviving.
Let me finish off by saying if things stay the way they are I no longer want to be part of this community.
Up untill now I have been very happy with the way Solarcoin was headed but this is simply crazy.
I hope the developers will come to their senses and switch back to mining for the time being


yes and no solarcoiner - there's actually ~98.1B SLRs that will come into existence, and in fact, have already been minted just waiting to be distributed. So 34M, or 10X, or even 100X that is really very little compared to the total. What's shifted, and really only slightly so, is the number that will eventually be awarded for solar energy production versus those that miners/stakes have/will be getting. This was important to consider even prior to the fork because it says a lot about trusting the Foundation: they control, at what is priced right now at ~3/4 of a cent, some $750M in coins that are contracted by the Foundation to be distributed in a very certain way. But unlike crypto-trust, this is people-trust, and a lot of things could happen to SLR if say 10X or 100X price appreciation occurred. Examples include theft or loss of one of the premined MWh payment private keys or internal malfeasance at the foundation. I'm not saying whether it's likely or my personal prediction (I too bought coins in the spring of 2014 because I like the concept), but it is obviously possible.



Obviously but since those coins are not moving and we know approximately how many people claim solarcoins at the moment the available supply should be around 34 Million. Since very few people are claiming coins the supply didnt go up by a lot, only through mining. Like I said that's not what was agreed upon in the specifiactions when I invested in this coin. I invested because of the limited supply ( forget about the ones not moving in the reserves) and the potential of this coin.
What you are describing is a very unfair shift in the way Solarcoin are distributed. The market cap will be devalued and the coin will become worthless. I don't understand how some people here cannot understand this. I might aswell go buy myself some paycoin while i'm at it. This is such a joke

edit: the coins are meant to be distributed evenly and slowly over time, not millions at once in several diffrent accounts.
If you want to leave things as they are, go ahead, ill be the first to dump
y_virtual
Sr. Member
****
Offline Offline

Activity: 377
Merit: 251

Note to self: it's not you doing it, it's us.


View Profile
September 22, 2015, 08:16:16 PM
 #1812

This was exactly what I warned about. Big Wallets and few stakers. I wasn't taken seriously. You guys are forgetting about the 98 Billion that are in the Generator Pool, do the math on that. The Generator Pool is included in PoST I am pretty sure that is why the payouts are so big.

Orphan the blocks before they mature. That way the transactions will stay.

if that's the case keep the stake the way it is and get solar signed up? That's the key success anyways.

Steve - if we send coins to a new address, and then something else goes wrong and there needs to be a rollback again, are those coins lost? (burned essentially?)

Just got off the phone with the foundation and they have agreed to not limit the coin age to one year.  So, there will be no need to send coins to another address.

I am wrapping up testing and will issue the new wallet very soon.

-Steve


Steve, what was the interest rate cap in 2.0.1?
Solaris33
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
September 22, 2015, 08:22:13 PM
 #1813

There was no interest rate cap in v2.0.1
See page 11 and 13 of link:

http://www.vericoin.info/downloads/VeriCoinPoSTWhitePaper10May2015.pdf

y_virtual
Sr. Member
****
Offline Offline

Activity: 377
Merit: 251

Note to self: it's not you doing it, it's us.


View Profile
September 22, 2015, 08:27:12 PM
 #1814

There was no interest rate cap in v2.0.1
See page 11 and 13 of link:

http://www.vericoin.info/downloads/VeriCoinPoSTWhitePaper10May2015.pdf



Of course there was - 100% as it is on the chart, right?
y_virtual
Sr. Member
****
Offline Offline

Activity: 377
Merit: 251

Note to self: it's not you doing it, it's us.


View Profile
September 22, 2015, 08:35:35 PM
 #1815

There was no interest rate cap in v2.0.1
See page 11 and 13 of link:

http://www.vericoin.info/downloads/VeriCoinPoSTWhitePaper10May2015.pdf



Of course there was - 100% as it is on the chart, right?

Please look at these numbers again:
https://www.dropbox.com/s/gi9ttwef2e5hfvk/Lotto.PNG?dl=0
The ~7,400,000 interest came from an address with ~200,000 in it. What many of us here have been repeating over and over is that this stake can NOT be generated by ANY interest rate <= 100% and ANY coin age <= 18 months.
Now let's say the interest is capped at 10%, and somehow the 7,400,000 were generated at 100%. With a 10% cap, those 200,000 SLR under all other conditions being the same will generate a stake of 740,000. Which will be WRONG again.
There is an error in the code, and it is somewhere else.
sunny-boy
Newbie
*
Offline Offline

Activity: 37
Merit: 0


View Profile
September 22, 2015, 08:42:26 PM
 #1816

Still no new coins received (from interest) in staking since 15h.
"Spendable" at almost 0 and the rest is "staking".
However, I have now almost twice my amount in 'total" (next to "connection")
Think the best would indeed be to "reboot" from pow
solarcoiner
Sr. Member
****
Offline Offline

Activity: 445
Merit: 250


View Profile
September 22, 2015, 08:50:05 PM
 #1817

Still no new coins received (from interest) in staking since 15h.
"Spendable" at almost 0 and the rest is "staking".
However, I have now almost twice my amount in 'total" (next to "connection")
Think the best would indeed be to "reboot" from pow

yes that's what we need to do while we figure out what went wrong.
roislecxe
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
September 22, 2015, 08:50:35 PM
 #1818

Still no new coins received (from interest) in staking since 15h.
"Spendable" at almost 0 and the rest is "staking".
However, I have now almost twice my amount in 'total" (next to "connection")
Think the best would indeed be to "reboot" from pow

I have nothing staking, everything spendable and not received one coin in 25 hours.
y_virtual
Sr. Member
****
Offline Offline

Activity: 377
Merit: 251

Note to self: it's not you doing it, it's us.


View Profile
September 22, 2015, 08:53:45 PM
 #1819

Still no new coins received (from interest) in staking since 15h.
"Spendable" at almost 0 and the rest is "staking".
However, I have now almost twice my amount in 'total" (next to "connection")
Think the best would indeed be to "reboot" from pow

I have nothing staking, everything spendable and not received one coin in 25 hours.

Looks like you are lucky for not wining the lottery  Wink
Epiphany
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250


View Profile WWW
September 22, 2015, 09:08:55 PM
 #1820

There was no interest rate cap in v2.0.1
See page 11 and 13 of link:

http://www.vericoin.info/downloads/VeriCoinPoSTWhitePaper10May2015.pdf



Of course there was - 100% as it is on the chart, right?

Please look at these numbers again:
https://www.dropbox.com/s/gi9ttwef2e5hfvk/Lotto.PNG?dl=0
The ~7,400,000 interest came from an address with ~200,000 in it. What many of us here have been repeating over and over is that this stake can NOT be generated by ANY interest rate <= 100% and ANY coin age <= 18 months.
Now let's say the interest is capped at 10%, and somehow the 7,400,000 were generated at 100%. With a 10% cap, those 200,000 SLR under all other conditions being the same will generate a stake of 740,000. Which will be WRONG again.
There is an error in the code, and it is somewhere else.

The interest rate isn't capped at 100%, that's just written on the chart to show scale. Look on the left, you can see it does not cross at 100%.

The chart at the bottom of page 11 is what you're referring to right?

Bitcoin:     17tzgWkXMBazch4koAhokMTcCtbc4TaYkE
Ether:        0xfe700f4aeec47e52eafad00f81977bb89738e0ae
​SolarCoin: 8MDk963sEh7RCMo3y3st7hTzMs7FzSdWSx
Dogecoin: DEgdH6CFTLSEeVVPqfE18ySCQqDWmLxp33
Pages: « 1 ... 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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 ... 302 »
  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!