Go to file
2021-12-27 19:10:57 -06:00
client Integrate new donation server. Basic sponsor modal 2021-12-27 19:10:57 -06:00
server Separate donation logic from tx streaming server 2021-12-24 10:04:11 -06:00
.gitignore Update licenses 2021-12-03 11:35:25 -06:00
LICENSE Update licenses 2021-12-03 11:35:25 -06:00
README.md Add licenses and readme 2021-12-02 17:04:00 -06:00

Bitfeed

This repo hosts the code behind Bitfeed (bits.monospace.live), which is a live visualization of Bitcoin network activity, focusing on the journey from unconfirmed transactions to confirmed blocks.

Installing

Install on a local machine or hardware node to run a personal copy of the visualization.

Prerequisites

The Bitfeed server relies on a local instance of Bitcoin Core, compiled with ZeroMQ enabled. Fee-related data requires an unpruned node with txindex=1.

Contributing

Install the dependencies...

npm install

...then start Rollup:

npm run dev

Navigate to localhost:5000. You should see your app running. Edit a component file in src, save it, and reload the page to see your changes.

Building and running in production mode

To create an optimised version of the app:

npm run build