Bitcoin Forum
May 14, 2024, 01:49:52 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 ... 386 »
  Print  
Author Topic: [HYP] HyperStake | Generous Reward Staking | Advanced Staking Controls & Wallet  (Read 679272 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
Rakete4
Full Member
***
Offline Offline

Activity: 235
Merit: 100


View Profile
February 26, 2016, 10:33:04 PM
 #5761

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.
1715651392
Hero Member
*
Offline Offline

Posts: 1715651392

View Profile Personal Message (Offline)

Ignore
1715651392
Reply with quote  #2

1715651392
Report to moderator
1715651392
Hero Member
*
Offline Offline

Posts: 1715651392

View Profile Personal Message (Offline)

Ignore
1715651392
Reply with quote  #2

1715651392
Report to moderator
1715651392
Hero Member
*
Offline Offline

Posts: 1715651392

View Profile Personal Message (Offline)

Ignore
1715651392
Reply with quote  #2

1715651392
Report to moderator
"You Asked For Change, We Gave You Coins" -- casascius
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715651392
Hero Member
*
Offline Offline

Posts: 1715651392

View Profile Personal Message (Offline)

Ignore
1715651392
Reply with quote  #2

1715651392
Report to moderator
1715651392
Hero Member
*
Offline Offline

Posts: 1715651392

View Profile Personal Message (Offline)

Ignore
1715651392
Reply with quote  #2

1715651392
Report to moderator
1715651392
Hero Member
*
Offline Offline

Posts: 1715651392

View Profile Personal Message (Offline)

Ignore
1715651392
Reply with quote  #2

1715651392
Report to moderator
clf99
Member
**
Offline Offline

Activity: 62
Merit: 10

liberty


View Profile
February 26, 2016, 10:57:17 PM
 #5762

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

Every year the world is getting more peaceful.
Lightsplasher
Sr. Member
****
Offline Offline

Activity: 371
Merit: 250


View Profile
February 26, 2016, 11:21:27 PM
 #5763

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.
billotronic
Legendary
*
Offline Offline

Activity: 1610
Merit: 1000


Crackpot Idealist


View Profile
February 27, 2016, 03:18:57 AM
 #5764

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





This post sums up why all this bullshit is a scam
Read It. Hate It. Change the facts that it represents.
https://bitcointalk.org/index.php?topic=1606638.msg16139644#msg16139644
Rakete4
Full Member
***
Offline Offline

Activity: 235
Merit: 100


View Profile
February 27, 2016, 09:36:32 PM
 #5765

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.
iantunc
Sr. Member
****
Offline Offline

Activity: 433
Merit: 250


We are the first to program your future (c)


View Profile
February 28, 2016, 12:14:20 AM
Last edit: February 28, 2016, 07:14:07 PM by iantunc
 #5766

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

HyperStake bootstrap server - hyperstrap.ml
HyperStake supply gain prediction graph - hypsupply.ml
billotronic
Legendary
*
Offline Offline

Activity: 1610
Merit: 1000


Crackpot Idealist


View Profile
February 28, 2016, 04:19:02 AM
 #5767

just to make sure, you did the sudo apt-get update?

ffs thats very interesting.

This post sums up why all this bullshit is a scam
Read It. Hate It. Change the facts that it represents.
https://bitcointalk.org/index.php?topic=1606638.msg16139644#msg16139644
iantunc
Sr. Member
****
Offline Offline

Activity: 433
Merit: 250


We are the first to program your future (c)


View Profile
February 28, 2016, 07:16:00 AM
 #5768

кapoчe пипeц пpишёл hyp-py , cдyлcя.

xм, гpядyт юзкeйcы. a ceйчac вpeмя cкидoк.

HyperStake bootstrap server - hyperstrap.ml
HyperStake supply gain prediction graph - hypsupply.ml
Rakete4
Full Member
***
Offline Offline

Activity: 235
Merit: 100


View Profile
February 28, 2016, 10:01:14 PM
 #5769

@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.
kahir
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
February 28, 2016, 10:53:05 PM
 #5770

WTB 3m hyperstake pm me
Lightsplasher
Sr. Member
****
Offline Offline

Activity: 371
Merit: 250


View Profile
February 28, 2016, 10:55:34 PM
 #5771

@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
billotronic
Legendary
*
Offline Offline

Activity: 1610
Merit: 1000


Crackpot Idealist


View Profile
February 28, 2016, 11:00:34 PM
 #5772

@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!

This post sums up why all this bullshit is a scam
Read It. Hate It. Change the facts that it represents.
https://bitcointalk.org/index.php?topic=1606638.msg16139644#msg16139644
ilidion
Member
**
Offline Offline

Activity: 105
Merit: 10


View Profile
February 29, 2016, 07:09:50 AM
 #5773

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
kahir
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
February 29, 2016, 07:30:51 AM
 #5774

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
sparksi
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500


View Profile
February 29, 2016, 07:41:38 AM
 #5775

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 get few stakes during next 10 days.
ilidion
Member
**
Offline Offline

Activity: 105
Merit: 10


View Profile
February 29, 2016, 08:34:29 AM
 #5776

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
Will do as soon as I get them to stake. Thanks




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 get few stakes during next 10 days.
Ok. I was hoping for less but patience is a virtue. I guess....
Trimegistus
Legendary
*
Offline Offline

Activity: 1564
Merit: 1027



View Profile
February 29, 2016, 11:11:17 AM
 #5777

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

I have some 4,5k blocks older than 120 days and the wallet shows they still have 46 more days to go... This is the new HYP reality. If you don't want to wait, increase your block size to 15k or 20k

clf99
Member
**
Offline Offline

Activity: 62
Merit: 10

liberty


View Profile
February 29, 2016, 08:32:51 PM
 #5778

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

I have some 4,5k blocks older than 120 days and the wallet shows they still have 46 more days to go... This is the new HYP reality. If you don't want to wait, increase your block size to 15k or 20k

so what is the current inflation rate?

Every year the world is getting more peaceful.
Trimegistus
Legendary
*
Offline Offline

Activity: 1564
Merit: 1027



View Profile
February 29, 2016, 08:47:17 PM
 #5779

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

I have some 4,5k blocks older than 120 days and the wallet shows they still have 46 more days to go... This is the new HYP reality. If you don't want to wait, increase your block size to 15k or 20k

so what is the current inflation rate?

Honestly? I have no idea  Grin

billotronic
Legendary
*
Offline Offline

Activity: 1610
Merit: 1000


Crackpot Idealist


View Profile
February 29, 2016, 08:48:29 PM
 #5780

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

I have some 4,5k blocks older than 120 days and the wallet shows they still have 46 more days to go... This is the new HYP reality. If you don't want to wait, increase your block size to 15k or 20k

so what is the current inflation rate?

average is sitting around 240% which can be seen here http://www.presstab.pw/phpexplorer/HYP/index.php

This post sums up why all this bullshit is a scam
Read It. Hate It. Change the facts that it represents.
https://bitcointalk.org/index.php?topic=1606638.msg16139644#msg16139644
Pages: « 1 ... 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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 ... 386 »
  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!