Blockchain
Blockchain
The blockchain was invented by a person (or group of people) using the name Satoshi
Nakamoto in 2008 to serve as the public transaction ledger of the cryptocurrency
bitcoin.[3] The identity of Satoshi Nakamoto remains unknown to date. The invention
of the blockchain for bitcoin made it the first digital currency to solve the
double-spending problem without the need of a trusted authority or central server.
The bitcoin design has inspired other applications[3][2] and blockchains that are
readable by the public and are widely used by cryptocurrencies. The blockchain is
considered a type of payment rail.[6] Private blockchains have been proposed for
business use but Computerworld called the marketing of such privatized blockchains
without a proper security model "snake oil".[7] However, others have argued that
permissioned blockchains, if carefully designed, may be more decentralized and
therefore more secure in practice than permissionless ones.[4][8]
Contents
History
Bitcoin, Ethereum and Litecoin transactions per day (January 2011 � January 2021)
Cryptographer David Chaum first proposed a blockchain-like protocol in his 1982
dissertation "Computer Systems Established, Maintained, and Trusted by Mutually
Suspicious Groups."[9] Further work on a cryptographically secured chain of blocks
was described in 1991 by Stuart Haber and W. Scott Stornetta.[4][10] They wanted to
implement a system wherein document timestamps could not be tampered with. In 1992,
Haber, Stornetta, and Dave Bayer incorporated Merkle trees to the design, which
improved its efficiency by allowing several document certificates to be collected
into one block.[4][11]
The first blockchain was conceptualized by a person (or group of people) known as
Satoshi Nakamoto in 2008. Nakamoto improved the design in an important way using a
Hashcash-like method to timestamp blocks without requiring them to be signed by a
trusted party and introducing a difficulty parameter to stabilize rate with which
blocks are added to the chain.[4] The design was implemented the following year by
Nakamoto as a core component of the cryptocurrency bitcoin, where it serves as the
public ledger for all transactions on the network.[3]
In August 2014, the bitcoin blockchain file size, containing records of all
transactions that have occurred on the network, reached 20 GB (gigabytes).[12] In
January 2015, the size had grown to almost 30 GB, and from January 2016 to January
2017, the bitcoin blockchain grew from 50 GB to 100 GB in size. The ledger size had
exceeded 200 GiB by early 2020.[13]
The words block and chain were used separately in Satoshi Nakamoto's original
paper, but were eventually popularized as a single word, blockchain, by 2016.
According to Accenture, an application of the diffusion of innovations theory
suggests that blockchains attained a 13.5% adoption rate within financial services
in 2016, therefore reaching the early adopters phase.[14] Industry trade groups
joined to create the Global Blockchain Forum in 2016, an initiative of the Chamber
of Digital Commerce.
In May 2018, Gartner found that only 1% of CIOs indicated any kind of blockchain
adoption within their organisations, and only 8% of CIOs were in the short-term
"planning or [looking at] active experimentation with blockchain".[15] For the year
2019 Gartner reported 5% of CIOs believed blockchain technology was a 'game-
changer' for their business.[16]
Structure
Blockchain formation. The main chain (black) consists of the longest series of
blocks from the genesis block (green) to the current block. Orphan blocks (purple)
exist outside of the main chain.
A blockchain is a decentralized, distributed, and oftentimes public, digital ledger
consisting of records called blocks that is used to record transactions across many
computers so that any involved block cannot be altered retroactively, without the
alteration of all subsequent blocks.[3][17] This allows the participants to verify
and audit transactions independently and relatively inexpensively.[18] A blockchain
database is managed autonomously using a peer-to-peer network and a distributed
timestamping server. They are authenticated by mass collaboration powered by
collective self-interests.[19] Such a design facilitates robust workflow where
participants' uncertainty regarding data security is marginal. The use of a
blockchain removes the characteristic of infinite reproducibility from a digital
asset. It confirms that each unit of value was transferred only once, solving the
long-standing problem of double spending. A blockchain has been described as a
value-exchange protocol.[20] A blockchain can maintain title rights because, when
properly set up to detail the exchange agreement, it provides a record that compels
offer and acceptance.
infrastructure (hardware)
networking (node discovery, information propagation and verification)
consensus (proof of work, proof of stake)
data (blocks, transactions)
application (smart contracts/decentralized applications, if applicable)
Blocks
Blocks hold batches of valid transactions that are hashed and encoded into a Merkle
tree.[3] Each block includes the cryptographic hash of the prior block in the
blockchain, linking the two. The linked blocks form a chain.[3] This iterative
process confirms the integrity of the previous block, all the way back to the
initial block, which is known as the genesis block.[22]
Block time
The block time is the average time it takes for the network to generate one extra
block in the blockchain. Some blockchains create a new block as frequently as every
five seconds.[27] By the time of block completion, the included data becomes
verifiable. In cryptocurrency, this is practically when the transaction takes
place, so a shorter block time means faster transactions. The block time for
Ethereum is set to between 14 and 15 seconds, while for bitcoin it is on average 10
minutes.[28]
Hard forks
This section is an excerpt from Fork (blockchain) � Hard fork[edit]
A hard fork is a rule change such that the software validating according to the old
rules will see the blocks produced according to the new rules as invalid. In case
of a hard fork, all nodes meant to work in accordance with the new rules need to
upgrade their software. If one group of nodes continues to use the old software
while the other nodes use the new software, a permanent split can occur.
For example, Ethereum has hard-forked to "make whole" the investors in The DAO,
which had been hacked by exploiting a vulnerability in its code. In this case, the
fork resulted in a split creating Ethereum and Ethereum Classic chains. In 2014 the
Nxt community was asked to consider a hard fork that would have led to a rollback
of the blockchain records to mitigate the effects of a theft of 50 million NXT from
a major cryptocurrency exchange. The hard fork proposal was rejected, and some of
the funds were recovered after negotiations and ransom payment. Alternatively, to
prevent a permanent split, a majority of nodes using the new software may return to
the old rules, as was the case of bitcoin split on 12 March 2013.[29]
Every node in a decentralized system has a copy of the blockchain. Data quality is
maintained by massive database replication[34] and computational trust. No
centralized "official" copy exists and no user is "trusted" more than any other.
[33] Transactions are broadcast to the network using software. Messages are
delivered on a best-effort basis. Mining nodes validate transactions,[22] add them
to the block they are building, and then broadcast the completed block to other
nodes.[24]:ch. 08 Blockchains use various time-stamping schemes, such as proof-of-
work, to serialize changes.[35] Alternative consensus methods include proof-of-
stake.[22] Growth of a decentralized blockchain is accompanied by the risk of
centralization because the computer resources required to process larger amounts of
data become more expensive.[36]
Openness
Open blockchains are more user-friendly than some traditional ownership records,
which, while open to the public, still require physical access to view. Because all
early blockchains were permissionless, controversy has arisen over the blockchain
definition. An issue in this ongoing debate is whether a private system with
verifiers tasked and authorized (permissioned) by a central authority should be
considered a blockchain.[37][38][39][40][41] Proponents of permissioned or private
chains argue that the term "blockchain" may be applied to any data structure that
batches data into time-stamped blocks. These blockchains serve as a distributed
version of multiversion concurrency control (MVCC) in databases.[42] Just as MVCC
prevents two transactions from concurrently modifying a single object in a
database, blockchains prevent two transactions from spending the same single output
in a blockchain.[43]:30�31 Opponents say that permissioned systems resemble
traditional corporate databases, not supporting decentralized data verification,
and that such systems are not hardened against operator tampering and revision.[37]
[39] Nikolai Hampton of Computerworld said that "many in-house blockchain solutions
will be nothing more than cumbersome databases," and "without a clear security
model, proprietary blockchains should be eyed with suspicion."[7][44]
Permissionless
An advantage to an open, permissionless, or public, blockchain network is that
guarding against bad actors is not required and no access control is needed.[23]
This means that applications can be added to the network without the approval or
trust of others, using the blockchain as a transport layer.[23]
Blockchain analysis
The analysis of public blockchains has become increasingly important with the
popularity of bitcoin, Ethereum, litecoin and other cryptocurrencies.[49] A
blockchain, if it is public, provides anyone who wants access to observe and
analyse the chain data, given one has the know-how. The process of understanding
and accessing the flow of crypto has been an issue for many cryptocurrencies,
crypto-exchanges and banks.[50][51] The reason for this is accusations of
blockchain enabled cryptocurrencies enabling illicit dark market trade of drugs,
weapons, money laundering etc.[52] A common belief has been that cryptocurrency is
private and untraceable, thus leading many actors to use it for illegal purposes.
This is changing and now specialised tech-companies provide blockchain tracking
services, making crypto exchanges, law-enforcement and banks more aware of what is
happening with crypto funds and fiat crypto exchanges. The development, some argue,
has led criminals to prioritise use of new cryptos such as Monero.[53][54][55] The
question is about public accessibility of blockchain data and the personal privacy
of the very same data. It is a key debate in cryptocurrency and ultimately in
blockchain.[56]
Standardisation
There is a growing industrial need for blockchain standards because
interoperability is considered critical to widespread adoption.[57] Blockchain
technologies show much potential as it provide capabilities that cannot normally be
met in any other way if the requirement of interoperability between blockchains and
with other technologies is met.[58]
Many other national standards bodies and open standards bodies are also working on
blockchain standards.[61] These include the National Institute of Standards and
Technology[62] (NIST), the European Committee for Electrotechnical
Standardization[63] (CENELEC), the Institute of Electrical and Electronics
Engineers[64] (IEEE), the Organization for the Advancement of Structured
Information Standards (OASIS), and the Internet Engineering Task Force[65] (IETF).
Uses
In 2019, it was estimated that around $2.9 billion were invested in blockchain
technology, which represents an 89% increase from the year prior. Additionally, the
International Data Corp has estimated that corporate investment into blockchain
technology will reach $12.4 billion by 2022.[67] Furthermore, According to
PricewaterhouseCoopers (PwC), the second-largest professional services network in
the world, blockchain technology has the potential to generate an annual business
value of more than $3 trillion by 2030. PwC's estimate is further augmented by a
2018 study that they have conducted, in which PwC surveyed 600 business executives
and determined that 84% have at least some exposure to utilizing blockchain
technology, which indicts a significant demand and interest in blockchain
technology.[68]
Individual use of blockchain technology has also greatly increased since 2016.
According to statistics in 2020, there were more than 40 million blockchain wallets
in 2020 in comparison to around 10 million blockchain wallets in 2016.[69]
Cryptocurrencies
Main article: Cryptocurrency
Most cryptocurrencies use blockchain technology to record transactions. For
example, the bitcoin network and Ethereum network are both based on blockchain. On
8 May 2018 Facebook confirmed that it would open a new blockchain group[70] which
would be headed by David Marcus, who previously was in charge of Messenger.
Facebook's planned cryptocurrency platform, Libra (now known as Diem), was formally
announced on June 18, 2019.[71][72]
The criminal enterprise Silk Road, which operated on Tor, utilized cryptocurrency
for payments, some of which the US federal government has seized through research
on the blockchain and forfeiture.[73]
Governments have mixed policies on the legality of their citizens or banks owning
cryptocurrencies. China implements blockchain technology in several industries
including a national digital currency which launched in 2020.[74][75] In order to
strengthen their respective currencies, Western governments including the European
Union and the United States have initiated similar projects.[76]
Smart contracts
Main article: Smart contract
Blockchain-based smart contracts are proposed contracts that can be partially or
fully executed or enforced without human interaction.[77] One of the main
objectives of a smart contract is automated escrow. A key feature of smart
contracts is that they do not need a trusted third party (such as a trustee) to act
as an intermediary between contracting entities -the blockchain network executes
the contract on its own. This may reduce friction between entities when
transferring value and could subsequently open the door to a higher level of
transaction automation.[78] An IMF staff discussion from 2018 reported that smart
contracts based on blockchain technology might reduce moral hazards and optimize
the use of contracts in general. But "no viable smart contract systems have yet
emerged." Due to the lack of widespread use their legal status was unclear.[79][80]
Financial services
According to Reason, many banks have expressed interest in implementing distributed
ledgers for use in banking and are cooperating with companies creating private
blockchains,[81][82][83] and according to a September 2016 IBM study, this is
occurring faster than expected.[84]
Banks are interested in this technology because it has potential to speed up back
office settlement systems.[85]
Banks such as UBS are opening new research labs dedicated to blockchain technology
in order to explore how blockchain can be used in financial services to increase
efficiency and reduce costs.[86][87]
The blockchain has also given rise to Initial coin offerings (ICOs) as well as a
new category of digital asset called Security Token Offerings (STOs), also
sometimes referred to as Digital Security Offerings (DSOs).[93] STO/DSOs may be
conducted privately or on a public, regulated stock exchange and are used to
tokenize traditional assets such as company shares as well as more innovative ones
like intellectual property, real estate, art, or individual products. A number of
companies are active in this space providing services for compliant tokenization,
private STOs, and public STOs.
Video games
A blockchain game CryptoKitties, launched in November 2017.[94] The game made
headlines in December 2017 when a cryptokitty character -a virtual pet- was sold
for more than US$100,000.[95] CryptoKitties also illustrated scalability problems
for games on Ethereum when it created significant congestion on the Ethereum
network with approximately 30% of all Ethereum transactions being for the game.[96]
[97]
Energy trading
Blockchain is also being used in peer-to-peer energy trading.[98][99][100]
Supply chain
There have been several different efforts to employ blockchains in supply chain
management.
Precious commodities mining � Blockchain technology has been used for tracking the
origins of gemstones and other precious commodities. In 2016, The Wall Street
Journal reported that the blockchain technology company, Everledger was partnering
with IBM's blockchain-based tracking service to trace the origin of diamonds to
ensure that they were ethically mined.[101] As of 2019, the Diamond Trading Company
(DTC) has been involved in building a diamond trading supply chain product called
Tracr.[102]
Food supply � Blockchain technology has been used to allow retailers and consumers
to track the provenance of meat and other food products from their origins to
stores and restaurants.[103] As of 2018, Walmart and IBM were running a trial to
use a blockchain-backed system for supply chain monitoring for lettuce and spinach
� all nodes of the blockchain were administered by Walmart and were located on the
IBM cloud.[104] One cited benefit is that the system could enable rapid tracing of
contaminated produce. Some analysts are less convinced that most consumers will be
that interested in this capability.[102]
Software development � The Linux Foundation's blockchain initiative, Hyperledger
Grid was started in 2015 to develop open components for blockchain supply chain
services.[105][106]
Anti-counterfeiting
Blockchain could be used in detecting counterfeits by associating unique
identifiers to products, documents and shipments, and storing records associated to
transactions that cannot be forged or altered.[107][108] It is however argued that
blockchain technology needs to be supplemented with technologies that provide a
strong binding between physical objects and blockchain systems.[109] The EUIPO
established an Anti-Counterfeiting Blockathon Forum, with the objective of
"defining, piloting and implementing" an anti-counterfeiting infrastructure at the
European level.[110][111] The Dutch Standardisation organisation NEN uses
blockchain together with QR Codes to authenticate certificates.[112]
Healthcare
In response to the 2020 COVID-19 pandemic, The Wall Street Journal reported that
Ernst & Young was working on a blockchain to help employers, governments, airlines
and others keep track of people who have had antibody tests and could be immune to
the virus. Hospitals and vendors also utilized a blockchain for needed medical
equipment. Additionally, blockchain technology was being used in China to speed up
the time it takes for health insurance payments to be paid to health-care providers
and patients.[113]
Domain names
There are several different efforts to offer domain name services via blockchain.
These domain names can be controlled by the use of a private key, which purport to
allow for uncensorable websites. This would also bypass a registrar's ability to
suppress domains used for fraud, abuse, or illegal content.[114]
Specific TLDs include ".eth", ".luxe", and ".kred", which are associated with the
Ethereum blockchain through the Ethereum Name Service (ENS). The .kred TLD also
acts an alternative to conventional cryptocurrency wallet addresses, as a
convenience for transferring cryptocurrency.[117]
Other uses
Blockchain technology can be used to create a permanent, public, transparent ledger
system for compiling data on sales, tracking digital use and payments to content
creators, such as wireless users[118] or musicians.[119] The Gartner 2019 CIO
Survey reported 2% of higher education respondents had launched blockchain projects
and another 18% were planning academic projects in the next 24 months.[120] In
2017, IBM partnered with ASCAP and PRS for Music to adopt blockchain technology in
music distribution.[121] Imogen Heap's Mycelia service has also been proposed as
blockchain-based alternative "that gives artists more control over how their songs
and associated data circulate among fans and other musicians."[122][123]
New distribution methods are available for the insurance industry such as peer-to-
peer insurance, parametric insurance and microinsurance following the adoption of
blockchain.[124][125] The sharing economy and IoT are also set to benefit from
blockchains because they involve many collaborating peers.[126] The use of
blockchain in libraries is being studied with a grant from the U.S. Institute of
Museum and Library Services.[127]
Public blockchains
A public blockchain has absolutely no access restrictions. Anyone with an Internet
connection can send transactions to it as well as become a validator (i.e.,
participate in the execution of a consensus protocol).[131][self-published source?]
Usually, such networks offer economic incentives for those who secure them and
utilize some type of a Proof of Stake or Proof of Work algorithm.
Some of the largest, most known public blockchains are the bitcoin blockchain and
the Ethereum blockchain.
Private blockchains
A private blockchain is permissioned.[46] One cannot join it unless invited by the
network administrators. Participant and validator access is restricted. To
distinguish between open blockchains and other peer-to-peer decentralized database
applications that are not open ad-hoc compute clusters, the terminology Distributed
Ledger (DLT) is normally used for private blockchains.
Hybrid blockchains
A hybrid blockchain has a combination of centralized and decentralized features.
[132] The exact workings of the chain can vary based on which portions of
centralization decentralization are used.
Sidechains
A sidechain is a designation for a blockchain ledger that runs in parallel to a
primary blockchain.[133][134] Entries from the primary blockchain (where said
entries typically represent digital assets) can be linked to and from the
sidechain; this allows the sidechain to otherwise operate independently of the
primary blockchain (e.g., by using an alternate means of record keeping, alternate
consensus algorithm, etc.).[135]
Interoperability
With the increasing number of blockchain systems appearing, even only those that
support cryptocurrencies, blockchain interoperability is becoming a topic of major
importance. The objective is to support transferring assets from one blockchain
system to another blockchain system. Wegner[136] stated that "interoperability is
the ability of two or more software components to cooperate despite differences in
language, interface, and execution platform". The objective of blockchain
interoperability is therefore to support such cooperation among blockchain systems,
despite those kinds of differences.
The IETF has a recent Blockchain-interop working group that already produced the
draft of a blockchain interoperability architecture.[138]
U.S. Treasury Secretary Janet Yellen called Bitcoin "an extremely inefficient way
to conduct transactions", saying "the amount of energy consumed in processing those
transactions is staggering."[144] "Bitcoin uses more electricity per transaction
than any other method known to mankind", Bill Gates said. "It's not a great climate
thing."[145]
Inside the cryptocurrency industry, concern about high energy consumption has led
some companies to consider moving from the proof of work blockchain model to the
less energy-intensive proof of stake model.[150]
Academic research
Adoption decision
Motivations for adopting blockchain technology (an aspect of innovation adoptation)
have been investigated by researchers. Janssen et al. provided a framework for
analysis.[152] Koens & Poll pointed out that adoption could be heavily driven by
non-technical factors.[153] Based on behavioral models, Li[154] discussed the
differences between adoption at the individual level and organizational levels.
Collaboration
Scholars in business and management have started studying the role of blockchains
to support collaboration.[155][156] It has been argued that blockchains can foster
both cooperation (i.e., prevention of opportunistic behavior) and coordination
(i.e., communication and information sharing). Thanks to reliability, transparency,
traceability of records, and information immutability, blockchains facilitate
collaboration in a way that differs both from the traditional use of contracts and
from relational norms.[157] Contrary to contracts, blockchains do not directly rely
on the legal system to enforce agreements.[158] In addition, contrary to the use of
relational norms, blockchains do not require trust or direct connections between
collaborators.
Journals
Main article: Ledger (journal)
In September 2015, the first peer-reviewed academic journal dedicated to
cryptocurrency and blockchain technology research, Ledger, was announced. The
inaugural issue was published in December 2016.[163] The journal covers aspects of
mathematics, computer science, engineering, law, economics and philosophy that
relate to cryptocurrencies such as bitcoin.[164][165]
The journal encourages authors to digitally sign a file hash of submitted papers,
which are then timestamped into the bitcoin blockchain. Authors are also asked to
include a personal bitcoin address in the first page of their papers for non-
repudiation purposes.