Changes between Version 3 and Version 4 of other/summer/2019/blockchain


Ignore:
Timestamp:
Aug 8, 2019, 4:07:58 PM (5 years ago)
Author:
nickheah07
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • other/summer/2019/blockchain

    v3 v4  
    77should be able to store these results and link them to the many containers of drugs moving through the supply chain while maintaining the privacy of certain data and transactions.
    88We believe that blockchain technology contains many beneficial attributes that will streamline and simplify this process for all relevant parties.
    9 
     9\\
     10\\
    1011
    1112**What is Blockchain?**
    1213----
    1314In simple words, a blockchain is "a continuously growing list of records linked and secured using cryptography." Essentially a chain of blocks, each block contains transactions made between entities and information such as a timestamp and a hash pointer to the previous block. Because hash functions produce unique hashes for the most part, we know that there could have only be one specific block the hash pointer was pointing to, and this type of chaining prevents people from easily changing the important contents (transactions) recorded by the blockchain.
    14 
     15\\
     16\\
     17Within a blockchain network, multiple connected nodes receive transactions placed by users, and it is the nodes' jobs to propagate and order these transactions. Each node will come up with their own block to propose as the next block in the blockchain, but how do we come to a consensus on which block to choose?\\
     18- Proof of work: Each node must solve a cryptographic puzzle regarding their block, and the first one to do so wins\\
     19- Proof of stake: The more assets in a network a node is willing to stake, the more likely their block will be chosen\\
     20- Random choice\\
     21- Third-party consensus systems\\
     22\\
    1523
    1624**Hyperledger Fabric**