Skip to content

Latest commit

 

History

History
58 lines (32 loc) · 730 Bytes

readme.md

File metadata and controls

58 lines (32 loc) · 730 Bytes

Crypto Blockchain on Go

Cryptocurrency blockchain using the Proof of Work concept, with the ability to mine, send & receive transactions etc.

TODO

  • Finilize API to separate modules

  • Create Proof of Stake version

  • Non-crypto version

Run Locally

Clone the project

  git clone https://github.com/mbuslenko/blockchain.git

Go to the project directory

  cd blockchain

Install dependencies

  go get

Start the blockchain server

  cd server
  go run main.go server.go

Start the wallet server

  cd wallet_server
  go run main.go server.go

Related

Other implementation on Node

node-blockchain