Pages:
Author

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

legendary
Activity: 1050
Merit: 1000
I have blocks of 5447 at 13 days age. When should I expect them to stake? Qt says 3-5 but it hasn't changed in a few days.
Thanks

you should of done 15k or 20k
member
Activity: 105
Merit: 10
I have blocks of 5447 at 13 days age. When should I expect them to stake? Qt says 3-5 but it hasn't changed in a few days.
Thanks
legendary
Activity: 1610
Merit: 1000
Crackpot Idealist
@Lightsplasher, Billotronic and Iantunc

I am compiling right now, seems to work :-)

Problem was that I had disallowed any kinds of updates/downloads in the Ubuntu Settings.

Thanks again!

Tip was sent out to Lightsplasher.
Billotronic, Iantunc, if you would like a tip just drop me an address.

Glad you got it working bud!
sr. member
Activity: 371
Merit: 250
@Lightsplasher, Billotronic and Iantunc

I am compiling right now, seems to work :-)

Problem was that I had disallowed any kinds of updates/downloads in the Ubuntu Settings.

Thanks again!

Tip was sent out to Lightsplasher.
Billotronic, Iantunc, if you would like a tip just drop me an address.

Thank you for the tip!  I'm glad you got things working, Ubuntu can be tricky sometimes but it is worth it if you ask me.  It works good for minting and building wallets from source for Hyperstake and many other coins. Smiley
legendary
Activity: 1050
Merit: 1000
full member
Activity: 235
Merit: 100
@Lightsplasher, Billotronic and Iantunc

I am compiling right now, seems to work :-)

Problem was that I had disallowed any kinds of updates/downloads in the Ubuntu Settings.

Thanks again!

Tip was sent out to Lightsplasher.
Billotronic, Iantunc, if you would like a tip just drop me an address.
sr. member
Activity: 433
Merit: 250
We are the first to program your future (c)
кapoчe пипeц пpишёл hyp-py , cдyлcя.

xм, гpядyт юзкeйcы. a ceйчac вpeмя cкидoк.
legendary
Activity: 1610
Merit: 1000
Crackpot Idealist
just to make sure, you did the sudo apt-get update?

ffs thats very interesting.
sr. member
Activity: 433
Merit: 250
We are the first to program your future (c)
5.2.1

Code:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev libminiupnpc-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler git libqrencode-dev libdb4.8-dev libdb4.8++-dev


Hi billotronic,

thanks for this step by step guide, but it's not working yet. It is saying

Code:
Paket autoconf ist nicht verfügbar, wird aber von einem anderen Paket
referenziert. Das kann heißen, dass das Paket fehlt, dass es abgelöst
wurde oder nur aus einer anderen Quelle verfügbar ist.

Paket libtool ist nicht verfügbar, wird aber von einem anderen Paket
referenziert. Das kann heißen, dass das Paket fehlt, dass es abgelöst
wurde oder nur aus einer anderen Quelle verfügbar ist.

E: Für Paket »libtool« existiert kein Installationskandidat.
E: Paket autotools-dev kann nicht gefunden werden.
E: Für Paket »autoconf« existiert kein Installationskandidat.
E: Paket libssl-dev kann nicht gefunden werden.
E: Paket libboost-all-dev kann nicht gefunden werden.
E: Paket libminiupnpc-dev kann nicht gefunden werden.
E: Paket qttools5-dev kann nicht gefunden werden.
E: Paket qttools5-dev-tools kann nicht gefunden werden.
E: Paket libprotobuf-dev kann nicht gefunden werden.
E: Paket protobuf-compiler kann nicht gefunden werden.
E: Paket git kann nicht gefunden werden.
E: Paket libqrencode-dev kann nicht gefunden werden.

This means, that libtool and autoconf are not available, but are "refered to" by other packages.
Maybe I should update Ubuntu and try again. I always switch off auto-updates.
Any of those other packagages could not be found.

 
By the way, I am a Linux-noob, but I have taken some security measures, because of the danger from pre-compiled clients:
-I have compiled my kernel with GrSecurity (was able to do that following a step by step guide).
-I always open wallets of reputable coins like Peercoin first and unlock them, and less reputable ones later. That way, if one of the less reputable wallets has a keylogger, it will never be able to read the passwords of the more reputable coins. At least not from keystrokes.

I am a noob only compared to the average Bitcoiner. Compared to the average joe I am quite skilled.


What is your release version?

Code:
lsb_release -a

It's rather strange that you have no Autotools packages, they are included in official repos since Ubuntu 12.04.

Check manually whether you have needed installation candidates:

Code:
apt-cache search libtool && apt-cache search autoconf

If no, you can either install these packages from .deb file (they will need dependencies) or try to change repository sources to another release, which is not recommended.

You can also generate the makefile without Autotools, using qmake.

It means that you won't need to install Autotools components:

Code:
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install build-essential libssl-dev libboost-all-dev libminiupnpc-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler git libqrencode-dev libdb4.8-dev libdb4.8++-dev
sudo mkdir /wallets
cd /wallets
sudo git clone git://github.com/hyperstake/HyperStake
cd HyperStake
sudo qmake HyperStake-qt.pro
sudo make

