Bitcoin Forum
June 22, 2024, 03:03:55 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Due to big HYPER projects like Poker site, giveaways, competitions, bounties and marketing the 500 000 HYPER MMO Development Fund will be at 450 000 HYPER soon. What should we do?
Keep sponsoring more awesome HYPER projects and spend it down to 400 000 HYPER and then preserve the fund at 400 000 HYPER - 115 (45.1%)
Limit spending (less HYPER projects) until the monthly staking brings the fund back up to 500 000 HYPER - 40 (15.7%)
Manage it how you like. HYPER seems to be going awesome keep it up! - 100 (39.2%)
Total Voters: 255

Pages: « 1 ... 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 [275] 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 ... 357 »
  Print  
Author Topic: [ANN] HYPER ~ Game Currency ~MMOs ~Poker ~ 20+ Servers~ShapeShift.io ~RPG +More!  (Read 716710 times)
ranlo
Legendary
*
Offline Offline

Activity: 1974
Merit: 1007



View Profile
January 09, 2016, 07:36:14 PM
 #5481

I also have question, did coins have age limit? I have some coins since ~5 month and never got reward(windows wallet), but I not run actively.

How old are coins age supposed to be before they start staking?

Minimum coin age is 1 day or 24 hours. The more coins you have in your HYPER wallet, and the longer it's been since you moved the coins, opened (or unlocked) your wallet, the more chance you will have of automatically generating proof of stake blocks.

Ideally PoS blocks should be generated every 24 hours and compounding, based on a monthly PoS interest of 5%. This may vary slightly for a number of reasons such as the number of coins in the wallet.

Hope that helps Wink

here is your answer.
thanks, that means coins age after become mature -unlimited .

I had coins for 2.5m+ that still staked the full amount so I believe there's no age limit.

https://nanogames.io/i-bctalk-n/
Message for info on how to get kickbacks on sites like Nano (above) and CryptoPlay!
crazyjack
Legendary
*
Offline Offline

Activity: 1315
Merit: 1002


View Profile
January 09, 2016, 10:26:04 PM
 #5482

Hmm, lets see:

Code:
static const int64 MAX_MINT_PROOF_OF_STAKE = 0.6 * COIN;	// 60% annual interest - 5% monthly interest
static const int64 MAX_MINT_PROOF_OF_STAKE2 = 0.1 * COIN;
static const int64 MAX_MINT_PROOF_OF_STAKE3 = 0.02 * COIN;

Code:
const int YEARLY_BLOCKCOUNT = 1051200;	// 365 * 2880
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight > (5 * YEARLY_BLOCKCOUNT))
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE2;

if(nHeight > (10 * YEARLY_BLOCKCOUNT))
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE3;

    int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;

Lets get facts more straight.
60% yearly interest != 5% monthly interest.
Dont be fooled by fancy word "compounding" either. It has next to non existing effect with this coin.

Code:
unsigned int nStakeMaxAge = 60 * 60 * 24 * 30;

Max age being 30 days. Dont always expect to get daily stakes if network stake weight gets high.

Good luck with a coin, Dev.




Max age being 30 days.
ranlo
Legendary
*
Offline Offline

Activity: 1974
Merit: 1007



View Profile
January 10, 2016, 01:26:39 AM
 #5483

Hmm, lets see:

Code:
static const int64 MAX_MINT_PROOF_OF_STAKE = 0.6 * COIN;	// 60% annual interest - 5% monthly interest
static const int64 MAX_MINT_PROOF_OF_STAKE2 = 0.1 * COIN;
static const int64 MAX_MINT_PROOF_OF_STAKE3 = 0.02 * COIN;

Code:
const int YEARLY_BLOCKCOUNT = 1051200;	// 365 * 2880
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight > (5 * YEARLY_BLOCKCOUNT))
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE2;

if(nHeight > (10 * YEARLY_BLOCKCOUNT))
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE3;

    int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;

Lets get facts more straight.
60% yearly interest != 5% monthly interest.
Dont be fooled by fancy word "compounding" either. It has next to non existing effect with this coin.

Code:
unsigned int nStakeMaxAge = 60 * 60 * 24 * 30;

