Harshit Kumar Srivastava 23 Seminar Report
Harshit Kumar Srivastava 23 Seminar Report
on
“BLOCKCHAIN TECHNOLOGY”
Submitted in Partial Fulfilment of the Requirements for
the degree
of
Bachelor of Technology
in
Computer Science & Engineering
SUBMITTED BY:
Harshit Kumar Srivastava
(180013135023)
SIGNATURE SIGNATURE
Er. Anshu Singh Er. Pankaj Kumar
ACKNOWLEDGEMENT
Firstly, I am thankful to my higher power, the divinity for providing me guidance and ultimate
power to pursue my work on this seminar.
I would also like to express my gratitude toward my supervisors Er. Anshu Singh and Er.
Pankaj Singh for providing their invaluable guidance, comments, suggestions throughout the
course of the seminar and providing me all the necessary resources to conduct my seminar. I
feel highly obliged that I got the opportunity to learn about such an incredible technology and
get to share my views on it with my friends and peers through this seminar.
I have no words to describe my feelings full of gratitude towards my beloved parents and
venerable teachers. My parents have done everything for me -every support, every care, every
sacrifice one can imagine. I wish every child could get the kind of support that I always get
from my parents.
How can I forget to mention the contribution of all my friends, peers and well-wishers, who
believed in my hard work and sincerity. I am grateful to have you all in my life.
Table of Contents
1. Abstract……………………………………………………………………………………..………..1
2. Introduction……………………………………………………………………………………...…..2
3. Short History On Bitcoin…………………………………………………………………………3
4. Blockchain technology: How does it work…………………………………………………..4-5
5. Applications of Technology ……………………………………………………………………..6
6. Risks for Adoption…………………………………………………………………….…...………7
7. Government of India & Blackchain…………………………………………………………….8
8. Corporate funding and interests…………………………………………………………………9
9. Conclusion…………………………………………………………………………………….……10
10. Bibliography….……………………………………………………………………………..….....11
Table of Figures
1. Figure:1: Working of Blockchain Technology ……………………………………..………..4
2. Figure 2: Companies Investment in Blockchain Technology……………………………...9
Table of Tables
1. Table:1: Indian States That Have Announced Blockchain Projects……………………….8
Page |1
ABSTRACT
A blockchain is essentially a distributed database of records or public ledger of all
transactions or digital events that have been executed and shared among participating
parties. Each transaction in the public ledger is verified by consensus of a majority of the
participants in the system. And, once entered, information can never be erased. The
blockchain contains a certain and verifiable record of every single transaction ever made.
Bitcoin, the decentralized peer to peer digital currency, is the most popular example that uses
blockchain technology. The digital currency bitcoin itself is highly controversial but the
underlying blockchain technology has worked flawlessly and found wide range of
applications in both financial and nonfinancial world.
The main hypothesis is that the blockchain establishes a system of creating a distributed
consensus in the digital online world. This allows participating entities to know for certain
that a digital event happened by creating an irrefutable record in a public ledger. It opens
the door for developing a democratic open and scalable digital economy from a centralized
one. There are tremendous opportunities in this disruptive technology and revolution in this
space has just begun.
This report describes blockchain technology and some compelling specific applications in
both financial and nonfinancial sector. We then look at the challenges ahead and business
opportunities in this fundamental technology that is all set to revolutionize our digital world.
Page |2
INTRODUCTOIN
Blockchain is a technology that allows data to be stored and exchanged on a peer-to-peer1
(P2P) basis. Structurally, blockchain data can be consulted, shared and secured thanks to
consensus-based algorithms2. It is used in a decentralised manner and removes the need for
intermediaries, or "trusted third parties".
Blockchain emerged from the marriage of two concepts:
1. Asymmetrical cryptography, which allows the use of a paired public and private key
system.
2. Distributed IT architecture (especially P2P).
Asymmetrical cryptography enables users who do not know each other to exchange encrypted
information. The system is based on a public key that can be made available to all and allows
encrypted data to be sent to a third party. The third party accesses the encrypted data via a
paired private key. The public key is similar to a bank account number, which can be provided
to anyone. The private key, which remains secret, acts as the password to the same bank
account.
A distributed system is a series of independent computers (nodes) that connect to a network
and can communicate with each other. It is similar to the Internet, which also has no central
node. Downtime for one server does not affect the other users. The blockchain network is a
P2P distributed system. Information is shared among the different users.
The blockchain is open-ended and operates in a decentralised, ongoing manner thanks to the
activity of its users who can store information, and to consensus algorithms (notably "proof-
of-work" and "proof-of-stake"3) which certify the information per block (unit). Users running
these algorithms are known as miners. When a block has been validated, it is added to the
blockchain and shared with the network. Blocks are connected to each other in such a way that
if users wish to change one block, the entire blockchain must also be changed. On the Bitcoin
blockchain, network security is guaranteed by the availability of massive computer power.
These two pillars (asymmetrical cryptography and distributed IT architecture) make it possible
to create a secure environment that establishes a new basis for trust and allows for new ways
of exchanging data, new types of transactions and new forms of contracts.
Blockchain technology is finding applications in wide range of areas—both financial and non-
financial.
Financial institutions and banks no longer see blockchain technology as threat to traditional
business models. The world’s biggest banks are in fact looking for opportunities in this area by
doing research on innovative blockchain applications. In a recent interview Rain Lohmus of
Estonia’s LHV bank told that they found Blockchain to be the most tested and secure for some
banking and finance related applications.
Non-Financial applications opportunities are also endless. We can envision putting proof of
existence of all legal documents, health records, and loyalty payments in the music industry,
notary, private securities and marriage licenses in the blockchain. By storing the fingerprint of
the digital asset instead of storing the digital asset itself, the anonymity or privacy objective
can be achieved.
Page |3
Each transaction is broadcast to every node in the Bitcoin network and is then recorded in a
public ledger after verification. Every single transaction needs to be verified for validity
before it is recorded in the public ledger. Verifying node needs to ensure two things before
recording any transaction:
1. Spender owns the cryptocurrency—digital signature verification on the transaction.
2. Spender has sufficient cryptocurrency in his/her account: checking every transaction
against spender’s account (“public key”) in the ledger to make sure that he/she has
sufficient balance in his/her account.
However, there is question of maintaining the order of these transactions that are broadcast to
every other node in the Bitcoin peer-to-peer network. The transactions do not come in order in
which they are generated and hence there is need for a system to make sure that double-
spending of the cryptocurrency does not occur. Considering that the transactions are passed
node by node through the Bitcoin network, there is no guarantee that orders in which they are
received at a node are the same order in which these transactions were generated.
This means that there is need to develop a mechanism so that the entire Bitcoin network can
agree regarding the order of transactions, which is a daunting task in a distributed system.
The Bitcoin solved this problem by a mechanism that is now popularly known as Blockchain
technology. The Bitcoin system orders transactions by placing them in groups called blocks
and then linking these blocks through what is called Blockchain. The transactions in one block
are considered to have happened at the same time. These blocks are linked to each-other (like
a chain) in a proper linear, chronological order with every block containing the hash of the
previous block. There still remains one problem. Any node in the network can collect
unconfirmed transactions and create a block and then broadcasts it to rest of the network as a
suggestion as to which block should be the next one in the blockchain. How does the network
decide which block should be next in the blockchain? There can be multiple blocks created by
different nodes at the same time. One can’t rely on the order since blocks can arrive at different
orders at different points in the network. Bitcoin solves this problem by introducing a
mathematical puzzle: each block will be accepted in the blockchain provided it contains an
answer to a very special mathematical problem. This is also known as “proof of work”—node
generating a block needs to prove that it has put enough computing resources to solve a
mathematical puzzle. For instance, a node can be required to find a “nonce” which when hashed
with transactions and hash of previous block produces a hash with certain number of leading
zeros. The average effort required is exponential in the number of zero bits required but
verification process is very simple and can be done by executing a single hash.
Page |6
Applications of Technology
Compelling Uses cases in both Financial and Non-Financial Areas
1. Financial Applications:
1.1 Private Securities: It is very expensive to take a company public. A syndicate
of banks must work to underwrite the deal and attract investors. The stock
exchanges list company shares for secondary market to function securely with
trades settling and clearing in a timely manner. It is now theoretically possible
for companies to directly issue the shares via the blockchain. These shares can
then be purchased and sold in a secondary market that sits on top of the
blockchain. Here are some examples:
1.2 Insurance Assets which can be uniquely identified by one or more identifiers
which are difficult to destroy or replicate can be registered in blockchain. This
can be used to verify ownership of an asset and also trace the transaction
history. Any property (physical or digital such as real estate, automobiles,
physical assets, laptops, other valuables) can potentially be registered in
blockchain and the ownership, transaction history can be validated by anyone,
especially insurers
2. Non-Financial Applications:
2.1 Private Securities: It is very expensive to take a company public. A syndicate
of banks must work to underwrite the deal and attract investors. The stock
exchanges list company shares for secondary market to function securely with
trades settling and clearing in a timely manner. It is now theoretically possible
for companies to directly issue the shares via the blockchain. These shares can
then be purchased and sold in a secondary market that sits on top of the
blockchain. Here are some examples:
2.2 Applications of Blockchain in the Music Industry The music industry has gone
a big change in last decade due to the growth of Internet and availability of a
number of streaming services over the Internet. It is impacting everyone in the
music industry-artists, labels, publishers, songwriters and streaming service
providers. The process by which music royalties are determined has always
been convoluted one, but the rise of the Internet has made it even more complex
giving rise to the demand of transparency in the royalty payments by artists and
songwriters.
2.3 Decentralized proof of existence of documents Validating the existence or the
possession of signed documents is very important in any legal solution. The
traditional document validation models rely on central authorities for storing
and validating the documents, which present some obvious security challenges.
These models become even more difficult as the documents become older.
There are so many more non-financial applications in so many fields and it is practically
impossible to mention each of them is this report.
Page |7
STATE PROJECT
Land Registration
TELANGANA
Data Protection
Land Records
Educational Certificates
ANDHRA PRADESH
Road Transport Certificates
KYC for Hotel records
KARNATAKA IP Management
GUJARAT E-Governance
Page |9
Conclusion
To conclude, Blockchain is the technology backbone of Bitcoin. The distributed ledger
functionality coupled with security of BlockChain, makes it very attractive technology to solve
the current Financial as well as non-financial business problems. As far as the technology is
concerned, the cryptocurrency based tech is either in the downward slope of inflated
expectations or in trough of disillusionment.
There is enormous interest in BlockChain based business applications and hence numerous
Start-ups working on them. The adoption definitely faces strong headwind as described before.
The large Financial institutions like Visa, Mastercard, Banks, NASDAQ, etc., are investing in
exploring application of current business models on BlockChain. In fact, some of them are
searching for the new business models in the world of BlockChain. Some would like to stay
ahead of the curve in terms of transformed regulatory environments of BlockChain.
To conclude, we envision BlockChain to go through slow adoption due to the risks associated.
Most of the Startups will fail with few winners. We should be seeing significant adoption in a
decade or two.
Blockchain will fundamentally change financial systems in the next 10,15 years. A blockchain
technology will be applied in many areas because it is about trust, credit, security- the security
of data and the privacy of data. ~Jack Ma
P a g e | 11
Bibliography
1. https://en.wikipedia.org/wiki/Blockchain
2. https://www.youtube.com/watch?v=SSo_EIwHSd4
3. https://www.youtube.com/watch?v=yubzJw0uiE4
4. https://www.moneycontrol.com/news/opinion/an-urgent-need-for-india-to-enable-
cryptocurrency-regulation-6929061.html
5. http://niti.gov.in/