create account

Steem Mining in Microsoft Windows : A Builder's Guide (Part 1) by bitcube

View this thread on: hive.blogpeakd.comecency.com
· @bitcube · (edited)
$39.67
Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)
This is a guide for users who like to build a Windows-based Steem miner.  Many thanks to **@arhag** who helped me clear the last Win-build error. 

Edit: A user requested the rar files be changed to zip files.  These files are changed. Winrar is no longer needed.


Prerequisite
-------------

You will need to have a basic level of understanding of Microsoft Windows and Visual Studio compilation.  

You will need have 64bit Microsoft Windows7 and above, at least 4GB RAM and 500GB disk space. And a good Internet connection.

----------


Dependencies
-------------

First download the following software:

|                   <i class="icon-down-circled"></i>Software                       | Link            |
 --------------------------------------------- | ------------------
|Visual Studio 2013 Express (Desktop)  |           https://www.microsoft.com/en-sg/download/details.aspx?id=44914  |
|CMake 2.8.12.2  |           https://cmake.org/files/v2.8/cmake-2.8.12.2-win32-x86.zip  |
| Boost 1.58.0          | http://sourceforge.net/projects/boost/files/boost/1.58.0/boost_1_58_0.zip |
| OpenSSL         | https://www.openssl.org/source/ |
| Doxygen         | http://www.stack.nl/~dimitri/doxygen/download.html |
|ActivePerl 5.16.3 for Windows        | http://www.activestate.com/activeperl/downloads |
| Python (2.7 or 3.x)       | https://www.python.org/ |


> <i class="icon-file"></i>**Note:**

> - Make sure you have sufficient space for Visual Studio 2013. The download file itself is huge, taking up a few Gig of space. 
> - Install VS2013 and you will need to use it to compile the rest.


#### <i class="icon-right-hand"></i> Build Boost

Use this guide: http://www.boost.org/doc/libs/1_58_0/more/getting_started/windows.html

```
>bootstrap.bat

>b2 --build-dir=build-directory toolset=msvc-12.0  address-model=64  --build-type=complete stage
```
> <i class="icon-file"></i>**Note:**

> The compiled library is in this folder - \boost_1_58_0\stage\lib

#### <i class="icon-right-hand"></i>Build OpenSSL

Use this guide: http://p-nand-q.com/programming/windows/building_openssl_with_visual_studio_2013.html

```
>Look under the section "Building the 64-bit Release Static Library"
>Change to the source directory, for example T:\openssl-src-64
>Run perl Configure VC-WIN64A --prefix=T:\Build-OpenSSL-VC64-Release-Static. This will make T:\Build-OpenSSL-VC64-Release-Static your output directory; it should be fairly obvious how you can change that.
>Run ms\do_win64a
>Run nmake -f ms\nt.mak
>Run nmake -f ms\nt.mak install 
```
   
> **Note:**

> If you need to dive deeper, you can refer to this guide - http://developer.covenanteyes.com/building-openssl-for-visual-studio/
> 
#### <i class="icon-right-hand"></i> Build Doxygen

Use this guide: http://www.stack.nl/~dimitri/doxygen/download.html

```
>git clone https://github.com/doxygen/doxygen.git

>cd doxygen

>cmake.exe -G "Visual Studio 12 Win64"

>Open the generated Visual Studio solution file and use it to compile doxygen

```
[<img src="https://i.imgsafe.org/c61b50adfa.jpg">]
```

> Right-click on the "ALL_BUILD" project file and click Build.
```


----------


Let's Check Out Steem
-------------------

I have encountered numerous obstacles with building Steem on Visual Studio 2013, namely it does not follow C++ standards closely.  I am sharing with you a working build and possible pit holes to watch out for.  

