Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 39

Computer Science and Engineering

M. Tech 2nd Year SEMESTER – III

CS-607 B Introduction to Block Chain Technology

UNIT I
Introduction
 
Blockchain is the technology of the year 2018. We may thank bitcoin, altcoins
(cryptocurrency),and ICOs (Initial Coin Offering) for the rise of blockchain. Thousands of
blockchains have already been created and available publicly on GitHub and other open-source
platforms. 
 
According to a survey, 58% of large enterprises are thinking of a way to implement blockchain
in their projects.
 Why now?
The blockchain concept was first introduced by Stuart Haber and W. Scott Stornetta in 1991 as
“a cryptographically secured chain of blocks,” which means a chain or blocks that are linked and
cryptographically secured. Each block is a combination of three items;
 A hash pointer to the previous block.
 A timestamp.
 And transaction data.
By design, blockchains are secure and difficult to modify.
 There are three key reasons why blockchain is becoming mainstream today:
 Increased digital processing power
 Rapid growth in cybercrimes
 Rise of bitcoin and cryptocurrency
Blockchain, by design, requires higher processing power than normal data computing. It is all
because of the redundancy of data, distributed storage, and cryptography. Data encryption and
decryption is a costly affair by nature. Today, computers have more processing power .

 Blockchain is seen as a shield against cybercrime.


Cybercrime has grown multifold in the past few years. The hacking of over a billion Yahoo
accounts, the Equifax data breach, and increased ransomware damages are just a few incidents.
As a matter of fact, over one million cyber threats are released every day and by 2020, over 200
billion IoT devices will need security. Today, Cyber Security is one of the biggest challenges for
us
 
Bitcoin and cryptocurrency are one of the biggest reasons for the increasing popularity of
blockchain. Bitcoin is a cryptocurrency created by an anonymous person named Satoshi
Nakamoto, who used blockchain technology to create and distribute secure digital currency.
 

Fundamental problem
 
Today, blockchain is “the blockchain” because of Bitcoin. And if you look at the reason why
Bitcoin was created, there is one word that can describe it better than anything else, i.e.,
TRUST. Bitcoin was created to overcome the mistrust and non-transparency of financial
institutions.
 
Blockchain brings trust to a transactional system.
 
In our system (current or new) missing the trust factor. Do we need to prove to your
customers that the transactions are verified and validated by unbiased third-parties?
Definition of blockchain:
Blockchain is a technology to create and maintain a cryptographically secure, shared, and
distributed ledger (a database) for transactions. Blockchain brings trust, accountability, and
transparency to digital transactions.
All transactions that exist on a blockchain are shared and distributed among a network of
peer-to-peer computers. Transactions are encrypted before they are stored and shared
Challenges
 Blockchain technology fundamentally has a problem and it’s not for everyone. Saving
redundant data on thousands of computers, getting approval from them, encrypting is a lot of
work. Not only that, the blockchains based on Proof of Work (PoW) consensus sich as
Bitcoin can also be energy inefficient and bad for the environment. Blockchain is not for new
system. 
 Here are some of the key points to consider when deciding to build a blockchain.
 Complicated
 As we’ve seen in our earlier definition, blockchain is not easy to implement and some of the
concepts are still new and evolving. Data is redundant on thousands of distributed computers
and all these computers must agree and validate. All users on a blockchain are public but
anonymous and can be anywhere in the world. It’s not something where you can pick up a
phone and make a call. Blockchain technology isn’t easy to understand by non-technical
people and requires an expert level of understanding of technology.
Public and Transparent
Not all systems need to be public and transparent. A blockchain-based system requires
approval from all participating nodes. While the blockchain process is public and
transparent, it could easily lead to some disagreement among participating parties and delay
the processing.
Performance and Time
 Performance is a major concern in a blockchain transaction. Each transaction is distributed