You'll find the build in the ../HyperStake/release folder.

Note that you won't be able to compile the wallet on Ubuntu 12.04 if you install libboost-all-dev from native sources. You'll need at least libboost1.54.

Code:
sudo add-apt-repository ppa:boost-latest/ppa
sudo apt-get update
sudo apt-get install libboost1.55-all-dev
full member
Activity: 235
Merit: 100
5.2.1

Code:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev libminiupnpc-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler git libqrencode-dev libdb4.8-dev libdb4.8++-dev


Hi billotronic,

thanks for this step by step guide, but it's not working yet. It is saying

Code:
Paket autoconf ist nicht verfügbar, wird aber von einem anderen Paket
referenziert. Das kann heißen, dass das Paket fehlt, dass es abgelöst
wurde oder nur aus einer anderen Quelle verfügbar ist.

Paket libtool ist nicht verfügbar, wird aber von einem anderen Paket
referenziert. Das kann heißen, dass das Paket fehlt, dass es abgelöst
wurde oder nur aus einer anderen Quelle verfügbar ist.

E: Für Paket »libtool« existiert kein Installationskandidat.
E: Paket autotools-dev kann nicht gefunden werden.
E: Für Paket »autoconf« existiert kein Installationskandidat.
E: Paket libssl-dev kann nicht gefunden werden.
E: Paket libboost-all-dev kann nicht gefunden werden.
E: Paket libminiupnpc-dev kann nicht gefunden werden.
E: Paket qttools5-dev kann nicht gefunden werden.
E: Paket qttools5-dev-tools kann nicht gefunden werden.
E: Paket libprotobuf-dev kann nicht gefunden werden.
E: Paket protobuf-compiler kann nicht gefunden werden.
E: Paket git kann nicht gefunden werden.
E: Paket libqrencode-dev kann nicht gefunden werden.

This means, that libtool and autoconf are not available, but are "refered to" by other packages.
Maybe I should update Ubuntu and try again. I always switch off auto-updates.
Any of those other packagages could not be found.

 
By the way, I am a Linux-noob, but I have taken some security measures, because of the danger from pre-compiled clients:
-I have compiled my kernel with GrSecurity (was able to do that following a step by step guide).
-I always open wallets of reputable coins like Peercoin first and unlock them, and less reputable ones later. That way, if one of the less reputable wallets has a keylogger, it will never be able to read the passwords of the more reputable coins. At least not from keystrokes.

I am a noob only compared to the average Bitcoiner. Compared to the average joe I am quite skilled.
legendary
Activity: 1610
Merit: 1000
Crackpot Idealist
I am a Linux-Noob, but using Linux (Ubuntu) for staking coins. For security reasons.

Hyperstake is the first coin that I want to buy, which does not have a pre-compiled wallet for Linux.

I have downloaded the hyperstake-1.1.1.2.tar.gz file and unpacked it.

So how do I compile this? Please explain like I am 5.


Well then you have come to the right place bud

1. If at all possible, never download bin's for linux. Seriously, thats why you are using linux. If you wanted precompiled surprises, go back to Windoze

2. That being said, to compile things from source is not always the easiest thing in the world to do so #2 is ASK QUESTIONS!!! always, no matter how stupid you think it might be.

3. 99.99% of coins have a github. Within said gitub is a folder named "Doc" in which you can find all kinds of fun info. In your case, you want to look at build-unix.md which is the general compile instructions for *nix OS's.

4. I forget what 4 was

5. SO this being your first rodeo, you need to download and install the required dependencies to cook HyperStake (and damn near any other coin you would like to compile). This can be a little daunting at first, but the bright side is you pretty much only have to do this once.

5.1 Lets assume doing it the 'right' way

5.2 In a terminal type:

Code:
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update

5.2.1

Code:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev libminiupnpc-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler git libqrencode-dev libdb4.8-dev libdb4.8++-dev

this will download and install all your dependencies

6. Now lets get the source code from github

Code:
git clone http://github.com/hyperstake/hyperstake

F.2. Now lets cook

Code:
cd hyperstake
./autogen.sh
./configure --with-gui=qt5 --enable-upnp-default
make

*protip make can be ran multithreaded to speed up the compile. So if you have a pc with a 4 core processor, you could run:

Code:
make -j4

This will produce HyperStake-Qt in the folder hyperstake/src/qt. You can now move this where ever you would like it to live




sr. member
Activity: 371
Merit: 250
I am a Linux-Noob, but using Linux (Ubuntu) for staking coins. For security reasons.

Hyperstake is the first coin that I want to buy, which does not have a pre-compiled wallet for Linux.

I have downloaded the hyperstake-1.1.1.2.tar.gz file and unpacked it.

So how do I compile this? Please explain like I am 5.