There are some changes needed to be make to the original Steem source codes to make it compatible with Windows.  I have made the pull requests and they are pending review and approval by the developers.  For now, I place the changes in btscube repository in github.
```
>Add CMake.exe to the PATH environment variable

>L:\mkdir steem

>cd steem

>https://github.com/btscube/steem

>cd steem

>git submodule update --init --recursive


>mkdir build

>cd build

>set BOOST_ROOT=L:\boost_1_58_0

>set OPENSSL_ROOT_DIR=L:\OpenSSL 

>set DOXYGEN_EXECUTABLE=L:\doxygen\bin\doxygen.exe

>cmake.exe -G "Visual Studio 12 Win64" -DBOOST_ROOT="$BOOST_ROOT" -DOPENSSL_ROOT_DIR="$OPENSSL_ROOT" -DDOXYGEN_EXECUTABLE="$DOXYGEN_EXECUTABLE" -DCMAKE_BUILD_TYPE=Release -DLOW_MEMORY_NODE=ON ..\steem

```

You should see an output as follows:
```
-- BUILD_STEEM_TESTNET: OFF
-- LOW_MEMORY_NODE: ON
--
--              CONFIGURING FOR LOW MEMORY NODE
--
-- Using custom FindBoost.cmake
-- Boost version: 1.58.0
-- Found the following Boost libraries:
--   thread
--   date_time
--   system
--   filesystem
--   program_options
--   signals
--   serialization
--   chrono
--   unit_test_framework
--   context
--   locale
-- Using custom FindBoost.cmake
-- Boost version: 1.58.0
-- Found the following Boost libraries:
--   coroutine
-- Configuring Steem on WIN32
-- tcl INCLUDE PATH: /include
-- Could NOT find Tclsh (missing:  TCL_TCLSH)
-- Could NOT find TCL (missing:  TCL_LIBRARY)
-- Could NOT find TCLTK (missing:  TCL_LIBRARY TK_LIBRARY TK_INCLUDE_PATH)
-- Could NOT find TK (missing:  TK_LIBRARY TK_INCLUDE_PATH)
-- tcl_library: TCL_LIBRARY-NOTFOUND
-- Configuring project fc located in: L:/stm2/steem/libraries/fc
-- Configuring fc to build on Win32
-- Using custom FindBoost.cmake
-- Boost version: 1.58.0
-- Found the following Boost libraries:
--   thread
--   date_time
--   system
--   filesystem
--   program_options
--   signals
--   serialization
--   chrono
--   unit_test_framework
--   context
--   locale
--   iostreams
-- Using custom FindBoost.cmake
-- Boost version: 1.58.0
-- Found the following Boost libraries:
--   coroutine
-- Setting up OpenSSL root and include vars to L:\OpenSSL, L:\OpenSSL/include
-- Found OpenSSL: L:/openssl/lib/ssleay32.lib;L:/openssl/lib/libeay32.lib (found version "1.0.1g")
** websocketpp

=========== Used Build Configuration =============

-- ENABLE_CPP11        = ON
-- BUILD_EXAMPLES      = OFF
-- BUILD_TESTS         = OFF

-- WEBSOCKETPP_ROOT    = L:/steem/steem/libraries/fc/vendor/websocketpp
-- WEBSOCKETPP_BIN     = L:/steem/build/libraries/fc/vendor/websocketpp/bin
-- WEBSOCKETPP_LIB     = L:/steem/build/libraries/fc/vendor/websocketpp/lib
-- Install prefix      = L:/steem/steem/libraries/fc/vendor/websocketpp/install

-- WEBSOCKETPP_BOOST_LIBS        =
-- WEBSOCKETPP_PLATFORM_LIBS     =
-- WEBSOCKETPP_PLATFORM_TLS_LIBS =

-- OPENSSL_FOUND        = TRUE
-- OPENSSL_INCLUDE_DIR     = L:\OpenSSL/include
-- OPENSSL_LIBRARIES = L:/openssl/lib/ssleay32.lib;L:/openssl/lib/libeay32.lib
-- OPENSSL_VERSION = 1.0.1g

-- Could NOT find Curses (missing:  CURSES_LIBRARY CURSES_INCLUDE_PATH)
-- Readline path
-- Could NOT find Readline (missing:  Readline_INCLUDE_DIR Readline_LIBRARY)
-- eay=L:/openssl/bin/libeay32.dll
-- Finished fc module configuration...
--

             CONFIGURED FOR STEEM NETWORK


--

             CONFIGURED FOR LOW MEMORY NODE


-- Configuring done
-- Generating done
-- Build files have been written to: L:/steem/build
```