and peer-to-peer and requires all involved parties to validate and approve the changes. Not
only does the process lead to a transaction performance but the time of completion is high.
Transaction cost
Distributing data and cryptographical operations are time- and resource-consuming and lead
to higher transaction costs. Blockchain transactions require a special kind of hardware and
have a high demand for electricity. Normal computers aren’t sufficient to participate as
blockchain nodes. You will need to spend thousands of dollars on new computers that can
support blockchain transaction processing.
 Open Source
Public blockchain software is open source and usually available in Github to download and
contribute to the public.

Blockchain Technology has witnessed phenomenal growth in the last few years and appears
to stay on track in gaining enterprise adoption. But while it has covered an appreciable curve
of general acceptance, it continues to baffle people conceptually. 
Striking similarities between Blockchain and databases makes people wonder “is Blockchain
just a database?” Yes, Blockchain technology is a database that comes with several
distinguishable traits. These traits are what lead to the debate of Blockchains versus
traditional databases.
What is a Traditional Database?
Data structures are defined as a storage format for efficient management of data. A traditional
database is nothing but a data structure, that helps in storing and working with data. Each
organization, from a startup to a Government entity, uses databases depending upon the scale and
size of their operations. The aspect that makes databases utilitarian, is they allow users to fetch
the data. In technical terms, this is referred to as requesting or querying data that is achieved by
Structured Query Language, SQL. 
Databases are no rocket science, in that they are simple tables. Tables are fields (columns) that
contain the details regarding the nature of data. Rows are called records. 
Blockchains versus Traditional Databases
To understand the difference between a blockchain and a traditional database, it is worth
considering how each of these is designed and maintained.
Traditional Databases
Traditional databases use client-server network architecture. Here, a user (known as a client)
can modify data, which is stored on a centralized server. Control of the database remains
with a designated authority, which authenticates a client’s credentials before providing
access to the database. Since this authority is responsible for administration of the database,
if the security of the authority is compromised, the data can be altered, or even deleted.
Blockchain Databases
Blockchain databases consist of several decentralized nodes. Each node participates in
administration: all nodes verify new additions to the blockchain, and are capable of entering
new data into the database. For an addition to be made to the blockchain, the majority of
nodes must reach consensus. This consensus mechanism guarantees the security of the
network, making it difficult to tamper with.
In Bitcoin, consensus is reached by mining (solving complex hashing puzzles), while
Ethereum seeks to use proof of stake as its consensus mechanism.
Integrity and Transparency
A key property of blockchain technology, which distinguishes it from traditional database
technology, is public verifiability, which is enabled by integrity and transparency.
Integrity: every user can be sure that the data they are retrieving is uncorrupted and unaltered
since the moment it was recorded
Transparency: every user can verify how the blockchain has been appended over timeA map
of Dashcoin masternodes distributed across the world.
CRUD vs Read & Write Operations
In a traditional database, a client can perform four functions on data: Create, Read, Update,
and Delete (collectively known as the CRUD commands).
The blockchain is designed to be an append only structure. A user can only add more data, in
the form of additional blocks. All previous data is permanently stored and cannot be altered.
Therefore, the only operations associated with blockchains are:
Read Operations: these query and retrieve data from the blockchain
Write Operations: these add more data onto the blockchain
Validating and Writing
The blockchain allows for two functions: validation of a transaction, and writing of a new
transaction. A transaction is an operation that changes the state of data that lives on the
blockchain. While past entries on the blockchain must always remain the same, a new entry
can change the state of the data in the past entries. For example, if the blockchain has
recorded that my Bitcoin wallet has 1 million BTC, that figure is permanently stored in the
blockchain. When I spend 200,000 BTC, that transaction is recorded onto the blockchain,
bringing my balance to 800,000 BTC. However, since the blockchain can only be appended,
my pre-transaction balance of 1 million BTC also remains on the blockchain permanently,
for those who care to look. This is why the blockchain is often referred to as an immutable
and distributed ledger.
In short, the difference is Decentralized Control
Decentralized control eliminates the risks of centralized control. Anybody with sufficient
access to a centralized database can destroy or corrupt the data within it. Users are therefore
reliant on the security infrastructure of the database administrator.
Blockchain technology uses decentralized data storage to sidestep this issue, thereby building
security into its very structure.
Though blockchain technology is well-suited to record certain kinds of information,
traditional databases are better suited for other kinds of information. It is crucial for every
organization to understand what it wants from a database, and gauge this against the
strengths and vulnerabilities of each kind of database, before selecting one.
What is Blockchain? 
Blockchain is a decentral database that acts as a storage for chunks of bundled information called
blocks. The reason the blocks are referred to as chains is that each block carries the hashed data
of the block added to the ledger before it. This goes back to Genesis, the first-ever block that was
mined for bitcoin. A hash is a code that encrypts the transactions in a given block. This code is,
essentially, a pointer, a name of sorts, that uniquely identifies a block. 
The bitcoin protocol makes it mandatory for every new block to contain the hash of the previous
block plus the hash of the block that contains information for newly processed transactions.  
Milestones on the development of Bitcoin

