create account

How to Install a Gridcoin Wallet on a Raspberry Pi by roboticmind

View this thread on: hive.blogpeakd.comecency.com
· @roboticmind · (edited)
$8.80
How to Install a Gridcoin Wallet on a Raspberry Pi
**Things Needed:**

1. One Raspberry Pi 
2. A SD/Micro SD card with [Raspbian/Raspberry Pi OS](https://www.raspberrypi.org/downloads/raspbian/) or [NOOBS](https://www.raspberrypi.org/downloads/noobs/) installed on it 


**Here are the updated steps:**
1) open the terminal (ctrl-alt-t will open it)

2) run `cat /etc/os-release` and look for `(stretch)` or `(buster)`. If you saw `(jessie)` or `(wheezy)` this won't currently work for you, but you can try and ask for help on one of the gridcoin community platforms listed on https://gridcoin.us

3) go to https://github.com/gridcoin-community/Gridcoin-Research/releases/latest and scroll to where it says assets

4)  If you want the graphical version, download the file with `gridcoinresearch-qt ` and`stretch` or `buster` (according to which one you saw in step 1) somewhere in there, and then ending with `armhf.deb`

5) If you want a headless version (using only the terminal), download the file with `gridcoinresarchd` at the start and `stretch` or `buster` (according to which one you saw in step 1) somewhere in there, and ending with `armhf.deb`

6) transfer the file to your raspberry pi (or download it on your raspberry pi) and move the file to the desktop
7) look at the file name and modify this command accordingly, `sudo apt-get install -fy /home/pi/Desktop/[FILENAME]` *if that fails* try the running following:<br>
`sudo dpkg -i /home/pi/Desktop/[FILENAME]` (this will fail most likely, but run it anyway because it will be needed to get missing dependencies)<br>
`sudo apt-get -f install`(install missing dependencies) <br>
then run `sudo dpkg -i /home/pi/Desktop/[FILENAME]` again to install it now

**Setup for the Gridcoin Wallet with Graphics:**

run `gridcoinresearch` whenever you want to run the gridcoin wallet
when you first run it, it will create all the configuration files necessary

**Setup for the Headless Gridcoin Wallet:**

Run the following commands:
`mkdir ~/.GridcoinResearch`
`sudo nano ~/.GridcoinResearch/gridcoinresearch.conf` (use ctrl-x to exit)
Here is a recommenced configuration to enter (modify accordingly):
`email= enter your boinc email`
`addnode=addnode-us-central.cycy.me`
`addnode=ec2-3-81-39-58.compute-1.amazonaws.com`
`addnode=gridcoin.ddns.net`
`addnode=seeds.gridcoin.ifoggz-network.xyz`
`addnode=seed.gridcoin.pl`
`addnode=www.grcpool.com`
`rpcallowip=127.0.0.1`
`rpcuser=enter something long (you don't have to remember this)`
`rpcpassword=enter something long (you don't have to remember this)`
for more advanced configuration options click [here](https://gridcoin.us/wiki/config-file.html)

then run `gridcoinresearchd` whenever you want to start the wallet

## **If you have any issues:**
Try going to any of the platforms listed on the Community tab on [gridcoin.us](https://gridcoin.us) and ask for help


UPDATE 2:
chat.gridcoin.io has been taken down and some other edits have been made

UPDATE 3: Seems that one of the commands for installing doesn't always worked. Mentions an alternative and made other edits

~~OlD UPDATE: ~~
~~**Here are the updated steps:**~~
~~1) run `cat /etc/os-release` and look for `(stretch)`. If you saw `(jessie)` or `(wheezy)` this won't currently work for you, but you can try following step two and asking for help there.~~
~~2) go to [chat.gridcoin.io](https://chat.gridcoin.io), and register an account~~
~~3) Make sure you are on "#general" and click on the paperclip icon that should say "Files List" when hovered over~~
~~4) a) If you want a graphical user interface, download the file with `gridcoinresarch-qt` at the start and `stretch` somewhere in there, ending with `armhf`~~
~~b) If you want a headless version (using only the terminal), download the file with `gridcoinresarchd` at the start and `stretch` somewhere in there, ending with `armhf`~~
~~5) transfer the file to your raspberry pi (or download it on your raspberry pi) and move the file to the desktop~~
~~6) look at the file name and modify this command accordingly, `sudo apt-get install -fy /home/pi/Desktop/[FILENAME]`~~

