This project is under development. Stuff can break.
Bitcoin Cash is an ideal blockchain with incredible throughput capacity, ability to scale, low transaction fees, 0-confirmation and soon an EVM compatible side chain and much more. Itβs a gem waiting to be discovered by the many.
There is a huge demand for Software Engineers and Developers who work on the Bitcoin Cash Ecosystem. Cash Kit helps to solve this problem. This open source project aims to be the goto place for any new developer(s) interested in working on Bitcoin Cash blockchain by making the onboarding of new teams and developers very easy. This kit provides extensive documentation and codebase, so developers can focus on their business logic and ship a production grade application within a couple of days instead of weeks or months.
Cashweb is one of many respositries from Cashkit.
-
Runing Envoy + React + Tests in a single terminal
cd cashweb/
docker-compose build
docker-compose up
-
Running separatly [3 terminals]
- React app:
npm install
npm start
ordocker build -f Dockerfile.dev -t webclient .
docker run -p 3000:3000 -v /app/node_modules -v $(pwd):/app webclient
- Tests:
npm run test
- Envoy:
cd envoy/
docker build -t envoy .
docker run -p 8080:8080 envoy
- React app:
-
Go to the browser at localhost:3000
- Recreate proto files:
./src/protos/genproto.sh
- React
- gPRC, Web gRPC
- Typescript
- Hooks
- Lazy loading, Code splitting
- Error boundaries
- Hot Reload
- Components.
- Memoized Components. (Prevents unnecessary rerendering)
- Components: They are dumb, they only display the data provided. It may contain some conditional operators and are easy to memoize.
- Containers: They are smart components the are aware of the props. (Props could be directly from the parent or from the store.) These smart components can make calls to business logic code or update the app state.
- Views: These components contain containers and are also aware of the app state.
- Redux: Consists of Actions, Reducers, Sagas and other business logic.
- Utils: Consists of helper functions.
- Protos: Used to connect to gRPC Server and act as a connection client.
- Managers:
- gRPC Manager. inspired from grpc-bchrpc-browser
- Docker/Docker Compose: Containerises the application.
- Hot reload via shared volumes in development mode.
- Envoy: Envoy translates the HTTP/ 1.1 calls produced by the client into HTTP/ 2 calls that can be handled by the services.
- Node interaction: Live Transactions, Fetch Transaction details, Fetch Block details
- Scripts:
genproto.sh
- Testing: Snapshot testing of Components.
After doing a lot of research and figuring out many ways to interact with gRPC server through web client. I ended up following this approach:
- With Envoy (Current approach). grpc/grpc-web
- Snapshot Testing
βΉοΈ Eventually this project will have:
- Ability to interact with a local bchd node(private). β
- Ability to subscribe to custom events via cashserver(private). β
- Docker and Docker-Compose β
- Protos for interactions with cashserver.
- Fetch SLP token data and more interactions.
- Block Subscription.
- Create a wallet and submit transactions.
- Fetch address information.
- Play a game via scanning a QR code [Separate module].
- Kubernetes configs + docs.
- Travis/circle CI configs + docs.
- more...
π Private repositories will be made public in coming week(s).
bitcoincash:qre3vyl5amlua9a80fg9ta3ck806fvqvly9frxe6n4
Contributing guildelines are under progress.
MIT