As the 21st century has started people have started using the internet more and more. People
have started trusting the internet upto an extent that they are ready to invest in it too.
Although a number of attempts have already been made before the year 2008, none of them
succeeded. People tried many times but didn’t make it to the end. For example B-Money and
Bit-Gold never made to the market.This was in 2008, when the Bitcoin digital currency was
introduced. 
As soon as Bitcoin was launched it started gaining a huge fame and popularity.

Milestones of the Bitcoin digital currency:-

The Year 2008 and Mr.Nakamoto, A Mystery:


Back in the year 2008, a paper titled: Bitcoin-Peer to Peer Electronic Cash System was sent
to the authorities of the cryptocurrencies discussion. This paper was the first thing that came
from the developers of the Bitcoin cryptocurrency. This paper was sent by a team or
individual calling themselves as santoshi nakamoto. The most astonishing thing about the
publisher is that their identity is still a mystery and they are totally anonymous till date. This
paper contains everything about the concept and working of the Bitcoin cryptocurrency
network. It was the base of the future cryptocurrency called the Bitcoin digital currency.

2009 and The Launch of the Bitcoin


The amazing cryptocurrency called the Bitcoin cryptocurrency was made available for the
public use in the start of the Year 2009. the software of the Bitcoin cryptocurrency was very
easy to use and that was a major reason why It gained a lot of popularity among the public in
a very short duration of time. 
In the month of January 2009 the Bitcoin cryptocurrency was launched for the first time and
in the same month the first transaction around the Bitcoin currency was made successfully.
As soon as the Bitcoin cryptocurrency was launched the mining of the Bitcoin started as
well.