~~**Setup for the Gridcoin Wallet with Graphics:**~~

~~`run `gridcoinresearch` whenever you want to run the gridcoin wallet~~
~~when you first run it, it will create all the configuration files necessary~~

~~**Setup for the Headless Gridcoin Wallet:**~~

~~Run the following commands:~~
~~`mkdir~/.GridcoinResearch`~~
~~`sudo nano ~/.GridcoinResearch/gridcoinresearch.conf`~~
~~Here is a recommenced configuration to enter:~~
~~`email= enter your boinc email`~~
~~`addnode=node.gridcoin.us`~~
~~`rpcallowip=127.0.0.1`~~
~~`rpcuser=enter something long (you don't have to remember this)`~~
~~`rpcpassword=enter something long (you don't have to remember this)`~~
~~for more advanced configuration options click [here](https://wiki.gridcoin.us/Gridcoinresearch_config_file)~~

then run `gridcoinresearchd` whenever you want to start the wallet

## **If you have any issues:**
Try going to any of the platforms listed on the Community tab on [gridcoin.us](https://gridcoin.us) and ask for help


OLD ARTICLE:
~~Now open up the terminal (Ctrl-alt-t with a keyboard) or connect via ssh~~


~~**Step One: Installing Libraries**~~

~~Run the following commands:~~
~~`wget http://launchpadlibrarian.net/118496707/libminiupnpc8_1.6-3ubuntu2_armhf.deb`~~
~~`sudo dpkg -i libminiupnpc8_1.6-3ubuntu2_armhf.deb`~~
~~`sudo apt-get install software-properties-common  -y`~~
~~`sudo apt-get install -f`~~

~~**Step Two:  Adding Repositories**~~

~~Run the command:~~
~~`sudo nano /etc/apt/sources.list.d/gridcoin-stable.list`~~

~~Type in the following into two lines~~

~~`deb http://ppa.launchpad.net/gridcoin/gridcoin-stable/ubuntu trusty main`~~
~~`deb-src http://ppa.launchpad.net/gridcoin/gridcoin-stable/ubuntu trusty main`~~

~~now press Ctrl-x then press y and hit enter~~

~~**Step Three: Updating List of Repositories**~~

~~Run the following commands:~~
~~`sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys DBB231E7B333BDB6F6CCA46BD56E6F37B99D3486`~~

~~`sudo apt-get update`~~

~~**Step Four: Installing the Gridcoin Wallet**~~

~~Run the following commands depending on what you need:~~
~~`sudo apt-get install gridcoinresearch-qt -y` for using a graphical interface~~
~~`sudo apt-get install gridcoinresearchd  -y` for running without a display (headless)~~

~~**Setup for the Gridcoin Wallet with Graphics**~~

~~run `sudo gridcoinresearch` whenever you want to run the gridcoin wallet~~
~~when you first run it, it will create all the configuration files necessary~~

~~**Setup for the Headless Gridcoin Wallet:**~~

~~Run the following commands:~~
~~`mkdir~/.GridcoinResearch`~~
~~`sudo nano ~/.GridcoinResearch/gridcoinresearch.conf`~~
~~Here is a recommended configuration to enter:~~
~~`email= ` enter your boinc email~~
~~`addnode=node.gridcoin.us`~~
~~`rpcallowip=127.0.0.1`~~
~~``rpcuser=`enter something long (you don't have to remember this)~~
~~`rpcpassword=`enter something long (you don't have to remember this)~~
~~for more advance configuration options click [here](http://wiki.gridcoin.us/Gridcoinresearch_config_file)~~

~~then run `sudo gridcoinresearchd` whenever you want to start it~~


-This was tested on a raspberry pi 2B with raspbian jessie

**Sources:**

[http://wiki.gridcoin.us/Linux_Downloads_(pre-compiled)](http://wiki.gridcoin.us/Linux_Downloads_(pre-compiled)#Using_the_Ubuntu_PPA_with_Debian_Jessie)

[https://launchpad.net/~gridcoin/+archive/ubuntu/gridcoin-stable](https://launchpad.net/~gridcoin/+archive/ubuntu/gridcoin-stable)

[http://wiki.gridcoin.us/Gridcoinresearch_config_file](http://wiki.gridcoin.us/Gridcoinresearch_config_file)

[https://www.raspberrypi.org/downloads/raspbian](https://www.raspberrypi.org/downloads/raspbian/)

[https://www.raspberrypi.org/downloads/noobs](https://www.raspberrypi.org/downloads/noobs/)
👍  , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorroboticmind
permlinkhow-to-install-a-gridcoin-wallet-on-a-raspberry-pi
categorygridcoin
json_metadata{"app":"hiveblog/0.1","format":"markdown","links":["https://www.raspberrypi.org/downloads/raspbian/"],"tags":["cryptocurrencies","altcoin","gridcoin-wallet","technology"]}
created2017-08-02 01:25:24
last_update2021-05-12 00:16:42
depth0
children44
last_payout2017-08-09 01:25:24
cashout_time1969-12-31 23:59:59
total_payout_value6.648 HBD
curator_payout_value2.156 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,833
author_reputation1,970,312,669,021
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,488,673
net_rshares2,164,155,395,984
author_curate_reward""
vote details (23)
@beergeekgamer ·
Does this still work? I wanted to dedicate one of my pi's for my gridcoin wallet, but I get an error when I try to run the following:

 <code>sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys DBB231E7B333BDB6F6CCA46BD56E6F37B99D3486</code>
properties (22)
authorbeergeekgamer
permlinkre-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20170907t000626096z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-09-07 00:06:24
last_update2017-09-07 00:06:24
depth1
children4
last_payout2017-09-14 00: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_length251
author_reputation359,172,159
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,098,245
net_rshares0
@roboticmind ·
Sorry for the late reply @beergeekgamer. Could you show me what your error was? What version of Raspbian are you running?
properties (22)
authorroboticmind
permlinkre-beergeekgamer-re-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20170916t143208940z
categorygridcoin
json_metadata{"tags":["gridcoin"],"users":["beergeekgamer"],"app":"steemit/0.1"}
created2017-09-16 14:32:03
last_update2017-09-16 14:32:03
depth2
children3
last_payout2017-09-23 14: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_length121
author_reputation1,970,312,669,021
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,060,226
net_rshares0
@bigd87 ·
Hi Roboticmind, 

I have stumbled upon your post and decided to join the community as I have been looking at doing this with my Pi3. I have followed the steps and like Beergeekgamer I have got stuck at the same point. When i run:

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys DBB231E7B333BDB6F6CCA46BD56E6F37B99D3486

I get an error message:

Executing: /tmp/apt-key-gpghome.9cn8jIOfbI/gpg.1.sh --keyserver keyserver.ubuntu.com:80 --recv-keys DBB231E7B333BDB6F6CCA46BD56E6F37B99D3486
gpg: failed to start the dirmngr '/usr/bin/dirmngr': No such file or directory
gpg: connecting dirmngr at '/tmp/apt-key-gpghome.9cn8jIOfbI/S.dirmngr' failed: No such file or directory
gpg: keyserver receive failed: No dirmngr

I have followed everything up to the point and got no errors, all seemed to go ok. I have got a clean install of Raspbian on a pi3 that is fully updated (as of last night) and the only other change I have made so far is to increase the swap file size.

I would appreciate any thought you have on what going wrong. Thanks in advance!
properties (22)
authorbigd87
permlinkre-roboticmind-re-beergeekgamer-re-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20171018t112437185z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-10-18 11:24:36
last_update2017-10-18 11:24:36
depth3
children2
last_payout2017-10-25 11:24:36
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,060
author_reputation0
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,972,893
net_rshares0
@confuest · (edited)
Hi @roboticmind ,
I'm getting the following error after I write "sudo apt-get install gridcoinresearch-qt -y". I'd be really happy if you can help me for this issue: 

"Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 gridcoinresearch-qt : Depends: libboost-filesystem1.55.0 but it is not installable
                       Depends: libboost-program-options1.55.0 but it is not installable
                       Depends: libboost-system1.55.0 but it is not installable
                       Depends: libboost-thread1.55.0 but it is not installable
                       Depends: libssl1.0.0 (>= 1.0.1) but it is not installable
                       Depends: libzip2 (>= 0.10) but it is not installable
E: Unable to correct problems, you have held broken packages."
properties (22)
authorconfuest
permlinkre-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20171019t194632773z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1","users":["roboticmind"]}
created2017-10-19 19:46:30
last_update2017-10-19 19:54:24
depth1
children25
last_payout2017-10-26 19:46: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_length1,062
author_reputation355,804,015
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,080,829
net_rshares0
@roboticmind ·
@confuest,

Try running these commands again:
`wget http://launchpadlibrarian.net/118496707/libminiupnpc8_1.6-3ubuntu2_armhf.deb`
`sudo dpkg -i libminiupnpc8_1.6-3ubuntu2_armhf.deb`
`sudo apt-get install software-properties-common -y`
`sudo apt-get install -f`

Then run this command:
`sudo apt-get install gridcoinresearch-qt -y -f`

Let me know if that works!
properties (22)
authorroboticmind
permlinkre-confuest-re-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20171019t222116302z
categorygridcoin
json_metadata{"tags":["gridcoin"],"users":["confuest"],"app":"steemit/0.1"}
created2017-10-19 22:21:09
last_update2017-10-19 22:21:09
depth2
children24
last_payout2017-10-26 22:21: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_length361
author_reputation1,970,312,669,021
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,089,356
net_rshares0
@confuest ·
@roboticmind

I tried it at least four times but unfortunately I'm getting the same error.
properties (22)
authorconfuest
permlinkre-roboticmind-re-confuest-re-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20171020t073125099z
categorygridcoin
json_metadata{"tags":["gridcoin"],"users":["roboticmind"],"app":"steemit/0.1"}
created2017-10-20 07:31:24
last_update2017-10-20 07:31:24
depth3
children23
last_payout2017-10-27 07:31: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_length90
author_reputation355,804,015
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,117,388
net_rshares0
@dvdspelert ·
Good stuff! I want to turn a armbian board into a wallet like this. Would the process be the same? Im using a banana pi m1 cortex A20 board. Would also install reddcoin, peercoin and maybe others!
👍  
properties (23)
authordvdspelert
permlinkre-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20170806t012517809z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-06 01:25:18
last_update2017-08-06 01:25:18
depth1
children1
last_payout2017-08-13 01:25: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_reputation9,378,334
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,900,053
net_rshares600,213,380
author_curate_reward""
vote details (1)
@roboticmind · (edited)
I assume it would work similarly, but it may need different libraries installed. Other than that my only concern is that the Banana Pi doesn't have a lot of RAM.
properties (22)
authorroboticmind
permlinkre-dvdspelert-re-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20170806t114650512z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-06 11:46:48
last_update2017-08-06 11:48:15
depth2
children0
last_payout2017-08-13 11:46: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_length161
author_reputation1,970,312,669,021
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,935,845
net_rshares0
@holger-will ·
Great post! i had some issues getting this to work on raspian stretch. As others reported i too had problems with libboost1.55. I did not find any solution in the comments here. What solved the issue for me was to add the xenial instead of the trusty packages.

so change this:

    deb http://ppa.launchpad.net/gridcoin/gridcoin-stable/ubuntu trusty main
    deb-src http://ppa.launchpad.net/gridcoin/gridcoin-stable/ubuntu trusty main

to:

    deb http://ppa.launchpad.net/gridcoin/gridcoin-stable/ubuntu xenial main
    deb-src http://ppa.launchpad.net/gridcoin/gridcoin-stable/ubuntu xenial main

in `/etc/apt/sources.list.d/gridcoin-stable.list`
👍  ,
properties (23)
authorholger-will
permlinkre-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20180126t065536004z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2018-01-26 06:55:36
last_update2018-01-26 06:55:36
depth1
children1
last_payout2018-02-02 06:55:36
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_length651
author_reputation77,257,801,131
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,398,053
net_rshares2,277,859,915
author_curate_reward""
vote details (2)
@roboticmind ·
Thank you for sharing this!  I appreciate that!
properties (22)
authorroboticmind
permlinkre-holger-will-re-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20180127t020617318z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2018-01-27 02:05:45
last_update2018-01-27 02:05:45
depth2
children0
last_payout2018-02-03 02:05: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_length47
author_reputation1,970,312,669,021
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,618,638
net_rshares0
@javierf ·
Hi everyone.

Is there any update about this?

There is no easy way to achieve this. Reps canet be added...

Any info much appreciatted¡

Javi
properties (22)
authorjavierf
permlinkre-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20190328t154301040z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2019-03-28 15:43:00
last_update2019-03-28 15:43:00
depth1
children2
last_payout2019-04-04 15:43:00
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_length142
author_reputation13,329,511,968
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id82,100,712
net_rshares0
@roboticmind ·
Sorry for the late reply, I've been away from steem for a while and only just recently am I able to update the article. I've now updated the article, follow the updated steps.
properties (22)
authorroboticmind
permlinkre-javierf-re-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20190406t212224853z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2019-04-06 21:22:21
last_update2019-04-06 21:22:21
depth2
children1
last_payout2019-04-13 21:22: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_length175
author_reputation1,970,312,669,021
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id82,598,082
net_rshares0
@javierf ·
Thx¡

I finally managed but I decided not to run it in my PI as it makes is useless: It uses almost all RAM (no sense)...
properties (22)
authorjavierf
permlinkre-roboticmind-re-javierf-re-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20190503t123411051z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2019-05-03 12:34:12
last_update2019-05-03 12:34:12
depth3
children0
last_payout2019-05-10 12:34: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_length121
author_reputation13,329,511,968
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id84,184,713
net_rshares0
@kanedizzle08 ·
do you know how to get other wallets on the rasberrypi
properties (22)
authorkanedizzle08
permlinkre-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20170911t172749619z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-09-11 17:27:48
last_update2017-09-11 17:27:48
depth1
children3
last_payout2017-09-18 17:27: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_length54
author_reputation1,950,041,898,490
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,576,869
net_rshares0
@roboticmind ·
@kanedizzle08 There is no real standard way unfortunately. It depends on the wallet and other factors
properties (22)
authorroboticmind
permlinkre-kanedizzle08-re-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20170916t143303318z
categorygridcoin
json_metadata{"tags":["gridcoin"],"users":["kanedizzle08"],"app":"steemit/0.1"}
created2017-09-16 14:32:57
last_update2017-09-16 14:32:57
depth2
children2
last_payout2017-09-23 14:32: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_length101
author_reputation1,970,312,669,021
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,060,296
net_rshares0
@kanedizzle08 ·
I would love to have my Pi be a litecoin wallet
properties (22)
authorkanedizzle08
permlinkre-roboticmind-re-kanedizzle08-re-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20170917t033430217z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"busy/1.0.0"}
created2017-09-17 03:34:30
last_update2017-09-17 03:34:30
depth3
children1
last_payout2017-09-24 03:34: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_length47
author_reputation1,950,041,898,490
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,103,729
net_rshares0
@roboticmind · (edited)
This comment isn't needed anymore

Editing can now be done on Steem, look at the post above, it should be up to date now.
👍  
properties (23)
authorroboticmind
permlinkre-roboticmind-how-to-install-a-gridcoin-wallet-on-a-raspberry-pi-20181024t121244779z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2018-10-24 12:12:42
last_update2019-09-16 23:49:21
depth1
children0
last_payout2018-10-31 12:12: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_length121
author_reputation1,970,312,669,021
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,955,341
net_rshares559,164,137
author_curate_reward""
vote details (1)
@steemitboard ·
Congratulations @roboticmind! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/firstpost.png)](http://steemitboard.com/@roboticmind) You published your First Post
[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/firstvoted.png)](http://steemitboard.com/@roboticmind) You got a First Vote
[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/firstcomment.png)](http://steemitboard.com/@roboticmind) You made your First Comment

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-roboticmind-20170802t035648000z
categorygridcoin
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-08-02 03:56:48
last_update2017-08-02 03:56:48
depth1
children0
last_payout2017-08-09 03:56: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_length1,005
author_reputation38,975,615,169,260
root_title"How to Install a Gridcoin Wallet on a Raspberry Pi"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,498,093
net_rshares0