BTC-RPC-EXPLORER

This guide will allow you to operate and utilize your Dojo to back a full Bitcoin Explorer. (This set up is designed to be accessible from your local LAN only)

Node.js

We will be completely operating from your main device, unless otherwise stated. So grab your laptop, and follow along.

Determine which download you need:

$ uname -m

Now head to: https://nodejs.org/en/download/

Right click on the correct download to "Copy link address" you need. For this example I'll use the linux x64 download.

$ wget https://nodejs.org/dist/v10.16.3/node-v10.16.3-linux-x64.tar.xz

Unpack and install

$ tar -xf node-v10.16.3-linux-x64.tar.xz
$ sudo rm -r *.tar.xz
$ cd node-v10.16.3-linux-x64
$ sudo cp -R * /usr/local/

Check the version

$ node -v
v10.16.3
$ npm -v
6.9.0

And that's it for node.js!

Install the Explorer

First, head over to github and read up on the explorer: https://github.com/janoside/btc-rpc-explorer

Ok, now we are going to pull the repo using git (alternatively you can use wget) and install it using npm.

Now we need to set the .env file. To do this we are going to edit the .env-sample file, then save as .env to activate it.

Ok, now we are all set... all thats left is to start.

Go to 127.0.0.1:3002 (or whatever port you used) and you should now have access to your full explorer!

Credits

Huge shout out to janoside for making this RPC explorer. And the Dojo Telegram group for all the help.

Join the telegram group at: https://t.me/samourai_dojo

DM me on Twitter: @BTCxZelko or Telegram @BTCxZelko if you have any questions.

https://tippin.me/@BTCxZelko <---So my wife doesn't kill me 😅

Last updated

Was this helpful?