The year 2009 was pretty dope for the development and success of the Bitcoin
cryptocurrency.
Though Bitcoin's whitepaper was published in 2008, Nakamoto did not release Bitcoin's
software until January 2009. That release allowed Bitcoin miners to start the Bitcoin
network, generate Bitcoin, and confirm transactions for the first time.
2010: Nakamoto Leaves Bitcoin
In 2010, Nakamoto went offline. He passed control of Bitcoin's codebase to Gavin Andresen,
who became one of the most significant early Bitcoin developers. Nakamoto's departure also
led to division within the cryptocurrency community, as no single developer had Nakamoto's
level of authority.
2010 also marked the launch of the first Bitcoin exchanges: BitcoinMarket.com and Mt.
Gox. The first "real world" Bitcoin transaction also occurred in 2010 when Laszlo
Hanyecz purchased two pizzas from Papa John's via a middleman on bitcointalk.org.
In the 2010 currency started gaining more attention. As we mentioned that Bitcoin
cryptocurrency was mined in the year 2009. However the first trading at the Bitcoin
cryptocurrency was made in 2010 after the Bitcoin cryptocurrency was valued for the very
first time. Back then people were not aware of the value and the upcoming future of the
Bitcoin cryptocurrency. That’s why they swap the Bitcoin cryptocurrency without knowing
the actual future of it.
If they had the Bitcoins right now they could easily make $100000000 out of it pretty easily.
Well we all know that this is the part of every product and its journey. 
2011-Rivals
In the year 2011 many other digital currencies started emerging as a competition with the
Bitcoin cryptocurrency. The examples include Namecoin, Litecoin etc. Although there are
many hundreds of digital currencies that are being circulated in the trading market right now
but none of them gain as much popularity as the Bitcoin cryptocurrency. 
2011: Black Markets & BitPay
In 2011, the dark net market Silk Road opened and allowed Bitcoin as a payment option.
Though the FBI shut down the site and seized its Bitcoin in 2013, the Silk Road inspired
other dark net markets to make use of Bitcoin.
The same year also brought legitimate Bitcoin payments. BitPay launched its payment
processor in May 2011, and within one year, it attracted over 1100 merchants.
2012: Bitcoin's First Halving
In 2012, Bitcoin underwent its first "halving." This event cut block rewards in half (from 50
BTC to 25 BTC) in order to discourage Bitcoin mining and reduce inflation. The halving
seemingly worked as intended: the price of BTC rose from $12 to $650 over the four-year
period that followed the halving. However, this price increase may have been partly due to
general demand for Bitcoin, not strictly due to the halving itself.
2013: First Bitcoin ATMs
In October 2013, the world's first Bitcoin ATM was installed in Vancouver, BC, Canada.
Other early ATMs were installed in Bratislava, Slovakia in October 2013, and in
Albuquerque, New Mexico in February 2014. As of October 2020, there are over 3.5 million
Bitcoin ATMs in operation across the world.
2014: Mt. Gox Shuts Down
In 2014, crypto exchange Mt. Gox declared insolvency and indicated that it had lost over
744,000 BTC in a series of thefts dating back to 2011. The bankruptcy marked the end of
what was once the largest Bitcoin exchange; it also made way for major crypto
exchanges such as Coinbase and Kraken that are still popular today.
2015: NYDFS' BitLicense
In 2015, the New York State Department of Financial Services (NYDFS)
introduced BitLicense, which became a requirement for crypto companies operating in the
state. The license quickly earned a reputation as one of the most selective credentials. Five
years later, just over a dozen companies have been awarded a BitLicense, and many critics
consider it an obstacle that prevents innovation and inhibits new startups.
2016: Bitcoin's Second Halving
Bitcoin underwent its second halving in 2012 and reduced its block reward from 25 BTC to
12.5 BTC. Once again, reduced inflation had its intended effect: BTC prices rose from $650
to roughly $8000 over the four years between halvings.
2017: SegWit & BCH Fork
In 2017, Bitcoin developers entered a dispute over SegWit, a scaling mechanism meant to
make Bitcoin more efficient. Opposition to SegWit led parts of the community to
create Bitcoin Cash, activated via a chain fork in September 2017.

2017- The Bitcoins Killing The game


As time was passing by the amount to popularity gained by the Bitcoin cryptocurrency was
also increasing. a large number of companies and other organisations started dealing with the
Bitcoin cryptocurrencies and started accepting payments in the form of Bitcoin
cryptocurrency. With the increasing Fame and popularity the rate and the created value of the
Bitcoin cryptocurrency also started to rise. In the year  2017, Bitcoin reached a point that was
never seen before in the history of the digital currency. It gained a price of 10,000 US
dollars which was a big thing for a currency launched recently.
Although the Bitcoin cryptocurrency was launched by a developer who is still anonymous ,
irrespective of this fact the Bitcoin cryptocurrency has gained a lot of success among its
users and has won their trust. By the end of the year, there were many exchanges that had
been launched, and it was one of the most searched topics in the world. In countries like
Denmark, there was a lot of competition and traffic in Danish websites about buying, selling
and investing in Bitcoin. After December of 2017, Bitcoin had one of the biggest crashes ever
seen. It went all the way from nearly $20,000 USD to an average of $6,000 USD per coin.

2018: Bitcoin Price Surge & Crash


By the end of 2017, Bitcoin reached an all-time high of $19,700. However, Bitcoin prices
fell rapidly over the course of 2018, reaching $3700 by the end of the year. Since then,
Bitcoin prices have partially recovered: BTC is currently worth $13,000.
2019: Bakkt Launches
2019 saw the launch of one of the most anticipated Bitcoin projects: Bakkt. Unlike standard
crypto exchanges, Bakkt does not handle actual Bitcoin; instead, it sells investment contracts,
or futures. The launch of Bakkt marked a regulatory milestone for crypto startups that aim to
serve institutional investors.
2020: Flash Crash, Halving, & PayPal Adoption
2020 has proven to be an eventful year for Bitcoin. Various factors caused a "flash crash" in
March, while May marked Bitcoin's third halving. Most notable though, is PayPal's recent
decision to buy and sell Bitcoin on its payments website—a level of mainstream adoption
that has never been seen before.
Year 2020 – A break through
Although the Bitcoin cryptocurrency stays unaffected by all the convention factors that affect
the local currency, it still gets affected by them to some extent. As we all know, every year
2020 has been pretty unexpected due to covid-19 pandemic. The finance market of the whole
universe has crashed to a great extent but if we see the Bitcoin cryptocurrency we will
observe that it has raised its value to a great extent in the year 2020. Bitcoin digital currency
has gained record-breaking success in the last year. By the end of the year 2020 Bitcoin was
at a price that was never seen before.
Summing Up
Whatever you think or say about the Bitcoin cryptocurrency but you can never deny the
popularity and trust it has gained in such a short duration of time. The thing that has
benefited the Bitcoin to the currency most is the fact that it was in a totally decentralized
manner. The Bitcoin cryptocurrency is not in the control of any Bank or government. It
works in a totally independent manner. You can trade as well as invest in the Bitcoin crypto
currency the following summary simple steps. like everything Bitcoin currency has also its
drawbacks but it all depends on the users and his strategy. If you want to play with Bitcoin
cryptocurrency you have to be pretty careful so that you can avoid any unexpected
unfortunate circumstances.

Blockchain Solutions Are Changing the Sharing Economy


Uber and Airbnb are among the world's fastest growing companies today. These companies'
business models enable people to rent assets from each other. Recently, the sharing economy
has seen explosive growth, with a report by Juniper Research estimating that the revenues
from the sector will reach $40.2 billion in 2022, up from $18.6 billion in 2017.
According to a similar report by Statista , the number of adult sharing economy users in the
U.S. will reach 86.5 million by 2021, up from 44.8 million in 2016. However, with the
advent of blockchain technology in the industry, there is potential for that growth to be much
faster.
Among the key challenges that have been preventing mass adoption of the sharing economy
is an unequal distribution of the value generated by companies in the space. Large
intermediaries such as Uber and Airbnb reap huge profits from the sharing economy while
smaller companies get little to nothing.
Through projects such as ShareRing and Origin , blockchain technology could eliminate this
disparity by introducing decentralized platforms where peer-to-peer sharing can happen
transparently and without intermediaries.
Origin aims to create a set of protocols that allow developers and businesses to build a
decentralized sharing economy marketplace on a blockchain.
ShareRing seeks to merge all of the existing sharing platforms into one app in which users
can execute transactions efficiently across all of those platforms. The app will allow users to
pay for goods and services in the shared economy using tokens, effectively eliminating the
need for carrying cash or debit cards.
Blockchains also seek to eliminate fragmentation. Traditionally, users are required to sign up
and download an app for each of the many sharing economy solutions they want. If there are,
for example, five sharing economy companies in your locality, you would be required to sign
up for each company to access all of their services.
However, with blockchain-driven solutions, such as the ShareRing project, all services could
be accessible on a single platform and payments can be made through the same platform.
This means that you do not have to sign up multiple times and, even when traveling abroad,
you do not have to worry about finding locally relevant sharing apps, since the blockchain-
driven approach will connect you with the local sharing economy solutions.
Blockchain solutions for the sharing economy can also be more secure, given the
decentralized nature of the technology. The traditional centralized solutions are more prone
to hackers, and many of them have had instances of major data breaches.
For instance, last year, Uber disclosed that hackers had accessed the personal information of
57 million riders and drivers from its platform in 2016, prompting the company to pay a
$100,000 as ransom. Airbnb has also been faced with multiple instances of data breaches,
with the biggest attack making the platform disappear momentarily back in 2016. In a
recent incident , hackers hijacked accounts of top-rated users and used them to book homes
of hosts that they would then burglarize.
In a blockchain-powered sharing solution, hackers would never be able to access users'
accounts, let alone manipulate them to give a false identity. In fact, all users' identities would
need to be verified on the blockchain, adding protection to users involved in peer-to-peer
transactions.