I installed QT Creator from the Ubuntu software center and use that to build the wallet by clicking the '.pro' file and building the 'release' version.  There are detailed instructions on installing the dependencies needed for compiling in the source code 'doc' directory. Basically you can use the 'apt-get' command in the terminal for this (alt-control-t to open terminal).  I got the source code by cloning the repository using git command: 'git clone https://github.com/hyperstake/HyperStake.git'  Running the command: 'git pull' in the resulting directory will get the latest source code changes so you can easily build the newest version using QT Creator the next time things change.  I hope that helps.
member
Activity: 62
Merit: 10
liberty
i was staking every 3 days or so a few weeks ago and now it hasn't staked in over a week.

i blame you all

i will invoke the law of trump and call you all losers if you don't explain it
noob

that's mr. noob to you dredd
full member
Activity: 235
Merit: 100
I am a Linux-Noob, but using Linux (Ubuntu) for staking coins. For security reasons.

Hyperstake is the first coin that I want to buy, which does not have a pre-compiled wallet for Linux.

I have downloaded the hyperstake-1.1.1.2.tar.gz file and unpacked it.

So how do I compile this? Please explain like I am 5.
sr. member
Activity: 289
Merit: 250
i was staking every 3 days or so a few weeks ago and now it hasn't staked in over a week.

i blame you all

i will invoke the law of trump and call you all losers if you don't explain it
noob
member
Activity: 62
Merit: 10
liberty
i was staking every 3 days or so a few weeks ago and now it hasn't staked in over a week.

i blame you all

i will invoke the law of trump and call you all losers if you don't explain it
sr. member
Activity: 461
Merit: 250
Just grabbed a million HYP at 60 sat Smiley
You decadent pervert !   Grin
legendary
Activity: 1330
Merit: 1000
Blockchain Developer
Make a block locker, so I can lock a certain range of block age so I can stake only a portion of my total amount. what you think ?

Could mimick the locking code that I have in place for XRA. Definitely doable, I will see if I can throw it together.
sr. member
Activity: 289
Merit: 250
Just grabbed a million HYP at 60 sat Smiley
sr. member
Activity: 557
Merit: 250
hyperstake.conf
addnode=192.52.166.241:18775
addnode=108.26.16.175:18775
addnode=46.236.161.66:18775
addnode=23.88.59.245:50527
addnode=178.33.64.233:47171
addnode=86.181.101.168:55546
addnode=45.32.199.52:42702
addnode=84.112.54.199:56282
addnode=79.108.2.146:56320
addnode=73.38.41.211:18775
addnode=50.149.214.130:61904
addnode=73.229.187.211:18775
Good Luck!

But these are not good?
addnode=62.228.61.172
addnode=109.2.161.14
addnode=173.173.81.15
addnode=91.178.224.89
addnode=73.204.124.8
addnode=172.90.241.198
addnode=144.76.80.131
addnode=177.11.30.34
addnode=104.159.241.2
addnode=83.251.242.75
addnode=46.105.158.201
addnode=84.112.54.199
addnode=93.123.163.96
addnode=24.146.182.241
addnode=50.163.2.199
addnode=173.77.8.142
addnode=52.89.174.139
addnode=111.168.253.166
addnode=213.243.132.216
addnode=85.245.102.195
addnode=70.48.66.182
addnode=204.210.244.244
addnode=204.11.237.233
addnode=95.91.235.22
addnode=81.207.93.95
addnode=173.54.201.49
addnode=159.203.73.194
addnode=203.189.130.130
addnode=207.200.46.226
addnode=46.164.230.195
addnode=92.14.193.102
addnode=178.0.21.29
addnode=89.40.185.251
addnode=86.143.162.55
addnode=162.255.117.105
addnode=72.186.22.189
addnode=95.94.219.157
addnode=96.127.136.18
addnode=71.9.170.207
addnode=47.17.90.194
addnode=72.185.23.235
addnode=208.107.133.151
addnode=81.191.27.5
addnode=97.121.11.222
addnode=24.254.130.111
addnode=73.70.55.162
addnode=85.3.194.145
addnode=73.38.41.211
addnode=223.207.189.52
addnode=24.37.87.66
addnode=78.147.171.85
addnode=208.88.173.178
addnode=177.94.127.133
addnode=81.11.238.88
addnode=67.44.193.73
addnode=85.76.134.207
addnode=173.245.158.238
addnode=68.193.116.242
addnode=50.149.214.130
addnode=84.122.163.180
addnode=79.108.2.146
addnode=86.181.101.168
addnode=46.236.161.66
addnode=93.137.220.73
addnode=45.63.16.204
addnode=69.70.94.86
addnode=95.25.15.98
addnode=203.189.130.130
addnode=84.72.115.99
addnode=186.151.63.99
addnode=70.127.70.223
addnode=78.48.62.195
addnode=66.49.225.104
addnode=191.114.196.181
addnode=24.51.169.159
addnode=89.72.138.167
addnode=119.224.95.5
addnode=192.230.172.18
addnode=24.159.50.13
addnode=216.240.130.115
addnode=31.6.169.166
addnode=101.165.17.118
addnode=93.56.45.44
addnode=67.188.197.9
addnode=75.129.166.155
addnode=202.137.173.26
addnode=174.4.8.138
Pages:
Jump to: