Pages:
Author

Topic: [HYP] HyperStake | Generous Reward Staking | Advanced Staking Controls & Wallet - page 72. (Read 679335 times)

legendary
Activity: 1330
Merit: 1000
Blockchain Developer
hello - its been a while !   I have been out of the crypto world for a while now, but now have more time to commit.

HYP was my first "real" coin i got involved in so would love to see it succeed again - I am starting from a 0 HYP position (unless there is something lurking in one of my wallets which I am trying to get all synced up again!) so nothing to gain in the short term.

Please let me know if there are any active projects which I can help with ?

jaybeeuk great to see you back here. I myself have stayed pretty busy with a lot of other crypto-currency 'for hire' jobs, and have unfortunately not had time to develop HYP within the last year. Fortunately it was left in a great state and still works very well. I am starting up with a few ideas and looking over the codebase.

I don't know if there are any active projects, I would guess not. But let me know if you start working on something.

I would personally like to work on some code for staking activated governance system implemented in HyperStake. It would allow us to make decisions for HYP without as much smoke and mirrors. For example, there is absolutely no reason to continue hashing the block header in X11 instead of sha256, it just adds over 11 times more strain to the syncing process and no additional security.
sr. member
Activity: 284
Merit: 250
hello - its been a while !   I have been out of the crypto world for a while now, but now have more time to commit.

HYP was my first "real" coin i got involved in so would love to see it succeed again - I am starting from a 0 HYP position (unless there is something lurking in one of my wallets which I am trying to get all synced up again!) so nothing to gain in the short term.

Please let me know if there are any active projects which I can help with ?

Welcome back into the fold.  You can go, but you can never leave. Grin

Lol so true! It haunts you till the day you die  Cheesy
legendary
Activity: 1288
Merit: 1000
CRYPTO-CITY.COM 🌟 Communities
hello - its been a while !   I have been out of the crypto world for a while now, but now have more time to commit.

HYP was my first "real" coin i got involved in so would love to see it succeed again - I am starting from a 0 HYP position (unless there is something lurking in one of my wallets which I am trying to get all synced up again!) so nothing to gain in the short term.

Please let me know if there are any active projects which I can help with ?

Welcome back into the fold.  You can go, but you can never leave. Grin
legendary
Activity: 1288
Merit: 1000
CRYPTO-CITY.COM 🌟 Communities

The best thing to do is to not create transactions that large. I think there is even a limit to transaction size, I will have to look that up in the code.

I have looked in the code. There is a limit of 100 kb per wallet transaction in the bitcoin code (manual transactions can be as big as the max block size). I haven't found such limit in the HYP code yet. Anyway, I also think that it's not a good practice to create too heavy transactions which consume not only disk space but CPU resources of every node and can potentially be an attack vector.

Yes I agree, just be a responsible HYPster and create smaller transactions if possible.

On another note, has anyone thought about the possibility of using segwit with PoS? I have begun looking through the segwit code for bitcoin. Although we don't have a scaling problem, segwit solves some other problems such as malleability. It could be interesting subject to explore.

That does sound interesting, I've not seen anyone try to push HYP to its limits yet... However, I'm sure if it gets popular someone would likely try.

Something that might be of interest to look into over time is the wallets inability to deal a large number of records in the wallet.dat. This isn't HYP specific, but a general crypto wallet DB issue. Maybe a new parallel DB core engine and schema?  Someone might have fun with this.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer

The best thing to do is to not create transactions that large. I think there is even a limit to transaction size, I will have to look that up in the code.

I have looked in the code. There is a limit of 100 kb per wallet transaction in the bitcoin code (manual transactions can be as big as the max block size). I haven't found such limit in the HYP code yet. Anyway, I also think that it's not a good practice to create too heavy transactions which consume not only disk space but CPU resources of every node and can potentially be an attack vector.

Yes I agree, just be a responsible HYPster and create smaller transactions if possible.

On another note, has anyone thought about the possibility of using segwit with PoS? I have begun looking through the segwit code for bitcoin. Although we don't have a scaling problem, segwit solves some other problems such as malleability. It could be interesting subject to explore.
sr. member
Activity: 433
Merit: 250
We are the first to program your future (c)
@Presstab.

I've noticed that when selecting coins for splitting. If the inputs are over 400-500 (I can't remember the exact number) it will fail.

Yeah thats way too large. Honestly it has a hard time if it is more than 100, maybe I should put a hard cap in there.

The majority of crypto wallets suffer from this DB issue and once the file size gets to around 500MB or more it virtually becomes unusable.

Wait i thought you meant splitting into 400-500 inputs. Is that not what you meant?

Sorry about that... the latter stuff is just the byproduct of all the stuff  combined (as a large wallet.dat file), but yes, the number of inputs is the main culprit which basically affect the wallets ability to send, combine or split because after a certain number of inputs it fails whether it is selected from the coin control or automatically.

If the big number of UTXO's is your staking strategy (mine too), and that makes your life difficult, you can scale the wallet horizontally, i.e., set up a second staking machine and move a part of UTXO's there. It also adds extra security. I'm starting to think about it Smiley

Ya. I have like 10 machines, but it definitely is an issue when sending a transaction and if it includes over a certain number of blocks (over 500) it will fail to create the transaction.

The best thing to do is to not create transactions that large. I think there is even a limit to transaction size, I will have to look that up in the code.

I have looked in the code. There is a limit of 100 kb per wallet transaction in the bitcoin code (manual transactions can be as big as the max block size). I haven't found such limit in the HYP code yet. Anyway, I also think that it's not a good practice to create too heavy transactions which consume not only disk space but CPU resources of every node and can potentially be an attack vector.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
@Presstab.

I've noticed that when selecting coins for splitting. If the inputs are over 400-500 (I can't remember the exact number) it will fail.

Yeah thats way too large. Honestly it has a hard time if it is more than 100, maybe I should put a hard cap in there.

The majority of crypto wallets suffer from this DB issue and once the file size gets to around 500MB or more it virtually becomes unusable.

Wait i thought you meant splitting into 400-500 inputs. Is that not what you meant?

Sorry about that... the latter stuff is just the byproduct of all the stuff  combined (as a large wallet.dat file), but yes, the number of inputs is the main culprit which basically affect the wallets ability to send, combine or split because after a certain number of inputs it fails whether it is selected from the coin control or automatically.

If the big number of UTXO's is your staking strategy (mine too), and that makes your life difficult, you can scale the wallet horizontally, i.e., set up a second staking machine and move a part of UTXO's there. It also adds extra security. I'm starting to think about it Smiley

Ya. I have like 10 machines, but it definitely is an issue when sending a transaction and if it includes over a certain number of blocks (over 500) it will fail to create the transaction.

The best thing to do is to not create transactions that large. I think there is even a limit to transaction size, I will have to look that up in the code.
legendary
Activity: 1288
Merit: 1000
CRYPTO-CITY.COM 🌟 Communities
@Presstab.

I've noticed that when selecting coins for splitting. If the inputs are over 400-500 (I can't remember the exact number) it will fail.

Yeah thats way too large. Honestly it has a hard time if it is more than 100, maybe I should put a hard cap in there.

The majority of crypto wallets suffer from this DB issue and once the file size gets to around 500MB or more it virtually becomes unusable.

Wait i thought you meant splitting into 400-500 inputs. Is that not what you meant?

Sorry about that... the latter stuff is just the byproduct of all the stuff  combined (as a large wallet.dat file), but yes, the number of inputs is the main culprit which basically affect the wallets ability to send, combine or split because after a certain number of inputs it fails whether it is selected from the coin control or automatically.

If the big number of UTXO's is your staking strategy (mine too), and that makes your life difficult, you can scale the wallet horizontally, i.e., set up a second staking machine and move a part of UTXO's there. It also adds extra security. I'm starting to think about it Smiley

Ya. I have like 10 machines, but it definitely is an issue when sending a transaction and if it includes over a certain number of blocks (over 500) it will fail to create the transaction.
sr. member
Activity: 433
Merit: 250
We are the first to program your future (c)
@Presstab.

I've noticed that when selecting coins for splitting. If the inputs are over 400-500 (I can't remember the exact number) it will fail.

Yeah thats way too large. Honestly it has a hard time if it is more than 100, maybe I should put a hard cap in there.

The majority of crypto wallets suffer from this DB issue and once the file size gets to around 500MB or more it virtually becomes unusable.

Wait i thought you meant splitting into 400-500 inputs. Is that not what you meant?

Sorry about that... the latter stuff is just the byproduct of all the stuff  combined (as a large wallet.dat file), but yes, the number of inputs is the main culprit which basically affect the wallets ability to send, combine or split because after a certain number of inputs it fails whether it is selected from the coin control or automatically.

If the big number of UTXO's is your staking strategy (mine too), and that makes your life difficult, you can scale the wallet horizontally, i.e., set up a second staking machine and move a part of UTXO's there. It also adds extra security. I'm starting to think about it Smiley
legendary
Activity: 1288
Merit: 1000
CRYPTO-CITY.COM 🌟 Communities
@Presstab.

I've noticed that when selecting coins for splitting. If the inputs are over 400-500 (I can't remember the exact number) it will fail.

