A lightweight blockchain implementation
The real subject matter or "business logic" will come after my initial implementation.
The master node connects to the database to deliver the node list to the other nodes. A single node requires the master node url in order to function in the decentralized network and validate the chain. Routes:
GET
(/list_node): fetches master connections node listPOST
(/node): add connection to master connections node list
Be sure all config fields prefixed with db_
are set.
./start_master.sh
The mining node server hosts an API that offers routes that allow you to mine blocks, add new transactions, and have a look at the ledger.
Routes:
GET
(/mine): MinesPOST
(/transactions/new): Add a new transactionGET
(/chain): Fetch the ledgerPOST
(/nodes/register): Registers nearby nodes from node listGET
(/nodes/resolve): Resolve and validate our ledger with the other registered nodes
The mining node holds the actual implementation of the blockchain and connects to the master node to retrieve all other connections and interact with the network to keep the blockchain validated.
Fill in master_api_url
in your config/config.json
and be sure the master node is running at this url.
./start_node.sh