mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-27 15:01:08 +00:00
Update README.md
This commit is contained in:
parent
0a84b8f842
commit
6e273d378f
|
@ -1,8 +1,8 @@
|
|||
# Blockchain
|
||||
|
||||
A Blockchain is a type of **distributed ledger** technology (DLT) that consists of growing list of records, called **blocks**, that are securely linked together using **cryptography**.
|
||||
A Blockchain is a type of **distributed ledger** technology (DLT) that consists of a growing list of records, called **blocks**, that are securely linked together using **cryptography**.
|
||||
|
||||
Let's breakdown the terminologies in the above definition. We find below terminologies,
|
||||
Let's break down the terminologies in the above definition. We find below terminologies,
|
||||
|
||||
- Digital Ledger Technology (DLT)
|
||||
- Blocks
|
||||
|
@ -10,35 +10,35 @@ Let's breakdown the terminologies in the above definition. We find below termino
|
|||
|
||||
## Digital Ledger Technology
|
||||
|
||||
It is otherwise called as distributed ledger technology. It is simply the opposite of centralized database. Firstly, what is a **ledger**? A ledger is a book or collection of accounts that records account transactions.
|
||||
It is otherwise called distributed ledger technology. It is simply the opposite of a centralized database. Firstly, what is a **ledger**? A ledger is a book or collection of accounts that records account transactions.
|
||||
|
||||
*Why is Blockchain addressed as digital ledger if it can record more than account transactions? What other transaction details and information can it hold?*
|
||||
*Why is Blockchain addressed as a digital ledger if it can record more than account transactions? What other transaction details and information can it hold?*
|
||||
|
||||
Digital Ledger Technology is just a ledger which is shared among multiple nodes. This way there exist no need for central authority to hold the info. Okay, how is it differentiated from central database and what are their benefits?
|
||||
Digital Ledger Technology is just a ledger that is shared among multiple nodes. This way there exists no need for central authority to hold the info. Okay, how is it differentiated from a central database and what are their benefits?
|
||||
|
||||
There is an organization which has 4 branches whose data are stored in a centralized database. So even if one branch needs any data from ledger they need an approval from database in charge. And if one hacks the central database he gets to tamper and control all the data.
|
||||
There is an organization that has 4 branches whose data are stored in a centralized database. So even if one branch needs any data from the ledger it needs approval from the database in charge. And if one hacks the central database he gets to tamper and control all the data.
|
||||
|
||||
Now lets assume every branch has a copy of the ledger and then once anything is added to the ledger by anyone branch it is gonna automatically reflect in all other ledgers available in other branch. This is done using Peer-to-peer network.
|
||||
Now let's assume every branch has a copy of the ledger and then once anything is added to the ledger by any branch it is gonna automatically reflect in all other ledgers available in other branches. This is done using a peer-to-peer network.
|
||||
|
||||
So this means even if information is tampered in one branch we can find out. If one branch is hacked we can be alerted ,so we can safeguard other branches. Now, assume these branches as computers or nodes and the ledger is a transaction record or digital receipt. If one ledger is hacked in a node we can detect since there will be a mismatch in comparison with other node information. So this is the concept of Digital Ledger Technology.
|
||||
This means that even if information is tampered with in one branch we can find out. If one branch is hacked we can be alerted, so we can safeguard other branches. Now, assume these branches as computers or nodes and the ledger is a transaction record or digital receipt. If one ledger is hacked in a node we can detect since there will be a mismatch in comparison with other node information. So this is the concept of Digital Ledger Technology.
|
||||
|
||||
*Is it required for all nodes to have access to all information in other nodes? Wouldn't this require enormous storage space in each node?*
|
||||
|
||||
## Blocks
|
||||
|
||||
In short a block is nothing but collections of records with a labelled header. These are connected cryptographically. Once a new block is added to a chain, the previous block is connected, more precisely said as locked and hence, will remain unaltered. We can understand this concept once we get a clear understanding of working mechanism of blockchain.
|
||||
In short, a block is nothing but a collection of records with a labelled header. These are connected cryptographically. Once a new block is added to a chain, the previous block is connected, more precisely said as locked, and hence, will remain unaltered. We can understand this concept once we get a clear understanding of the working mechanism of blockchain.
|
||||
|
||||
## Cryptography
|
||||
|
||||
It is the practice and study of secure communication techniques in the midst of adversarial behavior. More broadly, cryptography is the creation and analysis of protocols that prevent third parties or the general public from accessing private messages.
|
||||
It is the practice and study of secure communication techniques amid adversarial behavior. More broadly, cryptography is the creation and analysis of protocols that prevent third parties or the general public from accessing private messages.
|
||||
|
||||
*Which cryptography technology is most widely used in blockchain and why?*
|
||||
|
||||
So, in general, blockchain technology is a distributed record holder which records the information about ownership of an asset. To define precisely,
|
||||
So, in general, blockchain technology is a distributed record holder that records the information about ownership of an asset. To define precisely,
|
||||
> Blockchain is a distributed, immutable ledger that makes it easier to record transactions and track assets in a corporate network.
|
||||
An asset could be tangible (such as a house, car, cash, or land) or intangible (such as a business) (intellectual property, patents, copyrights, branding). A blockchain network can track and sell almost anything of value, lowering risk and costs for everyone involved.
|
||||
|
||||
So this is all about introduction to blockchain technology. To learn more about the topic refer below links....
|
||||
So this is all about the introduction to blockchain technology. To learn more about the topic refer below links....
|
||||
* <https://en.wikipedia.org/wiki/Blockchain>
|
||||
* <https://en.wikipedia.org/wiki/Chinese_remainder_theorem>
|
||||
* <https://en.wikipedia.org/wiki/Diophantine_equation>
|
||||
|
|
Loading…
Reference in New Issue
Block a user