><i class="icon-file"></i> **Note:**

> - The example above uses drive L:\. You may use other path location.
> - This configuration builds steem as a low-memory node, you can opt to turn it off.
> - This configuration has "ENABLE_CONTENT_PATCHING" off. You can opt to turn it on by adding this parameter to the cmake command "-ENABLE_CONTENT_PATCHING=ON"
> - You can safely ignore the error with ncurses and readline.  They are not really needed.


----------


Let's build Steem!
-------------

CMake will generate a list of files and folders for the build.

[<img src="https://i.imgsafe.org/c4cce2e38d.jpg">]

```
>Open the Steem.sln solution
```
On the right plane, you will see a list of projects. 

[<img src="https://i.imgsafe.org/c5076145ab.jpg">]

```
>Right-click the secp256k1 project and unload it.

>Get the extra file secp256k1-zkp.zip from 
https://mega.nz/#!2Zo0GKII!sX2kIA-1hiRcjvLei1cCz7gqdCNJC9IjnUwvClrUK0o


>Extra the folder from the rar file and replace the your local subfolder eg L:\steem\steem\libraries\fc\vendor\secp256k1-zkp with it.
```
><i class="icon-file"></i> **Note:**

> - The original secp256k1 project included is slow in mining. We will use a highly optimised one from btscube github instead.

[<img src="https://i.imgsafe.org/c5f81d536f.jpg">]

```
>Right-click on the steemd project and build it

>Once it is successfully built, you will find steem.exe in the folder \build\programs\steemd\Release

```
Now we are ready to build the cli_wallet.

[<img src="https://i.imgsafe.org/c685abec51.jpg">]

```
>Right-click on the cli_wallet project and build it

>Once it is successfully built, you will find cli_wallet.exe in the folder \build\programs\cli_wallet\Release

```

#### <i class="icon-right-hand"></i> Running the newly built Steem

I will touch on running Steem in Part 2 of the guide.  You will need the following runtime components.

|                   <i class="icon-down-circled"></i>Steem Runtime Components                       | Link            |
 --------------------------------------------- | ------------------
|Visual C++ Redistributable Packages for Visual Studio 2013  |           https://www.microsoft.com/en-us/download/details.aspx?id=40784  |
|runtimeparts.zip|https://mega.nz/#!2Zo0GKII!sX2kIA-1hiRcjvLei1cCz7gqdCNJC9IjnUwvClrUK0o |


#### <i class="icon-right-hand"></i> Stay tuned for Part 2!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 7 others
properties (23)
authorbitcube
permlinksteem-mining-in-microsoft-windows-a-builder-s-guide-part-1
categorysteem
json_metadata{"tags":["steem","steem-mining"],"image":["https://i.imgsafe.org/c61b50adfa.jpg","https://i.imgsafe.org/c4cce2e38d.jpg","https://i.imgsafe.org/c5076145ab.jpg","https://i.imgsafe.org/c5f81d536f.jpg","https://i.imgsafe.org/c685abec51.jpg"],"links":["https://www.microsoft.com/en-sg/download/details.aspx?id=44914","http://www.boost.org/doc/libs/1_58_0/more/getting_started/windows.html","http://p-nand-q.com/programming/windows/building_openssl_with_visual_studio_2013.html","http://www.stack.nl/~dimitri/doxygen/download.html","https://github.com/btscube/steem","https://mega.nz/#!2Zo0GKII!sX2kIA-1hiRcjvLei1cCz7gqdCNJC9IjnUwvClrUK0o","https://www.microsoft.com/en-us/download/details.aspx?id=40784"]}
created2016-07-06 03:00:12
last_update2016-07-06 08:08:30
depth0
children15
last_payout2016-08-23 10:56:24
cashout_time1969-12-31 23:59:59
total_payout_value35.762 HBD
curator_payout_value3.906 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,255
author_reputation8,016,881,813,007
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,870
net_rshares57,658,524,315,598
author_curate_reward""
vote details (71)
@bunny ·
great tutorial
properties (22)
authorbunny
permlinkre-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160706t121114770z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-06 12:11:15
last_update2016-07-06 12:11:15
depth1
children0
last_payout2016-08-23 10:56: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_length14
author_reputation2,975,000,206,258
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,708
net_rshares0
@denverliu ·
Thank you, it's a good tutorial.
👍  
properties (23)
authordenverliu
permlinkre-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160718t081427396z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-18 08:14:27
last_update2016-07-18 08:14:27
depth1
children0
last_payout2016-08-23 10:56: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_length32
author_reputation12,248,503,488
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id162,121
net_rshares431,971,420
author_curate_reward""
vote details (1)
@devnull ·
Fantastic work. Will save me getting a headache tomorrow when I try compiling again. Thanks for your time on this.
properties (22)
authordevnull
permlinkre-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160710t235148663z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-10 23:51:51
last_update2016-07-10 23:51:51
depth1
children0
last_payout2016-08-23 10:56: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_length114
author_reputation28,815,156,430
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,104
net_rshares0
@falzxx · (edited)
that https://github.com/btscube/steem/releases/tag/v0.8.5b, don't work. can somebody help? do config fine but still not working. some another guy, same problem. i don't mean that link, that steemd.exe.
👍  
properties (23)
authorfalzxx
permlinkre-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160713t024522403z
categorysteem
json_metadata{"tags":["steem"],"links":["https://github.com/btscube/steem/releases/tag/v0.8.5b,"]}
created2016-07-13 02:44:03
last_update2016-07-13 02:46:03
depth1
children1
last_payout2016-08-23 10:56: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_length201
author_reputation62,860,390,074
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,226
net_rshares4,835,151
author_curate_reward""
vote details (1)
@rolik · (edited)
it dont work now we wait for a new version
properties (22)
authorrolik
permlinkre-falzxx-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160717t135245597z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-17 13:52:54
last_update2016-07-17 13:53:15
depth2
children0
last_payout2016-08-23 10:56: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_length42
author_reputation961,931,333,036
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id145,193
net_rshares0
@gobbahfett · (edited)
A little on the long side, but great article. Thanks a lot. I can finally get up and running mining STEEM. Too bad I wasn't doing this months ago ... sigh.
👍  
properties (23)
authorgobbahfett
permlinkre-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160713t015806159z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-13 01:58:06
last_update2016-07-13 02:10:45
depth1
children1
last_payout2016-08-23 10:56: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_length155
author_reputation11,452,781,153
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,885
net_rshares235,940,246
author_curate_reward""
vote details (1)
@entrepreneur ·
Don't worry man, steam is still young. You'll have plenty of time to mine and make a HUGE Profit

Cheers!
👍  
properties (23)
authorentrepreneur
permlinkre-gobbahfett-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160714t012012065z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-14 01:19:45
last_update2016-07-14 01:19:45
depth2
children0
last_payout2016-08-23 10:56: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_length105
author_reputation177,878,907,758
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id103,484
net_rshares532,160,399
author_curate_reward""
vote details (1)
@kenny-crane ·
This is great!  I have been looking for Steem code for WIndows.  Thanks for sharing!
properties (22)
authorkenny-crane
permlinkre-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160706t041147964z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-06 04:11:45
last_update2016-07-06 04:11:45
depth1
children0
last_payout2016-08-23 10:56: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_length84
author_reputation231,900,469,977,463
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,989
net_rshares0
@khunfarang ·
Warning! mining STEEM is not possible anymore. 
Save your time.

>Can I mine STEEM?
>No. Proof of work mining has been removed from Steem.
>https://steemit.com/faq.html#Can_I_mine_STEEM
properties (22)
authorkhunfarang
permlinkre-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20170705t114041589z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/faq.html#Can_I_mine_STEEM"],"app":"steemit/0.1"}
created2017-07-05 11:40:42
last_update2017-07-05 11:40:42
depth1
children0
last_payout2017-07-12 11:40: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_length185
author_reputation23,724,395,578
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,386,781
net_rshares0
@kodachrome ·
Thanks for making this guide! I have one problem though, when I get to actually compiling Steem.. I just cannot make it find the boost headers:

**
CMake Error at libraries/fc/CMakeModules/FindBoost.cmake:1129 (message):
  Unable to find the requested Boost libraries.

  Unable to find the Boost header files.  Please set BOOST_ROOT to the root
  directory containing Boost or BOOST_INCLUDEDIR to the directory containing
  Boost's headers.
Call Stack (most recent call first):
  libraries/fc/CMakeLists.txt:119 (FIND_PACKAGE)
**

I compiled boost as above and put its build dir as "D:\Build\boost\boost_release".
Ive tried numerous folders and env variables (like Boost_Include_dir) and none of them ever past the find Boost check.  What *exactly* is meant to be in the folder specified as "BOOST_ROOT"? 

thanks again!
properties (22)
authorkodachrome
permlinkre-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160731t121621985z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-31 12:16:21
last_update2016-07-31 12:16:21
depth1
children1
last_payout2016-08-23 10:56: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_length821
author_reputation119,101,290,755
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id509,373
net_rshares0
@kodachrome ·
Any tips? I've even tried downloading pre-built Boost Libs and it still cannot find boost when compiling Steem. It dies at the cmake.  Ive set BOOST_ROOT to various directories in the structure, thinking now this isnt a "cant find problem" but something else??

Also, in the section above about your changes to the Steem source and Git Hub.. you seem to be missing a step as you just list the URL. Assume its a Git checkout command thats missing?
properties (22)
authorkodachrome
permlinkre-kodachrome-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160801t115854784z
categorysteem
json_metadata{"tags":["steem"]}
created2016-08-01 11:58:54
last_update2016-08-01 11:58:54
depth2
children0
last_payout2016-08-23 10:56: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_length446
author_reputation119,101,290,755
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id532,892
net_rshares0
@tadakaluri ·
Very hard to understand and confusing.  Is there any easy method to mine Steem in Windows PC?
👍  , , ,
properties (23)
authortadakaluri
permlinkre-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160706t033644897z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-06 03:36:45
last_update2016-07-06 03:36:45
depth1
children3
last_payout2016-08-23 10:56: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_length93
author_reputation147,902,391,599
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,934
net_rshares3,841,756,777
author_curate_reward""
vote details (4)
@bitcube ·
The above is for the adventurous.

You can get the compiled version here  - https://github.com/btscube/steem/releases/tag/v0.8.5b and save the trouble.
👍  , , , , ,
properties (23)
authorbitcube
permlinkre-tadakaluri-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160706t035636963z
categorysteem
json_metadata{"tags":["steem"],"links":["https://github.com/btscube/steem/releases/tag/v0.8.5b"]}
created2016-07-06 03:56:39
last_update2016-07-06 03:56:39
depth2
children1
last_payout2016-08-23 10:56: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_length151
author_reputation8,016,881,813,007
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id56,963
net_rshares8,259,986,345
author_curate_reward""
vote details (6)
@gobbahfett ·
Thanks for your work! I'll check this out now. Everythings a'ready to go minin'.
👍  
properties (23)
authorgobbahfett
permlinkre-bitcube-re-tadakaluri-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160713t021153661z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-13 02:11:54
last_update2016-07-13 02:11:54
depth3
children0
last_payout2016-08-23 10:56: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_length80
author_reputation11,452,781,153
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,994
net_rshares235,940,246
author_curate_reward""
vote details (1)
@bitcube ·
Try this guide for beginners - https://steemit.com/steem/@bitcube/steem-mining-in-microsoft-windows-a-miner-s-guide-part-2
👍  
properties (23)
authorbitcube
permlinkre-tadakaluri-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160706t075439461z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/steem/@bitcube/steem-mining-in-microsoft-windows-a-miner-s-guide-part-2"]}
created2016-07-06 07:54:42
last_update2016-07-06 07:54:42
depth2
children0
last_payout2016-08-23 10:56: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_length122
author_reputation8,016,881,813,007
root_title"Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id57,355
net_rshares230,597,920
author_curate_reward""
vote details (1)