Blockchain in python using functions

There are a total of 10 functions involved in this project ,per-requisites basic blockchain lingo should be known , The project is divided into sub parts , we will traverse sub -parts wise ; 1.Genesis_block : 2.Adding a Transaction A.Now here get_transaction_value is used to take input from the user B.Add transaction , which will […]

Read More Blockchain in python using functions

Understanding concepts of blockchain

The original Paper Highlights are followed :-> Original term tossed up was , A peer to peer Electronic Cash System by Satoshi Nakamoto ,the original abstract from his paper was : Abstract. A purely peer-to-peer version of electronic cash would allow online payments to be sent directly from one party to another without going through […]

Read More Understanding concepts of blockchain

Data Structures

Data Structure is a way of collecting and organizing data ,such that we can optimize our code . For example 1.You can either Store data in tuple or list , depending on operations you want to perform. 2. You can either use yield function use in python or declare data type to store temporary data.As […]

Read More Data Structures