Block Chain
Block Chain
A blockchain is a distributed ledger with growing lists of records (blocks) that are securely linked
together via cryptographic hashes.[1][2][3][4] Each block contains a cryptographic hash of the
previous block, a timestamp, and transaction data (generally represented as a Merkle tree, where
data nodes are represented by leaves). Since each block contains information about the previous
block, they effectively form a chain (compare linked list data structure), with each additional
block linking to the ones before it. Consequently, blockchain transactions are irreversible in that,
once they are recorded, the data in any given block cannot be altered retroactively without
altering all subsequent blocks.
Blockchains are typically managed by a peer-to-peer (P2P) computer network for use as a public
distributed ledger, where nodes collectively adhere to a consensus algorithm protocol to add and
validate new transaction blocks. Although blockchain records are not unalterable, since
blockchain forks are possible, blockchains may be considered secure by design and exemplify a
distributed computing system with high Byzantine fault tolerance.[5]
A blockchain was created by a person (or group of people) using the name (or pseudonym)
Satoshi Nakamoto in 2008 to serve as the public distributed ledger for bitcoin cryptocurrency
transactions, based on previous work by Stuart Haber, W. Scott Stornetta, and Dave Bayer.[6] The
implementation of the blockchain within bitcoin made it the first digital currency to solve the
double-spending problem without the need for 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 may be considered a type of payment rail.[7]
Private blockchains have been proposed for business use. Computerworld called the marketing of
such privatized blockchains without a proper security model "snake oil";[8] however, others have
argued that permissioned blockchains, if carefully designed, may be more decentralized and
therefore more secure in practice than permissionless ones.[4][9]
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".[10]
Further work on a cryptographically secured chain of blocks was described in 1991 by Stuart
Haber and W. Scott Stornetta.[4][11] They wanted to implement a system wherein document
timestamps could not be tampered with. In 1992, Haber, Stornetta, and Dave Bayer incorporated
Merkle trees into the design, which improved its efficiency by allowing several document
certificates to be collected into one block.[4][12] Under their company Surety, their document
certificate hashes have been published in The New York Times every week since 1995.[13]
The first decentralized 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 the rate at 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).[14] 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 GB by early 2020.[15]
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.[16]
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.[17] 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".[18] For the year 2019 Gartner reported 5% of CIOs
believed blockchain technology was a 'game-changer' for their business.[19]
Structure and design
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 often public, digital ledger consisting of records
called blocks that are used to record transactions across many computers so that any involved
block cannot be altered retroactively, without the alteration of all subsequent blocks.[3][20] This
allows the participants to verify and audit transactions independently and relatively
inexpensively.[21] 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.[22] 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.[23] 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.
Logically, a blockchain can be seen as consisting of several layers:[24]
infrastructure (hardware)
networking (node discovery, information propagation[25] 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 (Block 0).[26][27] To assure
the integrity of a block and the data contained in it, the block is usually digitally signed.[28]
Sometimes separate blocks can be produced concurrently, creating a temporary fork. In addition
to a secure hash-based history, any blockchain has a specified algorithm for scoring different
versions of the history so that one with a higher score can be selected over others. Blocks not
selected for inclusion in the chain are called orphan blocks.[27] Peers supporting the database
have different versions of the history from time to time. They keep only the highest-scoring
version of the database known to them. Whenever a peer receives a higher-scoring version
(usually the old version with a single new block added) they extend or overwrite their own
database and retransmit the improvement to their peers. There is never an absolute guarantee
that any particular entry will remain in the best version of history forever. Blockchains are
typically built to add the score of new blocks onto old blocks and are given incentives to extend
with new blocks rather than overwrite old blocks. Therefore, the probability of an entry becoming
superseded decreases exponentially[29] as more blocks are built on top of it, eventually becoming
very low.[3][30]: ch. 08 [31] For example, bitcoin uses a proof-of-work system, where the chain with
the most cumulative proof-of-work is considered the valid one by the network. There are a
number of methods that can be used to demonstrate a sufficient level of computation. Within a
blockchain the computation is carried out redundantly rather than in the traditional segregated
and parallel manner.[32]
Block time
The block time is the average time it takes for the network to generate one extra block in the
blockchain. 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.[33]
Hard forks
A hard fork is a change to the blockchain protocol that is not backward compatible and requires
all users to upgrade their software in order to continue participating in the network. In a hard
fork, the network splits into two separate versions: one that follows the new rules and one that
follows the old rules.
For example, Ethereum was hard forked in 2016 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.[34]
A more recent hard-fork example is of Bitcoin in 2017, which resulted in a split creating Bitcoin
Cash.[35] The network split was mainly due to a disagreement in how to increase the transactions
per second to accommodate for demand.[36]
Decentralization
By storing data across its peer-to-peer network, the blockchain eliminates some risks that come
with data being held centrally.[3] The decentralized blockchain may use ad hoc message passing
and distributed networking.[37]
In a so-called "51% attack" a central entity gains control of more than half of a network and can
then manipulate that specific blockchain record at will, allowing double-spending.[38]
Blockchain security methods include the use of public-key cryptography.[39]: 5 A public key (a
long, random-looking string of numbers) is an address on the blockchain. Value tokens sent
across the network are recorded as belonging to that address. A private key is like a password
that gives its owner access to their digital assets or the means to otherwise interact with the
various capabilities that blockchains now support. Data stored on the blockchain is generally
considered incorruptible.[3]
Every node in a decentralized system has a copy of the blockchain. Data quality is maintained by
massive database replication[40] and computational trust. No centralized "official" copy exists and
no user is "trusted" more than any other.[39] Transactions are broadcast to the network using the
software. Messages are delivered on a best-effort basis. Early blockchains rely on energy-
intensive mining nodes to validate transactions,[27] add them to the block they are building, and
then broadcast the completed block to other nodes.[30]: ch. 08 Blockchains use various time-
stamping schemes, such as proof-of-work, to serialize changes.[41] Later consensus methods
include proof of stake.[27] The 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.[42]
Finality
Finality is the level of confidence that the well-formed block recently appended to the blockchain
will not be revoked in the future (is "finalized") and thus can be trusted. Most distributed
blockchain protocols, whether proof of work or proof of stake, cannot guarantee the finality of a
freshly committed block, and instead rely on "probabilistic finality": as the block goes deeper into
a blockchain, it is less likely to be altered or reverted by a newly found consensus.[43]
Byzantine fault tolerance-based proof-of-stake protocols purport to provide so called "absolute
finality": a randomly chosen validator proposes a block, the rest of validators vote on it, and, if a
supermajority decision approves it, the block is irreversibly committed into the blockchain.[43] A
modification of this method, an "economic finality", is used in practical protocols, like the Casper
protocol used in Ethereum: validators which sign two different blocks at the same position in the
blockchain are subject to "slashing", where their leveraged stake is forfeited.[43]
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.[44][45][46][47][48] 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.[49] 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.[50]: 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.[44][46] 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."[8][51]
Permissionless (public) blockchain
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.[29] This means that applications can
be added to the network without the approval or trust of others, using the blockchain as a
transport layer.[29]
Bitcoin and other cryptocurrencies currently secure their blockchain by requiring new entries to
include proof of work. To prolong the blockchain, bitcoin uses Hashcash puzzles. While Hashcash
was designed in 1997 by Adam Back, the original idea was first proposed by Cynthia Dwork and
Moni Naor and Eli Ponyatovski in their 1992 paper "Pricing via Processing or Combatting Junk
Mail".
In 2016, venture capital investment for blockchain-related projects was weakening in the USA
but increasing in China.[52] Bitcoin and many other cryptocurrencies use open (public)
blockchains. As of April 2018, bitcoin has the highest market capitalization.
Permissioned (private) blockchain
Permissioned blockchains use an access control layer to govern who has access to the
network.[53] It has been argued that permissioned blockchains can guarantee a certain level of
decentralization, if carefully designed, as opposed to permissionless blockchains, which are often
centralized in practice.[9]
Disadvantages of permissioned blockchain
Nikolai Hampton argued in Computerworld that "There is also no need for a '51 percent' attack
on a private blockchain, as the private blockchain (most likely) already controls 100 percent of all
block creation resources. If you could attack or damage the blockchain creation tools on a private
corporate server, you could effectively control 100 percent of their network and alter transactions
however you wished."[8] This has a set of particularly profound adverse implications during a
financial crisis or debt crisis like the financial crisis of 2007–08, where politically powerful actors
may make decisions that favor some groups at the expense of others,[54] and "the bitcoin
blockchain is protected by the massive group mining effort. It's unlikely that any private
blockchain will try to protect records using gigawatts of computing power — it's time-consuming
and expensive."[8] He also said, "Within a private blockchain there is also no 'race'; there's no
incentive to use more power or discover blocks faster than competitors. This means that many
in-house blockchain solutions will be nothing more than cumbersome databases."[8]
Blockchain analysis
The analysis of public blockchains has become increasingly important with the popularity of
bitcoin, Ethereum, litecoin and other cryptocurrencies.[55] 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.[56][57] The reason for this is accusations of
blockchain-enabled cryptocurrencies enabling illicit dark market trading of drugs, weapons,
money laundering, etc.[58] A common belief has been that cryptocurrency is private and
untraceable, thus leading many actors to use it for illegal purposes. This is changing now that
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 the use of new cryptos
such as Monero.[59][60][61]
Standardisation
In April 2016, Standards Australia submitted a proposal to the International Organization for
Standardization to consider developing standards to support blockchain technology. This
proposal resulted in the creation of ISO Technical Committee 307, Blockchain and Distributed
Ledger Technologies.[62] The technical committee has working groups relating to blockchain
terminology, reference architecture, security and privacy, identity, smart contracts, governance
and interoperability for blockchain and DLT, as well as standards specific to industry sectors and
generic government requirements.[63] More than 50 countries are participating in the
standardization process together with external liaisons such as the Society for Worldwide
Interbank Financial Telecommunication (SWIFT), the European Commission, the International
Federation of Surveyors, the International Telecommunication Union (ITU) and the United
Nations Economic Commission for Europe (UNECE).[63]
Many other national standards bodies and open standards bodies are also working on
blockchain standards.[64] These include the National Institute of Standards and Technology[65]
(NIST), the European Committee for Electrotechnical Standardization[66] (CENELEC), the Institute
of Electrical and Electronics Engineers[67] (IEEE), the Organization for the Advancement of
Structured Information Standards (OASIS), and some individual participants in the Internet
Engineering Task Force[68] (IETF).
Centralized blockchain
Although most of blockchain implementation are decentralized and distributed, Oracle launched
a centralized blockchain table feature in Oracle 21c database. The Blockchain Table in Oracle 21c
database is a centralized blockchain which provide immutable feature. Compared to
decentralized blockchains, centralized blockchains normally can provide a higher throughput and
lower latency of transactions than consensus-based distributed blockchains.[69][70]
Types
Currently, there are at least four types of blockchain networks — public blockchains, private
blockchains, consortium blockchains and hybrid blockchains.
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).[71] 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.[53] 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.[72] The exact
workings of the chain can vary based on which portions of centralization and decentralization are
used.
Sidechains
A sidechain is a designation for a blockchain ledger that runs in parallel to a primary
blockchain.[73][74] 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.).[75]
Consortium blockchain
A consortium blockchain is a type of blockchain that combines elements of both public and
private blockchains. In a consortium blockchain, a group of organizations come together to
create and operate the blockchain, rather than a single entity. The consortium members jointly
manage the blockchain network and are responsible for validating transactions. Consortium
blockchains are permissioned, meaning that only certain individuals or organizations are allowed
to participate in the network. This allows for greater control over who can access the blockchain
and helps to ensure that sensitive information is kept confidential.
Consortium blockchains are commonly used in industries where multiple organizations need to
collaborate on a common goal, such as supply chain management or financial services. One
advantage of consortium blockchains is that they can be more efficient and scalable than public
blockchains, as the number of nodes required to validate transactions is typically smaller.
Additionally, consortium blockchains can provide greater security and reliability than private
blockchains, as the consortium members work together to maintain the network. Some examples
of consortium blockchains include Quorum and Hyperledger.[76]
Uses
Cryptocurrencies
Most cryptocurrencies use blockchain technology to record transactions. For example, the bitcoin
network and Ethereum network are both based on blockchain.
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.[83]
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.[84] To strengthen their respective currencies,
Western governments including the European Union and the United States have initiated similar
projects.[85]
Smart contracts
Blockchain-based smart contracts are contracts that can be partially or fully executed or
enforced without human interaction.[86] 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.[87] 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.[88][89]
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,[90][91][92]
and according to a September 2016 IBM study, this is occurring faster than expected.[93]
Banks are interested in this technology not least because it has the potential to speed up back
office settlement systems.[94] Moreover, as the blockchain industry has reached early maturity
institutional appreciation has grown that it is, practically speaking, the infrastructure of a whole
new financial industry, with all the implications which that entails.[95]
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.[96][97]
Berenberg, a German bank, believes that blockchain is an "overhyped technology" that has had a
large number of "proofs of concept", but still has major challenges, and very few success
stories.[98]
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).[99] STO/DSOs may be conducted privately or on 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,[100] art, or individual products. A number of
companies are active in this space providing services for compliant tokenization, private STOs,
and public STOs.
Games
Blockchain technology, such as cryptocurrencies and non-fungible tokens (NFTs), has been used
in video games for monetization. Many live-service games offer in-game customization options,
such as character skins or other in-game items, which the players can earn and trade with other
players using in-game currency. Some games also allow for trading of virtual items using real-
world currency, but this may be illegal in some countries where video games are seen as akin to
gambling, and has led to gray market issues such as skin gambling, and thus publishers typically
have shied away from allowing players to earn real-world funds from games.[101] Blockchain
games typically allow players to trade these in-game items for cryptocurrency, which can then be
exchanged for money.[102]
The first known game to use blockchain technologies was CryptoKitties, launched in November
2017, where the player would purchase NFTs with Ethereum cryptocurrency, each NFT consisting
of a virtual pet that the player could breed with others to create offspring with combined traits
as new NFTs.[103][102] The game made headlines in December 2017 when one virtual pet sold for
more than US$100,000.[104] CryptoKitties also illustrated scalability problems for games on
Ethereum when it created significant congestion on the Ethereum network in early 2018 with
approximately 30% of all Ethereum transactions being for the game.[105][106]
By the early 2020s, there had not been a breakout success in video games using blockchain, as
these games tend to focus on using blockchain for speculation instead of more traditional forms
of gameplay, which offers limited appeal to most players. Such games also represent a high risk
to investors as their revenues can be difficult to predict.[102] However, limited successes of some
games, such as Axie Infinity during the COVID-19 pandemic, and corporate plans towards
metaverse content, refueled interest in the area of GameFi, a term describing the intersection of
video games and financing typically backed by blockchain currency, in the second half of
2021.[107] Several major publishers, including Ubisoft, Electronic Arts, and Take Two Interactive,
have stated that blockchain and NFT-based games are under serious consideration for their
companies in the future.[108]
In October 2021, Valve Corporation banned blockchain games, including those using
cryptocurrency and NFTs, from being hosted on its Steam digital storefront service, which is
widely used for personal computer gaming, claiming that this was an extension of their policy
banning games that offered in-game items with real-world value. Valve's prior history with
gambling, specifically skin gambling, was speculated to be a factor in the decision to ban
blockchain games.[109] Journalists and players responded positively to Valve's decision as
blockchain and NFT games have a reputation for scams and fraud among most PC
gamers,[101][109] and Epic Games, which runs the Epic Games Store in competition to Steam, said
that they would be open to accepted blockchain games in the wake of Valve's refusal.[110]
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.[111]
As of 2019, the Diamond Trading Company (DTC) has been involved in building a diamond
trading supply chain product called Tracer.[112]
Food supply — 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 located on the IBM cloud.[113]
Fashion industry — There is an opaque relationship between brands, distributors, and
customers in the fashion industry, which prevents the sustainable and stable development of
the fashion industry. Blockchain makes up for this shortcoming and makes information
transparent, solving the difficulty of sustainable development of the industry.[114]
Motor vehicles — Mercedes-Benz and partner Icertis developed a blockchain prototype used
to facilitate consistent documentation of contracts along the supply chain so that the ethical
standards and contractual obligations required of its direct suppliers can be passed on to
second tier suppliers and beyond.[115][116] In another project, the company uses blockchain
technology to track the emissions of climate-relevant gases and the amount of secondary
material along the supply chain for its battery cell manufacturers.[117]
Domain names
There are several different efforts to offer domain name services via the blockchain. These
domain names can be controlled by the use of a private key, which purports to allow for
uncensorable websites. This would also bypass a registrar's ability to suppress domains used for
fraud, abuse, or illegal content.[118]
Namecoin is a cryptocurrency that supports the ".bit" top-level domain (TLD). Namecoin was
forked from bitcoin in 2011. The .bit TLD is not sanctioned by ICANN, instead requiring an
alternative DNS root.[118] As of 2015, .bit was used by 28 websites, out of 120,000 registered
names.[119] Namecoin was dropped by OpenNIC in 2019, due to malware and potential other
legal issues.[120] Other blockchain alternatives to ICANN include The Handshake Network,[119]
EmerDNS, and Unstoppable Domains.[118]
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 as an alternative
to conventional cryptocurrency wallet addresses as a convenience for transferring
cryptocurrency.[121]
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[122] or musicians.[123] 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.[124] In 2017, IBM partnered with ASCAP and PRS for Music to
adopt blockchain technology in music distribution.[125] Imogen Heap's Mycelia service has also
been proposed as a blockchain-based alternative "that gives artists more control over how their
songs and associated data circulate among fans and other musicians."[126][127]
New distribution methods are available for the insurance industry such as peer-to-peer
insurance, parametric insurance and microinsurance following the adoption of blockchain.[128][129]
The sharing economy and IoT are also set to benefit from blockchains because they involve many
collaborating peers.[130] The use of blockchain in libraries is being studied with a grant from the
U.S. Institute of Museum and Library Services.[131]
Other blockchain designs include Hyperledger, a collaborative effort from the Linux Foundation
to support blockchain-based distributed ledgers, with projects under this initiative including
Hyperledger Burrow (by Monax) and Hyperledger Fabric (spearheaded by IBM).[132][133][134]
Another is Quorum, a permissioned private blockchain by JPMorgan Chase with private storage,
used for contract applications.[135]
Oracle introduced a blockchain table feature in its Oracle 21c database.[69][70]
Blockchain is also being used in peer-to-peer energy trading.[136][137][138]
Lightweight blockchains, or simplified blockchains, are more suitable for internet of things (IoT)
applications than conventional blockchains.[139] One experiment suggested that a lightweight
blockchain-based network could accommodate up to 1.34 million authentication processes every
second, which could be sufficient for resource-constrained IoT networks.[140]
Blockchain could be used in detecting counterfeits by associating unique identifiers to products,
documents and shipments, and storing records associated with transactions that cannot be
forged or altered.[141][142] It is however argued that blockchain technology needs to be
supplemented with technologies that provide a strong binding between physical objects and
blockchain systems,[143] as well as provisions for content creator verification ala KYC
standards.[144] The EUIPO established an Anti-Counterfeiting Blockathon Forum, with the
objective of "defining, piloting and implementing" an anti-counterfeiting infrastructure at the
European level.[145][146] The Dutch Standardisation organisation NEN uses blockchain together
with QR Codes to authenticate certificates.[147]
Beijing and Shanghai are among the cities designated by China to trial blockchain applications as
January 30, 2022.[148] In Chinese legal proceedings, blockchain technology was first accepted as
a method for authenticating internet evidence by the Hangzhou Internet Court in 2019 and has
since been accepted by other Chinese courts.[149]: 123–125
Blockchain 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[150] 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.
There are already several blockchain interoperability solutions available.[151] They can be
classified into three categories: cryptocurrency interoperability approaches, blockchain engines,
and blockchain connectors.
Several individual IETF participants produced the draft of a blockchain interoperability
architecture.[152]
Energy consumption concerns
Adoption decision
Motivations for adopting blockchain technology (an aspect of innovation adoption) have been
investigated by researchers. For example, Janssen, et al. provided a framework for analysis,[170]
and Koens & Poll pointed out that adoption could be heavily driven by non-technical factors.[171]
Based on behavioral models, Li[172] has 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.[173][174] 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. Contrary to contracts, blockchains do not directly rely on the legal
system to enforce agreements.[175] In addition, contrary to the use of relational norms,
blockchains do not require a trust or direct connections between collaborators.
Journals
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.[180] The journal covers aspects of mathematics, computer science, engineering,
law, economics and philosophy that relate to cryptocurrencies.[181][182] 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 on the first page
of their papers for non-repudiation purposes.[183]
See also
1. Morris, David Z. (15 May 2016). "Leaderless, Blockchain-Based Venture Capital Fund Raises $100
Million, And Counting" (http://fortune.com/2016/05/15/leaderless-blockchain-vc-fund/) . Fortune.
Archived (https://web.archive.org/web/20160521015602/http://fortune.com/2016/05/15/leaderless-blo
ckchain-vc-fund/) from the original on 21 May 2016. Retrieved 23 May 2016.
2. Popper, Nathan (21 May 2016). "A Venture Fund With Plenty of Virtual Capital, but No Capitalist" (http
s://www.nytimes.com/2016/05/22/business/dealbook/crypto-ether-bitcoin-currency.html) . The New
York Times. Archived (https://web.archive.org/web/20160522034932/http://www.nytimes.com/2016/05/
22/business/dealbook/crypto-ether-bitcoin-currency.html) from the original on 22 May 2016.
Retrieved 23 May 2016.
3. "Blockchains: The great chain of being sure about things" (https://www.economist.com/news/briefing/2
1677228-technology-behind-bitcoin-lets-people-who-do-not-know-or-trust-each-other-build-depe
ndable) . The Economist. 31 October 2015. Archived (https://web.archive.org/web/20160703000844/h
ttp://www.economist.com/news/briefing/21677228-technology-behind-bitcoin-lets-people-who-do-n
ot-know-or-trust-each-other-build-dependable) from the original on 3 July 2016. Retrieved 18 June
2016. "The technology behind bitcoin lets people who do not know or trust each other build a
dependable ledger. This has implications far beyond the crypto currency."
4. Narayanan, Arvind; Bonneau, Joseph; Felten, Edward; Miller, Andrew; Goldfeder, Steven (2016). Bitcoin
and cryptocurrency technologies: a comprehensive introduction. Princeton, New Jersey: Princeton
University Press. ISBN 978-0-691-17169-2.
5. Iansiti, Marco; Lakhani, Karim R. (January 2017). "The Truth About Blockchain" (https://hbr.org/2017/0
1/the-truth-about-blockchain) . Harvard Business Review. Cambridge, Massachusetts: Harvard
University. Archived (https://web.archive.org/web/20170118052537/https://hbr.org/2017/01/the-truth-
about-blockchain) from the original on 18 January 2017. Retrieved 17 January 2017. "The technology
at the heart of bitcoin and other virtual currencies, blockchain is an open, distributed ledger that can
record transactions between two parties efficiently and in a verifiable and permanent way."
6. Oberhaus, Daniel (27 August 2018). "The World's Oldest Blockchain Has Been Hiding in the New York
Times Since 1995" (https://www.vice.com/en/article/j5nzx4/what-was-the-first-blockchain) . Vice.
Retrieved 9 October 2021.
7. Lunn, Bernard (10 February 2018). "Blockchain may finally disrupt payments from Micropayments to
credit cards to SWIFT" (https://dailyfintech.com/2018/02/10/bitcoin-will-finally-disrupt-the-credit-car
d-rails/) . dailyfintech.com. Archived (https://web.archive.org/web/20180927005613/https://dailyfintec
h.com/2018/02/10/bitcoin-will-finally-disrupt-the-credit-card-rails/) from the original on 27
September 2018. Retrieved 18 November 2018.
8. Hampton, Nikolai (5 September 2016). "Understanding the blockchain hype: Why much of it is nothing
more than snake oil and spin" (https://www2.computerworld.com.au/article/606253/understanding-blo
ckchain-hype-why-much-it-nothing-more-than-snake-oil-spin/) . Computerworld. Archived (https://
web.archive.org/web/20160906171838/http://www.computerworld.com.au/article/606253/understandi
ng-blockchain-hype-why-much-it-nothing-more-than-snake-oil-spin/) from the original on 6
September 2016. Retrieved 5 September 2016.
9. Bakos, Yannis; Halaburda, Hanna; Mueller-Bloch, Christoph (February 2021). "When Permissioned
Blockchains Deliver More Decentralization Than Permissionless". Communications of the ACM. 64 (2):
20–22. doi:10.1145/3442371 (https://doi.org/10.1145%2F3442371) . S2CID 231704491 (https://api.se
manticscholar.org/CorpusID:231704491) .
10. Sherman, Alan T.; Javani, Farid; Zhang, Haibin; Golaszewski, Enis (January 2019). "On the Origins and
Variations of Blockchain Technologies". IEEE Security Privacy. 17 (1): 72–77. arXiv:1810.06130 (https://a
rxiv.org/abs/1810.06130) . doi:10.1109/MSEC.2019.2893730 (https://doi.org/10.1109%2FMSEC.2019.2
893730) . ISSN 1558-4046 (https://www.worldcat.org/issn/1558-4046) . S2CID 53114747 (https://ap
i.semanticscholar.org/CorpusID:53114747) .
11. Haber, Stuart; Stornetta, W. Scott (January 1991). "How to time-stamp a digital document". Journal of
Cryptology. 3 (2): 99–111. CiteSeerX 10.1.1.46.8740 (https://citeseerx.ist.psu.edu/viewdoc/summary?doi
=10.1.1.46.8740) . doi:10.1007/bf00196791 (https://doi.org/10.1007%2Fbf00196791) .
S2CID 14363020 (https://api.semanticscholar.org/CorpusID:14363020) .
12. Bayer, Dave; Haber, Stuart; Stornetta, W. Scott (March 1992). "Improving the Efficiency and Reliability
of Digital Time-Stamping". Sequences. Vol. 2. pp. 329–334. CiteSeerX 10.1.1.71.4891 (https://citeseerx.is
t.psu.edu/viewdoc/summary?doi=10.1.1.71.4891) . doi:10.1007/978-1-4613-9323-8_24 (https://doi.or
g/10.1007%2F978-1-4613-9323-8_24) . ISBN 978-1-4613-9325-2.
13. Oberhaus, Daniel (27 August 2018). "The World's Oldest Blockchain Has Been Hiding in the New York
Times Since 1995" (https://www.vice.com/en/article/j5nzx4/what-was-the-first-blockchain) .
www.vice.com. Retrieved 9 October 2021.
14. Nian, Lam Pak; Chuen, David LEE Kuo (2015). "A Light Touch of Regulation for Virtual Currencies". In
Chuen, David LEE Kuo (ed.). Handbook of Digital Currency: Bitcoin, Innovation, Financial Instruments,
and Big Data. Academic Press. p. 319. ISBN 978-0-12-802351-8.
77. Katie Martin (27 September 2016). "CLS dips into blockchain to net new currencies" (https://www.ft.co
m/content/c905b6fc-4dd2-3170-9d2a-c79cdbb24f16) . Financial Times. Archived (https://web.archiv
e.org/web/20161109152317/https://www.ft.com/content/c905b6fc-4dd2-3170-9d2a-c79cdbb24f16)
from the original on 9 November 2016. Retrieved 7 November 2016.
78. Castillo, Michael (16 April 2019). "blockchain 50: Billion Dollar Babies" (https://www.forbes.com/sites/mi
chaeldelcastillo/2019/04/16/blockchain-50-billion-dollar-babies/) . Financial Website. SourceMedia.
Archived (https://web.archive.org/web/20210131145703/https://www.forbes.com/sites/michaeldelcastill
o/2019/04/16/blockchain-50-billion-dollar-babies/) from the original on 31 January 2021. Retrieved
1 February 2021.
79. Davies, Steve (2018). "PwC's Global Blockchain Survey" (https://www.pwc.com/gx/en/industries/technol
ogy/blockchain/blockchain-in-business.html) . Financial Website. SourceMedia. Archived (https://web.
archive.org/web/20210125181107/https://www.pwc.com/gx/en/industries/technology/blockchain/bloc
kchain-in-business.html) from the original on 25 January 2021. Retrieved 1 February 2021.
80. "BBC Radio 4 - Things That Made the Modern Economy, Series 2, Blockchain" (https://www.bbc.co.uk/p
rogrammes/m0008b9v) . BBC. Archived (https://web.archive.org/web/20221014154012/https://www.b
bc.co.uk/programmes/m0008b9v) from the original on 14 October 2022. Retrieved 14 October 2022.
81. Liu, Shanhong (13 March 2020). "Blockchain - Statistics & Facts" (https://www.statista.com/topics/512
2/blockchain/#dossierSummary__chapter6) . Statistics Website. SourceMedia. Archived (https://web.ar
chive.org/web/20210215222206/https://www.statista.com/topics/5122/blockchain/#dossierSummary__
chapter6) from the original on 15 February 2021. Retrieved 17 February 2021.
82. Du, Wenbo; Ma, Xiaozhi; Yuan, Hongping; Zhu, Yue (1 August 2022). "Blockchain technology-based
sustainable management research: the status quo and a general framework for future application" (htt
ps://doi.org/10.1007/s11356-022-21761-2) . Environmental Science and Pollution Research. 29 (39):
58648–58663. Bibcode:2022ESPR...2958648D (https://ui.adsabs.harvard.edu/abs/2022ESPR...2958648
D) . doi:10.1007/s11356-022-21761-2 (https://doi.org/10.1007%2Fs11356-022-21761-2) .
ISSN 1614-7499 (https://www.worldcat.org/issn/1614-7499) . PMC 9261142 (https://www.ncbi.nlm.ni
h.gov/pmc/articles/PMC9261142) . PMID 35794327 (https://pubmed.ncbi.nlm.nih.gov/35794327) .
83. KPIX-TV. (5 November 2020). "Silk Road: Feds Seize $1 Billion In Bitcoins Linked To Infamous Silk Road
Dark Web Case; 'Where Did The Money Go'". KPIX website (https://web.archive.org/web/202207062212
20/https://www.cbsnews.com/sanfrancisco/news/silk-road-feds-seize-1-billlion-in-bitcoins-linked-to-i
nfamous-silk-road-dark-web-case-where-did-the-money-go/) Retrieved 28 March 2021.
84. Aditi Kumar and Eric Rosenbach. (20 May 2020). "Could China's Digital Currency Unseat the Dollar?:
American Economic and Geopolitical Power Is at Stake". Foreign Affairs website (https://www.foreignaff
airs.com/articles/china/2020-05-20/could-chinas-digital-currency-unseat-dollar) Archived (https://w
eb.archive.org/web/20210414175747/https://www.foreignaffairs.com/articles/china/2020-05-20/could-
chinas-digital-currency-unseat-dollar) 14 April 2021 at the Wayback Machine Retrieved 31 March
2021.
85. Staff. (16 February 2021). "The Economist Explains: What is the fuss over central-bank digital
currencies?" The Economist website (https://www.economist.com/the-economist-explains/2021/02/16/
what-is-the-fuss-over-central-bank-digital-currencies) Archived (https://web.archive.org/web/20210
324132953/https://www.economist.com/the-economist-explains/2021/02/16/what-is-the-fuss-over-c
entral-bank-digital-currencies) 24 March 2021 at the Wayback Machine Retrieved 1 April 2021.
86. Franco, Pedro (2014). Understanding Bitcoin: Cryptography, Engineering and Economics (https://books.
google.com/books?id=YHfCBwAAQBAJ) . John Wiley & Sons. p. 9. ISBN 978-1-119-01916-9. Archived
(https://web.archive.org/web/20170214204859/https://books.google.com/books?id=YHfCBwAAQBA
J) from the original on 14 February 2017. Retrieved 4 January 2017 – via Google Books.
87. Casey M (16 July 2018). The impact of blockchain technology on finance : a catalyst for change (https://
www.worldcat.org/oclc/1059331326) . London, UK. ISBN 978-1-912179-15-2. OCLC 1059331326 (htt
ps://www.worldcat.org/oclc/1059331326) .
88. Governatori, Guido; Idelberger, Florian; Milosevic, Zoran; Riveret, Regis; Sartor, Giovanni; Xu, Xiwei
(2018). "On legal contracts, imperative and declarative smart contracts, and blockchain systems".
Artificial Intelligence and Law. 26 (4): 33. doi:10.1007/s10506-018-9223-3 (https://doi.org/10.1007%2F
s10506-018-9223-3) . S2CID 3663005 (https://api.semanticscholar.org/CorpusID:3663005) .
89. Virtual Currencies and Beyond: Initial Considerations (https://www.imf.org/external/pubs/ft/sdn/2016/sd
n1603.pdf) (PDF). IMF Discussion Note. International Monetary Fund. 2016. p. 23. ISBN 978-1-5135-
5297-2. Archived (https://web.archive.org/web/20180414210721/https://www.imf.org/external/pubs/ft/
sdn/2016/sdn1603.pdf) (PDF) from the original on 14 April 2018. Retrieved 19 April 2018.
90. Epstein, Jim (6 May 2016). "Is Blockchain Technology a Trojan Horse Behind Wall Street's Walled
Garden?" (http://reason.com/reasontv/2016/05/06/bitcoin-consensus-blockchain-wall-street) .
Reason. Archived (https://web.archive.org/web/20160708170429/http://reason.com/reasontv/2016/05/
06/bitcoin-consensus-blockchain-wall-street) from the original on 8 July 2016. Retrieved 29 June
2016. "mainstream misgivings about working with a system that's open for anyone to use. Many banks
are partnering with companies building so-called private blockchains that mimic some aspects of
Bitcoin's architecture except they're designed to be closed off and accessible only to chosen parties. ...
[but some believe] that open and permission-less blockchains will ultimately prevail even in the
banking sector simply because they're more efficient."
91. Redrup, Yolanda (29 June 2016). "ANZ backs private blockchain, but won't go public" (http://www.afr.co
m/technology/anz-backs-private-blockchain-but-wont-go-public-20160629-gpuf9z) . Australia
Financial Review. Archived (https://web.archive.org/web/20160703103852/http://www.afr.com/technolo
gy/anz-backs-private-blockchain-but-wont-go-public-20160629-gpuf9z) from the original on 3
July 2016. Retrieved 7 July 2016. "Blockchain networks can be either public or private. Public
blockchains have many users and there are no controls over who can read, upload or delete the data
and there are an unknown number of pseudonymous participants. In comparison, private blockchains
also have multiple data sets, but there are controls in place over who can edit data and there are a
known number of participants."
92. Shah, Rakesh (1 March 2018). "How Can The Banking Sector Leverage Blockchain Technology?" (http://
www.postboxcommunications.com/blog/can-banking-sector-leverage-blockchain-technology/) .
PostBox Communications. PostBox Communications Blog. Archived (https://web.archive.org/web/20180
317232141/http://www.postboxcommunications.com/blog/can-banking-sector-leverage-blockchain-t
echnology/) from the original on 17 March 2018. "Banks preferably have a notable interest in utilizing
Blockchain Technology because it is a great source to avoid fraudulent transactions. Blockchain is
considered hassle free, because of the extra level of security it offers."
93. Kelly, Jemima (28 September 2016). "Banks adopting blockchain 'dramatically faster' than expected:
IBM" (https://www.reuters.com/article/us-tech-blockchain-ibm-idUSKCN11Y28D) . Reuters. Archived
(https://web.archive.org/web/20160928163048/http://www.reuters.com/article/us-tech-blockchain-ibm
-idUSKCN11Y28D) from the original on 28 September 2016. Retrieved 28 September 2016.
94. Arnold, Martin (23 September 2013). "IBM in blockchain project with China UnionPay" (https://www.ft.c
om/content/719f4e7e-80e1-11e6-bc52-0c7211ef3198) . Financial Times. Archived (https://web.archiv
e.org/web/20161109152822/https://www.ft.com/content/719f4e7e-80e1-11e6-bc52-0c7211ef3198)
from the original on 9 November 2016. Retrieved 7 November 2016.
95. Ravichandran, Arvind; Fargo, Christopher; Kappos, David; Portilla, David; Buretta, John; Ngo, Minh Van;
Rosenthal-Larrea, Sasha (28 January 2022). "Blockchain in the Banking Sector: A Review of the
Landscape and Opportunities" (https://corpgov.law.harvard.edu/2022/01/28/blockchain-in-the-bankin
g-sector-a-review-of-the-landscape-and-opportunities/) . Archived (https://web.archive.org/web/20
220216143024/https://corpgov.law.harvard.edu/2022/01/28/blockchain-in-the-banking-sector-a-revi
ew-of-the-landscape-and-opportunities/) from the original on 16 February 2022. Retrieved
16 February 2022.
96. "UBS leads team of banks working on blockchain settlement system" (https://www.reuters.com/article/u
s-banks-blockchain-ubs-idUSKCN10Z147) . Reuters. 24 August 2016. Archived (https://web.archive.or
g/web/20170519073429/http://www.reuters.com/article/us-banks-blockchain-ubs-idUSKCN10Z147)
from the original on 19 May 2017. Retrieved 13 May 2017.
97. "Cryptocurrency Blockchain" (https://www.capgemini.com/beyond-the-buzz/cryptocurrency-blockchai
n) . capgemini.com. Archived (https://web.archive.org/web/20161205202317/https://www.capgemini.c
om/beyond-the-buzz/cryptocurrency-blockchain) from the original on 5 December 2016. Retrieved
13 May 2017.
98. Kelly, Jemima (31 October 2017). "Top banks and R3 build blockchain-based payments system" (http
s://www.reuters.com/article/us-banks-blockchain-r3/top-banks-and-r3-build-blockchain-based-paym
ents-system-idUSKBN1D00ZB) . Reuters. Archived (https://web.archive.org/web/20180710011735/htt
ps://www.reuters.com/article/us-banks-blockchain-r3/top-banks-and-r3-build-blockchain-based-pay
ments-system-idUSKBN1D00ZB) from the original on 10 July 2018. Retrieved 9 July 2018.
99. "Are Token Assests the Securities of Tomorrow?" (https://www2.deloitte.com/content/dam/Deloitte/lu/D
ocuments/technology/lu-token-assets-securities-tomorrow.pdf) (PDF). Deloitte. February 2019.
Archived (https://web.archive.org/web/20190623225917/https://www2.deloitte.com/content/dam/Deloi
tte/lu/Documents/technology/lu-token-assets-securities-tomorrow.pdf) (PDF) from the original on
23 June 2019. Retrieved 26 September 2019.
100. Hammerberg, Jeff (7 November 2021). "Potential impact of blockchain on real estate" (https://www.was
hingtonblade.com/2021/11/07/potential-impact-of-blockchain-on-real-estate/) . Washington Blade.
Archived (https://web.archive.org/web/20211203060902/https://www.washingtonblade.com/2021/11/0
7/potential-impact-of-blockchain-on-real-estate/) from the original on 3 December 2021. Retrieved
3 December 2021.
101. Clark, Mitchell (15 October 2021). "Valve bans blockchain games and NFTs on Steam, Epic will try to
make it work" (https://www.theverge.com/2021/10/15/22728425/valve-steam-blockchain-nft-crypto-b
an-games-age-of-rust) . The Verge. Archived (https://web.archive.org/web/20220612164811/https://
www.theverge.com/2021/10/15/22728425/valve-steam-blockchain-nft-crypto-ban-games-age-of-rus
t) from the original on 12 June 2022. Retrieved 8 November 2021.
102. Mozuch, Mo (29 April 2021). "Blockchain Games Twist The Fundamentals Of Online Gaming" (https://w
ww.inverse.com/gaming/blockchain-games-online-gaming) . Inverse. Archived (https://web.archive.or
g/web/20220705221315/https://www.inverse.com/gaming/blockchain-games-online-gaming) from
the original on 5 July 2022. Retrieved 4 November 2021.
103. "Internet firms try their luck at blockchain games" (https://asiatimes.com/article/internet-firms-try-luck
-blockchain-games/) . Asia Times. 22 February 2018. Archived (https://web.archive.org/web/20211118
021414/https://asiatimes.com/2018/02/internet-firms-try-luck-blockchain-games/) from the original
on 18 November 2021. Retrieved 28 February 2018.
104. Evelyn Cheng (6 December 2017). "Meet CryptoKitties, the $100,000 digital beanie babies epitomizing
the cryptocurrency mania" (https://www.cnbc.com/2017/12/06/meet-cryptokitties-the-new-digital-be
anie-babies-selling-for-100k.html) . CNBC. Archived (https://web.archive.org/web/20181120115903/
https://www.cnbc.com/2017/12/06/meet-cryptokitties-the-new-digital-beanie-babies-selling-for-100
k.html) from the original on 20 November 2018. Retrieved 28 February 2018.
105. Laignee Barron (13 February 2018). "CryptoKitties is Going Mobile. Can Ethereum Handle the Traffic?"
(http://fortune.com/2018/02/13/cryptokitties-ethereum-ios-launch-china-ether/) . Fortune. Archived
(https://web.archive.org/web/20181028041832/http://fortune.com/2018/02/13/cryptokitties-ethereum
-ios-launch-china-ether/) from the original on 28 October 2018. Retrieved 30 September 2018.
106. "CryptoKitties craze slows down transactions on Ethereum" (https://www.bbc.com/news/technology-42
237162) . 12 May 2017. Archived (https://web.archive.org/web/20180112143517/http://www.bbc.co
m/news/technology-42237162) from the original on 12 January 2018.
107. Wells, Charlie; Egkolfopoulou, Misrylena (30 October 2021). "Into the Metaverse: Where Crypto,
Gaming and Capitalism Collide" (https://www.bloomberg.com/news/features/2021-10-30/what-is-the-
metaverse-where-crypto-nft-capitalism-collide-in-games-like-axie) . Bloomberg News. Archived (htt
ps://web.archive.org/web/20220702015748/https://www.bloomberg.com/news/features/2021-10-30/w
hat-is-the-metaverse-where-crypto-nft-capitalism-collide-in-games-like-axie) from the original on
2 July 2022. Retrieved 11 November 2021.
108. Orland, Kyle (4 November 2021). "Big-name publishers see NFTs as a big part of gaming's future" (http
s://arstechnica.com/gaming/2021/11/big-name-publishers-see-nfts-as-a-big-part-of-gamings-futur
e/) . Ars Technica. Archived (https://web.archive.org/web/20220618031838/https://arstechnica.com/ga
ming/2021/11/big-name-publishers-see-nfts-as-a-big-part-of-gamings-future/) from the original
on 18 June 2022. Retrieved 4 November 2021.
109. Knoop, Joseph (15 October 2021). "Steam bans all games with NFTs or cryptocurrency" (https://www.p
cgamer.com/steam-bans-nfts-cryptocurrencies-blockchain/) . PC Gamer. Archived (https://web.archiv
e.org/web/20220717120921/https://www.pcgamer.com/steam-bans-nfts-cryptocurrencies-blockchai
n/) from the original on 17 July 2022. Retrieved 8 November 2021.
110. Clark, Mitchell (15 October 2021). "Epic says it's 'open' to blockchain games after Steam bans them" (ht
tps://www.theverge.com/2021/10/15/22729050/epic-game-store-open-to-blockchain-cryptocurrency
-nft-games) . The Verge. Archived (https://web.archive.org/web/20220606191912/https://www.thever
ge.com/2021/10/15/22729050/epic-game-store-open-to-blockchain-cryptocurrency-nft-games)
from the original on 6 June 2022. Retrieved 11 November 2021.
111. Nash, Kim S. (14 July 2016). "IBM Pushes Blockchain into the Supply Chain" (https://www.wsj.com/articl
es/ibm-pushes-blockchain-into-the-supply-chain-1468528824) . The Wall Street Journal. Archived (h
ttps://web.archive.org/web/20160718032702/http://www.wsj.com/articles/ibm-pushes-blockchain-into
-the-supply-chain-1468528824) from the original on 18 July 2016. Retrieved 24 July 2016.
112. Gstettner, Stefan (30 July 2019). "How Blockchain Will Redefine Supply Chain Management" (https://kn
owledge.wharton.upenn.edu/article/blockchain-supply-chain-management) . Knowledge@Wharton.
The Wharton School of the University of Pennsylvania. Retrieved 28 August 2020.
113. Corkery, Michael; Popper, Nathaniel (24 September 2018). "From Farm to Blockchain: Walmart Tracks Its
Lettuce" (https://www.nytimes.com/2018/09/24/business/walmart-blockchain-lettuce.html) . The New
York Times. Archived (https://web.archive.org/web/20181205103719/https://www.nytimes.com/2018/0
9/24/business/walmart-blockchain-lettuce.html) from the original on 5 December 2018. Retrieved
5 December 2018.
114. "Blockchain basics: Utilizing blockchain to improve sustainable supply chains in fashion" (https://www.e
merald.com/insight/content/doi/10.1108/SD-03-2021-0028/full/html) . Strategic Direction. 37 (5): 25–
27. 8 June 2021. doi:10.1108/SD-03-2021-0028 (https://doi.org/10.1108%2FSD-03-2021-0028) .
ISSN 0258-0543 (https://www.worldcat.org/issn/0258-0543) . S2CID 241322151 (https://api.semantic
scholar.org/CorpusID:241322151) . Archived (https://web.archive.org/web/20220527211047/https://w
ww.emerald.com/insight/content/doi/10.1108/SD-03-2021-0028/full/html) from the original on 27
May 2022. Retrieved 30 April 2022.
115. Mercedes-Benz Group AG, Once round the block, please! (https://group.mercedes-benz.com/innovatio
n/blockchain-2.html) Archived (https://web.archive.org/web/20230824152916/https://group.mercede
s-benz.com/innovation/blockchain-2.html) 24 August 2023 at the Wayback Machine, accessed 24
August 2023
116. Green, W., Mercedes tests blockchain to improve supply chain transparency (https://www.cips.org/suppl
y-management/news/2019/february/mercedes-tests-blockchain-to-improve-supply-chain-transparen
cy/) Archived (https://web.archive.org/web/20230824152932/https://www.cips.org/supply-managem
ent/news/2019/february/mercedes-tests-blockchain-to-improve-supply-chain-transparency/) 24
August 2023 at the Wayback Machine, Supply Management, published 25 February 2019, accessed 24
August 2023
117. Mercedes-Benz AG, Mercedes-Benz Cars drives "Ambition2039" in the supply chain: blockchain pilot
project provides transparency on CO₂ emissions (https://media.mercedes-benz.com/article/ff705327-b
e61-4b15-9eee-2c1a53c9b0e6) Archived (https://web.archive.org/web/20230824152915/https://me
dia.mercedes-benz.com/article/ff705327-be61-4b15-9eee-2c1a53c9b0e6) 24 August 2023 at the
Wayback Machine, published 30 January 2020, accessed 24 August 2023
118. Sanders, James (28 August 2019). "Blockchain-based Unstoppable Domains is a rehash of a failed idea"
(https://www.techrepublic.com/article/blockchain-based-unstoppable-domains-is-a-rehash-of-a-faile
d-idea/) . TechRepublic. Archived (https://web.archive.org/web/20191119015118/https://www.techrep
ublic.com/article/blockchain-based-unstoppable-domains-is-a-rehash-of-a-failed-idea/) from the
original on 19 November 2019. Retrieved 16 April 2020.
119. Orcutt, Mike (4 June 2019). "The ambitious plan to reinvent how websites get their names" (https://ww
w.technologyreview.com/2019/06/04/239039/the-ambitious-plan-to-make-the-internets-phone-book
-more-trustworthy/) . MIT Technology Review. Archived (https://web.archive.org/web/2022052523445
0/https://www.technologyreview.com/2019/06/04/239039/the-ambitious-plan-to-make-the-internets
-phone-book-more-trustworthy/) from the original on 25 May 2022. Retrieved 17 May 2021.
120. Cimpanu, Catalin (17 July 2019). "OpenNIC drops support for .bit domain names after rampant malware
abuse" (https://www.zdnet.com/article/opennic-drops-support-for-bit-domain-names-after-rampant-
malware-abuse/) . ZDNet. Archived (https://web.archive.org/web/20220413044957/https://www.zdne
t.com/article/opennic-drops-support-for-bit-domain-names-after-rampant-malware-abuse/) from
the original on 13 April 2022. Retrieved 17 May 2021.
121. ".Kred launches as dual DNS and ENS domain" (https://domainnamewire.com/2020/03/06/kred-blockc
hain-domain/) . Domain Name Wire | Domain Name News. 6 March 2020. Archived (https://web.archiv
e.org/web/20200308175635/https://domainnamewire.com/2020/03/06/kred-blockchain-domain/)
from the original on 8 March 2020. Retrieved 16 April 2020.
122. K. Kotobi, and S. G. Bilen, "Secure Blockchains for Dynamic Spectrum Access : A Decentralized
Database in Moving Cognitive Radio Networks Enhances Security and User Access" (http://ieeexplore.i
eee.org/stamp/stamp.jsp?tp=&arnumber=8269834) , IEEE Vehicular Technology Magazine, 2018.
123. "Blockchain Could Be Music's Next Disruptor" (http://fortune.com/2016/09/22/blockchain-music-disrup
tion/) . 22 September 2016. Archived (https://web.archive.org/web/20160923180800/http://fortune.co
m/2016/09/22/blockchain-music-disruption/) from the original on 23 September 2016.
124. Susan Moore. (16 October 2019). "Digital Business: 4 Ways Blockchain Will Transform Higher
Education". Gartner website (https://www.gartner.com/smarterwithgartner/4-ways-blockchain-will-tran
sform-higher-education/) Archived (https://web.archive.org/web/20210408214936/https://www.gart
ner.com/smarterwithgartner/4-ways-blockchain-will-transform-higher-education/) 8 April 2021 at
the Wayback Machine Retrieved 27 March 2021.
125. "ASCAP, PRS and SACEM Join Forces for Blockchain Copyright System" (http://www.musicbusinessworld
wide.com/ascap-prs-sacem-join-forces-blockchain-copyright-system/) . Music Business Worldwide.
9 April 2017. Archived (https://web.archive.org/web/20170410050815/http://www.musicbusinessworld
wide.com/ascap-prs-sacem-join-forces-blockchain-copyright-system/) from the original on 10 April
2017.
126. Burchardi, K.; Harle, N. (20 January 2018). "The blockchain will disrupt the music business and beyond"
(https://www.wired.co.uk/article/blockchain-disrupting-music-mycelia) . Wired UK. Archived (https://w
eb.archive.org/web/20180508040911/https://www.wired.co.uk/article/blockchain-disrupting-music-my
celia) from the original on 8 May 2018. Retrieved 8 May 2018.
127. Bartlett, Jamie (6 September 2015). "Imogen Heap: saviour of the music industry?" (https://www.thegua
rdian.com/music/2015/sep/06/imogen-heap-saviour-of-music-industry) . The Guardian. Archived (htt
ps://web.archive.org/web/20160422213153/http://www.theguardian.com/music/2015/sep/06/imogen-
heap-saviour-of-music-industry) from the original on 22 April 2016. Retrieved 18 June 2016.
128. Wang, Kevin; Safavi, Ali (29 October 2016). "Blockchain is empowering the future of insurance" (https://
techcrunch.com/2016/10/29/blockchain-is-empowering-the-future-of-insurance/) . Tech Crunch.
AOL Inc. Archived (https://web.archive.org/web/20161107160418/https://techcrunch.com/2016/10/29/
blockchain-is-empowering-the-future-of-insurance/) from the original on 7 November 2016.
Retrieved 7 November 2016.
129. Gatteschi, Valentina; Lamberti, Fabrizio; Demartini, Claudio; Pranteda, Chiara; Santamaría, Víctor (20
February 2018). "Blockchain and Smart Contracts for Insurance: Is the Technology Mature Enough?" (ht
tps://doi.org/10.3390%2Ffi10020020) . Future Internet. 10 (2): 20. doi:10.3390/fi10020020 (https://doi.
org/10.3390%2Ffi10020020) .
130. "Blockchain reaction: Tech companies plan for critical mass" (http://www.ey.com/Publication/vwLUAsset
s/ey-blockchain-reaction-tech-companies-plan-for-critical-mass/%24FILE/ey-blockchain-reaction.pd
f) (PDF). Ernst & Young. p. 5. Archived (https://web.archive.org/web/20161114001423/http://www.ey.c
om/Publication/vwLUAssets/ey-blockchain-reaction-tech-companies-plan-for-critical-mass/%24FILE/
ey-blockchain-reaction.pdf) (PDF) from the original on 14 November 2016. Retrieved 13 November
2016.
131. Carrie Smith. Blockchain Reaction: How library professionals are approaching blockchain technology
and its potential impact. (https://americanlibrariesmagazine.org/2019/03/01/library-blockchain-reactio
n/) Archived (https://web.archive.org/web/20190912044927/https://americanlibrariesmagazine.org/2
019/03/01/library-blockchain-reaction/) 12 September 2019 at the Wayback Machine American
Libraries March 2019.
132. "IBM Blockchain based on Hyperledger Fabric from the Linux Foundation" (https://www.ibm.com/block
chain/hyperledger.html) . IBM.com. 9 January 2018. Archived (https://web.archive.org/web/201712070
35925/https://www.ibm.com/blockchain/hyperledger.html) from the original on 7 December 2017.
Retrieved 18 January 2018.
133. Hyperledger (22 January 2019). "Announcing Hyperledger Grid, a new project to help build and deliver
supply chain solutions!" (https://www.hyperledger.org/blog/2019/01/22/announcing-hyperledger-grid-
a-new-project-to-help-build-and-deliver-supply-chain-solutions) . Archived (https://web.archive.or
g/web/20190204125611/https://www.hyperledger.org/blog/2019/01/22/announcing-hyperledger-grid
-a-new-project-to-help-build-and-deliver-supply-chain-solutions) from the original on 4 February
2019. Retrieved 8 March 2019.
134. Mearian, Lucas (23 January 2019). "Grid, a new project from the Linux Foundation, will offer developers
tools to create supply chain-specific applications running atop distributed ledger technology" (https://
www.computerworld.com/article/3336036/blockchain/linuxs-hyperledger-to-give-developers-supply-
chain-building-blocks.html) . Computerworld. Archived (https://web.archive.org/web/2019020322570
3/https://www.computerworld.com/article/3336036/blockchain/linuxs-hyperledger-to-give-developers
-supply-chain-building-blocks.html) from the original on 3 February 2019. Retrieved 8 March 2019.
135. "Why J.P. Morgan Chase Is Building a Blockchain on Ethereum" (http://fortune.com/2016/10/04/jp-mor
gan-chase-blockchain-ethereum-quorum/) . Fortune. Archived (https://web.archive.org/web/2017020
2033844/http://fortune.com/2016/10/04/jp-morgan-chase-blockchain-ethereum-quorum/) from the
original on 2 February 2017. Retrieved 24 January 2017.
136. Andoni, Merlinda; Robu, Valentin; Flynn, David; Abram, Simone; Geach, Dale; Jenkins, David; McCallum,
Peter; Peacock, Andrew (2019). "Blockchain technology in the energy sector: A systematic review of
challenges and opportunities" (https://doi.org/10.1016%2Fj.rser.2018.10.014) . Renewable and
Sustainable Energy Reviews. 100: 143–174. Bibcode:2019RSERv.100..143A (https://ui.adsabs.harvard.ed
u/abs/2019RSERv.100..143A) . doi:10.1016/j.rser.2018.10.014 (https://doi.org/10.1016%2Fj.rser.2018.1
0.014) . S2CID 116422191 (https://api.semanticscholar.org/CorpusID:116422191) .
137. "This Blockchain-Based Energy Platform Is Building A Peer-To-Peer Grid" (https://www.fastcompany.co
m/40479952/this-blockchain-based-energy-platform-is-building-a-peer-to-peer-grid) . 16 October
2017. Archived (https://web.archive.org/web/20200607085107/https://www.fastcompany.com/4047995
2/this-blockchain-based-energy-platform-is-building-a-peer-to-peer-grid) from the original on 7
June 2020. Retrieved 7 June 2020.
138. "Blockchain-based microgrid gives power to consumers in New York" (https://www.newscientist.com/ar
ticle/2079334-blockchain-based-microgrid-gives-power-to-consumers-in-new-york/) . Archived (htt
ps://web.archive.org/web/20160322204730/https://www.newscientist.com/article/2079334-blockchain
-based-microgrid-gives-power-to-consumers-in-new-york/) from the original on 22 March 2016.
Retrieved 7 June 2020.
139. Alassaf, Norah; Gutub, Adnan; Parah, Shabir A.; Al Ghamdi, Manal (December 2019). "Enhancing speed
of SIMON: A light-weight-cryptographic algorithm for IoT applications" (http://link.springer.com/10.100
7/s11042-018-6801-z) . Multimedia Tools and Applications. 78 (23): 32633–32657.
doi:10.1007/s11042-018-6801-z (https://doi.org/10.1007%2Fs11042-018-6801-z) . ISSN 1380-7501
(https://www.worldcat.org/issn/1380-7501) . S2CID 254858308 (https://api.semanticscholar.org/Corpu
sID:254858308) .
140. Khan, Safiullah; Lee, Wai-Kong; Hwang, Seong Oun (2021). "AEchain: A lightweight blockchain for IoT
applications" (https://ieeexplore.ieee.org/document/9357973) . IEEE Consumer Electronics Magazine.
11 (2): 64–76. doi:10.1109/MCE.2021.3060373 (https://doi.org/10.1109%2FMCE.2021.3060373) .
ISSN 2162-2256 (https://www.worldcat.org/issn/2162-2256) . S2CID 234325223 (https://api.semantic
scholar.org/CorpusID:234325223) . Archived (https://web.archive.org/web/20240414003838/https://ie
eexplore.ieee.org/document/9357973/) from the original on 14 April 2024. Retrieved 28 October
2023.
141. Ma, Jinhua; Lin, Shih-Ya; Chen, Xin; Sun, Hung-Min; Chen, Yeh-Cheng; Wang, Huaxiong (2020). "A
Blockchain-Based Application System for Product Anti-Counterfeiting" (https://doi.org/10.1109%2FACC
ESS.2020.2972026) . IEEE Access. 8: 77642–77652. Bibcode:2020IEEEA...877642M (https://ui.adsabs.h
arvard.edu/abs/2020IEEEA...877642M) . doi:10.1109/ACCESS.2020.2972026 (https://doi.org/10.1109%
2FACCESS.2020.2972026) . hdl:10356/145745 (https://hdl.handle.net/10356%2F145745) .
ISSN 2169-3536 (https://www.worldcat.org/issn/2169-3536) . S2CID 214205788 (https://api.semantic
scholar.org/CorpusID:214205788) .
142. Alzahrani, Naif; Bulusu, Nirupama (15 June 2018). "Block-Supply Chain". Proceedings of the 1st
Workshop on Cryptocurrencies and Blockchains for Distributed Systems. CryBlock'18. Munich, Germany:
Association for Computing Machinery. pp. 30–35. doi:10.1145/3211933.3211939 (https://doi.org/10.11
45%2F3211933.3211939) . ISBN 978-1-4503-5838-5. S2CID 169188795 (https://api.semanticscholar.
org/CorpusID:169188795) .
143. Balagurusamy, V. S. K.; Cabral, C.; Coomaraswamy, S.; Delamarche, E.; Dillenberger, D. N.; Dittmann, G.;
Friedman, D.; Gökçe, O.; Hinds, N.; Jelitto, J.; Kind, A. (1 March 2019). "Crypto anchors" (https://ieeexplo
re.ieee.org/document/8645638) . IBM Journal of Research and Development. 63 (2/3): 4:1–4:12.
doi:10.1147/JRD.2019.2900651 (https://doi.org/10.1147%2FJRD.2019.2900651) . ISSN 0018-8646 (htt
ps://www.worldcat.org/issn/0018-8646) . S2CID 201109790 (https://api.semanticscholar.org/CorpusID:
201109790) . Archived (https://web.archive.org/web/20210111161010/https://ieeexplore.ieee.org/doc
ument/8645638) from the original on 11 January 2021. Retrieved 9 January 2021.
144. Jung, Seung Wook (23 June 2021). Lee, Robert (ed.). A Novel Authentication System for Artwork Based
on Blockchain (https://books.google.com/books?id=Sbk0EAAAQBAJ&dq=Verisart&pg=PA159)
(eBook). 20th IEEE/ACIS International Summer Semi-Virtual Conference on Computer and Information
Science (ICIS 2021). Studies in Computational Intelligence. Vol. 985. Springer. p. 159. Archived (https://
web.archive.org/web/20230826145427/https://books.google.com/books?id=Sbk0EAAAQBAJ&dq=Veris
art&pg=PA159) from the original on 26 August 2023. Retrieved 8 July 2023 – via Google Books.
145. Brett, Charles (18 April 2018). "EUIPO Blockathon Challenge 2018 -" (https://www.enterprisetimes.co.u
k/2018/04/18/euipo-blockathon-challenge-2018/) . Enterprise Times. Archived (https://web.archive.or
g/web/20210111130717/https://www.enterprisetimes.co.uk/2018/04/18/euipo-blockathon-challenge-
2018/) from the original on 11 January 2021. Retrieved 1 September 2020.
146. "EUIPO Anti-Counterfeiting Blockathon Forum" (https://euipo.europa.eu/ohimportal/en/web/observator
y/blockathon) . Archived (https://web.archive.org/web/20210111160351/https://euipo.europa.eu/ohim
portal/en/web/observatory/blockathon) from the original on 11 January 2021. Retrieved 9 January
2021.
147. "PT Industrieel Management" (https://web.archive.org/web/20220524211503/https://privacy.vakmedian
et.nl/ptindustrieelmanagement/?ref=https%3A%2F%2Fwww.ptindustrieelmanagement.nl%2Fhse%2Fni
euws%2F2020%2F06%2Fnen-innoveert-certificatencheck-en-blockchain-1013171%3F_ga%3D2.11339
894.336094574.1598975931-710406553.1598975931) . PT Industrieel Management. Archived from
the original (https://privacy.vakmedianet.nl/ptindustrieelmanagement/?ref=https%3A%2F%2Fwww.ptin
dustrieelmanagement.nl%2Fhse%2Fnieuws%2F2020%2F06%2Fnen-innoveert-certificatencheck-en-blo
ckchain-1013171%3F_ga%3D2.11339894.336094574.1598975931-710406553.1598975931) on 24
May 2022. Retrieved 1 September 2020.
148. "China selects pilot zones, application areas for blockchain project" (https://www.reuters.com/world/chi
na/china-selects-pilot-zones-application-areas-blockchain-project-2022-01-30/) . Reuters. 31
January 2022. Archived (https://web.archive.org/web/20220607154200/https://www.reuters.com/worl
d/china/china-selects-pilot-zones-application-areas-blockchain-project-2022-01-30/) from the
original on 7 June 2022. Retrieved 7 June 2022.
149. Šimalčík, Matej (2023). "Rule by Law". In Kironska, Kristina; Turscanyi, Richard Q. (eds.). Contemporary
China: a New Superpower?. Routledge. ISBN 978-1-03-239508-1.
150. Wegner, Peter (March 1996). "Interoperability" (https://doi.org/10.1145%2F234313.234424) . ACM
Computing Surveys. 28: 285–287. doi:10.1145/234313.234424 (https://doi.org/10.1145%2F234313.234
424) .
151. Belchior, Rafael; Vasconcelos, André; Guerreiro, Sérgio; Correia, Miguel (May 2020). "A Survey on
Blockchain Interoperability: Past, Present, and Future Trends". arXiv:2005.14282 (https://arxiv.org/abs/2
005.14282) [cs.DC (https://arxiv.org/archive/cs.DC) ].
152. Hardjono, T.; Hargreaves, M.; Smith, N. (2 October 2020). An Interoperability Architecture for Blockchain
Gateways (Technical report). IETF. draft-hardjono-blockchain-interop-arch-00.
153. Hyun Song Shin (June 2018). "Chapter V. Cryptocurrencies: looking beyond the hype" (https://www.bis.
org/publ/arpdf/ar2018e5.pdf) (PDF). BIS 2018 Annual Economic Report. Bank for International
Settlements. Archived (https://web.archive.org/web/20180618080358/https://www.bis.org/publ/arpdf/a
r2018e5.pdf) (PDF) from the original on 18 June 2018. Retrieved 19 June 2018. "Put in the simplest
terms, the quest for decentralised trust has quickly become an environmental disaster."
154. Janda, Michael (18 June 2018). "Cryptocurrencies like bitcoin cannot replace money, says Bank for
International Settlements" (http://www.abc.net.au/news/2018-06-18/cryptocurrencies-cannot-replace
-money-bis/9879448) . ABC (Australia). Archived (https://web.archive.org/web/20180618072225/htt
p://www.abc.net.au/news/2018-06-18/cryptocurrencies-cannot-replace-money-bis/9879448) from
the original on 18 June 2018. Retrieved 18 June 2018.
155. Hiltzik, Michael (18 June 2018). "Is this scathing report the death knell for bitcoin?" (https://latimes.co
m/business/hiltzik/la-fi-hiltzik-bitcoin-bank-20180618-story.html) . Los Angeles Times. Archived (http
s://web.archive.org/web/20180618233532/http://www.latimes.com/business/hiltzik/la-fi-hiltzik-bitcoin
-bank-20180618-story.html) from the original on 18 June 2018. Retrieved 19 June 2018.
156. Ossinger, Joanna (2 February 2022). "Polkadot Has Least Carbon Footprint, Crypto Researcher Says" (h
ttps://www.bloomberg.com/news/articles/2022-02-02/polkadot-has-smallest-carbon-footprint-crypto
-researcher-says) . Bloomberg. Archived (https://web.archive.org/web/20220412172017/https://www.
bloomberg.com/news/articles/2022-02-02/polkadot-has-smallest-carbon-footprint-crypto-researcher
-says) from the original on 12 April 2022. Retrieved 1 June 2022.
157. Jones, Jonathan Spencer (13 September 2021). "Blockchain proof-of-stake – not all are equal" (https://
web.archive.org/web/20210925061707/https://www.smart-energy.com/industry-sectors/new-technolo
gy/proof-of-stake-blockchains-not-all-are-equal/) . www.smart-energy.com. Archived from the
original (https://www.smart-energy.com/industry-sectors/new-technology/proof-of-stake-blockchains
-not-all-are-equal/) on 25 September 2021. Retrieved 26 February 2022.
158. Criddle, Christina (February 20, 2021) "Bitcoin consumes 'more electricity than Argentina'." (https://ww
w.bbc.com/news/technology-56012952) Archived (https://web.archive.org/web/20210501232045/htt
ps://www.bbc.com/news/technology-56012952) 1 May 2021 at the Wayback Machine BBC News.
(Retrieved April 26, 2021.)
159. Ponciano, Jonathan (March 9, 2021) "Bill Gates Sounds Alarm On Bitcoin's Energy Consumption–Here's
Why Crypto Is Bad For Climate Change." (https://www.forbes.com/sites/jonathanponciano/2021/03/09/
bill-gates-bitcoin-crypto-climate-change/) Archived (https://web.archive.org/web/20210711110650/
https://www.forbes.com/sites/jonathanponciano/2021/03/09/bill-gates-bitcoin-crypto-climate-chang
e/) 11 July 2021 at the Wayback Machine Forbes.com. (Retrieved April 26, 2021.)
160. Rowlatt, Justin (February 27, 2021) "How Bitcoin's vast energy use could burst its bubble." (https://ww
w.bbc.com/news/science-environment-56215787) Archived (https://web.archive.org/web/202104301
71538/https://www.bbc.com/news/science-environment-56215787) 30 April 2021 at the Wayback
Machine BBC News. (Retrieved April 26, 2021.)
161. Sorkin, Andrew et al. (March 9, 2021) "Why Bill Gates Is Worried About Bitcoin." (https://www.nytimes.c
om/2021/03/09/business/dealbook/bill-gates-bitcoin.html) Archived (https://web.archive.org/web/20
210430172327/https://www.nytimes.com/2021/03/09/business/dealbook/bill-gates-bitcoin.html) 30
April 2021 at the Wayback Machine New York Times. (Retrieved April 25, 2021.)
162. Illing, Sean (11 April 2018). "Why Bitcoin is bullshit, explained by an expert" (https://www.vox.com/conv
ersations/2018/4/11/17206018/bitcoin-blockchain-cryptocurrency-weaver) . Vox. Archived (https://w
eb.archive.org/web/20180717041640/https://www.vox.com/conversations/2018/4/11/17206018/bitcoin
-blockchain-cryptocurrency-weaver) from the original on 17 July 2018. Retrieved 17 July 2018.
163. Weaver, Nicholas (20 April 2018). "Blockchains and Cryptocurrencies: Burn It With Fire" (https://www.yo
utube.com/watch?v=xCHab0dNnj4) . YouTube video. Berkeley School of Information. Archived (https://
web.archive.org/web/20190219015620/https://www.youtube.com/watch?v=xCHab0dNnj4) from the
original on 19 February 2019. Retrieved 17 July 2018.
164. Köhler, Susanne; Pizzol, Massimo (20 November 2019). "Life Cycle Assessment of Bitcoin Mining" (http
s://doi.org/10.1021%2Facs.est.9b05687) . Environmental Science & Technology. 53 (23): 13598–13606.
Bibcode:2019EnST...5313598K (https://ui.adsabs.harvard.edu/abs/2019EnST...5313598K) .
doi:10.1021/acs.est.9b05687 (https://doi.org/10.1021%2Facs.est.9b05687) . PMID 31746188 (https://p
ubmed.ncbi.nlm.nih.gov/31746188) .
165. Stoll, Christian; Klaaßen, Lena; Gallersdörfer, Ulrich (2019). "The Carbon Footprint of Bitcoin" (https://do
i.org/10.1016%2Fj.joule.2019.05.012) . Joule. 3 (7): 1647–1661. Bibcode:2019Joule...3.1647S (https://u
i.adsabs.harvard.edu/abs/2019Joule...3.1647S) . doi:10.1016/j.joule.2019.05.012 (https://doi.org/10.10
16%2Fj.joule.2019.05.012) .
166. "US lawmakers begin probe into Bitcoin miners' high energy use" (https://www.business-standard.com/
article/international/us-lawmakers-begin-probe-into-bitcoin-miners-high-energy-use-122012900282
_1.html#:~:text=Eight+US+lawmakers+have+come,being+felt+across+the+globe) . Business Standard
India. 29 January 2022. Archived (https://web.archive.org/web/20220521150818/https://www.business-
standard.com/article/international/us-lawmakers-begin-probe-into-bitcoin-miners-high-energy-use-
122012900282_1.html#:~:text=Eight+US+lawmakers+have+come,being+felt+across+the+globe) from
the original on 21 May 2022. Retrieved 21 May 2022 – via Business Standard.
167. Cuen, Leigh (March 21, 2021) "The debate about cryptocurrency and data consumption." (https://techc
runch.com/2021/03/21/the-debate-about-cryptocurrency-and-energy-consumption/) Archived (htt
ps://web.archive.org/web/20211110201818/https://techcrunch.com/2021/03/21/the-debate-about-cry
ptocurrency-and-energy-consumption/) 10 November 2021 at the Wayback Machine TechCrunch.
(Retrieved April 26, 2021.)
168. Catalini, Christian; Tucker, Catherine E. (11 August 2016). "Seeding the S-Curve? The Role of Early
Adopters in Diffusion" (http://www.netinst.org/Catalini_16-02.pdf) (PDF). SSRN.
doi:10.2139/ssrn.2822729 (https://doi.org/10.2139%2Fssrn.2822729) . S2CID 157317501 (https://api.s
emanticscholar.org/CorpusID:157317501) . SSRN 2822729 (https://papers.ssrn.com/sol3/papers.cfm?a
bstract_id=2822729) . Archived (https://web.archive.org/web/20211230155958/http://www.netinst.or
g/Catalini_16-02.pdf) (PDF) from the original on 30 December 2021. Retrieved 22 December 2021.
169. Arnold, Martin (18 June 2017). "Arnold, M. (2017) "Universities add blockchain to course list", Financial
Times: Masters in Finance, Retrieved 26 January 2022" (https://www.ft.com/content/f736b04e-3708-11
e7-99bd-13beb0903fa3) . Financial Times. Archived (https://web.archive.org/web/20220126153853/h
ttps://www.ft.com/content/f736b04e-3708-11e7-99bd-13beb0903fa3) from the original on 26
January 2022. Retrieved 26 January 2022.
170. Janssen, Marijn; Weerakkody, Vishanth; Ismagilova, Elvira; Sivarajah, Uthayasankar; Irani, Zahir (2020).
"A framework for analysing blockchain technology adoption: Integrating institutional, market and
technical factors". International Journal of Information Management. 50. Elsevier: 302–309.
doi:10.1016/j.ijinfomgt.2019.08.012 (https://doi.org/10.1016%2Fj.ijinfomgt.2019.08.012) .
S2CID 203129604 (https://api.semanticscholar.org/CorpusID:203129604) .
171. Koens, Tommy; Poll, Erik (2019), "The Drivers Behind Blockchain Adoption: The Rationality of Irrational
Choices", Euro-Par 2018: Parallel Processing Workshops, Lecture Notes in Computer Science,
vol. 11339, pp. 535–546, doi:10.1007/978-3-030-10549-5_42 (https://doi.org/10.1007%2F978-3-030-
10549-5_42) , hdl:2066/200787 (https://hdl.handle.net/2066%2F200787) , ISBN 978-3-030-10548-
8, S2CID 57662305 (https://api.semanticscholar.org/CorpusID:57662305)
172. Li, Jerry (7 April 2020). "Blockchain Technology Adoption: Examining the Fundamental Drivers" (https://
web.archive.org/web/20200605023137/https://dl.acm.org/doi/abs/10.1145/3396743.3396750) .
Proceedings of the 2020 2nd International Conference on Management Science and Industrial
Engineering . Association for Computing Machinery. pp. 253–260. doi:10.1145/3396743.3396750 (http
s://doi.org/10.1145%2F3396743.3396750) . ISBN 9781450377065. S2CID 218982506 (https://api.sema
nticscholar.org/CorpusID:218982506) . Archived from the original (https://doi.org/10.1145/3396743.33
96750) on 5 June 2020 – via ACM Digital Library.
173. Hsieh, Ying-Ying; Vergne, Jean-Philippe; Anderson, Philip; Lakhani, Karim; Reitzig, Markus (12 February
2019). "Correction to: Bitcoin and the rise of decentralized autonomous organizations" (https://doi.org/
10.1186%2Fs41469-019-0041-1) . Journal of Organization Design. 8 (1): 3. doi:10.1186/s41469-019-
0041-1 (https://doi.org/10.1186%2Fs41469-019-0041-1) . hdl:10044/1/88332 (https://hdl.handle.net/
10044%2F1%2F88332) . ISSN 2245-408X (https://www.worldcat.org/issn/2245-408X) .
174. Felin, Teppo; Lakhani, Karim (2018). "What Problems Will You Solve With Blockchain?". MIT Sloan
Management Review.
175. Beck, Roman; Mueller-Bloch, Christoph; King, John Leslie (2018). "Governance in the Blockchain
Economy: A Framework and Research Agenda" (https://aisel.aisnet.org/cgi/viewcontent.cgi?article=1835
&context=jais) . Journal of the Association for Information Systems: 1020–1034.
doi:10.17705/1jais.00518 (https://doi.org/10.17705%2F1jais.00518) . S2CID 69365923 (https://api.sem
anticscholar.org/CorpusID:69365923) .
176. Popper, Nathaniel (27 June 2018). "What is the Blockchain? Explaining the Tech Behind
Cryptocurrencies (Published 2018)" (https://www.nytimes.com/2018/06/27/business/dealbook/blockch
ains-guide-information.html) . The New York Times. Archived (https://web.archive.org/web/202010271
83122/https://www.nytimes.com/2018/06/27/business/dealbook/blockchains-guide-information.htm
l) from the original on 27 October 2020. Retrieved 24 October 2020.
177. Hugh Rooney, Brian Aiken, & Megan Rooney. (2017). Q&A. Is Internal Audit Ready for Blockchain?
Technology Innovation Management Review, (10), 41.
178. Richard C. Kloch, Jr Simon J. Little, Blockchain and Internal Audit Internal Audit Foundation, 2019
ISBN 978-1-63454-065-0
179. Alexander, A. (2019). The audit, transformed: New advancements in technology are reshaping this core
service. Accounting Today, 33(1)
180. Extance, Andy (30 September 2015). "The future of cryptocurrencies: Bitcoin and beyond" (https://doi.o
rg/10.1038%2F526021a) . Nature. 526 (7571): 21–23. Bibcode:2015Natur.526...21E (https://ui.adsabs.
harvard.edu/abs/2015Natur.526...21E) . doi:10.1038/526021a (https://doi.org/10.1038%2F526021a) .
ISSN 0028-0836 (https://www.worldcat.org/issn/0028-0836) . OCLC 421716612 (https://www.worldca
t.org/oclc/421716612) . PMID 26432223 (https://pubmed.ncbi.nlm.nih.gov/26432223) .
181. Ledger (eJournal / eMagazine, 2015). OCLC. OCLC 910895894 (https://www.worldcat.org/oclc/9108958
94) .
182. Hertig, Alyssa (15 September 2015). "Introducing Ledger, the First Bitcoin-Only Academic Journal" (htt
p://motherboard.vice.com/read/introducing-ledger-the-first-bitcoin-only-academic-journal) .
Motherboard. Archived (https://web.archive.org/web/20170110172807/http://motherboard.vice.com/re
ad/introducing-ledger-the-first-bitcoin-only-academic-journal) from the original on 10 January
2017. Retrieved 10 January 2017.
183. Rizun, Peter R.; Wilmer, Christopher E.; Burley, Richard Ford; Miller, Andrew (2015). "How to Write and
Format an Article for Ledger" (http://ledger.pitt.edu/ojs/public/journals/1/AuthorGuide.pdf) (PDF).
Ledger. 1 (1): 1–12. doi:10.5195/LEDGER.2015.1 (https://doi.org/10.5195%2FLEDGER.2015.1)
(inactive 31 January 2024). ISSN 2379-5980 (https://www.worldcat.org/issn/2379-5980) .
OCLC 910895894 (https://www.worldcat.org/oclc/910895894) . Archived (https://web.archive.org/we
b/20150922190603/http://ledger.pitt.edu/ojs/public/journals/1/AuthorGuide.pdf) (PDF) from the
original on 22 September 2015. Retrieved 11 January 2017.
Further reading
Crosby, Michael; Nachiappan; Pattanayak, Pradhan; Verma, Sanjeev; Kalyanaraman, Vignesh (16 October
2015). BlockChain Technology: Beyond Bitcoin (http://scet.berkeley.edu/wp-content/uploads/BlockchainP
aper.pdf) (PDF) (Report). Sutardja Center for Entrepreneurship & Technology Technical Report.
University of California, Berkeley. Archived (https://web.archive.org/web/20170320054252/http://scet.berk
eley.edu/wp-content/uploads/BlockchainPaper.pdf) (PDF) from the original on 20 March 2017. Retrieved
19 March 2017.
Jaikaran, Chris (28 February 2018). Blockchain: Background and Policy Issues (https://web.archive.org/we
b/20181202202739/https://crsreports.congress.gov/product/pdf/R/R45116/3) . Washington, DC:
Congressional Research Service. Archived from the original (https://crsreports.congress.gov/product/pdf/
R/R45116/3) on 2 December 2018. Retrieved 2 December 2018.
Kakavand, Hossein; De Sevres, Nicolette Kost; Chilton, Bart (12 October 2016). The Blockchain Revolution:
An Analysis of Regulation and Technology Related to Distributed Ledger Technologies (Report). Luther
Systems & DLA Piper. SSRN 2849251 (https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2849251) .
Mazonka, Oleg (29 December 2016). "Blockchain: Simple Explanation" (https://web.archive.org/web/20170
807214027/http://jrxv.net/x/16/chain.pdf) (PDF). Journal of Reference. Archived from the original (http://j
rxv.net/x/16/chain.pdf) (PDF) on 7 August 2017. Retrieved 29 December 2016.
Tapscott, Don; Tapscott, Alex (2016). Blockchain Revolution: How the Technology Behind Bitcoin Is
Changing Money, Business and the World. London: Portfolio Penguin. ISBN 978-0-241-23785-4.
OCLC 971395169 (https://www.worldcat.org/oclc/971395169) .
Saito, Kenji; Yamada, Hiroyuki (June 2016). What's So Different about Blockchain? Blockchain is a
Probabilistic State Machine. IEEE 36th International Conference on Distributed Computing Systems
Workshops. International Conference on Distributed Computing Systems Workshops (Icdcs). Nara, Nara,
Japan: IEEE. pp. 168–75. doi:10.1109/ICDCSW.2016.28 (https://doi.org/10.1109%2FICDCSW.2016.28) .
ISBN 978-1-5090-3686-8. ISSN 2332-5666 (https://www.worldcat.org/issn/2332-5666) .
Raval, Siraj (2016). Decentralized Applications: Harnessing Bitcoin's Blockchain Technology (http://shop.oreil
ly.com/product/0636920039334.do?sortby=publicationDate) . Oreilly. ISBN 9781491924549. Archived (ht
tps://web.archive.org/web/20170530201714/http://shop.oreilly.com/product/0636920039334.do?sortby=p
ublicationDate) from the original on 30 May 2017. Retrieved 2 May 2017.
Bashir, Imran (2017). Mastering Blockchain. Packt Publishing, Ltd. ISBN 978-1-78712-544-5.
OCLC 967373845 (https://www.worldcat.org/oclc/967373845) .
Knirsch, Fabian; Unterweger, Andread; Engel, Dominik (2019). "Implementing a blockchain from scratch:
why, how, and what we learned" (https://doi.org/10.1186%2Fs13635-019-0085-3) . EURASIP Journal on
Information Security. 2019. doi:10.1186/s13635-019-0085-3 (https://doi.org/10.1186%2Fs13635-019-008
5-3) . S2CID 84837476 (https://api.semanticscholar.org/CorpusID:84837476) .
D. Puthal, N. Malik, S. P. Mohanty, E. Kougianos, and G. Das, "Everything you Wanted to Know about the
Blockchain (http://www.smohanty.org/Publications_Journals/2018/Mohanty_IEEE-CEM_2018-Jul_Blockcha
in.pdf) ", IEEE Consumer Electronics Magazine, Volume 7, Issue 4, July 2018, pp. 6–14.
David L. Portilla, David J. Kappos, Minh Van Ngo, Sasha Rosenthal-Larrea, John D. Buretta and
Christopher K. Fargo, Cravath, Swaine & Moore LLP, "Blockchain in the Banking Sector: A Review of the
Landscape and Opportunities (https://corpgov.law.harvard.edu/2022/01/28/blockchain-in-the-banking-s
ector-a-review-of-the-landscape-and-opportunities) ", Harvard Law School of Corporate Governance,
posted on Friday, January 28, 2022
External links