Coder Social home page Coder Social logo

zubogu / blockchainprinciplesandpractices Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 26 KB

The fundamental data structures and algorithms used to build a typical Blockchain and build up a working example. First, learn how to store single transactions in a block. Second, discover how to store multiple transactions in a block using Merkle trees. Next, learn how to make the Blockchain tamper-proof using mining and proof-of-work. Finally, learn how nodes on a Blockchain maintain consensus. By the end, have the knowledge and tools necessary to build own Blockchain.

C# 100.00%

blockchainprinciplesandpractices's Introduction

BlockchainPrinciplesAndPractices

The fundamental data structures and algorithms used to build a typical Blockchain and build up a working example. First, learn how to store single transactions in a block. Second, discover how to store multiple transactions in a block using Merkle trees. Next, learn how to make the Blockchain tamper-proof using mining and proof-of-work. Finally, learn how nodes on a Blockchain maintain consensus. By the end, have the knowledge and tools necessary to build own Blockchain.

Notes

Storing Transactions in Blocks

Block Header (IBlock interface)

int BlockNumber { get; }
DateTime CreatedDate { get; set; }
string BlockHash { get; }
string PreviousBlockHash { get; set; }
IBlock NextBlock { get; set; }

Run project BlockWithSingleTransaction

Install C# extensions

Open project with Visual Studio Code.

code .

Use Debug .NET Core. Set up breakpoints and start debugging. Check result on debug console.

BlockWithMultipleTransaction Project

Use Merkle Tree to hash all trasactions.

Add List<ITransaction> Transaction { get; } to IBlock interface.

ITransaction interface

string ClaimNumber { get; set; }
decimal SettlementAmount { get; set; }
DateTime SettlementDate { get; set; }
string CarRegistration { get; set; }
int Mileage { get; set; }
ClaimType ClaimType { get; set; }

Merkle Tree

Check Merkle folder.

blockchainprinciplesandpractices's People

Contributors

zubogu avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.