Blockchain technology will also protect users legally when, in the event of a dispute, the
smart contract technology can provide arbitration. For example, if a person owns an
autonomous car and wants to rent it out for extra income, the smart contract technology
would ensure that those who hire the car make payments as required without needing a third
party to oversee the transaction. Also, in the event of a dispute, the technology would
analyze its rich and highly accurate data and could offer a transparent and just settlement.
Likewise, if the car were co-owned by two or more people, the same smart contract
technology would ensure that the parties would each automatically get their fair share of
income and would settle disputes as well.
As blockchain technology continues to gain mainstream acceptance, there is a high
likelihood that more innovative solutions combining the solution with real-world use cases
are yet to come. The sharing economy has a long way to go before becoming a fully secure
and user-friendly space, but with all the innovation in the space, it's possible that the kinks
will be straightened out sooner rather than later.

Smart Contracts
Smart contracts can be described as scripts that are stored on the blockchain . These scripts are
executed automatically when addressing a transaction to it. The given transaction data is then
processed according to the protocol defined for the smart contract. This mechanism can be
illustrated by the example of renting a bike:
Alice wants to rent a bike from a stranger called Bob. Bob creates a smart contract, which mainly
has two functions: rent and return. In the smart contract, it is defined that when renting the bike,
Alice has to transfer a deposit of 0.01 Bitcoin to the smart contract. The costs for the rental are
0.001 Bitcoin per 24 hours. When Alice returns the bike, she gets back the difference between
her deposit and the actual rental price. So, Alice transfers the deposit of 0.01 Bitcoin, and the
rent function of the smart contract is triggered. It registers the date and time of the rental on the
blockchain and Alice may now use the bike. She returns the bike after four days, and Bob
triggers the return function of the smart contract, which returns 0.006 Bitcoin back to Alice’s
wallet and sends 0.004 Bitcoin to Bob’s wallet. This was a rather simple scenario, but smart
contracts have the potential to automatize even complex organizations. These so-called
Decentralized Autonomous Organizations (DAO) are entirely run by its members, and all
proposals to change something within the organization have to be approved by the members .
This offers a great chance to democratize organizations and abolish hierarchies. However, there
are some drawbacks to smart contracts. As data on a blockchain is immutable and smart
contracts are stored on a blockchain, smart contracts are also immutable. Thus, a smart contract
either needs to be written correctly at once, or there needs to be a function included to edit or
delete the smart contract . Another limitation is that smart contracts are not self-executing and
therefore always need to be triggered by a (possibly artificial) person . Also, the legal status of
smart contracts is still uncertain .
Sharing Economy
As sharing economy is an umbrella construct, there is considerable variation in definitions for it .
Hamari et al.define the sharing economy as “the peer-to-peer-based activity of obtaining, giving,
or sharing the access to goods and services, coordinated through community-based online
services”. PwC emphasizes the commercial character of sharing economies, as they “allow
individuals and groups to make money from underused assets”. Sundararajan [45] describes the
sharing economy as an economic system with “blurring lines between the personal and the
professional” as well as “blurring lines between fully employed and casual labor”.

