Skip to content

Order book tool for Bitcoin and Ether cryptocurrencies

Notifications You must be signed in to change notification settings

treeindev/crypto-order-book

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Crypto Order Book

Image of the tool

This is a tool to visualize the order book of a couple of crypto currencies: Bitcoin and Ether.

This tool implements the following component tree:

  • App component: the main entry point. It handles connections with the crypto web socket.
  • Header component: Displays the active currency and exposes the group selector.
  • Order book component: Shows the price, value and total relation of each order on the book.
  • Bottom component: Exposes a couple of buttons for toggling the curreny and stopping the socket feed.

To manage the state of the application, the tool is using Redux. The app store can be found under the src/store/main.ts folder. There are a couple of elements to review here:

  • store - This is the application store that manages the state.
  • appSlice - Exposes the reducers that allow each component of the app to update the state. This is based on the single source of truth principle.

The data on the application is not passed via the component tree. Instead, each component is using Redux's useSelector hook to get values from the state.

This is the initial version. There are missing functionalities to be added:

  • Add grouping functionality
  • Add "kill feed" functionality
  • Adapt UI to mobile devices
  • Include unit testing
  • Performance improvement + building
  • Tool hosting
  • Extend the documentation

Steps to run the project locally

Install project dependencies

yarn install

Run the project using:

yarn start

Run the tests:

yarn test

Build the project:

yarn build

About

Order book tool for Bitcoin and Ether cryptocurrencies

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published