Yeah thats way too large. Honestly it has a hard time if it is more than 100, maybe I should put a hard cap in there.

The majority of crypto wallets suffer from this DB issue and once the file size gets to around 500MB or more it virtually becomes unusable.

Wait i thought you meant splitting into 400-500 inputs. Is that not what you meant?

Sorry about that... the latter stuff is just the byproduct of all the stuff  combined (as a large wallet.dat file), but yes, the number of inputs is the main culprit which basically affect the wallets ability to send, combine or split because after a certain number of inputs it fails whether it is selected from the coin control or automatically.

This is what I mean: https://www.crypto-city.com/index.php/photo/5750/selections-in-coin-control-over-a-certain-quantity-will-throw-a-fail-to-cre/
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
@Presstab.

I've noticed that when selecting coins for splitting. If the inputs are over 400-500 (I can't remember the exact number) it will fail.

Yeah thats way too large. Honestly it has a hard time if it is more than 100, maybe I should put a hard cap in there.

The majority of crypto wallets suffer from this DB issue and once the file size gets to around 500MB or more it virtually becomes unusable.

Wait i thought you meant splitting into 400-500 inputs. Is that not what you meant?
legendary
Activity: 1288
Merit: 1000
CRYPTO-CITY.COM 🌟 Communities
@Presstab.

I've noticed that when selecting coins for splitting. If the inputs are over 400-500 (I can't remember the exact number) it will fail.

Yeah thats way too large. Honestly it has a hard time if it is more than 100, maybe I should put a hard cap in there.

The majority of crypto wallets suffer from this DB issue and once the file size gets to around 500MB or more it virtually becomes unusable.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
@Presstab.

I've noticed that when selecting coins for splitting. If the inputs are over 400-500 (I can't remember the exact number) it will fail.

Yeah thats way too large. Honestly it has a hard time if it is more than 100, maybe I should put a hard cap in there.
legendary
Activity: 1288
Merit: 1000
CRYPTO-CITY.COM 🌟 Communities
@Presstab.

I've noticed that when selecting coins for splitting. If the inputs are over 400-500 (I can't remember the exact number) it will fail.
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
HYP works very well. There is no need to make a different coin.

Yes there is. We need a new HYP to go to 10000 satoshi to be filthy rich.

hire presstab to re-make one lol

Yeah, I dont see anything holding anyone back from making their own coin. Good luck with it!!
hero member
Activity: 714
Merit: 500
Skol!
HYP works very well. There is no need to make a different coin.

Yes there is. We need a new HYP to go to 10000 satoshi to be filthy rich.
legendary
Activity: 1212
Merit: 1052
Yes, good to see you here. I also follow you on PIVX thread, great job.
Last days seems that hypef wants to take off at least a little on Cryptopia.

Does anyone know the pricing to get HYP onto a different exchange? I know we used to be on bittrex, I wonder what it would take to get us back.

Cryptopia is a great functional exchange, but I don't think big money is there.
Poswallet is a new exchange that looks pretty well, although I think they have a lot of work ahead.
In addition, this exchange has a new feature, which is that you can stake your POS coins there. This is a very good idea for the people that don't want or cannot have the wallet open 24/7.
Seems to have a good future, who knows.

To add the coin, you need 1000 votes, and you can buy them for 11 POSWs each. POSW worth 5000 satos, so that's it's 0.55BTC
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
HYP works very well. There is no need to make a different coin.
hero member
Activity: 714
Merit: 500
Skol!
Yes, good to see you here. I also follow you on PIVX thread, great job.
Last days seems that hypef wants to take off at least a little on Cryptopia.

Does anyone know the pricing to get HYP onto a different exchange? I know we used to be on bittrex, I wonder what it would take to get us back.

Cryptopia is a great functional exchange, but I don't think big money is there.

Make a new truckcoin/hyperstake coin please. I believe in you.
legendary
Activity: 1288
Merit: 1000
CRYPTO-CITY.COM 🌟 Communities
Yes, good to see you here. I also follow you on PIVX thread, great job.
Last days seems that hypef wants to take off at least a little on Cryptopia.

Does anyone know the pricing to get HYP onto a different exchange? I know we used to be on bittrex, I wonder what it would take to get us back.

Cryptopia is a great functional exchange, but I don't think big money is there.

Livecoin.net is decent, but they are currently not accepting any new coins. I already got it on two other exchanges, but the volumes are insignificant. There's really not a whole lot to choose from at the moment.

Cryptopia's volume should continue to increase over time as more users come on to the exchange. I'm market making HYP on all the exchanges that it's trading on or at least the ones I'm aware of.
Pages:
Jump to: