create account

Qtum Staking Tutorial using qtumd on a Raspberry Pi 3 by cryptominder

View this thread on: hive.blogpeakd.comecency.com
· @cryptominder · (edited)
Qtum Staking Tutorial using qtumd on a Raspberry Pi 3
![qtom_logo.png](https://steemitimages.com/DQmPnwwDmDikYZWmRGRbFUdGNiQCWL9deMmGubxDCRGkGiJ/qtom_logo.png)

## Intro

In an [earlier post](https://steemit.com/qtum/@cryptominder/qtum-staking-tutorial-using-qtum-qt), I described how to stake QTUM coins using the **qtum-qt** GUI wallet.  That method of staking is appropriate to use on your desktop/laptop, but the main drawback is that you will not be staking your coins as soon you are no longer synchronized with the Qtum blockchain (e.g. due to being disconnected from wifi, etc.)

I had originally intended to follow that [post](https://steemit.com/qtum/@cryptominder/qtum-staking-tutorial-using-qtum-qt) with a tutorial describing how to stake QTUM coins using a cloud hosting provider (e.g. DigitalOcean, etc.)  However, after reviewing the associated costs, I came to the conclusion that using a [Single-Board Computer (SBC)](https://en.wikipedia.org/wiki/Single-board_computer) such as the [Raspberry Pi 3](https://www.raspberrypi.org/products/raspberry-pi-3-model-b/) would make better financial sense for most people intending to stake QTUM coins.  The total cost for building and running a Raspberry Pi for staking is approximately $56 (US Dollars) + a minimal amount of electricity (and an internet connection).  Since you'll likely want to keep your Qtum wallet/node running for a long period of time (e.g. forever), the monthly "rental" costs of a (cloud/VPS) compute instance would easily exceed the cost of a Raspberry Pi.

While this tutorial is intended for use with the [Raspberry Pi 3](https://www.raspberrypi.org/products/raspberry-pi-3-model-b/), it should **also be helpful for people interested in staking on a regular computer** as many of the steps would be similar.

If you ever need help with this tutorial (or related topics), please reach out to the [Qtum community on Slack](https://slack.qtum.org) in the **qtum-pi** channel.

**NOTE**: This is not an official post from the Qtum (Quantum) team. I'm merely a fan.


## Bill of Materials

For this tutorial, you'll need the following hardware:
- A [Raspberry Pi 3 Model B](https://www.raspberrypi.org/products/raspberry-pi-3-model-b/) with a compatible [2.5A@+5.1V power supply/adapter](https://www.raspberrypi.org/documentation/hardware/raspberrypi/power/README.md).
- A MicroSD card with at least 8GB of space.  There may be complications with SD cards larger than 32GB.  Also, I recommending choosing an SD card which supports [wear leveling]( https://en.wikipedia.org/wiki/Wear_leveling) to help increase the SD card lifespan.  Here's a useful guide to help you pick an SD card: http://elinux.org/RPi_SD_cards .
- A MicroSD/SD card reader/writer (many laptops/desktops already have one).  You'll likely also need a full-size [MicroSD adapter](https://learn.sparkfun.com/tutorials/sd-cards-and-writing-images) for this.

**NOTE**: Most of the links above point to [https://www.raspberrypi.org](https://www.raspberrypi.org), but you can find the equipment at many eCommerce shops.  I recommend getting a **kit** if you don't already have some of the equipment.

The following equipment is optional (and won't be discussed very much in this post):
- A [case](https://www.raspberrypi.org/products/raspberry-pi-3-case/).  I recommend using a clear case.
- An extra MicroSD card (with at least 8GB of space) in case the other one breaks (or [gets worn out](http://www.makeuseof.com/tag/extend-life-raspberry-pis-sd-card/)).
- A [heatsink](http://bigl.es/the-great-raspberry-pi-heatsink-test/), although I haven't seen the need (the wallet/node is idle most of the time).
- [An OLED graphic display](https://github.com/rm-hull/luma.oled#documentation) + wiring. A cheap $10 (US Dollar) I2C 128x64 OLED display will work just fine.

Lastly, in terms of (free) software, you'll need:
- [Raspbian Stretch Lite OS](https://www.raspberrypi.org/downloads/raspbian/).  Version `2017-09-07` is the latest at the time of this writing.
- [Etcher](https://etcher.io/) (version v1.1.2 or later) to burn the OS onto the SD card.


## Assumptions

I will be making the following assumptions in this tutorial:
- You are comfortable with using the [Unix shell](https://en.wikipedia.org/wiki/Unix_shell) (e.g. bash), Unix commands, and tools (e.g. tar).  The [Raspbian OS](https://en.wikipedia.org/wiki/Raspbian) is a Debian-based Linux OS.
- You are familiar with [**ssh** and **scp**](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks/), and have an **ssh** and **scp** client program on your laptop/desktop (e.g. on Windows you can use [Putty](http://www.putty.org/) for **ssh** and [WinSCP](https://winscp.net/) for **scp**).
- You are comfortable creating and editing files in Unix (e.g. using **vim**, **nano**, etc.).  The alternative is to edit files on your preferred OS (e.g. Windows, macOS/OSX, etc.) and **scp** them to the Raspberry Pi.
- You are using a wireless (wifi) network (although a wired network would work too -- just skip the wifi setup instructions).


## Step 1 - Burning Raspbian Lite onto your SD Card

If you haven't already, download [Raspbian Stretch Lite OS](https://www.raspberrypi.org/downloads/raspbian/) (version `2017-09-07` or later) to your laptop/desktop.

Next, insert your SD card into the SD card writer/burner (you'll likely need to insert the MicroSD card into an SD card adapter first).

Download, install, and start [Etcher](https://etcher.io/) on your laptop/desktop.  Once [Etcher](https://etcher.io/) is started, click on 'Select image' and choose/open the [Raspbian Stretch Lite OS](https://www.raspberrypi.org/downloads/raspbian/) .zip file that you downloaded earlier.  The 'Drive' should already be selected for you (if not, select the drive where you put the SD card).  Finally, click on "Flash!".

![etcher.png](https://steemitimages.com/DQmVVHHtshancWuEPEJoXEw4VNvfM1ZDxFRSbKZtPspGjT3/etcher.png)

It will take a few minutes for [Etcher](https://etcher.io/) to flash and verify.

After burning with [Etcher](https://etcher.io/), the SD card is likely unmounted/ejected.  If so, remove and **re-insert** the SD card from/into your laptop/desktop.

**IMPORTANT**: In the steps below, we'll assume the SD card is mounted at `$SDCARD_MOUNT_DIR` (e.g. on macOS/OSX this might be **/Volumes/boot**).


## Step 2 - Enabling SSH

We'll be using [ssh](https://www.ssh.com/ssh/command/) to access the Raspberry Pi.  To enable [ssh](https://www.ssh.com/ssh/command/) (and [scp](https://www.ssh.com/ssh/scp/)) on your Raspberry Pi, you must create a file named `ssh` on your SD card (in the top-most directory).

You can run the following on macOS/OSX and Linux:
```
$ touch $SDCARD_MOUNT_DIR/ssh
```

On Windows (assuming the command-line prompt is `>`), you can do:
```
> type nul > %SDCARD_MOUNT_DIR%\ssh
```
(or, you can use Windows Explorer to create the empty `ssh` file)

See the section entitled "**ENABLE SSH ON A HEADLESS RASPBERRY PI**" at https://www.raspberrypi.org/documentation/remote-access/ssh/ for further details.


## Step 3 - Configuring Wifi

If you'll be using a wired network connection to your Raspberry Pi, then you can skip this step.

To enable and configure wifi on your Raspberry Pi, you'll need to create a file on your SD card named `$SDCARD_MOUNT_DIR/wpa_supplicant.conf` with the following content:

```
country=US
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
    ssid="<your_network_ssid>"
    psk="<your_network_passphrase>"
    key_mgmt=WPA-PSK
}
```

The value given to `country` above (e.g. US) should be an [ISO 3166 alpha-2 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).  For example "CA" for Canada, "CN" for China, "SG" for Singapore, "RU" for the Russian Federation, etc.

Obviously, replace `<your_network_ssid>` and `<your_network_passphrase>` with your **wireless SSID** and the **passphrase**.

You can find out more abut how to configure this file at: https://wireless.wiki.kernel.org/en/users/documentation/wpa_supplicant .



## Step 4 - Starting and Accessing your Raspberry Pi

After creating the `ssh` and (optionally) the `wpa_supplicant.conf` file(s) on your SD card, eject the SD card from your laptop/desktop.

Insert the MicroSD into your Raspberry Pi, and plug-in the power supply.  Wait about 1 minute for your Raspberry Pi to boot up.

Next, we'll check to see if your SSH and wifi configuration worked properly.  Normally, your Raspberry Pi will register itself with your router's DNS as `raspberrypi.local`.  Also, the **pi** user account will pre-created (**NOTE**: this user account can also `sudo`).  Let's try to access your Raspberry Pi using `ssh` (you can use [Putty](http://www.putty.org/) on Windows):
```
$ ssh pi@raspberrypi.local
```

You should see something like this:
```
pi@raspberrypi.local's password:
Linux raspberrypi 4.9.41-v7+ #1023 SMP Tue Aug 8 16:00:15 BST 2017 armv7l

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.

SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password.

pi@raspberrypi:~ $
```
The default password for the **pi** user is **raspberry** (we'll change this later).

**NOTE**: You may get something like this first:
```
Warning: the ECDSA host key for 'raspberrypi.local' differs from the key for the IP address 'xxx'
Offending key for IP in /Users/cryptominder/.ssh/known_hosts:xxx
Matching host key in /Users/cryptominder/.ssh/known_hosts:xxx
Are you sure you want to continue connecting (yes/no)?
```
If so, feel free to continue by typing `yes`.

If you're not able to access your Raspberry Pi using `raspberrypi.local`, then check your router to see which IP address it may have received.  Alternatively, you can use a wired/ethernet connection.

As mentioned earlier, if you run into problems, please ask questions in the comment section below or reach out to the [Qtum community on Slack](https://slack.qtum.org) in the **qtum-pi** channel.


## Step 5 - A Little Bit of Admin Work...

You may have noticed the following warning message when you logged-in:
```
SSH is enabled and the default password for the 'pi' user has not been changed.
This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password.
```

It's a good idea to change the default password for the **pi** user, so type:
```
$ passwd
```
And follow the prompts to change the password.

We'll also want to make sure we have the latest packages (e.g. security fixes, etc.), so run:
```
$ sudo apt-get update
$ sudo apt-get upgrade -y
```


If you are using wifi, you also need disable wifi power management.  Type the following command:
```
$ iwconfig
```
You should see `Power Management:on` shown for the `wlan0` interface.  We need to turn that off.

To disable power management, create a file at `/etc/network/interfaces.d/wlan0` with the following content:
```
auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
wireless-power off
iface default inet dhcp
```

&nbsp;

Lastly, we'd normally create a separate user to run the **qtumd** Qtum wallet/node, but we'll leave this as an exercise for the reader...

When the steps above are done, perform a reboot to make sure the system is still accessible after a restart:
```
$ sudo reboot
```


## Step 6 - Download and install the latest Qtum wallet

Download the Qtum wallet binary named `qtum-0.14.2-arm-linux-gnueabihf.tar.gz` at https://github.com/qtumproject/qtum/releases/tag/testnet-skynet-v1.2 onto your laptop/desktop.  Skynet v1.2 (i.e. qtum-0.14.2) is the latest binary at the time of this writing, but the mainnet/Ignition binary will be released soon.  You want to download the Qtum wallet binary suitable for Linux on 32-bit ARM platforms.  Once a new binary is made available, **make sure to change the filename of the .tar.gz file in the commands below**.

After waiting (about 60 seconds) for the Raspberry Pi to come up after rebooting, use `scp` (or WinSCP on Windows) to copy the .tar.gz file to the Raspberry Pi, e.g.:
```
$ scp qtum-0.14.2-arm-linux-gnueabihf.tar.gz pi@raspberrypi.local:~
```
The command above will place `qtum-0.14.2-arm-linux-gnueabihf.tar.gz` in the **pi** user's `$HOME` directory.

**NOTE**: Remember to use the new password for the **pi** user (assuming you changed it in the section above).

Next, `ssh` back to the Raspberry Pi (e.g. `$ ssh pi@raspberrypi.local`).

We'll now extract the .tar.gz file:
```
$ mkdir ~/qtum-wallet
$ tar --strip 1 -C ~/qtum-wallet -xf ~/qtum-0.14.2-arm-linux-gnueabihf.tar.gz
```

You can verify that everything worked by running:
```
$ ~/qtum-wallet/bin/qtumd -version
```
The command above should simply display the wallet version (and other related information).



## Step 7 - Setting up the Qtum Wallet Service

We'll now set up a [systemd](https://en.wikipedia.org/wiki/Systemd) service that will automatically restart your Qtum wallet/node if ever your Raspberry Pi restarts.

Open an editor in Unix to create and edit the following file: `/etc/systemd/system/qtumd.service`.  Insert the following content into that file:
```
[Unit]
Description=Qtum daemon service
After=network.target

[Service]
Type=forking
User=pi
WorkingDirectory=/home/pi/qtum-wallet
ExecStart=/home/pi/qtum-wallet/bin/qtumd -daemon=1 -par=2 -onlynet=ipv4 -noonion -listenonion=0 -maxconnections=24 -rpcbind=127.0.0.1 -rpcallowip=127.0.0.1
PIDFile=/home/pi/.qtum/qtumd.pid
Restart=always
RestartSec=1
KillSignal=SIGQUIT
KillMode=mixed

[Install]
WantedBy=multi-user.target
```

**NOTE**: The above assumes that the binaries were extracted in the **pi** user's home directory in the **qtum-wallet** directory.  If you created a separate user, modify the paths above as well as the value for `User`.

You can also explore using other **qtumd** command-line parameters by running:
```
$ ~/qtum-wallet/bin/qtumd -help
```

The `rpcbind` and `rpcallowip` command-line parameters (as used above in `ExecStart`) ensure that the RPC service (which is a part of the Qtum wallet/node) can only be accessed from the Raspberry Pi (i.e. you won't be able to access it directly from your laptop/desktop).

To ensure the service is run when the Raspberry Pi restarts, run the following:
```
$ sudo systemctl daemon-reload
$ sudo systemctl enable qtumd.service
```


## Step 8 - Starting, Stopping, and Updating the Qtum Wallet Service

To start the Qtum Wallet Service, simply run:
```
$ sudo systemctl start qtumd.service
```

To stop, run:
```
$ sudo systemctl stop qtumd.service
```

If you make modifications to `/etc/systemd/system/qtumd.service`, always make sure that you run:
```
$ sudo systemctl daemon-reload
```
before starting or stopping the service.

You can once again try restarting the Raspberry Pi (e.g. `$ sudo reboot`) to make sure that the Qtum wallet/node is still running after the restart (again, wait about 60 seconds after rebooting before logging back in):
```
$ pgrep -a qtumd
```
This should output something like this:
```
506 /home/pi/qtum-wallet/bin/qtumd -daemon=1 -par=2 -onlynet=ipv4 -noonion -listenonion=0 -maxconnections=24 -rpcbind=127.0.0.1 -rpcallowip=127.0.0.1
```
The `506` number is the process id -- you'll very likely have a different one.  If there isn't any output, it means that your wallet/node isn't running.

To troubleshoot issues, the debug log file at `~/.qtum/debug.log` is the best place to start.


## Step 9 - Using the Qtum Command-Line Tool

Another way to check that the Qtum wallet/node is running properly is to use the **qtum-cli** program.

To check the status of the wallet/node, run:
```
$ ~/qtum-wallet/bin/qtum-cli getinfo
```

There are plenty of other commands that you can explore by running:
```
$ ~/qtum-wallet/bin/qtum-cli help
```

Useful commands include: `getinfo`, `getwalletinfo`, and `getstakinginfo`.  That said, there are many other commands that you may eventually use (and we'll use some of them soon).

**NOTE**: The **qtum-cli** tool uses a file named `.cookie` in the default Qtum wallet/node data directory (i.e. `~/.qtum/`) to authenticate itself for access to the RPC interface of the running **qtumd** wallet/node.  There are other (more secure) methods of access to the **qtumd** RPC interface, but that topic is beyond the scope of this post.


## Step 10 - Encrypting and Unlocking Your Wallet

In a [previous post](https://steemit.com/qtum/@cryptominder/encrypting-backing-up-and-restoring-your-qtum-wallet), I explained how to use the **qtum-qt** Qtum GUI wallet/node program to encrypt, back-up, and restore your wallet.  I **strongly** recommend that you read that post to familiarize yourself with the process, as well as the risks.  There is also information [in that post](https://steemit.com/qtum/@cryptominder/encrypting-backing-up-and-restoring-your-qtum-wallet) that you should be aware of relating to encrypting your wallet.

Before encrypting the wallet, we'll run the following command to show what an **un-encrypted** wallet looks like:
```
$ ~/qtum-wallet/bin/qtum-cli getwalletinfo
```
The command above should display something similar to:
```
{
  "walletversion": 130000,
  "balance": 0.00000000,
  "stake": 0.00000000,
  "unconfirmed_balance": 0.00000000,
  "immature_balance": 0.00000000,
  "txcount": 0,
  "keypoololdest": 1505002808,
  "keypoolsize": 100,
  "paytxfee": 0.00000000,
  "hdmasterkeyid": "5c850a8dff9c0e1a12862af241d19aa4c3f60201"
}
```

The absence of an `unlocked_until` field tells us that the wallet is **not encrypted**.

To encrypt your wallet, first choose a [secure passphrase](https://xkcd.com/936/).  For the example below, let's say that I choose `red dog blue cat` as my passphrase.

Now, on your Raspberry Pi, encrypt your wallet by running:
```
$ ~/qtum-wallet/bin/qtum-cli -stdin encryptwallet
```
The `-stdin` parameter is used to (silently) prompt you for input.  You should now enter your chosen [secure passphrase](https://xkcd.com/936/), and press <Enter/Return>, then press CTRL-D (i.e. press the 'Control'/'Ctrl' button on your keyboard followed by the 'd' button without releasing the 'Control'/'Ctrl' button).  Like this:
```
red dog blue cat
<CTRL-D>
```

You won't initially see anything displayed when you press CTRL-D as it will take a few moments to complete the encryption process.  Once complete, the following message will be displayed:
```
wallet encrypted; Qtum server stopping, restart to run with encrypted wallet. The keypool has been flushed and a new HD seed was generated (if you are using HD). You need to make a new backup.
```

At this point, **you'll want to backup your wallet**.  The newly encrypted `wallet.dat` file will be found at `~/.qtum/wallet.dat`.  You can use `scp` to copy the wallet file off of your Raspberry Pi.  Run the following command on your laptop/desktop to copy it:
```
$ scp pi@raspberrypi.local:~/.qtum/wallet.dat ./rpi_wallet-backup1.dat
```
**VERY IMPORTANT**: Make sure that you securely back-up your encrypted wallet (e.g. `rpi_wallet-backup1.dat` above) in at least 2 locations, and that you also remember the passphrase to unlock it.

The Qtum wallet/node would have stopped as part of the encryption process.  Restart it by running the following commands:
```
$ sudo systemctl stop qtumd.service
$ rm -f ~/.qtum/.lock ~/.qtum/qtumd.pid ~/.qtum/.cookie
$ sudo systemctl start qtumd.service
```
**NOTE**: We stop it first just to make sure it is really stopped, and then removed 3 temporary files that may not have been cleaned up.

Now that your wallet is encrypted, run the following command:
```
$ ~/qtum-wallet/bin/qtum-cli getwalletinfo
```
The command above should now display something similar to:
```
{
  "walletversion": 130000,
  "balance": 16182.49960000,
  "stake": 0.00000000,
  "unconfirmed_balance": 0.00000000,
  "immature_balance": 0.00000000,
  "txcount": 2,
  "keypoololdest": 1504758151,
  "keypoolsize": 101,
  "unlocked_until": 0,
  "paytxfee": 0.00000000,
  "hdmasterkeyid": "b69f65040dc722e473b9bce1dbd0cb34e424a577"
}
```
Notice the presence of the `unlocked_until` field with a value of `0`.  This tells us that the wallet **is encrypted** but it **is locked**.  You cannot stake coins with a locked wallet.

To **unlock** your wallet for staking, run the following command:
```
$ ~/qtum-wallet/bin/qtum-cli -stdin walletpassphrase
```
This once again (silently) prompts you for input.  Type your [secure passphrase](https://xkcd.com/936/), and press <Enter/Return>, then type the number of seconds that you'd like to keep your wallet unlocked, then <Enter/Return>, then 'true' (without the quotes), then <Enter/Return>, and finally CTRL-D.  It will look like this:
```
red dog blue cat
99999999
true
<CTRL-D>
```

**NOTE**: You can enter 'false' instead of 'true' above if you want to unlock your wallet for other purposes than staking (e.g. sending your coins).

After unlocking your wallet, run the following command:
```
$ ~/qtum-wallet/bin/qtum-cli getwalletinfo
```
This should now display something similar to:
```
{
  "walletversion": 130000,
  "balance": 16182.49960000,
  "stake": 0.00000000,
  "unconfirmed_balance": 0.00000000,
  "immature_balance": 0.00000000,
  "txcount": 2,
  "keypoololdest": 1504758151,
  "keypoolsize": 101,
  "unlocked_until": 1514916409,
  "paytxfee": 0.00000000,
  "hdmasterkeyid": "b69f65040dc722e473b9bce1dbd0cb34e424a577"
}
```
The value `unlocked_until` field now has a non-zero value which represents the time (in [Unix Epoch](https://en.wikipedia.org/wiki/Unix_time) seconds) at which the wallet will once again be locked.

If you want to re-lock your wallet, simply run:
```
$ ~/qtum-wallet/bin/qtum-cli walletlock
```

However, remember that **you cannot stake coins with a locked wallet**.  This also means that if your Raspberry Pi restarts, you'll need to unlock your wallet (since this isn't done automatically).


## Step 11 - Sending and receiving coins from your wallet

To receive coins into your wallet, you don't need to unlock your wallet.  To obtain a Qtum address owned by your wallet (that you can receive coins to), you can do the following:
```
$ ~/qtum-wallet/bin/qtum-cli getaccountaddress ""
```
**NOTE**: Instead of the empty string (`""`), you can specify an account name (e.g. `"coins_from_heaven"`).

To see which accounts already exist, you can run:
```
$ ~/qtum-wallet/bin/qtum-cli listaccounts
```
You'll at least have the `""` (default) account listed.

To send coins you must first unlock your wallet (and not 'just for staking').  Follow the steps described in the previous section to unlock your wallet, but type `false` (instead of `true`) on the 3rd line of the `walletpassphrase` command.


## Step 12 - Staking

Once you have coins in your wallet that have not moved for at least 500 blocks, they will be eligible for staking.

You can see if your wallet is staking by running:
```
$ ~/qtum-wallet/bin/qtum-cli getstakinginfo
```
The command above should display something similar to:
```
{
  "enabled": true,
  "staking": true,
  "errors": "",
  "currentblocksize": 0,
  "currentblocktx": 0,
  "pooledtx": 0,
  "difficulty": 26753652.34834659,
  "search-interval": 0,
  "weight": 1618249960000,
  "netstakeweight": 7923365887385318,
  "expectedtime": 0
}
```
If the `staking` field is `false`, it means that you are not staking (e.g. your coins have not yet matured, etc).


## Advanced / Future Topics

This post is already quite long, but there are many other topics which could be covered.  I intend to create a post to describe how to use several very useful **qtumd** parameters such as `-prune` and `-uacomment`.

Also, in the **Bill of Materials** section, I mentioned that an optional piece of hardware is an OLED display (e.g. I2C 128x64) + wiring.  The OLED display is helpful to view information such as the IP address of your Raspberry Pi (in case `raspberrypi.local` isn't working), whether the wallet is currently running, whether it is locked/unlocked, whether it is staking, displaying system health metrics (e.g. cpu, memory, disk), etc.  The OLED allows you to display pretty much anything, such as:

![RPI_oled.jpg](https://steemitimages.com/DQmamm9UujmFg1L3BoM8Wc7P9EnTZiFGndhTU2CNv4z57qP/RPI_oled.jpg)

It is relatively simple to set-up the OLED display and I also intend to write how to do this this later. (NOTE: The image above is an older Raspberry Pi).

Lastly, I also want to make all of the steps above as **turn-key** as possible by automating the steps using [Ansible](https://www.ansible.com/).  Stay tuned for more about this!


## Where To Go For Help

As previously mentioned, you can obtain help from the [Qtum community on Slack](https://slack.qtum.org) in the **qtum-pi** channel.  See you there!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
👎  
properties (23)
authorcryptominder
permlinkqtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3
categoryqtum
json_metadata{"tags":["qtum","staking","raspberry","pi","wallet"],"image":["https://steemitimages.com/DQmPnwwDmDikYZWmRGRbFUdGNiQCWL9deMmGubxDCRGkGiJ/qtom_logo.png","https://steemitimages.com/DQmVVHHtshancWuEPEJoXEw4VNvfM1ZDxFRSbKZtPspGjT3/etcher.png","https://steemitimages.com/DQmamm9UujmFg1L3BoM8Wc7P9EnTZiFGndhTU2CNv4z57qP/RPI_oled.jpg"],"links":["https://steemit.com/qtum/@cryptominder/qtum-staking-tutorial-using-qtum-qt","https://en.wikipedia.org/wiki/Single-board_computer","https://www.raspberrypi.org/products/raspberry-pi-3-model-b/","https://slack.qtum.org","https://www.raspberrypi.org/documentation/hardware/raspberrypi/power/README.md","https://en.wikipedia.org/wiki/Wear_leveling","http://elinux.org/RPi_SD_cards","https://learn.sparkfun.com/tutorials/sd-cards-and-writing-images","https://www.raspberrypi.org","https://www.raspberrypi.org/products/raspberry-pi-3-case/","http://www.makeuseof.com/tag/extend-life-raspberry-pis-sd-card/","http://bigl.es/the-great-raspberry-pi-heatsink-test/","https://github.com/rm-hull/luma.oled#documentation","https://www.raspberrypi.org/downloads/raspbian/","https://etcher.io/","https://en.wikipedia.org/wiki/Unix_shell","https://en.wikipedia.org/wiki/Raspbian","https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks/","http://www.putty.org/","https://winscp.net/","https://www.ssh.com/ssh/command/","https://www.ssh.com/ssh/scp/","https://www.raspberrypi.org/documentation/remote-access/ssh/","https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2","https://wireless.wiki.kernel.org/en/users/documentation/wpa_supplicant","https://github.com/qtumproject/qtum/releases/tag/testnet-skynet-v1.2","https://en.wikipedia.org/wiki/Systemd","https://steemit.com/qtum/@cryptominder/encrypting-backing-up-and-restoring-your-qtum-wallet","https://xkcd.com/936/","https://en.wikipedia.org/wiki/Unix_time","https://www.ansible.com/"],"app":"steemit/0.1","format":"markdown"}
created2017-09-10 06:33:33
last_update2017-09-10 06:37:18
depth0
children51
last_payout2017-09-17 06:33:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24,987
author_reputation32,892,869,283
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,426,896
net_rshares2,586,290,599
author_curate_reward""
vote details (64)
@anuzis ·
Thanks for the great guide! It seems like if you're dedicating a Raspberry Pi to nothing but QTUM staking it would make sense to not encrypt it. If I understand correctly, encrypting it makes it less likely to remain staking in the event of a reboot (e.g. power outage), and also introduces the need for re-entering an unlock password whenever the unlocked_until expires. Is it possible to encrypt it so and unlock it with a command line option that mentions it should remain unlocked for the next 365 days even in the event of reboots?
properties (22)
authoranuzis
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170927t200016903z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-09-27 20:00:15
last_update2017-09-27 20:00:15
depth1
children1
last_payout2017-10-04 20:00:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length536
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,115,493
net_rshares0
@cryptominder ·
I do recommend encrypting your wallet, but I have another guide to cover that.

I'd be careful leaving any trace of your passphrase on the Raspberry Pi.  Instead, it's better to have a watchdog process to inform you if the `qtumd` process goes down or if the `qtumd` PID changes (so that you can manually bring it up again, then securely unlock it).  This topic is a bit more advanced though... but you have the right idea.
properties (22)
authorcryptominder
permlinkre-anuzis-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t014329894z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-12 01:43:30
last_update2017-10-12 01:43:30
depth2
children0
last_payout2017-10-19 01:43:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length423
author_reputation32,892,869,283
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,446,365
net_rshares0
@cashbrudi ·
Great post! Very excited about next posts about OLED display and Ansible automation!!!
properties (22)
authorcashbrudi
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180211t205913847z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-02-11 20:59:12
last_update2018-02-11 20:59:12
depth1
children0
last_payout2018-02-18 20:59:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation1,897,353,004
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,757,422
net_rshares0
@cashbrudi · (edited)
Everybody new to staking also check QTUM's official wiki post on how to setup the wallet for staking --> https://github.com/qtumproject/qtum/wiki/Installing-Qtum-on-Raspberry-Pi   it's a bit more up to date but not as detailed as this post here.
👍  
properties (23)
authorcashbrudi
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180211t210708378z
categoryqtum
json_metadata{"tags":["qtum"],"links":["https://github.com/qtumproject/qtum/wiki/Installing-Qtum-on-Raspberry-Pi"],"app":"steemit/0.1"}
created2018-02-11 21:07:09
last_update2018-02-11 21:08:06
depth1
children0
last_payout2018-02-18 21:07:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length245
author_reputation1,897,353,004
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,758,852
net_rshares0
author_curate_reward""
vote details (1)
@cryptominder · (edited)
$0.60
The **Qtum mainnet** binary (Ignition v1.0.1) has now been released.

I'm running a wallet/node on the RPi 3 using the `qtum-0.14.3-arm-linux-gnueabihf.tar.gz` binary found at https://github.com/qtumproject/qtum/releases/tag/mainnet-ignition-v1.0.1 .

The instructions in the post above are exactly the same for the mainnet binary release, except for the 'tar' command (i.e. make sure to specify `qtum-0.14.3-arm-linux-gnueabihf.tar.gz` instead).

Also, if you ran a previous version of the Qtum wallet/node (e.g. Skynet), then make sure to delete (or rename) the ~/.qtum directory before starting the mainnet (Ignition) wallet/node.

**NOTE**: The post didn't specify it, but you need to edit `/etc/systemd/system/qtumd.service` using **sudo** (e.g. `$ sudo vi /etc/systemd/system/qtumd.service`).
👍  , , , , , ,
properties (23)
authorcryptominder
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170914t033422408z
categoryqtum
json_metadata{"tags":["qtum"],"links":["https://github.com/qtumproject/qtum/releases/tag/mainnet-ignition-v1.0.1"],"app":"steemit/0.1"}
created2017-09-14 03:34:27
last_update2017-09-14 03:49:57
depth1
children9
last_payout2017-09-21 03:34:27
cashout_time1969-12-31 23:59:59
total_payout_value0.452 HBD
curator_payout_value0.150 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length798
author_reputation32,892,869,283
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,822,067
net_rshares210,525,006,515
author_curate_reward""
vote details (7)
@crazyhendrix ·
Thanks for the guide. I got it working in my raspberry pi 3. All that's left to do now is wait for the swap to happen before  we can start staking on the mainnet.
👍  
properties (23)
authorcrazyhendrix
permlinkre-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170923t060053642z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-09-23 06:00:57
last_update2017-09-23 06:00:57
depth2
children0
last_payout2017-09-30 06:00:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation40,280,930
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,680,156
net_rshares619,520,000
author_curate_reward""
vote details (1)
@crazyhendrix · (edited)
Can I suggest adding an alias to the .bashrc? Instead of typing : ```~/qtum-wallet/bin/qtum-cli```, we can add to ~/.bashrc:

```alias qtum-cli='~/qtum-wallet/bin/qtum-cli'```

That way, we can just execute qtum-cli from the wallet directory by typing: ```qtum-cli```
properties (22)
authorcrazyhendrix
permlinkre-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170923t061213334z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-09-23 06:12:12
last_update2017-09-23 06:13:36
depth2
children3
last_payout2017-09-30 06:12:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length267
author_reputation40,280,930
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,680,803
net_rshares0
@cryptominder ·
Yes, or add `~/qtum-wallet/bin` into your `$PATH`.  I should indeed have suggested it.
properties (22)
authorcryptominder
permlinkre-crazyhendrix-re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t013730665z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-12 01:37:30
last_update2017-10-12 01:37:30
depth3
children0
last_payout2017-10-19 01:37:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation32,892,869,283
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,446,017
net_rshares0
@lorenzomyle ·
I cant connect to my wallet using qtum-cli :
$ ~/qtum-wallet/bin/qtum-cli getinfo
error: couldn't connect to server: unknown (code -1)
(make sure server is running and you are connecting to the correct RPC port)


I know nothing about .cookie so I don't know what to do. Any help?
properties (22)
authorlorenzomyle
permlinkre-crazyhendrix-re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170926t192815492z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-09-26 19:28:15
last_update2017-09-26 19:28:15
depth3
children1
last_payout2017-10-03 19:28:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length280
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,014,037
net_rshares0
@ionlysaymeep ·
meep
properties (22)
authorionlysaymeep
permlinkre-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170914t033422408z-20170914t042755605z
categoryqtum
json_metadata{"tags":["qtum"],"app":"meep_bot/0.0.1"}
created2017-09-14 04:27:57
last_update2017-09-14 04:27:57
depth2
children0
last_payout2017-09-21 04:27:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation754,962,855,156
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,825,444
net_rshares0
@tloneil75 ·
I am struggling with step 5, i do not have the wlan0 sub folder, nor am i able to create it.  I created the file on my pi desktop but cannot put this anywhere in the etc folder.  I do not have permissions to do this.  Is there another way of disabling the power management?
properties (22)
authortloneil75
permlinkre-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t164219347z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-12 16:42:21
last_update2017-10-12 16:42:21
depth2
children2
last_payout2017-10-19 16:42:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length273
author_reputation3,250,989
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,507,745
net_rshares0
@elbapu ·
Hey. I had the same problem. Try this: http://www.thelowercasew.com/disabling-wifi-power-management-permanently-for-raspberry-pi-3-with-raspbian-jessie (it worked for me! ) good luck!
properties (22)
authorelbapu
permlinkre-tloneil75-re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171013t193203902z
categoryqtum
json_metadata{"tags":["qtum"],"links":["http://www.thelowercasew.com/disabling-wifi-power-management-permanently-for-raspberry-pi-3-with-raspbian-jessie"],"app":"steemit/0.1"}
created2017-10-13 19:32:03
last_update2017-10-13 19:32:03
depth3
children0
last_payout2017-10-20 19:32:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation43,376,409
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,609,862
net_rshares0
@olivers-wilde ·
do you perhaps need to put 'sudo' in front of the command?
properties (22)
authorolivers-wilde
permlinkre-tloneil75-re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171025t033734134z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-25 03:37:42
last_update2017-10-25 03:37:42
depth3
children0
last_payout2017-11-01 03:37:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation101,310,283,965
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,499,350
net_rshares0
@cryptominder ·
$0.59
A few quick updates:

1. Please make sure to use the latest Quantum wallet/node.  As of Oct. 11th, 2017 this is https://github.com/qtumproject/qtum/releases/tag/mainnet-ignition-v1.0.2 .  You'll want to download the `qtum-0.14.3-arm-linux-gnueabihf.tar.gz` file.

1. Some people have mentioned having difficulties with **Etcher** on Windows (e.g. https://github.com/resin-io-modules/drivelist/issues/208).  Windows users may want to look at using https://www.raspberrypi.org/documentation/installation/installing-images/windows.md instead.

1. If you're using Windows, the documentation at https://www.raspberrypi.org/documentation/remote-access/ssh/windows.md can be helpful for using PuTTY.  If your wifi is set up correctly on your Raspberry Pi, the `Host Name` (to enter in PuTTY) should be `raspberrypi.local`.
👍  , ,
properties (23)
authorcryptominder
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t041356570z
categoryqtum
json_metadata{"tags":["qtum"],"links":["https://github.com/qtumproject/qtum/releases/tag/mainnet-ignition-v1.0.2","https://github.com/resin-io-modules/drivelist/issues/208","https://www.raspberrypi.org/documentation/remote-access/ssh/windows.md"],"app":"steemit/0.1"}
created2017-10-12 04:13:57
last_update2017-10-12 04:13:57
depth1
children1
last_payout2017-10-19 04:13:57
cashout_time1969-12-31 23:59:59
total_payout_value0.447 HBD
curator_payout_value0.146 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length815
author_reputation32,892,869,283
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,454,916
net_rshares245,394,537,108
author_curate_reward""
vote details (3)
@johniwad ·
I followed this guide to the T and it's been 3 days since I've sent qtum to my wallet and it is still showing a 0.00000000 balance. Am I missing something?
properties (22)
authorjohniwad
permlinkre-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171129t193417839z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-11-29 19:34:18
last_update2017-11-29 19:34:18
depth2
children0
last_payout2017-12-06 19:34:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,919,754
net_rshares0
@dalesatoshi ·
or if your a simpleton like me just deposit your Qtum at Btcpop.co![Staking Qtum.png](https://steemitimages.com/DQmNeWciQeTnsXPNffK7tvA2T4W8Q7ZooFRCJoRYB6j1S8n/Staking%20Qtum.png)
properties (22)
authordalesatoshi
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180206t215232421z
categoryqtum
json_metadata{"tags":["qtum"],"image":["https://steemitimages.com/DQmNeWciQeTnsXPNffK7tvA2T4W8Q7ZooFRCJoRYB6j1S8n/Staking%20Qtum.png"],"app":"steemit/0.1"}
created2018-02-06 21:52:21
last_update2018-02-06 21:52:21
depth1
children0
last_payout2018-02-13 21:52:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation-15,000,098,019
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,502,584
net_rshares0
@daydoesit ·
very helpful, thanks
properties (22)
authordaydoesit
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180122t002049538z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-01-22 00:21:12
last_update2018-01-22 00:21:12
depth1
children0
last_payout2018-01-29 00:21:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation430,501,122
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,235,135
net_rshares0
@eddieb ·
Since qtumd 0.18, the PID is qtum.pid, no longer qtumd.pid. Your guide is widely referenced (thank you and congrats), so you might want to update the instructions.
properties (22)
authoreddieb
permlinkpwi383
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2019-08-19 20:21:39
last_update2019-08-19 20:21:39
depth1
children0
last_payout2019-08-26 20:21:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length163
author_reputation142,791,435
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,716,990
net_rshares0
@eddieb ·
How long does reindex take on a Pi 3? I'm going into 24hrs here (chain height ~192k)
properties (22)
authoreddieb
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180717t170149381z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-07-17 17:01:48
last_update2018-07-17 17:01:48
depth1
children0
last_payout2018-07-24 17:01:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation142,791,435
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,014,360
net_rshares0
@elbapu ·
Many thanks for this Guide. It was awesome. I had some difficulties in setting it up with some things which I googled them. Really nice and clean guide, at least for me that I have no knowledge of development at all.
properties (22)
authorelbapu
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171013t193448690z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-13 19:34:48
last_update2017-10-13 19:34:48
depth1
children0
last_payout2017-10-20 19:34:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length216
author_reputation43,376,409
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,610,029
net_rshares0
@gekteng ·
Thanks for the guide. I have a problem here. I've sent some qrc20 token to my qtum wallet in pi, and now I can't see it. I can see the token in qtum explorer but not in pi. Am I missing something?
properties (22)
authorgekteng
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180121t200219244z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-01-21 20:02:18
last_update2018-01-21 20:02:18
depth1
children0
last_payout2018-01-28 20:02:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length196
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,187,487
net_rshares0
@iamabluetiger ·
Hi. I have a question. In case of qtum-qt, you recommend backup wallet before encryption. but in this case, you backup wallet file after encryption. Is there any difference??
properties (22)
authoriamabluetiger
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171005t070624222z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-05 07:06:24
last_update2017-10-05 07:06:24
depth1
children2
last_payout2017-10-12 07:06:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length174
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,833,518
net_rshares0
@cryptominder ·
Ah, only because the wallet was known to be empty/unused in this case.
properties (22)
authorcryptominder
permlinkre-iamabluetiger-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t014626061z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-12 01:46:24
last_update2017-10-12 01:46:24
depth2
children1
last_payout2017-10-19 01:46:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation32,892,869,283
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,446,535
net_rshares0
@davidlausb ·
Does that mean it's actually better to backup the wallet before encryption in this case, too? If so: Why is that?
👍  
properties (23)
authordavidlausb
permlinkre-cryptominder-re-iamabluetiger-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171222t110301090z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-12-22 11:02:57
last_update2017-12-22 11:02:57
depth3
children0
last_payout2017-12-29 11:02:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,677,537
net_rshares0
author_curate_reward""
vote details (1)
@immetal6669 ·
$0.31
I did not know you could stake Qtum I'm just starting to learn and like what I hear
👍  
properties (23)
authorimmetal6669
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180109t064625886z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-01-09 06:46:24
last_update2018-01-09 06:46:24
depth1
children0
last_payout2018-01-16 06:46:24
cashout_time1969-12-31 23:59:59
total_payout_value0.237 HBD
curator_payout_value0.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation1,124,005,066,656
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,184,525
net_rshares29,278,419,814
author_curate_reward""
vote details (1)
@joewilder ·
Thank you for sharing. Great!!
Should port forwarding be activated?
I know it worked without, but any advantages/disadvantages?
properties (22)
authorjoewilder
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180222t085118486z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-02-22 08:51:18
last_update2018-02-22 08:51:18
depth1
children0
last_payout2018-03-01 08:51:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation139,719,996,143
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,556,716
net_rshares0
@kennyofcoins ·
How do you send coins out of your raspberry Pi?
👍  
properties (23)
authorkennyofcoins
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171106t131614483z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-11-06 13:16:15
last_update2017-11-06 13:16:15
depth1
children0
last_payout2017-11-13 13:16:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,604,011
net_rshares0
author_curate_reward""
vote details (1)
@lookeron76 ·
why tell me "maxconnections=24?"
i recommend "ExecStart=/home/pi/qtum-wallet/bin/qtumd -daemon"

then in-outbound max 132 node....
properties (22)
authorlookeron76
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180509t223736828z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-05-09 22:38:21
last_update2018-05-09 22:38:21
depth1
children0
last_payout2018-05-16 22:38:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,836,534
net_rshares0
@lorenzomyle ·
The adress given by the getaccountaddress is invalid on Cryptopia. how can I get a valide adresse ? Thanks
properties (22)
authorlorenzomyle
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171001t083148232z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-01 08:31:48
last_update2017-10-01 08:31:48
depth1
children1
last_payout2017-10-08 08:31:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,450,571
net_rshares0
@trevsadev ·
Hi, the address is invalid because the token swap from ERC-20 to Qtum has not happened yet.
The swap from ERC-20 tokens to Qtum’s functional network tokens will take place on October 4th, 2017.
The participating exchanges will be ChBTC, Bittrex, AllCoin, BTer, and Coinone.
You will need to send you tokens to one of the exchanges above to be converted to Qtum on October 4th then you will be able to send them to your wallet address.
properties (22)
authortrevsadev
permlinkre-lorenzomyle-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171002t214936579z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-02 21:49:39
last_update2017-10-02 21:49:39
depth2
children0
last_payout2017-10-09 21:49:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length434
author_reputation14,079,759
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,607,996
net_rshares0
@marotron ·
First I want say that I love the tutorial. It is just awesome. One of the best tutorial I have ever seen. Nevertheless, I still have some questions. 
I managed to install and setup the wallet on rasPi 3, no problems, just followed the steps. I unlocked the wallet and transferred the qtum coins. After some time when I executed the following command: 
` ~/qtum-wallet/bin/qtum-cli getstakinginfo`
it was returned the following:
```javascript
{
  "enabled": true,
  "staking": true,
  "errors": "",
  "currentblocksize": 1000,
  "currentblocktx": 0,
  "pooledtx": 3,
  "difficulty": 2128098.48440742,
  "search-interval": 445306,
  "weight": 2095900000,
  "netstakeweight": 915562123492605,
  "expectedtime": 55914858
}
```
However, after a week I am still not sure if I am really staking, because my balance did not change and when I run:
`~/qtum-wallet/bin/qtum-cli getwalletinfo | grep -E 'stake|balance'`
I get:
```
  "balance": 20.95900000,
  "stake": 0.00000000,
  "unconfirmed_balance": 0.00000000,
  "immature_balance": 0.00000000,
```

My questions are:
1. Am I staking already?
2. What does `"stake"` in `qtum-cli getwalletinfo` mean?
3. Do I have enough coins to stake or maybe there is no point to stake if you have less than x coins?

I really wished qtum staking (at least on raspeberry pi) was more transparent (like neo). Thanks for all the answers.
properties (22)
authormarotron
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171023t215437413z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-23 21:54:42
last_update2017-10-23 21:54:42
depth1
children0
last_payout2017-10-30 21:54:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,364
author_reputation-2,895,894,661
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,404,321
net_rshares0
@mattdoyle ·
Awesome guide, though would appreciate if you could still put up an option to stake on Digital Ocean or similar (I have a cloud server running for other reasons, so it would be no extra cost to use it for staking, too).
👍  
properties (23)
authormattdoyle
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171007t235535580z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-07 23:55:39
last_update2017-10-07 23:55:39
depth1
children0
last_payout2017-10-14 23:55:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation2,591,920,800
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,053,752
net_rshares0
author_curate_reward""
vote details (1)
@mgpeng ·
Great post, I am thinking move some staking wallet from my window laptop to pi3, because I worry my laptop maybe break down after 24/7 no stop working.
properties (22)
authormgpeng
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171108t121902761z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-11-08 12:19:06
last_update2017-11-08 12:19:06
depth1
children0
last_payout2017-11-15 12:19:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length151
author_reputation3,479,238,861
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,776,499
net_rshares0
@mgpeng ·
Great post, I am thinking move some staking wallet from my window laptop to pi3, because I worry my laptop maybe break down after 24/7 no stop working.
properties (22)
authormgpeng
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171108t121942166z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-11-08 12:19:42
last_update2017-11-08 12:19:42
depth1
children0
last_payout2017-11-15 12:19:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length151
author_reputation3,479,238,861
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,776,544
net_rshares0
@nununo ·
Hi, I followed the tutorial to install it in a Raspberry Pi 1. But when I try to run the binary I get a segmentation fault error. And now I'm stuck. Does it not run in a Raspberry Pi 1? I am sure I downloaded the binary for ARM...
Thanks,
Nuno
properties (22)
authornununo
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171003t110605877z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-03 11:06:06
last_update2017-10-03 11:06:06
depth1
children1
last_payout2017-10-10 11:06:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length243
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,656,684
net_rshares0
@cryptominder ·
I don't recommend using the Raspberry Pi 1 for this.  If you do try, make sure that you're running the latest OS (i.e. Stretch) -- and you may need to enable swapping (to give the RPi more memory).  Enabling swapping isn't a super-great idea on an SDCard though...
properties (22)
authorcryptominder
permlinkre-nununo-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t014539587z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-12 01:45:42
last_update2017-10-12 01:45:42
depth2
children0
last_payout2017-10-19 01:45:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation32,892,869,283
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,446,496
net_rshares0
@olivertwist ·
Nice guide! I followed it to setup staking on a Linux AWS instance, free for the first year and then 36$/year, even cheaper than a raspberry! Thanks
👍  
properties (23)
authorolivertwist
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171023t100138625z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-23 10:01:45
last_update2017-10-23 10:01:45
depth1
children1
last_payout2017-10-30 10:01:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,367,734
net_rshares1,160,563,776
author_curate_reward""
vote details (1)
@bereska ·
hi, i want to try the same thing with a Linus AWS instance. Is the setup identical to this one? thank you
properties (22)
authorbereska
permlinkre-olivertwist-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171121t192122518z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-11-21 19:21:21
last_update2017-11-21 19:21:21
depth2
children0
last_payout2017-11-28 19:21:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,122,239
net_rshares0
@otraza ·
Excellent post, you have no idea how much time you saved me!!
properties (22)
authorotraza
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171030t030801071z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-30 03:08:03
last_update2017-10-30 03:08:03
depth1
children0
last_payout2017-11-06 03:08:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation12,737,122,965
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,934,220
net_rshares0
@propel ·
Question, I have setup my raspberry pi.  My pi is at home, can I use another pc (at work) to log into my qtum core wallet without signing off the wallet that's running on the pi???
properties (22)
authorpropel
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180416t171048675z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-04-16 17:10:48
last_update2018-04-16 17:10:48
depth1
children0
last_payout2018-04-23 17:10:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation1,454,002,718
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,416,268
net_rshares0
@ryuzaki · (edited)
Hi,

after wrting correctly :

  ~/qtum-wallet/bin/qtum-cli -stdin MYPASSPHRASEHERE
99999
false
and then CTRL+D

i got the following error : 

Error : Method not found
code error : -32116

Thanks in advance
properties (22)
authorryuzaki
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180108t105629571z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-01-08 10:56:27
last_update2018-01-08 19:18:39
depth1
children2
last_payout2018-01-15 10:56:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation3,283,984,459
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,974,618
net_rshares0
@ryuzaki ·
same for me
properties (22)
authorryuzaki
permlinkre-ryuzaki-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180108t140418592z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-01-08 14:04:15
last_update2018-01-08 14:04:15
depth2
children0
last_payout2018-01-15 14:04:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation3,283,984,459
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,010,568
net_rshares0
@ryuzaki · (edited)
does "txcount:1" means that there were a transfer ?
properties (22)
authorryuzaki
permlinkre-ryuzaki-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180108t153440238z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-01-08 15:34:39
last_update2018-01-08 19:16:21
depth2
children0
last_payout2018-01-15 15:34:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation3,283,984,459
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,028,522
net_rshares0
@sacen · (edited)
I'm having an issue with transferring Qtum into the Wallet, I followed your steps . 

Got everything running - On Step 10 - Encrypting and Unlocking Your Wallet. $ ~/qtum-wallet/bin/qtum-cli -stdin encryptwallet

I can see "unlocked_until": 0, and I set that to 99999999

I created a new account with $ ~/qtum-wallet/bin/qtum-cli getaccountaddress "accountname"
Account info show default account "" and "accountname"

Does "getaccountaddress" create a new account and key? I assume It does because it shows up on listaccounts.

I transferred 1 Qtum from Binance to "accountname" public key. Binance confirm transfer completed.

But when I check with $ ~/qtum-wallet/bin/qtum-cli getwalletinfo
My balance is 0.0000000

What might I have missed or done wrong?

Do I need to select which account to get info on?

If so how I select the account I want to display the info?

Thanks in advance.
👍  
properties (23)
authorsacen
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171013t032229377z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-13 03:22:30
last_update2017-10-13 03:23:21
depth1
children3
last_payout2017-10-20 03:22:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length888
author_reputation756,505,281
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,547,089
net_rshares0
author_curate_reward""
vote details (1)
@ryuzaki ·
i'm in the same, the worst is i'm almost sure ( 99.5% ) i saw it once : 0.6 QTUM and then, i tried again to watch it after my dinner, like 1 hour afer and they disapear. I'm exactly in the  same case, with another "accountname" plus de default  one. 

Thanks if you can return about this
properties (22)
authorryuzaki
permlinkre-sacen-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180108t154321616z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2018-01-08 15:43:18
last_update2018-01-08 15:43:18
depth2
children0
last_payout2018-01-15 15:43:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation3,283,984,459
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,030,279
net_rshares0
@solaris234 ·
I have exactly the same issue now. Did you manage to make it work? :)
properties (22)
authorsolaris234
permlinkre-sacen-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171014t143838035z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-14 14:38:39
last_update2017-10-14 14:38:39
depth2
children1
last_payout2017-10-21 14:38:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation0
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,672,183
net_rshares0
@sacen ·
In my last installation I had error with the passphrase step. So I format the SD card and re-burn Raspbian and did the above steps again. It worked some how. GL
properties (22)
authorsacen
permlinkre-solaris234-re-sacen-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171015t092011181z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-15 09:20:12
last_update2017-10-15 09:20:12
depth3
children0
last_payout2017-10-22 09:20:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation756,505,281
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,734,168
net_rshares0
@techtek ·
Awesome post, to bad i just now find it.

( If you want you can join and post these kind of things in the SteemPi Discord server:  https://discord.gg/RMXbqmG 

i shared it there now for you, if you make a follow up post on your Pi project, please also share it there with us)

Upvoted and following you.
properties (22)
authortechtek
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171015t232343965z
categoryqtum
json_metadata{"tags":["qtum"],"links":["https://discord.gg/RMXbqmG"],"app":"steemit/0.1"}
created2017-10-15 23:23:45
last_update2017-10-15 23:23:45
depth1
children0
last_payout2017-10-22 23:23:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length303
author_reputation28,283,249,927,543
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,785,925
net_rshares0
@unomas ·
Thanks for this detailed guide!
properties (22)
authorunomas
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171216t232320988z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-12-16 23:23:21
last_update2017-12-16 23:23:21
depth1
children0
last_payout2017-12-23 23:23:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation971,933,356,391
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,808,634
net_rshares0
@uua22 ·
Hello cryptominder, thank you for the great tutorial! 
I'm planning to use my P3 as a Kodi Media Center and QTUM staking device. 
What need to be done to run the QTUM wallet on OpenELEC for PI instead of RASPBIAN STRETCH LITE? Is there any difference?
Thank you in advance!
properties (22)
authoruua22
permlinkre-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171006t185511568z
categoryqtum
json_metadata{"tags":["qtum"],"app":"steemit/0.1"}
created2017-10-06 18:55:12
last_update2017-10-06 18:55:12
depth1
children0
last_payout2017-10-13 18:55:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length273
author_reputation86,783,739
root_title"Qtum Staking Tutorial using qtumd on a Raspberry Pi 3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,942,619
net_rshares0