Simple, stateless Bitcoin blockchain explorer, via RPC. Built with Node.js, express, bootstrap-v4.
This tool is intended to be a simple, stateless, self-hosted explorer for the Bitcoin blockchain, driven by RPC calls to your own bitcoind node. Because it is stateless, it is easy to run but lacks some (many?) of the features of other explorers.
- Install and run a full, archiving node - instructions. Ensure that your node has full transaction indexing enabled (
txindex=1
) and the RPC server enabled (server=1
). - Synchronize your node with the Bitcoin network.
- Clone this repo
npm install
to install all required dependencies- Optional: Uncomment the "bitcoind" section in env.js to automatically connect to the target node.
npm start
to start the local server- Navigate to http://127.0.0.1:3002/
- Connect using the RPC credentials for your target bitcoin node (if you didn't edit env.js in Step 3)