xminer2014
Member
Offline
Activity: 207
Merit: 10
WPP ENERGY - BACKED ASSET GREEN ENERGY TOKEN
|
|
April 29, 2014, 09:44:44 PM |
|
Sources will be available as soon as our repository manager is able to merge the changes (this afternoon), but we want to make wallets available as we get them built.
Oh please please, I need it, thanks
|
﹏﹏﹋﹌﹌ WPP ENERGY ﹌﹌﹋﹏﹏ ☆═══━┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈━═══☆ ≈ WORLD POWER PRODUCTION ≈ █ █ █
|
|
|
EBT (OP)
|
|
April 29, 2014, 10:48:13 PM |
|
Sources will be available as soon as our repository manager is able to merge the changes (this afternoon), but we want to make wallets available as we get them built.
Oh please please, I need it, thanks Sources are up! https://github.com/argakiig/EBT
|
|
|
|
DannyTom
|
|
April 30, 2014, 04:07:05 AM |
|
Thanks for the wallet update. Notice a little action happening on the new exchange. Still takes the wallet a little time to load, but no issues and all my coins were still there.
5,792.391 EBT = $1 USD
|
BTQ: 17NEp7WtUZt4V5RiFP6YHxD1hcte7U3sB8 LTC: LeyXcTFxC5Ku3KDUyhwDHtLko1JwChd99h FTC: 6n56LJKYrdgmsougCCjenLFtpPTcjFQ829
|
|
|
EBT (OP)
|
|
April 30, 2014, 06:08:37 AM |
|
OS X wallet, Windows wallet, and sources are now available for 2.0.12!
|
|
|
|
makemebeat
|
|
April 30, 2014, 06:29:18 AM |
|
I don't really know, who dump it at this price, really. I'm early adopter, but diff were the same all the time. So the normal (not good, just normal) price for selling is about 100, and it was so, when it started trading. And then everybody started do that thing: "hmm, low diff, hi price. i'll start to mine it. oh, no, price drops. i'll dump my 1000 EBT too. and go away". Fk it. Still holding 1,5M till... till I don't know. I just like it's launch, it's community and devs.
|
|
|
|
makemebeat
|
|
April 30, 2014, 06:34:17 AM |
|
And I have question to devs. I've got transactions each 10k, with POS it should bring me 1k every 90 days. But it gives me ~40 EBT for every 10000. It's not what expected.
|
|
|
|
EBT (OP)
|
|
April 30, 2014, 06:58:56 AM |
|
And I have question to devs. I've got transactions each 10k, with POS it should bring me 1k every 90 days. But it gives me ~40 EBT for every 10000. It's not what expected.
The APR is effectively set at 5% with very little variance. To maximize your rate, you will need to have your wallet open for minting all of the time. So, a 10k input will generate about 125 every 90 days, maximum.
|
|
|
|
xminer2014
Member
Offline
Activity: 207
Merit: 10
WPP ENERGY - BACKED ASSET GREEN ENERGY TOKEN
|
|
April 30, 2014, 07:07:02 AM |
|
Thanks. coinbasevalue reported by getblocktemplate is still off by 100x { "version" : 4, "previousblockhash" : "f39476432194bd68793bda09540c85a512411125712cbede0a3fec5ca8d2ef3d", "transactions" : [ ], "coinbaseaux" : { "flags" : "062f503253482f" }, "coinbasevalue" : 250000000, "target" : "00000001da450000000000000000000000000000000000000000000000000000", "mintime" : 1398841404, "mutable" : [ "time", "transactions", "prevblock" ], "noncerange" : "00000000ffffffff", "sigoplimit" : 20000, "sizelimit" : 1000000, "curtime" : 1398841501, "bits" : "1d01da45", "height" : 267731 }
|
﹏﹏﹋﹌﹌ WPP ENERGY ﹌﹌﹋﹏﹏ ☆═══━┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈━═══☆ ≈ WORLD POWER PRODUCTION ≈ █ █ █
|
|
|
k!lowatts
Member
Offline
Activity: 98
Merit: 10
|
|
April 30, 2014, 07:09:58 AM |
|
so many issues with POS coins
|
e5iS8ibLHqEX3HagxcS3DrZxyvkhUoUcfN - Energycoin DJgywHCTvQ4Auo3MJrP3pYdCbzftU4T3kk - Mastiffcoin
|
|
|
EBT (OP)
|
|
April 30, 2014, 08:46:56 AM Last edit: May 04, 2014, 07:43:54 AM by EBT |
|
Thanks. coinbasevalue reported by getblocktemplate is still off by 100x The report for getblocktemplate is in error and is referencing the premine. It's actually not in error: https://bitcointalk.org/index.php?topic=437660.msg6535833#msg6535833. What you see is not going to affect the mining payout, which is hard-coded by block number: int64 GetProofOfWorkReward(unsigned int nHeight) { int64 nSubsidy = 0;
if (nHeight < 2) nSubsidy = 2500000 * COIN; else if (nHeight < 100000) nSubsidy = 1000 * COIN; else if (nHeight < 200000) nSubsidy = 500 * COIN; else if (nHeight < 300000) nSubsidy = 250 * COIN; else if (nHeight < 400000) nSubsidy = 125 * COIN; else if (nHeight < 500000) nSubsidy = 62.5 *COIN; else if (nHeight < 600000) nSubsidy = 32.25 *COIN; else if (nHeight < 700000) nSubsidy = 15.625 * COIN; else if (nHeight < 800000) nSubsidy = 7.8125 * COIN; else if (nHeight < 900000) nSubsidy = 3.90625 * COIN; else if (nHeight < 1000000) nSubsidy = 1.953125 * COIN; else if (nHeight < 1100000) nSubsidy = 1 * COIN;
return nSubsidy; } We'll fix the getblocktemplate report, which is inconsequential, in the next release. There is no need to fix getblocktemplate.
|
|
|
|
EBT (OP)
|
|
April 30, 2014, 08:54:59 AM |
|
so many issues with POS coins
Make a transaction with EBT and see how fast it is broadcast and confirms. Let us know what you find. But please include transaction IDs. Thanks for your help to make EBT better!
|
|
|
|
xminer2014
Member
Offline
Activity: 207
Merit: 10
WPP ENERGY - BACKED ASSET GREEN ENERGY TOKEN
|
|
April 30, 2014, 09:50:18 AM |
|
The report for getblocktemplate is in error and is referencing the premine. What you see is not going to affect the mining payout, which is hard-coded by block number: We'll fix the getblocktemplate report, which is inconsequential, in the next release.
I know it doens't affect the block reward, but I need to do a *100 everytime checking the current block reward. Thanks for fixing that in the next release.
|
﹏﹏﹋﹌﹌ WPP ENERGY ﹌﹌﹋﹏﹏ ☆═══━┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈━═══☆ ≈ WORLD POWER PRODUCTION ≈ █ █ █
|
|
|
makemebeat
|
|
April 30, 2014, 09:59:19 AM |
|
And I have question to devs. I've got transactions each 10k, with POS it should bring me 1k every 90 days. But it gives me ~40 EBT for every 10000. It's not what expected.
The APR is effectively set at 5% with very little variance. To maximize your rate, you will need to have your wallet open for minting all of the time. So, a 10k input will generate about 125 every 90 days, maximum. My math say me, that even 5% from 10000 is 500, not 125.
|
|
|
|
xminer2014
Member
Offline
Activity: 207
Merit: 10
WPP ENERGY - BACKED ASSET GREEN ENERGY TOKEN
|
|
April 30, 2014, 10:39:46 AM |
|
I also see that, I have coins for 2.5 months in the wallet and wallet open 24/7 and saw only 2x 0.4%, it's hard to believe that I will get 9% in 2 weeks
|
﹏﹏﹋﹌﹌ WPP ENERGY ﹌﹌﹋﹏﹏ ☆═══━┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈━═══☆ ≈ WORLD POWER PRODUCTION ≈ █ █ █
|
|
|
EBT (OP)
|
|
April 30, 2014, 03:20:48 PM |
|
And I have question to devs. I've got transactions each 10k, with POS it should bring me 1k every 90 days. But it gives me ~40 EBT for every 10000. It's not what expected.
The APR is effectively set at 5% with very little variance. To maximize your rate, you will need to have your wallet open for minting all of the time. So, a 10k input will generate about 125 every 90 days, maximum. My math say me, that even 5% from 10000 is 500, not 125. The APR (annual percentage rate) is capped at 5%. For 90 days, the cap is 5% * 90 / 365, or roughy 1.25%. Remember, this is the cap. You will probably do worse on average. However, the same rules apply to everyone, so no one is getting a better maximum APR than you.
|
|
|
|
dE_logics
|
|
April 30, 2014, 03:31:21 PM |
|
And I have question to devs. I've got transactions each 10k, with POS it should bring me 1k every 90 days. But it gives me ~40 EBT for every 10000. It's not what expected.
The APR is effectively set at 5% with very little variance. To maximize your rate, you will need to have your wallet open for minting all of the time. So, a 10k input will generate about 125 every 90 days, maximum. My math say me, that even 5% from 10000 is 500, not 125. The APR (annual percentage rate) is capped at 5%. For 90 days, the cap is 5% * 90 / 365, or roughy 1.25%. Remember, this is the cap. You will probably do worse on average. However, the same rules apply to everyone, so no one is getting a better maximum APR than you. You should update the top post on this. Otherwise I was just about to dump my coins on account of too high inflation.
|
|
|
|
makemebeat
|
|
April 30, 2014, 03:38:50 PM |
|
And I have question to devs. I've got transactions each 10k, with POS it should bring me 1k every 90 days. But it gives me ~40 EBT for every 10000. It's not what expected.
The APR is effectively set at 5% with very little variance. To maximize your rate, you will need to have your wallet open for minting all of the time. So, a 10k input will generate about 125 every 90 days, maximum. My math say me, that even 5% from 10000 is 500, not 125. The APR (annual percentage rate) is capped at 5%. For 90 days, the cap is 5% * 90 / 365, or roughy 1.25%. Remember, this is the cap. You will probably do worse on average. However, the same rules apply to everyone, so no one is getting a better maximum APR than you. You should update the top post on this. Otherwise I was just about to dump my coins on account of too high inflation. I think so too. It just ridiculous, that OP says wrong things. Real 5% per year interest instead 10% per 90 days, as OP says.
|
|
|
|
dE_logics
|
|
April 30, 2014, 03:45:31 PM |
|
Critical Bug Fix: Please update your wallet to 2.0.1.2!! git pull https://github.com/EBTCoin/EBT From https://github.com/EBTCoin/EBT * branch HEAD -> FETCH_HEAD Already up-to-date.
|
|
|
|
hardcoreprime
|
|
April 30, 2014, 03:56:38 PM |
|
EBT is undervalued at Poloniex. Its way cheaper to buy now than mine at the current difficulty.
|
|
|
|
EBT (OP)
|
|
April 30, 2014, 04:04:31 PM |
|
Critical Bug Fix: Please update your wallet to 2.0.1.2!! git pull https://github.com/EBTCoin/EBT From https://github.com/EBTCoin/EBT * branch HEAD -> FETCH_HEAD Already up-to-date. Please see the above post and the OP. The working repository is now https://github.com/argakiig/EBT
|
|
|
|
|