Max age being 30 days. Dont always expect to get daily stakes if network stake weight gets high.

Good luck with a coin, Dev.




Max age being 30 days.

That's really weird. I've waited to stake until 2.5m+ and got more than 2x what I normally did doing it on the same day each month...

https://nanogames.io/i-bctalk-n/
Message for info on how to get kickbacks on sites like Nano (above) and CryptoPlay!
zazarb
Legendary
*
Offline Offline

Activity: 3416
Merit: 1548


Get loan in just five minutes goo.gl/8WMW6n


View Profile WWW
January 10, 2016, 02:16:01 AM
 #5484

Hmm, lets see:

Code:
static const int64 MAX_MINT_PROOF_OF_STAKE = 0.6 * COIN;	// 60% annual interest - 5% monthly interest
static const int64 MAX_MINT_PROOF_OF_STAKE2 = 0.1 * COIN;
static const int64 MAX_MINT_PROOF_OF_STAKE3 = 0.02 * COIN;

Code:
const int YEARLY_BLOCKCOUNT = 1051200;	// 365 * 2880
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight > (5 * YEARLY_BLOCKCOUNT))
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE2;

if(nHeight > (10 * YEARLY_BLOCKCOUNT))
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE3;

    int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;

Lets get facts more straight.
60% yearly interest != 5% monthly interest.
Dont be fooled by fancy word "compounding" either. It has next to non existing effect with this coin.

Code:
unsigned int nStakeMaxAge = 60 * 60 * 24 * 30;

Max age being 30 days. Dont always expect to get daily stakes if network stake weight gets high.

Good luck with a coin, Dev.




Max age being 30 days.

That's really weird. I've waited to stake until 2.5m+ and got more than 2x what I normally did doing it on the same day each month...
can somebody from dev confirm that? my wallet finally sync, so I want know, or I should wait first rewards or must resend coins?
p.s. wallet eating >700mb ram its normal?

       ███████████████▄▄
    ██████████████████████▄
  ██████████████████████████▄
 ███████   ▀████████▀   ████▄
██████████    █▀  ▀    ██████▄
███████████▄▄▀  ██  ▀▄▄████████
███████████          █████████
███████████▀▀▄  ██  ▄▀▀████████
██████████▀   ▀▄  ▄▀   ▀██████▀
 ███████  ▄██▄████▄█▄  █████▀
  ██████████████████████████▀
    ██████████████████████▀
       ███████████████▀▀
.
.Duelbits.
.
..THE MOST REWARDING CASINO......
   ▄▄▄▄████▀███▄▄▄▄▄
▄███▄▀▄██▄   ▄██▄▀▄███▄
████▄█▄███▄█▄███▄█▄████
███████████████████████   ▄██▄
██     ██     ██     ██   ▀██▀
██ ▀▀█ ██ ▀▀█ ██ ▀▀█ ██    ██
██  █  ██  █  ██  █  ██
█▌  ██
██     ██     ██     ████  ██
█████████████████████████  ██
████████████████████████████▀
█████████████████████████
█████████████████████████
████████████████████████▌
       +4,000      
PROVABLY FAIR
GAMES
   $500,000  
MONTHLY
PRIZE POOL
      $10,000     
BLACKJACK
GIVEAWAY
crazyjack
Legendary
*
Offline Offline

Activity: 1315
Merit: 1002


View Profile
January 10, 2016, 06:07:12 AM
 #5485

how many confirmation needs to start staking ?? 3167 confirmation passed but wallet does not staked any coins is it normal ?? (unlocked for staking)

Your staking depends on the age of your coins and how many coins you have. I don't believe confirmations make any difference.

Do you mean you got staked amounts but they're not being confirmed? Sometimes a staked amount doesn't get confirmed and if that happens you will stake more later, because your coins will be a little older by the time it does stake.

no.. wallet v1.5.3.2 and i put  5k hyper for test. wallet open for 30 hour and did not staked any coin is it normal ??


Yes, it is normal. Just wait another 2-3 days and you will get your PoS coins for the 4-5 days. There is no losts for you.

just keep client open for the stakes and yes, client takes a lot of memory too.
ranlo
Legendary
*
Offline Offline

