This repository includes implementation of a simple blockchain for it's core features (transaction, blocks, miners etc.)
- Node.js v10.15.3 or higher
- npm v6.4.1 or higher
Clone the repository
git clone https://github.com/Zigurat-blockchain-masters/blockchain-core.git
Install dependencies
npm install
or using yarn
yarn install
To run the tests, run the following command (it will automatically run all the tests under the test
directory)
npm run test
To generate code coverage report, run the following command
npm run test:coverage
or using yarn
yarn test:coverage