The current centralized sharing economy businesses all offer certain characteristic services.
Killeen names three of them:
1. aggregated supply and/or demand,
2.customer relationship management tools, and
3.payment processing”.
According to Killeen, these services lead to the users’ willingness to pay for the systems. Also,
sharing economy businesses typically offer certain technical features to their users. Narasimhan
defines these “technology-enabled features” as the offering of a mobile app and cashless
transactions, a rating system, and dynamic pricing. It is clear that the sharing economy is a
successful business model, with Airbnb being valued at 31 billion USD in 2017 . There are
various reasons why people use sharing platforms. According to a PwC survey, participants’
motivations are mainly affordability, convenience and efficiency, sustainability, as well as social
aspects. However, these motivations cannot explain the success of the sharing economy
businesses completely. An important factor that led to wide adoption is the establishment of a
“digital trust infrastructure”. By providing a review system, insurances, and identity verification,
the sharing economy businesses succeeded in gaining people’s trust . This trust in the brand of a
sharing economy business is of major importance because it makes it more likely that users also
have trust in the providers on that platform . Also, the success of peer-to-peer marketplaces is
influenced by network effects. The platforms directly benefit from an increase in users as that
makes the platform more valuable for all users. For instance, an increase in providers increases
the supply and therefore makes the marketplace more attractive to users, and an increase in users
increases the value for providers. According to Bhatt, these dynamics are strengthened if peers of
an individual use a certain platform, as that makes it more likely that the individual will also use
that platform.

What is the Internet of Value?

The Internet of Value (IoV) is a concept proposed by Ripple which envisions an internet where
value is transferred as easily, cheaply and reliably as data is transferred now. Blockchain
technology supports this vision by facilitating access to value transfer infrastructure.

The Internet of Value, described in simple terms, is an online space where people can instantly
transfer value between each other, eliminating the need for the middlemen and most costs.
Theoretically, anything of monetary or social value can be transferred between parties, including
currency, assets, stocks, securities, intellectual property rights, scientific discoveries, and even a
vote in an election.
Transferring value is already supported by legacy financial rails like SWIFT, blockchain like
Bitcoin or Ethereum and new and emerging technologies or solutions
like Interledger (ILP), PayID and many, many apps that make transferring value easier with
existing infrastructure. All of these need to be connected somehow to achieve the vision and
there are likely still a lot of unknowns.

The Internet of Value sounds similar to the Internet of Things (IoT), which is a different concept
but they do not necessarily exclude each other. On the Internet of Things any device can
communicate with other devices, which forms a complex network that can produce more diverse
results than human-human or human-computer interaction. IoT is interesting in this respect as the
devices in this network might potentially want to exchange value too and that is why these two
will likely evolve in parallel.

What problems does the Internet of Value solve?


Moving money is expensive, especially when it comes to cross-border payments and cross-
system transfers. It is also slow in the case of settlement. End-users have become used to instant
availability of information and are becoming increasingly used to instant access to their money
too. This is a result of tech like cards and newer financial apps that make moving money more
convenient and cheap.
The digital revolution of data has not been reflected as much in money and payments. Digital
assets appear to be our best bet to achieve the goal of the Internet of Value. In different forms
and with different underlying tech, digital assets like Bitcoin, XRP and potentially one day
digital FIATs, promise us a world where value can be transferred reliably and instantly.

How will blockchain impact the global economy?


An analysis by PwC shows blockchain technology has the potential to boost global gross
domestic product (GDP) by $1.76 trillion over the next decade. That is the key finding of a
report assessing how the technology is being currently used and exploring the impact blockchain
could have on the global economy.

Through analysis of the top five uses of blockchain, ranked by their potential to generate
economic value, the report gauges the technology’s potential to create value across industry,
from healthcare, government and public services, to manufacturing, finance, logistics and retail.
“Blockchain technology has long been associated with cryptocurrencies such as Bitcoin, but
there is so much more that it has to offer, particularly in how public and private organizations
secure, share and use data,” comments Steve Davies, Global Leader, Blockchain and
Partner, PwC UK.
“As organizations grapple with the impacts of the COVID-19 pandemic, many disruptive trends
have been accelerated. The analysis shows the potential for blockchain to support organizations
in how they rebuild and reconfigure their operations underpinned by improvements in trust,
transparency and efficiency across organizations and society.”
Key takeaways
 The report identifies five key application areas of blockchain and assesses their
potential to generate economic value using economic analysis and industry research.
The analysis suggests a tipping point in 2025 as blockchain technologies are expected
to be adopted at scale across the global economy.
 Tracking and tracing of products and services – or provenance – which emerged as a