Activity: 1974
Merit: 1007



View Profile
January 10, 2016, 06:18:42 AM
 #5486

Hmm, lets see:

Code:
static const int64 MAX_MINT_PROOF_OF_STAKE = 0.6 * COIN;	// 60% annual interest - 5% monthly interest
static const int64 MAX_MINT_PROOF_OF_STAKE2 = 0.1 * COIN;
static const int64 MAX_MINT_PROOF_OF_STAKE3 = 0.02 * COIN;

Code:
const int YEARLY_BLOCKCOUNT = 1051200;	// 365 * 2880
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight > (5 * YEARLY_BLOCKCOUNT))
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE2;

if(nHeight > (10 * YEARLY_BLOCKCOUNT))
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE3;

    int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;

Lets get facts more straight.
60% yearly interest != 5% monthly interest.
Dont be fooled by fancy word "compounding" either. It has next to non existing effect with this coin.

Code:
unsigned int nStakeMaxAge = 60 * 60 * 24 * 30;

Max age being 30 days. Dont always expect to get daily stakes if network stake weight gets high.

Good luck with a coin, Dev.




Max age being 30 days.

That's really weird. I've waited to stake until 2.5m+ and got more than 2x what I normally did doing it on the same day each month...
can somebody from dev confirm that? my wallet finally sync, so I want know, or I should wait first rewards or must resend coins?
p.s. wallet eating >700mb ram its normal?

Yeah, the wallet is a huge ram hog. Not sure if anyone's working to fix that. A lot of coins are below 256 MB ram so it's a pretty big deal.

