proin / simple-blockchain

Project for understanding bitcoin (blockchain) algorithm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple BlockChain

Project for understanding bitcoin(blockchain) algorithm.

Installation

git clone https://github.com/proin/simple-blockchain
cd simple-blockchain
npm install

Run Code

API_PORT=3000 P2P_PORT=4000 node blockchain.js 
API_PORT=3001 P2P_PORT=4001 PEERS=ws://localhost:4000 node blockchain.js 

API

http://host:port/blocks

  • Show list of blockchain

http://host:port/mining

  • create new block with Proof of Work

http://host:port/peers/add?peer=ws://localhost:4000

  • add peers

Reference

About

Project for understanding bitcoin (blockchain) algorithm

License:MIT License


Languages

Language:JavaScript 99.1%Language:Shell 0.9%