Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucafalasco/cyt
đź’µ Real time visualization of â‚żitcoin transactions all over the world
https://github.com/lucafalasco/cyt
bitcoin bitcoin-api bitcoin-transaction-visualizer d3js mobx mobx-react react websocket
Last synced: 23 days ago
JSON representation
đź’µ Real time visualization of â‚żitcoin transactions all over the world
- Host: GitHub
- URL: https://github.com/lucafalasco/cyt
- Owner: lucafalasco
- License: mit
- Created: 2017-07-02T18:33:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-24T16:27:21.000Z (almost 6 years ago)
- Last Synced: 2024-10-11T11:16:08.470Z (about 1 month ago)
- Topics: bitcoin, bitcoin-api, bitcoin-transaction-visualizer, d3js, mobx, mobx-react, react, websocket
- Language: JavaScript
- Homepage: https://lucafalasco.github.io/cyt/
- Size: 582 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CYT
#### ⚠️ could be currently broken due to an [issue](https://github.com/blockcypher/explorer/issues/248) with BlockCypher WS API
CYT is a real time visualization of Bitcoin, Litecoin, Dash and Dogecoin transactions all over the world.
Data is retrieved and sent to the application through the BlockCypher [WebSocket API](https://blockcypher.github.io/documentation/#websocket_webhook).
Transactions are represented by color-coded ripples, the bigger the ripple, the larger the amount of coins exchanged.
Very large transactions are highlighted by a "gear-like" pattern.Hovering / clicking on the ripple gives more information about the transaction.
The project is built with React and MobX.
D3 is used for SVG manipulation and transitions.## Install dependencies:
```sh
yarn
```## Start development server:
```sh
yarn start
```head to http://localhost:8000/ to see the app running
## Build for production:
```sh
yarn build
```Bundled files can be found in `build/`
## Resources
- [BlockCypher](https://www.blockcypher.com/)
- [React](https://facebook.github.io/react/)
- [D3](https://d3js.org/)
- [MobX](https://github.com/mobxjs/mobx)
- [AccurApp](https://github.com/accurat/accurapp)