/Bookchain

personal document tracking blockchain (📕->📗->📘->📙)

Primary LanguageJavaScriptMIT LicenseMIT

Bookchain (📕->📗->📘->📙)

A DApp to track personal document using the Ethereum Blockchain.

How to get started

  • You need to have truffle installed: npm install -g truffle
  1. Run the development console.
truffle develop
  1. Compile and migrate the smart contracts.
// inside the development console.
compile
migrate
  1. Run tests on the smart contracts :
// inside the development console.
test
  1. To interact with the smart contract, start the React app:
// in another terminal (i.e. not in the truffle develop prompt)
cd client
npm run start