Skip to content

edivanteixeira/udacity-private-blockchain

Repository files navigation

Blockchain Data

Blockchain has the potential to change the way that the world approaches data. Develop Blockchain skills by understanding the data model behind Blockchain by developing your own simplified private blockchain.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Requirements

Running soluction

  • Use NPM to initialize your project and create package.json to store project dependencies.
npm init
  • Install all dependency that have in our package.json file
npm install 
  • Running app in port 8000
npm start

Create Block

curl -X POST \
  http://localhost:8000/block \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d 'body=teste!'

Get block by height

curl -X GET \
  http://localhost:8000/block/0

About

Private blockchain used in udacity course

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published