https://nanogames.io/i-bctalk-n/
Message for info on how to get kickbacks on sites like Nano (above) and CryptoPlay!
HYPERfuture (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500

HYPER project manager and PR + GoldPieces [GP]


View Profile WWW
January 10, 2016, 08:05:39 AM
 #5487

can somebody from dev confirm that? my wallet finally sync, so I want know, or I should wait first rewards or must resend coins?
p.s. wallet eating >700mb ram its normal?

Yeah, the wallet is a huge ram hog. Not sure if anyone's working to fix that. A lot of coins are below 256 MB ram so it's a pretty big deal.

Yes, a future wallet update will fix the RAM issues, There is still also a bounty for a lite HYPER wallet Electrum style, if anyone is interested in making that wallet and claiming the bounty.

zazarb, now that you are fully synced you will be staking optimally. DO NOT resend the coins to another address, this will reset the coin age and you will miss out on your stakes!

How much HYPER is in your wallet? You should be staking nicely now please let me know.

I am in talks with some of our biggest HYPER supporters and we are coming up with many initiatives to push HYPER forward in 2016.

If anyone wants to contribute in any way please PM me.

Currently I am looking for someone to manage the official HYPER twitter account, but if you have any other ideas on promoting HYPER, or any kind of HYPER project you would like to work on, please also PM me.

There are also plans for more games.

Stay tuned ...

HYPER Gaming Currency -> https://bitcointalk.org/index.php?topic=624651 GP RPG Currency -> https://bitcointalk.org/index.php?topic=1053441 https://cryptogalaxies.com -> Blockchain Based Space Strategy MMO. Crypto Galaxies on Bitcointalk -> https://bitcointalk.org/index.php?topic=1374470
Coins-R-Us
Full Member
***
Offline Offline

Activity: 156
Merit: 100


View Profile
January 10, 2016, 08:46:35 AM
 #5488

Wow the above is certainly Great News!

I can't wait to see what comes next.   Cheesy
djnocide
Legendary
*
Offline Offline

Activity: 1164
Merit: 1000


Einsteinium Foundation Board Member and Treasurer


View Profile
January 10, 2016, 12:43:06 PM
 #5489

can somebody from dev confirm that? my wallet finally sync, so I want know, or I should wait first rewards or must resend coins?
p.s. wallet eating >700mb ram its normal?

Yeah, the wallet is a huge ram hog. Not sure if anyone's working to fix that. A lot of coins are below 256 MB ram so it's a pretty big deal.

Yes, a future wallet update will fix the RAM issues, There is still also a bounty for a lite HYPER wallet Electrum style, if anyone is interested in making that wallet and claiming the bounty.

zazarb, now that you are fully synced you will be staking optimally. DO NOT resend the coins to another address, this will reset the coin age and you will miss out on your stakes!

How much HYPER is in your wallet? You should be staking nicely now please let me know.

I am in talks with some of our biggest HYPER supporters and we are coming up with many initiatives to push HYPER forward in 2016.

If anyone wants to contribute in any way please PM me.

Currently I am looking for someone to manage the official HYPER twitter account, but if you have any other ideas on promoting HYPER, or any kind of HYPER project you would like to work on, please also PM me.

There are also plans for more games.

Stay tuned ...

Other ways promote HYPER, be active on Facebook, LinkedIn, Pinterest, Tumblr and other social medias and create a blog where you post about games related to HYPER and HYPER itself. After some times it will increase the visibility of the coin and the community.
HYPERfuture (OP)
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500

HYPER project manager and PR + GoldPieces [GP]


View Profile WWW
January 11, 2016, 07:02:23 AM
 #5490

can somebody from dev confirm that? my wallet finally sync, so I want know, or I should wait first rewards or must resend coins?
p.s. wallet eating >700mb ram its normal?

Yeah, the wallet is a huge ram hog. Not sure if anyone's working to fix that. A lot of coins are below 256 MB ram so it's a pretty big deal.

Yes, a future wallet update will fix the RAM issues, There is still also a bounty for a lite HYPER wallet Electrum style, if anyone is interested in making that wallet and claiming the bounty.

zazarb, now that you are fully synced you will be staking optimally. DO NOT resend the coins to another address, this will reset the coin age and you will miss out on your stakes!

How much HYPER is in your wallet? You should be staking nicely now please let me know.

I am in talks with some of our biggest HYPER supporters and we are coming up with many initiatives to push HYPER forward in 2016.

If anyone wants to contribute in any way please PM me.

Currently I am looking for someone to manage the official HYPER twitter account, but if you have any other ideas on promoting HYPER, or any kind of HYPER project you would like to work on, please also PM me.

There are also plans for more games.

Stay tuned ...

Other ways promote HYPER, be active on Facebook, LinkedIn, Pinterest, Tumblr and other social medias and create a blog where you post about games related to HYPER and HYPER itself. After some times it will increase the visibility of the coin and the community.

This is a great idea and I am in discussions with djnocide on how we can make this happen.

HYPER Gaming Currency -> https://bitcointalk.org/index.php?topic=624651 GP RPG Currency -> https://bitcointalk.org/index.php?topic=1053441 https://cryptogalaxies.com -> Blockchain Based Space Strategy MMO. Crypto Galaxies on Bitcointalk -> https://bitcointalk.org/index.php?topic=1374470
edmundduke
Legendary
*
Offline Offline

Activity: 1624
Merit: 1007


View Profile
January 11, 2016, 08:54:32 AM
 #5491

can somebody from dev confirm that? my wallet finally sync, so I want know, or I should wait first rewards or must resend coins?
p.s. wallet eating >700mb ram its normal?

Yeah, the wallet is a huge ram hog. Not sure if anyone's working to fix that. A lot of coins are below 256 MB ram so it's a pretty big deal.

Yes, a future wallet update will fix the RAM issues, There is still also a bounty for a lite HYPER wallet Electrum style, if anyone is interested in making that wallet and claiming the bounty.

zazarb, now that you are fully synced you will be staking optimally. DO NOT resend the coins to another address, this will reset the coin age and you will miss out on your stakes!

How much HYPER is in your wallet? You should be staking nicely now please let me know.

I am in talks with some of our biggest HYPER supporters and we are coming up with many initiatives to push HYPER forward in 2016.

If anyone wants to contribute in any way please PM me.

Currently I am looking for someone to manage the official HYPER twitter account, but if you have any other ideas on promoting HYPER, or any kind of HYPER project you would like to work on, please also PM me.

There are also plans for more games.

Stay tuned ...

Other ways promote HYPER, be active on Facebook, LinkedIn, Pinterest, Tumblr and other social medias and create a blog where you post about games related to HYPER and HYPER itself. After some times it will increase the visibility of the coin and the community.

This really is the part where the community can help spread the word about HYPER. Tell your friends, share some tweets, post on Facebook. It all helps to get the word out.
Im really interested in learning what the new games will be Smiley Hope we get updated soon on that part.
ranlo
Legendary
*
Offline Offline

Activity: 1974
Merit: 1007



View Profile
January 11, 2016, 10:43:11 AM
 #5492

can somebody from dev confirm that? my wallet finally sync, so I want know, or I should wait first rewards or must resend coins?
p.s. wallet eating >700mb ram its normal?

Yeah, the wallet is a huge ram hog. Not sure if anyone's working to fix that. A lot of coins are below 256 MB ram so it's a pretty big deal.

Yes, a future wallet update will fix the RAM issues, There is still also a bounty for a lite HYPER wallet Electrum style, if anyone is interested in making that wallet and claiming the bounty.

zazarb, now that you are fully synced you will be staking optimally. DO NOT resend the coins to another address, this will reset the coin age and you will miss out on your stakes!

How much HYPER is in your wallet? You should be staking nicely now please let me know.

I am in talks with some of our biggest HYPER supporters and we are coming up with many initiatives to push HYPER forward in 2016.

If anyone wants to contribute in any way please PM me.

Currently I am looking for someone to manage the official HYPER twitter account, but if you have any other ideas on promoting HYPER, or any kind of HYPER project you would like to work on, please also PM me.

There are also plans for more games.

Stay tuned ...

I would LOVE an Electrum clone for HYPER (preferably Electrum HD). I have a hardware wallet and this would be a lot better in terms of security.

https://nanogames.io/i-bctalk-n/
Message for info on how to get kickbacks on sites like Nano (above) and CryptoPlay!
RaginglikeaBoss
Sr. Member
****
Offline Offline

Activity: 302
Merit: 250

Never before 11 P.M.


View Profile WWW
January 11, 2016, 11:49:19 AM
 #5493

A Mac OSX client would be nice as well as Electrum.

TeamDisaster
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
January 11, 2016, 12:09:03 PM
 #5494

I love the way that when I buy HYPER, it's in my wallet and confirmed in literally a few seconds.

Trade crypto at Bittrex

Buy gift cards with crypto at GiftOff
TeamDisaster
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
January 11, 2016, 02:56:20 PM
 #5495

I love the way that when I buy HYPER, it's in my wallet and confirmed in literally a few seconds.

Taking your quote and tweeting that now.

https://twitter.com/prodjkc/status/686541685434662912

I hope that's you...

Oops no, don't know who that is but I'm @IndieGameNews1Cheesy

Trade crypto at Bittrex

Buy gift cards with crypto at GiftOff
TeamDisaster
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
January 11, 2016, 04:00:42 PM
 #5496

So we're using $hyper not #hyper?  Huh

Trade crypto at Bittrex

Buy gift cards with crypto at GiftOff
pablocality
Member
**
Offline Offline

Activity: 103
Merit: 10

i.imgur.com/RK7GDbw.jpg


View Profile
January 12, 2016, 04:31:51 AM
 #5497

I agree with your reasoning behind the use of $hyper
Coins-R-Us
Full Member
***
Offline Offline

Activity: 156
Merit: 100


View Profile
January 12, 2016, 05:19:27 AM
 #5498

The tweets might be working already, Hyper is up!

0.00002755 BTC (40.52 %)   Cheesy
micle222
Sr. Member
****
Offline Offline

Activity: 784
Merit: 255


View Profile
January 12, 2016, 06:13:51 AM
 #5499

The tweets might be working already, Hyper is up!

0.00002755 BTC (40.52 %)   Cheesy

So who now takes over Hyper Huh
TeamDisaster
Hero Member
*****
Offline Offline

Activity: 674
Merit: 500


View Profile WWW
January 12, 2016, 08:49:17 AM
 #5500

I agree with your reasoning behind the use of $hyper

Agreed - #hyper could be virtually anything I guess.  (Sorry I'm just used to everything on Twitter being "#"!)  Grin

Trade crypto at Bittrex

Buy gift cards with crypto at GiftOff
Pages: « 1 ... 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 [275] 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 ... 357 »
  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!