new priority for many companies’ supply chains during the COVID-19 pandemic, has
the largest economic potential ($962bn). Blockchain’s application can be wide
ranging and support companies ranging from heavy industries, including mining
through to fashion labels, responding to the rise in public and investor scrutiny around
sustainable and ethical sourcing.
 Payments and financial services, including use of digital currencies, or supporting
financial inclusion through cross border and remittance payments ($433bn).
 Identity management ($224bn) including personal IDs, professional credentials and
certificates to help curb fraud and identity theft.
 Application of blockchain in contracts and dispute resolution ($73bn), and customer
engagement ($54bn) including blockchain’s use in loyalty programmes further
extends blockchain’s potential into a much wider range of public and private industry
sectors.

Blockchain’s success will depend on a supportive policy environment, a business ecosystem


that is ready to exploit the new opportunities that technology opens, and a suitable industry
mix.

Economic benefits across continents


 Across all continents, Asia will likely see the most economic benefits from
blockchain technology. In terms of individual countries, blockchain could have the
highest potential net benefit in China ($440bn) and the USA ($407bn). Five other
countries – Germany, Japan, the UK, India, and France – are also estimated to have
net benefits over $50bn.
 The benefits for each country differ however, with manufacturing focused economies
such as China and Germany benefiting more from provenance and traceability, while
the US would benefit most from its application in securitisation and payments as well
as identity and credentials.
 At a sector level, the biggest beneficiaries look set to be the public administration,
education and healthcare sectors. These sectors are expected to benefit approximately
$574bn by 2030, by capitalising on the efficiencies blockchain will bring to the world
of identity and credentials.
 Meanwhile, there will be broader benefits for business services, communications and
media, while wholesalers, retailers, manufacturers and construction services, will
benefit from using blockchain to engage consumers and meet demand for provenance
and traceability.

Digital transformation as top priority


 The potential for blockchain to be considered as part of organizations’ future strategy
is linked to a research with business leaders that showed 61% of CEOs said they were
placing digital transformation of core business operations and processes among their
top three priorities, as they rebuild from COVID-19.
 “One of the biggest mistakes organizations can make with implementing emerging
technologies is to leave it in the realm of the enthusiast in the team. It needs C-Suite
support to work, identify the strategic opportunity and value, and to facilitate the right
level of collaboration within an industry,” comments Davies.
 “Given the scale of economic disruption organizations are dealing with currently,
establishing proof of concept uses which can be extended and scaled if successful,
will enable businesses to identify the value, while building trust and transparency in
the solution to deliver on blockchain’s potential.”
 The report warns that if blockchain’s economic impact potential is to be realized, its
energy overhead must be managed. Growing business and government action on
climate change, including commitments to Net Zero transformation, will mean that
organizations need to consider new models for consolidating and sharing
infrastructure resources to reduce reliance on traditional data centres and their overall
technology related energy consumption.

Blockchain Hash Function


A hash function takes an input string (numbers, alphabets, media files) of any length and transforms
it into a fixed length. The fixed bit length can vary (like 32-bit or 64-bit or 128-bit or 256-bit)
depending on the hash function which is being used. The fixed-length output is called a hash. This
hash is also the cryptographic byproduct of a hash algorithm. We can understand it from the
following diagram.
The hash algorithm has certain unique properties:

1. It produces a unique output (or hash).


2. It is a one-way function.

In the context of cryptocurrencies like Bitcoin, the blockchain uses this cryptographic hash function's properties in
its consensus mechanism. A cryptographic hash is a digest or digital fingerprints of a certain amount of data. In
cryptographic hash functions, the transactions are taken as an input and run through a hashing algorithm which gives
an output of a fixed size.

SHA-256

A Bitcoin's blockchain uses SHA-256 (Secure Hash Algorithm) hashing algorithm. In 2001, SHA-256 Hashing
algorithm was developed by the National Security Agency (NSA) in the USA.
CS-607 B Introduction to Block Chain Technology
PPT
2

You might also like