# Blockchain

> Mediated Wiki article. Canonical URL: https://mediated.wiki/source/Blockchain
> Markdown URL: https://mediated.wiki/source/Blockchain.md
> Source: https://en.wikipedia.org/wiki/Blockchain
> Source revision: 1348587040
> License: Creative Commons Attribution-ShareAlike 4.0 International (https://creativecommons.org/licenses/by-sa/4.0/)

Distributed data store for digital transactions

For other uses, see [Block chain (disambiguation)](/source/Block_chain_(disambiguation)).

A **blockchain** is a [distributed ledger](/source/Distributed_ledger) with growing lists of [records](/source/Record_(computer_science)) (*blocks*) that are securely linked together via [cryptographic hashes](/source/Cryptographic_hash_function).[1][2][3][4] Each block contains a cryptographic hash of the previous block, a [timestamp](/source/Trusted_timestamping), and transaction data (generally represented as a [Merkle tree](/source/Merkle_tree), where [data nodes](/source/Node_(computer_science)) are represented by leaves). Since each block contains information about the previous block, they effectively form a *chain* (*viz.* [linked list](/source/Linked_list) data structure), with each additional block linking to the ones before it. Consequently, blockchain transactions are resistant to alteration because, once recorded, the data in any given block cannot be changed retroactively without altering all subsequent blocks and obtaining network consensus to accept these changes.

Blockchains are typically managed by a [peer-to-peer (P2P)](/source/Peer-to-peer) computer network for use as a public [distributed ledger](/source/Distributed_ledger), where nodes collectively adhere to a [consensus algorithm](/source/Consensus_algorithm) [protocol](/source/Communication_protocol) to add and validate new transaction blocks. Although blockchain records are not unalterable, since [blockchain forks](/source/Fork_(blockchain)) are possible, blockchains may be considered [secure by design](/source/Secure_by_design) and exemplify a distributed computing system with high [Byzantine fault tolerance](/source/Byzantine_fault_tolerance).[5]

A blockchain was created by a person (or group of people) using the name (or [pseudonym](/source/Pseudonym)) [Satoshi Nakamoto](/source/Satoshi_Nakamoto) in 2008 to serve as the public [distributed ledger](/source/Distributed_ledger) for [bitcoin](/source/Bitcoin) [cryptocurrency](/source/Cryptocurrency) transactions, based on previous work by [Stuart Haber](/source/Stuart_Haber), [W. Scott Stornetta](/source/W._Scott_Stornetta), and [Dave Bayer](/source/Dave_Bayer).[6] The implementation of the blockchain within bitcoin made it the first digital currency to solve the [double-spending](/source/Double-spending) problem without the need for a trusted authority or central [server](/source/Server_(computing)). The [bitcoin](/source/Bitcoin) design has inspired other applications[3][2] and blockchains that are readable by the public and are widely used by [cryptocurrencies](/source/Cryptocurrencies). The blockchain may be considered a type of [payment rail](/source/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](/source/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

[Cryptographer](/source/Cryptography) [David Chaum](/source/David_Chaum) first proposed a blockchain-like protocol in his 1982 dissertation "Computer Systems Established, Maintained, and Trusted by Mutually Suspicious Groups".[10][11] Further work on a cryptographically secured chain of blocks was described in 1991 by [Stuart Haber](/source/Stuart_Haber) and [W. Scott Stornetta](/source/W._Scott_Stornetta).[4][12] They wanted to implement a system wherein document [timestamps](/source/Timestamp) could not be tampered with. In 1992, Haber, Stornetta, and [Dave Bayer](/source/Dave_Bayer) incorporated [Merkle trees](/source/Merkle_tree) into the design, which improved its efficiency by allowing several document certificates to be collected into one block.[4][13] Under their company Surety, their document certificate hashes have been published in *[The New York Times](/source/The_New_York_Times)* every week since 1995.[14]

The first decentralized blockchain was conceptualized by a person (or group of people) known as [Satoshi Nakamoto](/source/Satoshi_Nakamoto) in 2008. Nakamoto improved the design in an important way using a [Hashcash](/source/Hashcash)-like method to [timestamp](/source/Timestamp-based_concurrency_control) 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](/source/Cryptocurrency) [bitcoin](/source/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](/source/Gigabyte)).[15] By 2024, the bitcoin blockchain exceeded 600 GB.[16]

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.[17]

According to [Accenture](/source/Accenture), an application of the [diffusion of innovations](/source/Diffusion_of_innovations) theory suggests that blockchains attained a 13.5% adoption rate within financial services in 2016, therefore reaching the [early adopters](/source/Early_adopter)' phase.[18] Industry trade groups joined to create the Global Blockchain Forum in 2016, an initiative of the [Chamber of Digital Commerce](/source/Chamber_of_Digital_Commerce).

In May 2018, [Gartner](/source/Gartner) found that only 1% of [CIOs](/source/Chief_information_officer) 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".[19] For the year 2019 Gartner reported 5% of CIOs believed blockchain technology was a 'game-changer' for their business.[20]

## 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](/source/Decentralized_computing), [distributed](/source/Distributed_computing), 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][21] This allows the participants to verify and audit transactions independently and relatively inexpensively.[22] A blockchain database is managed autonomously using a [peer-to-peer](/source/Peer-to-peer) network and a distributed timestamping server. They are [authenticated](/source/Authentication) by [mass collaboration](/source/Mass_collaboration) powered by [collective](/source/Collective) [self-interests](/source/Self-interest).[23] Such a design facilitates [robust](/source/Robustness_(computer_science)) [workflow](/source/Workflow) where participants' uncertainty regarding data security is marginal. The use of a blockchain removes the characteristic of infinite [reproducibility](/source/Reproduction_(economics)) from a [digital asset](/source/Digital_asset). It confirms that each unit of value was transferred only once, solving the long-standing problem of [double-spending](/source/Double_spending). A blockchain has been described as a *value-exchange protocol*.[24]

Logically, a blockchain can be seen as consisting of several layers:[25]

- infrastructure (hardware)

- [networking](/source/Network_layer) (node discovery, information propagation[26] and verification)

- [consensus](/source/Consensus_(computer_science)) ([proof of work](/source/Proof_of_work), [proof of stake](/source/Proof_of_stake))

- data (blocks, transactions)

- [application](/source/Application_layer) ([smart contracts](/source/Smart_contract)/[decentralized applications](/source/Decentralized_application), if applicable)

### Blocks

Blocks hold batches of valid [transactions](/source/Transaction_processing) that are hashed and encoded into a [Merkle tree](/source/Merkle_tree).[3] Each block includes the [cryptographic hash](/source/Cryptographic_hash) of the prior block in the blockchain, linking the two. The linked blocks form a chain.[3] This [iterative](/source/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).[27] To assure the integrity of a block and the data contained in it, the block is usually [digitally signed](/source/Digitally_signed).[28]

Sometimes separate blocks can be produced concurrently, creating a temporary [fork](/source/Fork_(blockchain)). In addition to a secure [hash-based](/source/Hash-based_cryptography) 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](/source/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](/source/Computation). Within a blockchain the computation is carried out redundantly rather than in the traditional segregated and [parallel](/source/Parallel_computing) 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. Since 2022, the block time for [Ethereum](/source/Ethereum) is set to exactly 12 seconds, while for bitcoin it is on average 10 minutes.[33]

#### Hard forks

This section is an excerpt from [Fork (blockchain) § Hard fork](/source/Fork_(blockchain)#Hard_fork).[[edit](https://en.wikipedia.org/w/index.php?title=Fork_(blockchain)&action=edit)]

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](/source/The_DAO_(organization)), 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](/source/Ethereum_Classic) chains. In 2014, the [Nxt](/source/Nxt) community[34] 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](/source/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 with Bitcoin split on 12 March 2013.

A more recent hard-fork example is of Bitcoin in 2017, which resulted in a split creating [Bitcoin Cash](/source/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](/source/Peer-to-peer), the blockchain eliminates some risks that come with data being held centrally.[3] The decentralized blockchain may use [ad hoc](/source/Ad_hoc) [message passing](/source/Message_passing) and [distributed networking](/source/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](/source/Double-spending).[38]

Blockchain security methods include the use of [public-key cryptography](/source/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](/source/Node_(networking)) in a decentralized system has a copy of the blockchain. [Data quality](/source/Data_quality) is maintained by massive database [replication](/source/Replication_(computing))[40] and [computational trust](/source/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](/source/Best-effort_delivery) basis. Early blockchains rely on energy-intensive mining nodes to validate transactions,[27] add them to the block they are building, and then [broadcast](/source/Broadcasting_(networking)) the completed block to other nodes.[30]: ch. 08 Blockchains use various time-stamping schemes, such as [proof-of-work](/source/Proof-of-work_system), to serialize changes.[41] Later consensus methods include [proof of stake](/source/Proof-of-stake).[27] The growth of a decentralized blockchain is accompanied by the risk of [centralization](/source/Centrality) 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](/source/Proof_of_work) or [proof of stake](/source/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](/source/Byzantine_fault) tolerance-based proof-of-stake protocols purport to provide so called "absolute finality": a randomly chosen [validator](/source/Validator_(blockchain)) 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](/source/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](/source/Usability) 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](/source/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](/source/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](/source/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](/source/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](/source/Hashcash) puzzles. While Hashcash was designed in 1997 by [Adam Back](/source/Adam_Back), the original idea was first proposed by [Cynthia Dwork](/source/Cynthia_Dwork) and [Moni Naor](/source/Moni_Naor) and Eli Ponyatovski in their 1992 paper "Pricing via Processing or Combatting Junk Mail".

In 2016, [venture capital](/source/Venture_capital) investment for blockchain-related projects was weakening in the US but increasing in China.[52] Bitcoin and many other cryptocurrencies use open (public) blockchains. As of April 2018[\[update\]](https://en.wikipedia.org/w/index.php?title=Blockchain&action=edit), bitcoin has the highest [market capitalization](/source/Cryptocurrency#Price_trends).

#### Permissioned (private) blockchain

See also: [Distributed ledger](/source/Distributed_ledger)

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](/source/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](/source/Financial_crisis) or [debt crisis](/source/Debt_crisis) such as the [2008 financial crisis](/source/2008_financial_crisis), 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](/source/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](/source/Blockchain_analysis) has become increasingly important with the popularity of [bitcoin](/source/Bitcoin), [Ethereum](/source/Ethereum), [litecoin](/source/Litecoin) and other [cryptocurrencies](/source/Cryptocurrencies).[55] A blockchain, if it is public, provides access to anyone to observe and analyse the chain data, given 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](/source/Darknet_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](/source/Fiat_money)-crypto exchanges. The development, some argue, has led criminals to prioritise the use of new cryptos such as [Monero](/source/Monero_(cryptocurrency)).[59][60][61]

### Standardisation

In April 2016, [Standards Australia](/source/Standards_Australia) submitted a proposal to the [International Organization for Standardization](/source/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][*[non-primary source needed](https://en.wikipedia.org/wiki/Wikipedia:No_original_research#Primary,_secondary_and_tertiary_sources)*] More than 50 countries are participating in the standardization process together with external liaisons such as the [Society for Worldwide Interbank Financial Telecommunication](/source/Society_for_Worldwide_Interbank_Financial_Telecommunication) (SWIFT), the [European Commission](/source/European_Commission), the [International Federation of Surveyors](/source/International_Federation_of_Surveyors), the [International Telecommunication Union](/source/International_Telecommunication_Union) (ITU) and the [United Nations Economic Commission for Europe](/source/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](/source/National_Institute_of_Standards_and_Technology)[65] (NIST), the [European Committee for Electrotechnical Standardization](/source/European_Committee_for_Electrotechnical_Standardization)[66] (CENELEC), the [Institute of Electrical and Electronics Engineers](/source/Institute_of_Electrical_and_Electronics_Engineers)[67] (IEEE), the Organization for the Advancement of Structured Information Standards ([OASIS](/source/OASIS_(organization))), and some individual participants in the [Internet Engineering Task Force](/source/Internet_Engineering_Task_Force)[68] (IETF).

### Centralized blockchain

Although most of blockchain implementation are decentralized and distributed, [Oracle](/source/Oracle_Corporation) launched a centralized blockchain table feature in [Oracle 21c database](/source/Oracle_Database). The Blockchain Table in [Oracle 21c database](/source/Oracle_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](/source/Consortium) blockchains and hybrid blockchains.

### Public blockchains

A public blockchain has no access restrictions. Anyone with an [Internet](/source/Internet) connection can send [transactions](/source/Financial_transaction) to it as well as become a validator (i.e., participate in the execution of a [consensus protocol](/source/Consensus_(computer_science))).[71][*[self-published source?](https://en.wikipedia.org/wiki/Wikipedia:Verifiability#Self-published_sources)*] Usually, such networks offer [economic incentives](/source/Incentive) for those who secure them and utilize some type of a [proof-of-stake](/source/Proof-of-stake) or [proof-of-work](/source/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](/source/Closed_platform). 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](/source/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](/source/Digital_asset)) 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](/source/Consensus_(computer_science)), etc.).[75][*[better source needed](https://en.wikipedia.org/wiki/Wikipedia:Verifiability#Questionable_sources)*]

### 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](/source/Quorum) and [Hyperledger](/source/Hyperledger).[76]

## Uses

The primary use of blockchains is as a [distributed ledger](/source/Distributed_ledger) for [cryptocurrencies](/source/Cryptocurrency) such as [bitcoin](/source/Bitcoin); there were also a few other operational products that had matured from [proof of concept](/source/Proof_of_concept) by late 2016.[52] As of 2016, some businesses have been testing the technology and conducting low-level implementation to gauge blockchain's effects on organizational efficiency in their [back office](/source/Back_office).[77]

In 2019, it was estimated that around $2.9 billion were invested in blockchain technology, which represents an 89% increase from the year prior.[78] A report from to [PricewaterhouseCoopers](/source/PricewaterhouseCoopers) (PwC) in 2021 said that blockchain technology had the potential to generate an annual business value of more than $3 trillion by 2030. PwC surveyed 600 business executives and determined that 84% have at least some exposure to utilizing blockchain technology.[79]

In 2019, the [BBC World Service](/source/BBC_World_Service) radio and podcast series *[50 Things That Made the Modern Economy](/source/50_Things_That_Made_the_Modern_Economy)* identified blockchain as a technology that would have far-reaching consequences for economics and society. The economist and *Financial Times* journalist and broadcaster [Tim Harford](/source/Tim_Harford) discussed why the underlying technology might have much wider applications and the challenges that needed to be overcome.[80] His first broadcast was on 29 June 2019.

## Cryptocurrencies

Most cryptocurrencies are designed to gradually decrease the production of that currency, placing a cap on the total amount of that currency that will ever be in circulation.[81] Compared with ordinary currencies held by financial institutions or kept as cash on hand, cryptocurrencies can be more difficult for seizure by law enforcement.[81]

The validity of each cryptocurrency's coins is provided by a blockchain. A blockchain is a continuously growing list of [records](#Blocks), called blocks, which are linked and secured using cryptography.[81][82] Each block typically contains a [hash pointer](/source/Hash_function) as a link to a previous block,[82] a timestamp and transaction data.[83] By design, blockchains are inherently resistant to modification of the data. It is "an open, distributed ledger that can record transactions between two parties efficiently and in a verifiable and permanent way".[82] For use as a distributed ledger, a blockchain is typically managed by a [peer-to-peer](/source/Peer-to-peer) network collectively adhering to a protocol for validating new blocks. Once recorded, the data in any given block cannot be altered retroactively without the alteration of all subsequent blocks, which requires collusion of the network majority.

Blockchains are secure by design and are an example of a distributed computing system with high [Byzantine fault tolerance](/source/Byzantine_fault_tolerance). Decentralized consensus has therefore been achieved with a blockchain.[84]

In the context of cryptocurrencies, the blockchain serves as a public ledger for all transactions. Cryptocurrencies use various [timestamping schemes](https://en.wikipedia.org/w/index.php?title=Timestamping_scheme&action=edit&redlink=1) to "prove the validity of transactions added to the blockchain ledger without the need for a trusted third party".[81]

The first cryptocurrency was [Bitcoin](/source/Bitcoin), which was first released as open-source software in 2009.

As cryptocurrencies have gained prominence, several countries have made advancements in their private and commercial law treatment to address legal uncertainties. In the United States, for example, the 2022 amendments to the Uniform Commercial Code (UCC) introduced Article 12, which establishes "controllable electronic records" (CERs) as a new category of personal property. This framework provides legal clarity for the ownership, transfer, and use of cryptocurrencies as CERs, with the concept of "control" serving as a functional equivalent to possession for digital assets. These reforms aim to align legal standards with market practices, reducing title disputes and supporting the integration of cryptocurrencies into commercial transactions.[85]

### Smart contracts

Main article: [Smart contract](/source/Smart_contract)

Blockchain-based [smart contracts](/source/Smart_contract) 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](/source/Automation) [escrow](/source/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](/source/International_Monetary_Fund) staff discussion from 2018 reported that smart contracts based on blockchain technology might reduce [moral hazards](/source/Moral_hazard) 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](/source/Reason_(magazine))* in 2016, many banks have expressed interest in implementing [distributed ledgers](/source/Distributed_ledger) for use in [banking](/source/Banking) and are cooperating with companies creating private blockchains.[90] According to a September 2016 [IBM](/source/IBM) study, this implementation was occurring faster than expected.[91]

Blockchain technology has been proposed as a way to speed up [back office](/source/Back_office) settlement systems.[92]

In 2017, [UBS](/source/UBS) opened a lab dedicated to researching how blockchain technology could be used in financial services.[93]

In 2017, the German bank [Berenberg](/source/Berenberg_Bank) described blockchain as an "overhyped technology" that has had a large number of "proofs of concept", but still has major challenges, and very few success stories.[94]

Blockchain technology has allowed for new forms of fundraising such as [initial coin offerings](/source/Initial_coin_offering) (ICOs) and security token offerings (STOs), also sometimes referred to as digital security offerings (DSOs).[95] STO/DSOs may be conducted privately or on public, regulated stock exchange and are used to tokenize assets such as company shares, intellectual property, real estate, and others.[96]

### Games

Main article: [Blockchain game](/source/Blockchain_game)

Blockchain technology, such as cryptocurrencies and [non-fungible tokens](/source/Non-fungible_token) (NFTs), has been used in video games for [monetization](/source/Video_game_monetization). Many [live-service games](/source/Games_as_a_service) 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](/source/Gray_market) issues such as [skin gambling](/source/Skin_gambling), and thus publishers typically have shied away from allowing players to earn real-world funds from games.[97] Blockchain games typically allow players to trade these in-game items for cryptocurrency, which can then be exchanged for money.[98]

The first known game to use blockchain technologies was *[CryptoKitties](/source/CryptoKitties)*, launched in November 2017, where the player would purchase NFTs with Ethereum cryptocurrency, each NFT consisting of a [virtual pet](/source/Virtual_pet) that the player could breed with others to create offspring with combined traits as new NFTs.[99][98] The game made headlines in December 2017 when one virtual pet sold for more than [US$](/source/United_States_dollar)100,000.[100] *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[*[clarification needed](https://en.wikipedia.org/wiki/Wikipedia:Please_clarify)*] being for the game.[101][102]

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.[98] However, limited successes of some games, such as *[Axie Infinity](/source/Axie_Infinity)* during the [COVID-19 pandemic](/source/COVID-19_pandemic), and corporate plans towards [metaverse](/source/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.[103] Several major publishers, including [Ubisoft](/source/Ubisoft), [Electronic Arts](/source/Electronic_Arts), and [Take Two Interactive](/source/Take_Two_Interactive), have stated that blockchain and NFT-based games are under serious consideration for their companies in the future.[104]

In October 2021, [Valve Corporation](/source/Valve_Corporation) banned blockchain games, including those using cryptocurrency and [NFTs](/source/Non-fungible_token), from being hosted on its [Steam](/source/Steam_(service)) 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](/source/Gambling), specifically [skin gambling](/source/Skin_gambling), was speculated to be a factor in the decision to ban blockchain games.[105] 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,[97][105] and [Epic Games](/source/Epic_Games), which runs the [Epic Games Store](/source/Epic_Games_Store) in competition to Steam, said that they would be open to accepted blockchain games in the wake of Valve's refusal.[106]

### Supply chain

This section needs to be updated. Please help update this article to reflect recent events or newly available information. (August 2023)

There have been several different efforts to employ blockchains in [supply chain management](/source/Supply_chain_management).

- **[Precious commodities mining](/source/Mining)** — Blockchain technology has been used for tracking the origins of gemstones and other precious commodities. In 2016, *[The Wall Street Journal](/source/The_Wall_Street_Journal)* reported that the blockchain technology company Everledger was partnering with [IBM](/source/IBM)'s blockchain-based tracking service to trace the origin of diamonds to ensure that they were ethically mined.[107] As of 2019, the [Diamond Trading Company](/source/Diamond_Trading_Company) (DTC) has been involved in building a diamond trading supply chain product called Tracer.[108]

- **[Food supply](/source/Food_supply)** — As of 2018, [Walmart](/source/Walmart) and [IBM](/source/IBM) were running a trial to use a blockchain-backed system for [supply chain](/source/Supply_chain) monitoring for lettuce and spinach – all nodes of the blockchain were administered by Walmart and located on the IBM [cloud](/source/Cloud_computing).[109]

- **[Fashion industry](/source/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 could make this information transparent, assisting sustainable development of the industry.[110]

- **Motor vehicles** — [Mercedes-Benz](/source/Mercedes-Benz) and partner [Icertis](/source/Icertis) developed a blockchain prototype used to facilitate consistent documentation of contracts along the supply chain so that the [ethical standards](/source/Ethical_standard) and contractual obligations required of its direct suppliers can be passed on to second tier suppliers and beyond.[111][112] 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](/source/Battery_cell) manufacturers.[113]

### Domain names

There are several different efforts to offer [domain name](/source/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.[114]

[Namecoin](/source/Namecoin) is a cryptocurrency that supports the ".bit" [top-level domain](/source/Top-level_domain) (TLD). Namecoin was forked from bitcoin in 2011. The .bit TLD is not sanctioned by [ICANN](/source/ICANN), instead requiring an [alternative DNS root](/source/Alternative_DNS_root).[114] As of 2015, .bit was used by 28 websites, out of 120,000 registered names.[115] Namecoin was dropped by [OpenNIC](/source/OpenNIC) in 2019, due to malware and potential other legal issues.[116] Other blockchain alternatives to ICANN include *The Handshake Network*,[115] *EmerDNS*, and *Unstoppable Domains*.[114]

Specific TLDs include ".eth", ".luxe", and ".kred", which are associated with the Ethereum blockchain through the Ethereum Name Service (ENS). The .kred TLD also acts as an alternative to conventional [cryptocurrency wallet](/source/Cryptocurrency_wallet) addresses as a convenience for transferring cryptocurrency.[117]

### Other uses

Blockchain technology can be used to create a permanent, public, transparent ledger system for compiling data on sales, tracking digital use and payments to content creators, such as wireless users[118] or musicians.[119] The Gartner 2019 CIO Survey reported 2% of higher education respondents had launched blockchain projects and another 18% were planning academic projects in the next 24 months.[120] In 2017, [IBM](/source/IBM) partnered with [ASCAP](/source/ASCAP) and [PRS for Music](/source/PRS_for_Music) to adopt blockchain technology in music distribution.[121] [Imogen Heap](/source/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."[122][123]

New distribution methods are available for the [insurance](/source/Insurance) industry such as [peer-to-peer insurance](/source/Peer-to-peer_insurance), [parametric insurance](/source/Parametric_insurance) and [microinsurance](/source/Microinsurance) following the adoption of blockchain.[124][125] The [sharing economy](/source/Sharing_economy) and [IoT](/source/Internet_of_Things) are also set to benefit from blockchains because they involve many collaborating peers.[126] The use of blockchain in libraries is being studied with a grant from the U.S. Institute of Museum and Library Services.[127]

Other blockchain designs include [Hyperledger](/source/Hyperledger), a collaborative effort from the [Linux Foundation](/source/Linux_Foundation) to support blockchain-based distributed ledgers, with projects under this initiative including Hyperledger Burrow (by Monax) and Hyperledger Fabric (spearheaded by IBM).[128][129][130] Another is Quorum, a permissioned private blockchain by [JPMorgan Chase](/source/JPMorgan_Chase) with private storage, used for contract applications.[131]

[Oracle](/source/Oracle_Corporation) introduced a blockchain table feature in its [Oracle 21c database](/source/Oracle_database).[69][70]

Blockchain is also being used in [peer-to-peer energy trading](/source/Peer-to-peer_energy_trading).[132][133][134]

**Lightweight blockchains**, or simplified blockchains, are more suitable for [internet of things](/source/Internet_of_things) (IoT) applications than conventional blockchains.[135] 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.[136]

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.[137][138] It is however argued that blockchain technology needs to be supplemented with technologies that provide a strong binding between physical objects and blockchain systems,[139] as well as provisions for content creator verification *ala* [KYC standards](/source/Know_your_customer).[140] The [EUIPO](/source/European_Union_Intellectual_Property_Office) established an Anti-Counterfeiting Blockathon Forum, with the objective of "defining, piloting and implementing" an anti-counterfeiting infrastructure at the European level.[141][142] The Dutch Standardisation organisation NEN uses blockchain together with [QR Codes](/source/QR_code) to authenticate certificates.[143]

Beijing and Shanghai are among the cities designated by China to trial blockchain applications as January 30, 2022.[144] In Chinese legal proceedings, blockchain technology was first accepted as a method for authenticating internet evidence by the [Hangzhou Internet Court](/source/Hangzhou_Internet_Court) in 2019 and has since been accepted by other Chinese courts.[145]: 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[146] stated that "[interoperability](/source/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.[147] 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.[148]

## Energy consumption concerns

Some cryptocurrencies use blockchain mining, namely the peer-to-peer computer computations by which transactions are validated and verified. This requires a large amount of energy. In June 2018, the [Bank for International Settlements](/source/Bank_for_International_Settlements) criticized the use of public [proof-of-work](/source/Proof-of-work) blockchains for their high energy consumption.[149][150][151]

Early concern over the high energy consumption was a factor in later blockchains such as [Cardano](/source/Cardano_(blockchain_platform)) (2017), [Solana](/source/Solana_(blockchain_platform)) (2020) and [Polkadot](/source/Polkadot_(cryptocurrency)) (2020) adopting the less energy-intensive [proof-of-stake](/source/Proof_of_stake) model. Researchers have estimated that bitcoin consumes 100,000 times as much energy as proof-of-stake networks.[152][153]

In 2021, a study by [Cambridge University](/source/University_of_Cambridge) determined that bitcoin (at 121 terawatt-hours per year) used more electricity than Argentina (at 121TWh) and the Netherlands (109TWh).[154] According to Digiconomist, one bitcoin transaction required 708 kilowatt-hours of electrical energy, the amount an average U.S. household consumed in 24 days.[155]

In February 2021, U.S. Treasury secretary [Janet Yellen](/source/Janet_Yellen) called bitcoin "an extremely inefficient way to conduct transactions", saying "the amount of energy consumed in processing those transactions is staggering".[156] In March 2021, [Bill Gates](/source/Bill_Gates) stated that "Bitcoin uses more electricity per transaction than any other method known to mankind", adding "It's not a great climate thing."[157]

Nicholas Weaver, of the [International Computer Science Institute](/source/International_Computer_Science_Institute) at the [University of California, Berkeley](/source/University_of_California%2C_Berkeley), examined blockchain's online security, and the [energy efficiency](/source/Efficient_energy_use) of proof-of-work public blockchains, and in both cases found it grossly inadequate.[158][159] The 31TWh-45TWh of electricity used for bitcoin in 2018 produced 17–23 million tonnes of CO2.[160][161] By 2022, the University of Cambridge and Digiconomist estimated that the two largest proof-of-work blockchains, bitcoin and Ethereum, together used twice as much electricity in one year as the whole of Sweden, leading to the release of up to 120 million tonnes of CO2 each year.[162]

Some cryptocurrency developers are considering moving from the proof-of-work model to the [proof-of-stake](/source/Proof-of-stake) model.[163] In Sept, 2022, Ethereum converted from proof-of-work to proof-of-stake.[164]

## Academic research

Blockchain panel discussion at the first [IEEE Computer Society](/source/IEEE_Computer_Society) TechIgnite conference

In October 2014, the MIT Bitcoin Club, with funding from MIT alumni, provided undergraduate students at the [Massachusetts Institute of Technology](/source/Massachusetts_Institute_of_Technology) access to $100 of bitcoin. The adoption rates, as studied by [Catalini](/source/Christian_Catalini) and [Tucker](/source/Catherine_Tucker) (2016), revealed that when people who typically adopt technologies early are given delayed access, they tend to reject the technology.[165] Many universities have founded departments focusing on crypto and blockchain, including [MIT](/source/Massachusetts_Institute_of_Technology), in 2017. In the same year, [Edinburgh](/source/University_of_Edinburgh) became "one of the first big European universities to launch a blockchain course", according to the *Financial Times*.[166]

### Adoption decision

Motivations for adopting blockchain technology (an aspect of [innovation adoption](/source/Diffusion_of_innovations)) have been investigated by researchers. For example, Janssen, et al. provided a framework for analysis,[167] and Koens & Poll pointed out that adoption could be heavily driven by non-technical factors.[168] Based on behavioral models, Li[169] 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.[170][171] 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.[172] In addition, contrary to the use of relational norms, blockchains do not require a trust or direct connections between collaborators.

### Blockchain and internal audit

External videos Blockchain Basics & Cryptography, Gary Gensler, Massachusetts Institute of Technology, 0:30[173]

The need for internal audits to provide effective oversight of organizational efficiency will require a change in the way that information is accessed in new formats.[174] Blockchain adoption requires a framework to identify the risk of exposure associated with transactions using blockchain. The [Institute of Internal Auditors](/source/Institute_of_Internal_Auditors) has identified the need for internal auditors to address this transformational technology. New methods are required to develop audit plans that identify threats and risks. The Internal Audit Foundation study, *Blockchain and Internal Audit,* assesses these factors.[175] The [American Institute of Certified Public Accountants](/source/American_Institute_of_Certified_Public_Accountants) has outlined new roles for auditors as a result of blockchain.[176]

### Testnet

In blockchain technology, a **testnet** is an instance of a blockchain powered by the same or a newer version of the underlying software, to be used for testing and experimentation without risk to real funds or the main chain.[177] Testnet [coins](/source/Cryptocurrency) are separate and distinct from the official *[mainnet](/source/Mainnet)* coins, don't have value, and can be obtained freely from *faucets*.[178]

Testnets allow for the development of blockchain applications without the risk of losing funds.[179]

Using testnets, a bug was discovered in the [Bitcoin Core](/source/Bitcoin) software that gave miners the ability to take down essential parts of the Bitcoin infrastructure (nodes) by sending a 'bad' block to the blockchain.[180]

### Mainnet

A **mainnet** (short for *main network*) is the fully operational version of a blockchain where real transactions occur, as opposed to a testnet. It is secured through consensus mechanisms like [Proof of Work](/source/Proof_of_Work) or [Proof of Stake](/source/Proof_of_Stake) and supports [smart contracts](/source/Smart_contract), [token](/source/Non-fungible_token) transfers, and [decentralized applications](/source/Decentralized_application).[181]

A *mainnet launch* marks the transition from a testnet to a live blockchain, involving security audits, network deployment, and token migration.[182]

### Journals

Main article: [*Ledger* (journal)](/source/Ledger_(journal))

In September 2015, the first peer-reviewed academic journal dedicated to cryptocurrency and blockchain technology research, *Ledger*, was announced. The inaugural issue was published in December 2016.[183] The journal covers aspects of [mathematics](/source/Mathematics), [computer science](/source/Computer_science), [engineering](/source/Engineering), [law](/source/Law), [economics](/source/Economics) and [philosophy](/source/Philosophy) that relate to cryptocurrencies.[184][185] The journal encourages authors to [digitally sign](/source/Digital_signature) a [file hash](/source/Hash_function) of submitted papers, which are then [timestamped](/source/Trusted_timestamping) 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.[186]

## See also

- [Economics portal](https://en.wikipedia.org/wiki/Portal:Economics)

- [Changelog](/source/Changelog) – a record of all notable changes made to a project

- [Checklist](/source/Checklist) – an informational aid used to reduce failure

- [Economics of digitization](/source/Economics_of_digitization)

- [Git](/source/Git) – a version control system where the commit hash value depends on the previous commit hash value, also with [Merkle tree](/source/Merkle_tree) inside[187]

- [List of blockchains](/source/List_of_blockchains)

- [Privacy and blockchain](/source/Privacy_and_blockchain)

- [Real-World Assets](https://en.wikipedia.org/w/index.php?title=Real-World_Assets&action=edit&redlink=1)

- [Version control](/source/Version_control) – a record of all changes (mostly of software project) in a form of a graph

## References

1. **[^](#cite_ref-fortune20160515_1-0)** 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](/source/Fortune_(magazine))*. [Archived](https://web.archive.org/web/20160521015602/http://fortune.com/2016/05/15/leaderless-blockchain-vc-fund/) from the original on 21 May 2016. Retrieved 23 May 2016.

1. ^ [***a***](#cite_ref-nyt20160521_2-0) [***b***](#cite_ref-nyt20160521_2-1) Popper, Nathan (21 May 2016). ["A Venture Fund With Plenty of Virtual Capital, but No Capitalist"](https://www.nytimes.com/2016/05/22/business/dealbook/crypto-ether-bitcoin-currency.html). *[The New York Times](/source/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.

1. ^ [***a***](#cite_ref-te20151031_3-0) [***b***](#cite_ref-te20151031_3-1) [***c***](#cite_ref-te20151031_3-2) [***d***](#cite_ref-te20151031_3-3) [***e***](#cite_ref-te20151031_3-4) [***f***](#cite_ref-te20151031_3-5) [***g***](#cite_ref-te20151031_3-6) [***h***](#cite_ref-te20151031_3-7) [***i***](#cite_ref-te20151031_3-8) ["Blockchains: The great chain of being sure about things"](https://www.economist.com/news/briefing/21677228-technology-behind-bitcoin-lets-people-who-do-not-know-or-trust-each-other-build-dependable). *[The Economist](/source/The_Economist)*. 31 October 2015. [Archived](https://web.archive.org/web/20160703000844/http://www.economist.com/news/briefing/21677228-technology-behind-bitcoin-lets-people-who-do-not-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.

1. ^ [***a***](#cite_ref-cryptocurrencytech_4-0) [***b***](#cite_ref-cryptocurrencytech_4-1) [***c***](#cite_ref-cryptocurrencytech_4-2) [***d***](#cite_ref-cryptocurrencytech_4-3) [***e***](#cite_ref-cryptocurrencytech_4-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](/source/Princeton_University_Press). [ISBN](/source/ISBN_(identifier)) [978-0-691-17169-2](https://en.wikipedia.org/wiki/Special:BookSources/978-0-691-17169-2).

1. **[^](#cite_ref-5)** Iansiti, Marco; Lakhani, Karim R. (January 2017). ["The Truth About Blockchain"](https://hbr.org/2017/01/the-truth-about-blockchain). *[Harvard Business Review](/source/Harvard_Business_Review)*. Cambridge, Massachusetts: [Harvard University](/source/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.

1. **[^](#cite_ref-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/what-was-the-first-blockchain/). *[Vice](/source/Vice_(magazine))*. Retrieved 9 October 2021.

1. **[^](#cite_ref-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-card-rails/). *dailyfintech.com*. [Archived](https://web.archive.org/web/20180927005613/https://dailyfintech.com/2018/02/10/bitcoin-will-finally-disrupt-the-credit-card-rails/) from the original on 27 September 2018. Retrieved 18 November 2018.

1. ^ [***a***](#cite_ref-cw20160905_8-0) [***b***](#cite_ref-cw20160905_8-1) [***c***](#cite_ref-cw20160905_8-2) [***d***](#cite_ref-cw20160905_8-3) [***e***](#cite_ref-cw20160905_8-4) 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-blockchain-hype-why-much-it-nothing-more-than-snake-oil-spin/). *[Computerworld](/source/Computerworld)*. [Archived](https://web.archive.org/web/20160906171838/http://www.computerworld.com.au/article/606253/understanding-blockchain-hype-why-much-it-nothing-more-than-snake-oil-spin/) from the original on 6 September 2016. Retrieved 5 September 2016.

1. ^ [***a***](#cite_ref-auto_9-0) [***b***](#cite_ref-auto_9-1) Bakos, Yannis; Halaburda, Hanna; Mueller-Bloch, Christoph (February 2021). ["When Permissioned Blockchains Deliver More Decentralization Than Permissionless"](https://pure.itu.dk/portal/da/publications/e29df7d1-e939-43d3-9f38-b97d983e730d). *Communications of the ACM*. **64** (2): 20–22. [doi](/source/Doi_(identifier)):[10.1145/3442371](https://doi.org/10.1145%2F3442371). [S2CID](/source/S2CID_(identifier)) [231704491](https://api.semanticscholar.org/CorpusID:231704491).

1. **[^](#cite_ref-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](/source/ArXiv_(identifier)):[1810.06130](https://arxiv.org/abs/1810.06130). [Bibcode](/source/Bibcode_(identifier)):[2019ISPri..17a..72S](https://ui.adsabs.harvard.edu/abs/2019ISPri..17a..72S). [doi](/source/Doi_(identifier)):[10.1109/MSEC.2019.2893730](https://doi.org/10.1109%2FMSEC.2019.2893730). [ISSN](/source/ISSN_(identifier)) [1558-4046](https://search.worldcat.org/issn/1558-4046). [S2CID](/source/S2CID_(identifier)) [53114747](https://api.semanticscholar.org/CorpusID:53114747).

1. **[^](#cite_ref-11)** Download [PDF of dissertation from Dr. Chaum's website](https://chaum.com/wp-content/uploads/2022/02/chaum_dissertation.pdf)

1. **[^](#cite_ref-12)** Haber, Stuart; Stornetta, W. Scott (January 1991). "How to time-stamp a digital document". *Journal of Cryptology*. **3** (2): 99–111. [CiteSeerX](/source/CiteSeerX_(identifier)) [10.1.1.46.8740](https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.46.8740). [doi](/source/Doi_(identifier)):[10.1007/bf00196791](https://doi.org/10.1007%2Fbf00196791). [S2CID](/source/S2CID_(identifier)) [14363020](https://api.semanticscholar.org/CorpusID:14363020).

1. **[^](#cite_ref-13)** 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](/source/CiteSeerX_(identifier)) [10.1.1.71.4891](https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.71.4891). [doi](/source/Doi_(identifier)):[10.1007/978-1-4613-9323-8_24](https://doi.org/10.1007%2F978-1-4613-9323-8_24). [ISBN](/source/ISBN_(identifier)) [978-1-4613-9325-2](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4613-9325-2).

1. **[^](#cite_ref-:0_14-0)** 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/what-was-the-first-blockchain/). *Vice.com*. Retrieved 9 October 2021.

1. **[^](#cite_ref-15)** 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](/source/ISBN_(identifier)) [978-0-12-802351-8](https://en.wikipedia.org/wiki/Special:BookSources/978-0-12-802351-8).

1. **[^](#cite_ref-16)** ["Bitcoin Blockchain Size"](https://ycharts.com/indicators/bitcoin_blockchain_size). *YCharts*. Retrieved 8 April 2026.

1. **[^](#cite_ref-17)** Johnsen, Maria (12 May 2020). [*Blockchain in Digital Marketing: A New Paradigm of Trust*](https://books.google.com/books?id=uVbjDwAAQBAJ&pg=PA6). Maria Johnsen. p. 6. [ISBN](/source/ISBN_(identifier)) [979-8-6448-7308-1](https://en.wikipedia.org/wiki/Special:BookSources/979-8-6448-7308-1).

1. **[^](#cite_ref-18)** ["The future of blockchain in 8 charts"](http://raconteur.net/business/the-future-of-blockchain-in-8-charts). *Raconteur*. 27 June 2016. [Archived](https://web.archive.org/web/20161202234125/http://raconteur.net/business/the-future-of-blockchain-in-8-charts) from the original on 2 December 2016. Retrieved 3 December 2016.

1. **[^](#cite_ref-19)** ["Hype Killer - Only 1% of Companies Are Using Blockchain, Gartner Reports | Artificial Lawyer"](https://www.artificiallawyer.com/2018/05/04/hype-killer-only-1-of-companies-are-using-blockchain-gartner-reports/). *Artificial Lawyer*. 4 May 2018. [Archived](https://web.archive.org/web/20180522111623/https://www.artificiallawyer.com/2018/05/04/hype-killer-only-1-of-companies-are-using-blockchain-gartner-reports/) from the original on 22 May 2018. Retrieved 22 May 2018.

1. **[^](#cite_ref-20)** Kasey Panetta. (31 October 2018). "Digital Business: CIO Agenda 2019: Exploit Transformational Technologies." [Gartner website](https://www.gartner.com/smarterwithgartner/cio-agenda-2019-exploit-transformational-technologies/) [Archived](https://web.archive.org/web/20210420145011/https://www.gartner.com/smarterwithgartner/cio-agenda-2019-exploit-transformational-technologies/) 20 April 2021 at the [Wayback Machine](/source/Wayback_Machine) Retrieved 27 March 2021.

1. **[^](#cite_ref-21)** Armstrong, Stephen (7 November 2016). ["Move over Bitcoin, the blockchain is only just getting started"](https://www.wired.co.uk/article/unlock-the-blockchain). *[Wired](/source/Wired_(magazine))*. [Archived](https://web.archive.org/web/20161108130946/http://www.wired.co.uk/article/unlock-the-blockchain) from the original on 8 November 2016. Retrieved 9 November 2016.

1. **[^](#cite_ref-22)** Catalini, Christian; Gans, Joshua S. (23 November 2016). ["Some Simple Economics of the Blockchain"](http://www.nber.org/papers/w22952.pdf) (PDF). *SSRN*. [doi](/source/Doi_(identifier)):[10.2139/ssrn.2874598](https://doi.org/10.2139%2Fssrn.2874598). [hdl](/source/Hdl_(identifier)):[1721.1/130500](https://hdl.handle.net/1721.1%2F130500). [S2CID](/source/S2CID_(identifier)) [46904163](https://api.semanticscholar.org/CorpusID:46904163). [SSRN](/source/SSRN_(identifier)) [2874598](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2874598). [Archived](https://web.archive.org/web/20200306014931/https://www.nber.org/papers/w22952.pdf) (PDF) from the original on 6 March 2020. Retrieved 16 September 2019.

1. **[^](#cite_ref-23)** [Tapscott, Don](/source/Don_Tapscott); [Tapscott, Alex](/source/Alex_Tapscott) (8 May 2016). ["Here's Why Blockchains Will Change the World"](http://fortune.com/2016/05/08/why-blockchains-will-change-the-world/). *Fortune*. [Archived](https://web.archive.org/web/20161113134748/http://fortune.com/2016/05/08/why-blockchains-will-change-the-world/) from the original on 13 November 2016. Retrieved 16 November 2016.

1. **[^](#cite_ref-24)** Bheemaiah, Kariappa (January 2015). ["Block Chain 2.0: The Renaissance of Money"](https://www.wired.com/insights/2015/01/block-chain-2-0/). *[Wired](/source/Wired_(magazine))*. [Archived](https://web.archive.org/web/20161114001509/https://www.wired.com/insights/2015/01/block-chain-2-0/) from the original on 14 November 2016. Retrieved 13 November 2016.

1. **[^](#cite_ref-25)** Chen, Huashan; Pendleton, Marcus; Njilla, Laurent; Xu, Shouhuai (12 June 2020). "A Survey on Ethereum Systems Security: Vulnerabilities, Attacks, and Defenses". *ACM Computing Surveys*. **53** (3): 3–4. [arXiv](/source/ArXiv_(identifier)):[1908.04507](https://arxiv.org/abs/1908.04507). [doi](/source/Doi_(identifier)):[10.1145/3391195](https://doi.org/10.1145%2F3391195). [ISSN](/source/ISSN_(identifier)) [0360-0300](https://search.worldcat.org/issn/0360-0300). [S2CID](/source/S2CID_(identifier)) [199551841](https://api.semanticscholar.org/CorpusID:199551841).

1. **[^](#cite_ref-26)** Shishir, Bhatia (2 February 2006). [*Structured Information Flow (SIF) Framework for Automating End-to-End Information Flow for Large Organizations*](https://vtechworks.lib.vt.edu/handle/10919/31148) (Thesis). Virginia Tech. [Archived](https://web.archive.org/web/20220404184214/https://vtechworks.lib.vt.edu/handle/10919/31148) from the original on 4 April 2022. Retrieved 28 March 2022.

1. ^ [***a***](#cite_ref-hadc_27-0) [***b***](#cite_ref-hadc_27-1) [***c***](#cite_ref-hadc_27-2) [***d***](#cite_ref-hadc_27-3) Bhaskar, Nirupama Devi; Chuen, David LEE Kuo (2015). "Bitcoin Mining Technology". [*Handbook of Digital Currency*](https://ink.library.smu.edu.sg/lkcsb_research/4216). pp. 45–65. [doi](/source/Doi_(identifier)):[10.1016/B978-0-12-802117-0.00003-5](https://doi.org/10.1016%2FB978-0-12-802117-0.00003-5). [ISBN](/source/ISBN_(identifier)) [978-0-12-802117-0](https://en.wikipedia.org/wiki/Special:BookSources/978-0-12-802117-0).

1. **[^](#cite_ref-FOOTNOTEKnirschUnterwegerEngel20192_28-0)** [Knirsch, Unterweger & Engel 2019](#CITEREFKnirschUnterwegerEngel2019), p. 2.

1. ^ [***a***](#cite_ref-bsm_29-0) [***b***](#cite_ref-bsm_29-1) [***c***](#cite_ref-bsm_29-2) Antonopoulos, Andreas (20 February 2014). ["Bitcoin security model: trust by computation"](http://radar.oreilly.com/2014/02/bitcoin-security-model-trust-by-computation.html). *Radar*. O'Reilly. [Archived](https://web.archive.org/web/20161031132328/http://radar.oreilly.com/2014/02/bitcoin-security-model-trust-by-computation.html) from the original on 31 October 2016. Retrieved 19 November 2016.

1. ^ [***a***](#cite_ref-t12_30-0) [***b***](#cite_ref-t12_30-1) Antonopoulos, Andreas M. (2014). [*Mastering Bitcoin. Unlocking Digital Cryptocurrencies*](https://web.archive.org/web/20161201131627/http://chimera.labs.oreilly.com/books/1234000001802/ch01.html). Sebastopol, CA: O'Reilly Media. [ISBN](/source/ISBN_(identifier)) [978-1449374037](https://en.wikipedia.org/wiki/Special:BookSources/978-1449374037). Archived from [the original](http://chimera.labs.oreilly.com/books/1234000001802/ch01.html) on 1 December 2016. Retrieved 3 November 2015.

1. **[^](#cite_ref-paper_31-0)** Nakamoto, Satoshi (October 2008). ["Bitcoin: A Peer-to-Peer Electronic Cash System"](https://bitcoin.org/bitcoin.pdf) (PDF). bitcoin.org. [Archived](https://web.archive.org/web/20140320135003/https://bitcoin.org/bitcoin.pdf) (PDF) from the original on 20 March 2014. Retrieved 28 April 2014.

1. **[^](#cite_ref-32)** ["Permissioned Blockchains"](https://monax.io/explainers/permissioned_blockchains/). *Explainer*. Monax. [Archived](https://web.archive.org/web/20161120154948/https://monax.io/explainers/permissioned_blockchains/) from the original on 20 November 2016. Retrieved 20 November 2016.

1. **[^](#cite_ref-33)** Kumar, Randhir; Tripathi, Rakesh (November 2019). "Implementation of Distributed File Storage and Access Framework using IPFS and Blockchain". *2019 Fifth International Conference on Image Information Processing (ICIIP)*. IEEE. pp. 246–251. [doi](/source/Doi_(identifier)):[10.1109/iciip47207.2019.8985677](https://doi.org/10.1109%2Ficiip47207.2019.8985677). [ISBN](/source/ISBN_(identifier)) [978-1-7281-0899-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-7281-0899-5). [S2CID](/source/S2CID_(identifier)) [211119043](https://api.semanticscholar.org/CorpusID:211119043).

1. **[^](#cite_ref-Fork_(blockchain)_ArsFork_34-0)** Lee, Timothy (12 March 2013). ["Major glitch in Bitcoin network sparks sell-off; price temporarily falls 23%"](https://arstechnica.com/business/2013/03/major-glitch-in-bitcoin-network-sparks-sell-off-price-temporarily-falls-23/). Arstechnica. [Archived](https://web.archive.org/web/20130420050926/http://arstechnica.com/business/2013/03/major-glitch-in-bitcoin-network-sparks-sell-off-price-temporarily-falls-23/) from the original on 20 April 2013. Retrieved 25 February 2018.

1. **[^](#cite_ref-Fork_(blockchain)_bpr_35-0)** Smith, Oli (21 January 2018). ["Bitcoin price RIVAL: Cryptocurrency 'faster than bitcoin' will CHALLENGE market leaders"](https://www.express.co.uk/finance/city/907536/cryptocurrency-bitcoin-market-leader-cash-ripple-ethereum). *Express*. [Archived](https://web.archive.org/web/20190328143053/https://www.express.co.uk/finance/city/907536/cryptocurrency-bitcoin-market-leader-cash-ripple-ethereum) from the original on 28 March 2019. Retrieved 6 April 2021.

1. **[^](#cite_ref-Fork_(blockchain)_CNN_2017-08-01_36-0)** ["Bitcoin split in two, here's what that means"](https://web.archive.org/web/20180227214042/https://money.cnn.com/2017/08/01/technology/business/bitcoin-cash-new-currency/index.html). *[CNN](/source/CNN)*. 1 August 2017. Archived from [the original](https://money.cnn.com/2017/08/01/technology/business/bitcoin-cash-new-currency/index.html) on 27 February 2018. Retrieved 7 April 2021.

1. **[^](#cite_ref-37)** Hughes, Laurie; Dwivedi, Yogesh K.; Misra, Santosh K.; Rana, Nripendra P.; Raghavan, Vishnupriya; Akella, Viswanadh (December 2019). ["Blockchain research, practice and policy: Applications, benefits, limitations, emerging research themes and research agenda"](https://linkinghub.elsevier.com/retrieve/pii/S0268401219302014). *International Journal of Information Management*. **49**: 114–129. [doi](/source/Doi_(identifier)):[10.1016/j.ijinfomgt.2019.02.005](https://doi.org/10.1016%2Fj.ijinfomgt.2019.02.005). [hdl](/source/Hdl_(identifier)):[10454/17473](https://hdl.handle.net/10454%2F17473). [S2CID](/source/S2CID_(identifier)) [116666889](https://api.semanticscholar.org/CorpusID:116666889). [Archived](https://web.archive.org/web/20230202040325/https://linkinghub.elsevier.com/retrieve/pii/S0268401219302014) from the original on 2 February 2023. Retrieved 20 November 2022.

1. **[^](#cite_ref-38)** Roberts, Jeff John (29 May 2018). ["Bitcoin Spinoff Hacked in Rare '51% Attack'"](https://web.archive.org/web/20211222000248/https://fortune.com/2018/05/29/bitcoin-gold-hack/). *Fortune*. Archived from [the original](https://fortune.com/2018/05/29/bitcoin-gold-hack/) on 22 December 2021. Retrieved 27 December 2022.

1. ^ [***a***](#cite_ref-primer_39-0) [***b***](#cite_ref-primer_39-1) Brito, Jerry; Castillo, Andrea (2013). [Bitcoin: A Primer for Policymakers](http://mercatus.org/sites/default/files/Brito_BitcoinPrimer.pdf) (PDF) (Report). Fairfax, VA: Mercatus Center, George Mason University. [Archived](https://web.archive.org/web/20130921060724/http://mercatus.org/sites/default/files/Brito_BitcoinPrimer.pdf) (PDF) from the original on 21 September 2013. Retrieved 22 October 2013.

1. **[^](#cite_ref-40)** Raval, Siraj (2016). [*Decentralized Applications: Harnessing Bitcoin's Blockchain Technology*](https://books.google.com/books?id=fvywDAAAQBAJ). O'Reilly Media, Inc. pp. [1](https://books.google.com/books?id=fvywDAAAQBAJ&pg=PA1)–[2](https://books.google.com/books?id=fvywDAAAQBAJ). [ISBN](/source/ISBN_(identifier)) [978-1-4919-2452-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4919-2452-5).

1. **[^](#cite_ref-kopstein_41-0)** Kopfstein, Janus (12 December 2013). ["The Mission to Decentralize the Internet"](https://www.newyorker.com/tech/elements/the-mission-to-decentralize-the-internet). *[The New Yorker](/source/The_New_Yorker)*. [Archived](https://web.archive.org/web/20141231031044/http://www.newyorker.com/tech/elements/the-mission-to-decentralize-the-internet) from the original on 31 December 2014. Retrieved 30 December 2014. The network's 'nodes' — users running the bitcoin software on their computers — collectively check the integrity of other nodes to ensure that no one spends the same coins twice. All transactions are published on a shared public ledger, called the 'block chain.'

1. **[^](#cite_ref-42)** Gervais, Arthur; Karame, Ghassan O.; Capkun, Vedran; Capkun, Srdjan. ["Is Bitcoin a Decentralized Currency?"](https://www.infoq.com/articles/is-bitcoin-a-decentralized-currency/). *InfoQ*. InfoQ & IEEE computer society. [Archived](https://web.archive.org/web/20161010042659/https://www.infoq.com/articles/is-bitcoin-a-decentralized-currency/) from the original on 10 October 2016. Retrieved 11 October 2016.

1. ^ [***a***](#cite_ref-Deirmentzoglou_et_al_43-0) [***b***](#cite_ref-Deirmentzoglou_et_al_43-1) [***c***](#cite_ref-Deirmentzoglou_et_al_43-2) Deirmentzoglou, Evangelos; Papakyriakopoulos, Georgios; Patsakis, Constantinos (2019). ["A Survey on Long-Range Attacks for Proof of Stake Protocols"](https://doi.org/10.1109%2FACCESS.2019.2901858). *[IEEE Access](/source/IEEE_Access)*. **7**: 28712–28725. [Bibcode](/source/Bibcode_(identifier)):[2019IEEEA...728712D](https://ui.adsabs.harvard.edu/abs/2019IEEEA...728712D). [doi](/source/Doi_(identifier)):[10.1109/ACCESS.2019.2901858](https://doi.org/10.1109%2FACCESS.2019.2901858). [eISSN](/source/EISSN_(identifier)) [2169-3536](https://search.worldcat.org/issn/2169-3536). [S2CID](/source/S2CID_(identifier)) [84185792](https://api.semanticscholar.org/CorpusID:84185792).

1. ^ [***a***](#cite_ref-t16_44-0) [***b***](#cite_ref-t16_44-1) Voorhees, Erik (30 October 2015). ["It's All About the Blockchain"](https://web.archive.org/web/20151101235750/http://moneyandstate.com/its-all-about-the-blockchain/). *Money and State*. Archived from [the original](http://moneyandstate.com/its-all-about-the-blockchain/) on 1 November 2015. Retrieved 2 November 2015.

1. **[^](#cite_ref-t10_45-0)** Reutzel, Bailey (13 July 2015). ["A Very Public Conflict Over Private Blockchains"](http://www.paymentssource.com/news/technology/a-very-public-confluct-over-private-blockchains-3021831-1.html). *PaymentsSource*. New York, NY: SourceMedia, Inc. [Archived](https://web.archive.org/web/20160421112045/http://www.paymentssource.com/news/technology/a-very-public-confluct-over-private-blockchains-3021831-1.html) from the original on 21 April 2016. Retrieved 18 June 2016.

1. ^ [***a***](#cite_ref-t11_46-0) [***b***](#cite_ref-t11_46-1) Casey MJ (15 April 2015). ["Moneybeat/BitBeat: Blockchains Without Coins Stir Tensions in Bitcoin Community"](https://blogs.wsj.com/moneybeat/2015/04/14/bitbeat-blockchains-without-coins-stir-tensions-in-bitcoin-community/). *[The Wall Street Journal](/source/The_Wall_Street_Journal)*. [Archived](https://web.archive.org/web/20160610224428/http://blogs.wsj.com/moneybeat/2015/04/14/bitbeat-blockchains-without-coins-stir-tensions-in-bitcoin-community/) from the original on 10 June 2016. Retrieved 18 June 2016.

1. **[^](#cite_ref-t8_47-0)** ["The 'Blockchain Technology' Bandwagon Has A Lesson Left To Learn"](http://news.dinbits.com/2015/11/the-blockchain-technology-bandwagon-has.html). *dinbits.com*. 3 November 2015. [Archived](https://web.archive.org/web/20160629234654/http://news.dinbits.com/2015/11/the-blockchain-technology-bandwagon-has.html) from the original on 29 June 2016. Retrieved 18 June 2016.

1. **[^](#cite_ref-t9_48-0)** DeRose, Chris (26 June 2015). ["Why the Bitcoin Blockchain Beats Out Competitors"](http://www.americanbanker.com/bankthink/why-the-bitcoin-blockchain-beats-out-competitors-1075100-1.html). *American Banker*. [Archived](https://web.archive.org/web/20160330060709/http://www.americanbanker.com/bankthink/why-the-bitcoin-blockchain-beats-out-competitors-1075100-1.html) from the original on 30 March 2016. Retrieved 18 June 2016.

1. **[^](#cite_ref-t4_49-0)** Greenspan, Gideon (19 July 2015). ["Ending the bitcoin vs blockchain debate"](http://www.multichain.com/blog/2015/07/bitcoin-vs-blockchain-debate/). *multichain.com*. [Archived](https://web.archive.org/web/20160608070620/http://www.multichain.com/blog/2015/07/bitcoin-vs-blockchain-debate/) from the original on 8 June 2016. Retrieved 18 June 2016.

1. **[^](#cite_ref-tapscott201605_50-0)** [Tapscott, Don](/source/Don_Tapscott); [Tapscott, Alex](/source/Alex_Tapscott) (May 2016). *The Blockchain Revolution: How the Technology Behind Bitcoin is Changing Money, Business, and the World*. Portfolio/Penguin. [ISBN](/source/ISBN_(identifier)) [978-0-670-06997-2](https://en.wikipedia.org/wiki/Special:BookSources/978-0-670-06997-2).

1. **[^](#cite_ref-51)** Barry, Levine (11 June 2018). ["A new report bursts the blockchain bubble"](https://martechtoday.com/a-new-report-bursts-the-blockchain-bubble-216959). MarTech. [Archived](https://web.archive.org/web/20180713232406/https://martechtoday.com/a-new-report-bursts-the-blockchain-bubble-216959) from the original on 13 July 2018. Retrieved 13 July 2018.

1. ^ [***a***](#cite_ref-btt17_52-0) [***b***](#cite_ref-btt17_52-1) Ovenden, James. ["Blockchain Top Trends In 2017"](https://channels.theinnovationenterprise.com/articles/blockchain-top-trends-in-2017). The Innovation Enterprise. [Archived](https://web.archive.org/web/20161130143727/https://channels.theinnovationenterprise.com/articles/blockchain-top-trends-in-2017) from the original on 30 November 2016. Retrieved 4 December 2016.

1. ^ [***a***](#cite_ref-btit_53-0) [***b***](#cite_ref-btit_53-1) Bob Marvin (30 August 2017). ["Blockchain: The Invisible Technology That's Changing the World"](http://au.pcmag.com/amazon-web-services/46389/feature/blockchain-the-invisible-technology-thats-changing-the-world). *PC MAG Australia*. ZiffDavis, LLC. [Archived](https://web.archive.org/web/20170925180800/http://au.pcmag.com/amazon-web-services/46389/feature/blockchain-the-invisible-technology-thats-changing-the-world) from the original on 25 September 2017. Retrieved 25 September 2017.

1. **[^](#cite_ref-54)** O'Keeffe, M.; Terzi, A. (7 July 2015). ["The political economy of financial crisis policy"](http://bruegel.org/2015/07/the-political-economy-of-financial-crisis-policy/). *Bruegel*. [Archived](https://web.archive.org/web/20180519025919/http://bruegel.org/2015/07/the-political-economy-of-financial-crisis-policy/) from the original on 19 May 2018. Retrieved 8 May 2018.

1. **[^](#cite_ref-55)** Dr Garrick Hileman & Michel Rauchs (2017). ["GLOBAL CRYPTOCURRENCY BENCHMARKING STUDY"](https://cdn.crowdfundinsider.com/wp-content/uploads/2017/04/Global-Cryptocurrency-Benchmarking-Study.pdf) (PDF). *Cambridge Centre for Alternative Finance*. University of Cambridge Judge Business School. [Archived](https://web.archive.org/web/20190515100308/https://cdn.crowdfundinsider.com/wp-content/uploads/2017/04/Global-Cryptocurrency-Benchmarking-Study.pdf) (PDF) from the original on 15 May 2019. Retrieved 15 May 2019 – via crowdfundinsider.

1. **[^](#cite_ref-56)** Raymaekers, Wim (March 2015). ["Cryptocurrency Bitcoin: Disruption, challenges and opportunities"](https://www.ingentaconnect.com/content/hsp/jpss/2015/00000009/00000001/art00005). *Journal of Payments Strategy & Systems*. **9** (1) JPSS-vol9-iss1-pg30: 30–46. [doi](/source/Doi_(identifier)):[10.69554/FBUJ3107](https://doi.org/10.69554%2FFBUJ3107). [Archived](https://web.archive.org/web/20190515100259/https://www.ingentaconnect.com/content/hsp/jpss/2015/00000009/00000001/art00005) from the original on 15 May 2019. Retrieved 15 May 2019.

1. **[^](#cite_ref-57)** ["Why Crypto Companies Still Can't Open Checking Accounts"](https://www.bloomberg.com/news/articles/2019-03-03/why-crypto-companies-still-can-t-open-checking-accounts). 3 March 2019. [Archived](https://web.archive.org/web/20190604091359/https://www.bloomberg.com/news/articles/2019-03-03/why-crypto-companies-still-can-t-open-checking-accounts) from the original on 4 June 2019. Retrieved 4 June 2019.

1. **[^](#cite_ref-58)** Christian Brenig, Rafael Accorsi & Günter Müller (Spring 2015). ["Economic Analysis of Cryptocurrency Backed Money Laundering"](https://aisel.aisnet.org/cgi/viewcontent.cgi?article=1019&context=ecis2015_cr). *Association for Information Systems AIS Electronic Library (AISeL)*. [Archived](https://web.archive.org/web/20190828223207/https://aisel.aisnet.org/cgi/viewcontent.cgi?article=1019&context=ecis2015_cr) from the original on 28 August 2019. Retrieved 15 May 2019.

1. **[^](#cite_ref-59)** Greenberg, Andy (25 January 2017). ["Monero, the Drug Dealer's Cryptocurrency of Choice, Is on Fire"](https://www.wired.com/2017/01/monero-drug-dealers-cryptocurrency-choice-fire/). *Wired*. [ISSN](/source/ISSN_(identifier)) [1059-1028](https://search.worldcat.org/issn/1059-1028). [Archived](https://web.archive.org/web/20181210020727/https://www.wired.com/2017/01/monero-drug-dealers-cryptocurrency-choice-fire/) from the original on 10 December 2018. Retrieved 15 May 2019.

1. **[^](#cite_ref-60)** Orcutt, Mike. ["It's getting harder to hide money in Bitcoin"](https://www.technologyreview.com/s/608763/criminals-thought-bitcoin-was-the-perfect-hiding-place-they-thought-wrong/). *MIT Technology Review*. [Archived](https://web.archive.org/web/20190505173453/https://www.technologyreview.com/s/608763/criminals-thought-bitcoin-was-the-perfect-hiding-place-they-thought-wrong/) from the original on 5 May 2019. Retrieved 15 May 2019.

1. **[^](#cite_ref-61)** ["Explainer: 'Privacy coin' Monero offers near total anonymity"](https://web.archive.org/web/20190515075334/https://uk.reuters.com/article/us-crypto-currencies-altcoins-explainer-idUKKCN1SL0F0). *Reuters*. 15 May 2019. Archived from [the original](https://uk.reuters.com/article/us-crypto-currencies-altcoins-explainer-idUKKCN1SL0F0) on 15 May 2019. Retrieved 15 May 2019.

1. **[^](#cite_ref-Blockchain_62-0)** ["Blockchain"](https://www.standards.org.au/engagement-events/flagship-projects/blockchain). *standards.org.au*. Standards Australia. [Archived](https://web.archive.org/web/20210624204415/https://www.standards.org.au/engagement-events/flagship-projects/blockchain) from the original on 24 June 2021. Retrieved 21 June 2021.

1. ^ [***a***](#cite_ref-ISO/TC_307_Blockchain_and_distributed_ledger_technologies_63-0) [***b***](#cite_ref-ISO/TC_307_Blockchain_and_distributed_ledger_technologies_63-1) ["ISO/TC 307 Blockchain and distributed ledger technologies"](https://www.iso.org/committee/6266604.html). *iso.org*. ISO. 15 September 2020. [Archived](https://web.archive.org/web/20210618213345/https://www.iso.org/committee/6266604.html) from the original on 18 June 2021. Retrieved 21 June 2021.

1. **[^](#cite_ref-64)** Deshmukh, Sumedha; Boulais, Océane; Koens, Tommy. ["Global Standards Mapping Initiative: An overview of blockchain technical standards"](http://www3.weforum.org/docs/WEF_GSMI_Technical_Standards_2020.pdf) (PDF). *weforum.org*. World Economic Forum. [Archived](https://web.archive.org/web/20210624204208/http://www3.weforum.org/docs/WEF_GSMI_Technical_Standards_2020.pdf) (PDF) from the original on 24 June 2021. Retrieved 23 June 2021.

1. **[^](#cite_ref-BLOCKCHAIN_Overview_65-0)** ["Blockchain Overview"](https://www.nist.gov/blockchain). *NIST*. 25 September 2019. [Archived](https://web.archive.org/web/20210624203153/https://www.nist.gov/blockchain) from the original on 24 June 2021. Retrieved 21 June 2021.

1. **[^](#cite_ref-CEN_and_CENELEC_publish_a_White_Paper_on_standards_in_Blockchain_&_Distributed_Ledger_Technologies_66-0)** ["CEN and CENELEC publish a White Paper on standards in Blockchain & Distributed Ledger Technologies"](https://www.cencenelec.eu/news/brief_news/Pages/TN-2018-085.aspx). *cencenelec.eu*. CENELEC. [Archived](https://web.archive.org/web/20210624202912/https://www.cencenelec.eu/news/brief_news/Pages/TN-2018-085.aspx) from the original on 24 June 2021. Retrieved 21 June 2021.

1. **[^](#cite_ref-Standards_67-0)** ["Standards"](https://blockchain.ieee.org/standards). *[IEEE](/source/IEEE)*. IEEE Blockchain. [Archived](https://web.archive.org/web/20210624202837/https://blockchain.ieee.org/standards) from the original on 24 June 2021. Retrieved 21 June 2021.

1. **[^](#cite_ref-An_Interoperability_Architecture_for_Blockchain/DLT_Gateways_draft-hardjono-blockchain-interop-arch-02_68-0)** Hardjono, Thomas. ["An Interoperability Architecture for Blockchain/DLT Gateways"](https://www.ietf.org/id/draft-hardjono-blockchain-interop-arch-02.txt). *ietf.org*. IETF. [Archived](https://web.archive.org/web/20210428085832/https://www.ietf.org/id/draft-hardjono-blockchain-interop-arch-02.txt) from the original on 28 April 2021. Retrieved 21 June 2021.

1. ^ [***a***](#cite_ref-OracleBlockchainDetails_69-0) [***b***](#cite_ref-OracleBlockchainDetails_69-1) ["Details: Oracle Blockchain Table"](https://docs.oracle.com/en/database/oracle/oracle-database/21/nfcon/details-oracle-blockchain-table-282449857.html). [Archived](https://web.archive.org/web/20210120232657/https://docs.oracle.com/en/database/oracle/oracle-database/21/nfcon/details-oracle-blockchain-table-282449857.html) from the original on 20 January 2021. Retrieved 1 January 2022.

1. ^ [***a***](#cite_ref-OracleBlockchainTable_70-0) [***b***](#cite_ref-OracleBlockchainTable_70-1) ["Oracle Blockchain Table"](https://docs.oracle.com/en/database/oracle/oracle-database/21/nfcon/oracle-blockchain-table-268779556.html). [Archived](https://web.archive.org/web/20210516130824/https://docs.oracle.com/en/database/oracle/oracle-database/21/nfcon/oracle-blockchain-table-268779556.html) from the original on 16 May 2021. Retrieved 1 January 2022.

1. **[^](#cite_ref-71)** ["How Companies Can Leverage Private Blockchains to Improve Efficiency and Streamline Business Processes"](https://perfectial.com/blog/leveraging-private-blockchains-improve-efficiency-streamline-business-processes/). *Perfectial*.

1. **[^](#cite_ref-72)** [Distributed Ledger Technology: Hybrid Approach, Front-to-Back Designing and Changing Trade Processing Infrastructure, By Martin Walker, First published:, 24 OCT 2018 [ISBN](/source/ISBN_(identifier)) [978-1-78272-389-9](https://en.wikipedia.org/wiki/Special:BookSources/978-1-78272-389-9)]

1. **[^](#cite_ref-73)** Siraj Raval (18 July 2016). [*Decentralized Applications: Harnessing Bitcoin's Blockchain Technology*](https://books.google.com/books?id=fvywDAAAQBAJ&pg=PA22). O'Reilly Media, Inc. pp. 22–. [ISBN](/source/ISBN_(identifier)) [978-1-4919-2452-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4919-2452-5).

1. **[^](#cite_ref-74)** Niaz Chowdhury (16 August 2019). [*Inside Blockchain, Bitcoin, and Cryptocurrencies*](https://books.google.com/books?id=_HatDwAAQBAJ&pg=PA22). CRC Press. pp. 22–. [ISBN](/source/ISBN_(identifier)) [978-1-00-050770-6](https://en.wikipedia.org/wiki/Special:BookSources/978-1-00-050770-6).

1. **[^](#cite_ref-75)** [U.S. patent 10,438,290](https://patents.google.com/patent/US10438290)

1. **[^](#cite_ref-76)** Dib, Omar; Brousmiche, Kei-Leo; Durand, Antoine; Thea, Eric; Hamida, Elyes Ben. "Consortium Blockchains: Overview, Applications and Challenges". *International Journal on Advances in Telecommunications*. **11** (1/2): 51–64.

1. **[^](#cite_ref-77)** Katie Martin (27 September 2016). ["CLS dips into blockchain to net new currencies"](https://www.ft.com/content/c905b6fc-4dd2-3170-9d2a-c79cdbb24f16). *Financial Times*. [Archived](https://web.archive.org/web/20161109152317/https://www.ft.com/content/c905b6fc-4dd2-3170-9d2a-c79cdbb24f16) from the original on 9 November 2016. Retrieved 7 November 2016.

1. **[^](#cite_ref-78)** Castillo, Michael (16 April 2019). ["blockchain 50: Billion Dollar Babies"](https://www.forbes.com/sites/michaeldelcastillo/2019/04/16/blockchain-50-billion-dollar-babies/). *Financial Website*. SourceMedia. [Archived](https://web.archive.org/web/20210131145703/https://www.forbes.com/sites/michaeldelcastillo/2019/04/16/blockchain-50-billion-dollar-babies/) from the original on 31 January 2021. Retrieved 1 February 2021.

1. **[^](#cite_ref-79)** Davies, Steve (2018). ["PwC's Global Blockchain Survey"](https://www.pwc.com/gx/en/industries/technology/blockchain/blockchain-in-business.html). *Financial Website*. SourceMedia. [Archived](https://web.archive.org/web/20210125181107/https://www.pwc.com/gx/en/industries/technology/blockchain/blockchain-in-business.html) from the original on 25 January 2021. Retrieved 1 February 2021.

1. **[^](#cite_ref-80)** ["BBC Radio 4 - Things That Made the Modern Economy, Series 2, Blockchain"](https://www.bbc.co.uk/programmes/m0008b9v). *BBC*. [Archived](https://web.archive.org/web/20221014154012/https://www.bbc.co.uk/programmes/m0008b9v) from the original on 14 October 2022. Retrieved 14 October 2022.

1. ^ [***a***](#cite_ref-Narayanan_81-0) [***b***](#cite_ref-Narayanan_81-1) [***c***](#cite_ref-Narayanan_81-2) [***d***](#cite_ref-Narayanan_81-3) Narayanan, Arvind; Bonner, Joseph; Clark, Andrew; Felten, Edward W.; Kroll, Joshua A.; Wallach, Daniel S. (2016). *Bitcoin and Cryptocurrency Technologies: A Comprehensive Introduction*. Princeton University Press. [ISBN](/source/ISBN_(identifier)) [978-0-691-17169-2](https://en.wikipedia.org/wiki/Special:BookSources/978-0-691-17169-2).

1. ^ [***a***](#cite_ref-Iansiti_82-0) [***b***](#cite_ref-Iansiti_82-1) [***c***](#cite_ref-Iansiti_82-2) Iansiti, Marco; Lakhani, Karim R. (January 2017). ["The Truth About Blockchain"](https://hbr.org/2017/01/the-truth-about-blockchain). *Harvard Business Review*. 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.

1. **[^](#cite_ref-Raval_83-0)** Raval, Siraj (2016). *Decentralized Applications: Harnessing Bitcoin's Blockchain Technology*. O'Reilly Media, Inc. [ISBN](/source/ISBN_(identifier)) [978-1-4919-2452-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4919-2452-5). [OCLC](/source/OCLC_(identifier)) [968277125](https://search.worldcat.org/oclc/968277125).

1. **[^](#cite_ref-Catalini_84-0)** Catalini, Christian. ["How Blockchain Technology Will Impact the Digital Economy"](https://www.forbes.com/sites/forbestechcouncil/2017/05/08/how-blockchain-technology-will-impact-the-digital-economy/). *Forbes*. Retrieved 8 May 2017.

1. **[^](#cite_ref-85)** Tosato, Andrea; Odinet, Christopher K. (2025). ["Digital Assets and the Property Question"](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5151907). *Florida Law Review*. forthcoming. [SSRN](/source/SSRN_(identifier)) [5151907](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5151907).

1. **[^](#cite_ref-86)** Franco, Pedro (2014). [*Understanding Bitcoin: Cryptography, Engineering and Economics*](https://books.google.com/books?id=YHfCBwAAQBAJ). John Wiley & Sons. p. 9. [ISBN](/source/ISBN_(identifier)) [978-1-119-01916-9](https://en.wikipedia.org/wiki/Special:BookSources/978-1-119-01916-9). [Archived](https://web.archive.org/web/20170214204859/https://books.google.com/books?id=YHfCBwAAQBAJ) from the original on 14 February 2017. Retrieved 4 January 2017 – via Google Books.

1. **[^](#cite_ref-87)** Casey M (16 July 2018). *The impact of blockchain technology on finance : a catalyst for change*. London, UK. [ISBN](/source/ISBN_(identifier)) [978-1-912179-15-2](https://en.wikipedia.org/wiki/Special:BookSources/978-1-912179-15-2). [OCLC](/source/OCLC_(identifier)) [1059331326](https://search.worldcat.org/oclc/1059331326).{{[cite book](https://en.wikipedia.org/wiki/Template:Cite_book)}}: CS1 maint: location missing publisher ([link](https://en.wikipedia.org/wiki/Category:CS1_maint:_location_missing_publisher))

1. **[^](#cite_ref-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](/source/Doi_(identifier)):[10.1007/s10506-018-9223-3](https://doi.org/10.1007%2Fs10506-018-9223-3). [S2CID](/source/S2CID_(identifier)) [3663005](https://api.semanticscholar.org/CorpusID:3663005).

1. **[^](#cite_ref-89)** [*Virtual Currencies and Beyond: Initial Considerations*](https://www.imf.org/external/pubs/ft/sdn/2016/sdn1603.pdf) (PDF). IMF Discussion Note. International Monetary Fund. 2016. p. 23. [ISBN](/source/ISBN_(identifier)) [978-1-5135-5297-2](https://en.wikipedia.org/wiki/Special:BookSources/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.

1. **[^](#cite_ref-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](/source/Reason_(magazine))*. [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.

1. **[^](#cite_ref-91)** 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.

1. **[^](#cite_ref-92)** Arnold, Martin (23 September 2013). ["IBM in blockchain project with China UnionPay"](https://www.ft.com/content/719f4e7e-80e1-11e6-bc52-0c7211ef3198). *Financial Times*. [Archived](https://web.archive.org/web/20161109152822/https://www.ft.com/content/719f4e7e-80e1-11e6-bc52-0c7211ef3198) from the original on 9 November 2016. Retrieved 7 November 2016.

1. **[^](#cite_ref-93)** ["UBS leads team of banks working on blockchain settlement system"](https://www.reuters.com/article/us-banks-blockchain-ubs-idUSKCN10Z147). *[Reuters](/source/Reuters)*. 24 August 2016. [Archived](https://web.archive.org/web/20170519073429/http://www.reuters.com/article/us-banks-blockchain-ubs-idUSKCN10Z147) from the original on 19 May 2017. Retrieved 13 May 2017.

1. **[^](#cite_ref-94)** Kelly, Jemima (31 October 2017). ["Top banks and R3 build blockchain-based payments system"](https://www.reuters.com/article/us-banks-blockchain-r3/top-banks-and-r3-build-blockchain-based-payments-system-idUSKBN1D00ZB). *Reuters*. [Archived](https://web.archive.org/web/20180710011735/https://www.reuters.com/article/us-banks-blockchain-r3/top-banks-and-r3-build-blockchain-based-payments-system-idUSKBN1D00ZB) from the original on 10 July 2018. Retrieved 9 July 2018.

1. **[^](#cite_ref-95)** ["Are Token Assets the Securities of Tomorrow?"](https://www2.deloitte.com/content/dam/Deloitte/lu/Documents/technology/lu-token-assets-securities-tomorrow.pdf) (PDF). *Deloitte*. February 2019. [Archived](https://web.archive.org/web/20190623225917/https://www2.deloitte.com/content/dam/Deloitte/lu/Documents/technology/lu-token-assets-securities-tomorrow.pdf) (PDF) from the original on 23 June 2019. Retrieved 26 September 2019.

1. **[^](#cite_ref-96)** Hammerberg, Jeff (7 November 2021). ["Potential impact of blockchain on real estate"](https://www.washingtonblade.com/2021/11/07/potential-impact-of-blockchain-on-real-estate/). *[Washington Blade](/source/Washington_Blade)*. [Archived](https://web.archive.org/web/20211203060902/https://www.washingtonblade.com/2021/11/07/potential-impact-of-blockchain-on-real-estate/) from the original on 3 December 2021. Retrieved 3 December 2021.

1. ^ [***a***](#cite_ref-Verge-Valve_97-0) [***b***](#cite_ref-Verge-Valve_97-1) 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-ban-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-rust) from the original on 12 June 2022. Retrieved 8 November 2021.

1. ^ [***a***](#cite_ref-inverse_blockchain_games_98-0) [***b***](#cite_ref-inverse_blockchain_games_98-1) [***c***](#cite_ref-inverse_blockchain_games_98-2) Mozuch, Mo (29 April 2021). ["Blockchain Games Twist The Fundamentals Of Online Gaming"](https://www.inverse.com/gaming/blockchain-games-online-gaming). *[Inverse](/source/Inverse_(website))*. [Archived](https://web.archive.org/web/20220705221315/https://www.inverse.com/gaming/blockchain-games-online-gaming) from the original on 5 July 2022. Retrieved 4 November 2021.

1. **[^](#cite_ref-99)** ["Internet firms try their luck at blockchain games"](https://asiatimes.com/article/internet-firms-try-luck-blockchain-games/). *[Asia Times](/source/Asia_Times)*. 22 February 2018. [Archived](https://web.archive.org/web/20211118021414/https://asiatimes.com/2018/02/internet-firms-try-luck-blockchain-games/) from the original on 18 November 2021. Retrieved 28 February 2018.

1. **[^](#cite_ref-100)** 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-beanie-babies-selling-for-100k.html). [CNBC](/source/CNBC). [Archived](https://web.archive.org/web/20181120115903/https://www.cnbc.com/2017/12/06/meet-cryptokitties-the-new-digital-beanie-babies-selling-for-100k.html) from the original on 20 November 2018. Retrieved 28 February 2018.

1. **[^](#cite_ref-101)** 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](/source/Fortune_(magazine))*. [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.

1. **[^](#cite_ref-102)** ["CryptoKitties craze slows down transactions on Ethereum"](https://www.bbc.com/news/technology-42237162). 12 May 2017. [Archived](https://web.archive.org/web/20180112143517/http://www.bbc.com/news/technology-42237162) from the original on 12 January 2018.

1. **[^](#cite_ref-103)** 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](/source/Bloomberg_News)*. [Archived](https://web.archive.org/web/20220702015748/https://www.bloomberg.com/news/features/2021-10-30/what-is-the-metaverse-where-crypto-nft-capitalism-collide-in-games-like-axie) from the original on 2 July 2022. Retrieved 11 November 2021.

1. **[^](#cite_ref-104)** Orland, Kyle (4 November 2021). ["Big-name publishers see NFTs as a big part of gaming's future"](https://arstechnica.com/gaming/2021/11/big-name-publishers-see-nfts-as-a-big-part-of-gamings-future/). *[Ars Technica](/source/Ars_Technica)*. [Archived](https://web.archive.org/web/20220618031838/https://arstechnica.com/gaming/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.

1. ^ [***a***](#cite_ref-pcgamer_105-0) [***b***](#cite_ref-pcgamer_105-1) Knoop, Joseph (15 October 2021). ["Steam bans all games with NFTs or cryptocurrency"](https://www.pcgamer.com/steam-bans-nfts-cryptocurrencies-blockchain/). *PC Gamer*. [Archived](https://web.archive.org/web/20220717120921/https://www.pcgamer.com/steam-bans-nfts-cryptocurrencies-blockchain/) from the original on 17 July 2022. Retrieved 8 November 2021.

1. **[^](#cite_ref-106)** Clark, Mitchell (15 October 2021). ["Epic says it's 'open' to blockchain games after Steam bans them"](https://www.theverge.com/2021/10/15/22729050/epic-game-store-open-to-blockchain-cryptocurrency-nft-games). *[The Verge](/source/The_Verge)*. [Archived](https://web.archive.org/web/20220606191912/https://www.theverge.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.

1. **[^](#cite_ref-107)** Nash, Kim S. (14 July 2016). ["IBM Pushes Blockchain into the Supply Chain"](https://www.wsj.com/articles/ibm-pushes-blockchain-into-the-supply-chain-1468528824). *[The Wall Street Journal](/source/The_Wall_Street_Journal)*. [Archived](https://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.

1. **[^](#cite_ref-Wharton,_Gstettner_July_30,_2019_108-0)** Gstettner, Stefan (30 July 2019). ["How Blockchain Will Redefine Supply Chain Management"](https://knowledge.wharton.upenn.edu/article/blockchain-supply-chain-management). *Knowledge@Wharton*. The Wharton School of the University of Pennsylvania. Retrieved 28 August 2020.

1. **[^](#cite_ref-109)** 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/09/24/business/walmart-blockchain-lettuce.html) from the original on 5 December 2018. Retrieved 5 December 2018.

1. **[^](#cite_ref-110)** ["Blockchain basics: Utilizing blockchain to improve sustainable supply chains in fashion"](https://www.emerald.com/insight/content/doi/10.1108/SD-03-2021-0028/full/html). *Strategic Direction*. **37** (5): 25–27. 8 June 2021. [doi](/source/Doi_(identifier)):[10.1108/SD-03-2021-0028](https://doi.org/10.1108%2FSD-03-2021-0028). [ISSN](/source/ISSN_(identifier)) [0258-0543](https://search.worldcat.org/issn/0258-0543). [S2CID](/source/S2CID_(identifier)) [241322151](https://api.semanticscholar.org/CorpusID:241322151). [Archived](https://web.archive.org/web/20220527211047/https://www.emerald.com/insight/content/doi/10.1108/SD-03-2021-0028/full/html) from the original on 27 May 2022. Retrieved 30 April 2022.

1. **[^](#cite_ref-111)** Mercedes-Benz Group AG, [Once round the block, please!](https://group.mercedes-benz.com/innovation/blockchain-2.html) [Archived](https://web.archive.org/web/20230824152916/https://group.mercedes-benz.com/innovation/blockchain-2.html) 24 August 2023 at the [Wayback Machine](/source/Wayback_Machine), accessed 24 August 2023

1. **[^](#cite_ref-112)** Green, W., [Mercedes tests blockchain to improve supply chain transparency](https://www.cips.org/supply-management/news/2019/february/mercedes-tests-blockchain-to-improve-supply-chain-transparency/) [Archived](https://web.archive.org/web/20230824152932/https://www.cips.org/supply-management/news/2019/february/mercedes-tests-blockchain-to-improve-supply-chain-transparency/) 24 August 2023 at the [Wayback Machine](/source/Wayback_Machine), *Supply Management*, published 25 February 2019, accessed 24 August 2023

1. **[^](#cite_ref-113)** 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-be61-4b15-9eee-2c1a53c9b0e6) [Archived](https://web.archive.org/web/20230824152915/https://media.mercedes-benz.com/article/ff705327-be61-4b15-9eee-2c1a53c9b0e6) 24 August 2023 at the [Wayback Machine](/source/Wayback_Machine), published 30 January 2020, accessed 24 August 2023

1. ^ [***a***](#cite_ref-techrepublic_114-0) [***b***](#cite_ref-techrepublic_114-1) [***c***](#cite_ref-techrepublic_114-2) 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-failed-idea/). *TechRepublic*. [Archived](https://web.archive.org/web/20191119015118/https://www.techrepublic.com/article/blockchain-based-unstoppable-domains-is-a-rehash-of-a-failed-idea/) from the original on 19 November 2019. Retrieved 16 April 2020.

1. ^ [***a***](#cite_ref-orcutt_115-0) [***b***](#cite_ref-orcutt_115-1) Orcutt, Mike (4 June 2019). ["The ambitious plan to reinvent how websites get their names"](https://www.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/20220525234450/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.

1. **[^](#cite_ref-116)** 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.zdnet.com/article/opennic-drops-support-for-bit-domain-names-after-rampant-malware-abuse/) from the original on 13 April 2022. Retrieved 17 May 2021.

1. **[^](#cite_ref-117)** [".Kred launches as dual DNS and ENS domain"](https://domainnamewire.com/2020/03/06/kred-blockchain-domain/). *Domain Name Wire | Domain Name News*. 6 March 2020. [Archived](https://web.archive.org/web/20200308175635/https://domainnamewire.com/2020/03/06/kred-blockchain-domain/) from the original on 8 March 2020. Retrieved 16 April 2020.

1. **[^](#cite_ref-118)** 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"](https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=8269834), IEEE Vehicular Technology Magazine, 2018.

1. **[^](#cite_ref-119)** ["Blockchain Could Be Music's Next Disruptor"](http://fortune.com/2016/09/22/blockchain-music-disruption/). 22 September 2016. [Archived](https://web.archive.org/web/20160923180800/http://fortune.com/2016/09/22/blockchain-music-disruption/) from the original on 23 September 2016.

1. **[^](#cite_ref-120)** 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-transform-higher-education/) [Archived](https://web.archive.org/web/20210408214936/https://www.gartner.com/smarterwithgartner/4-ways-blockchain-will-transform-higher-education/) 8 April 2021 at the [Wayback Machine](/source/Wayback_Machine) Retrieved 27 March 2021.

1. **[^](#cite_ref-121)** ["ASCAP, PRS and SACEM Join Forces for Blockchain Copyright System"](http://www.musicbusinessworldwide.com/ascap-prs-sacem-join-forces-blockchain-copyright-system/). Music Business Worldwide. 9 April 2017. [Archived](https://web.archive.org/web/20170410050815/http://www.musicbusinessworldwide.com/ascap-prs-sacem-join-forces-blockchain-copyright-system/) from the original on 10 April 2017.

1. **[^](#cite_ref-122)** 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://web.archive.org/web/20180508040911/https://www.wired.co.uk/article/blockchain-disrupting-music-mycelia) from the original on 8 May 2018. Retrieved 8 May 2018.

1. **[^](#cite_ref-123)** Bartlett, Jamie (6 September 2015). ["Imogen Heap: saviour of the music industry?"](https://www.theguardian.com/music/2015/sep/06/imogen-heap-saviour-of-music-industry). *The Guardian*. [Archived](https://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.

1. **[^](#cite_ref-124)** 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.

1. **[^](#cite_ref-125)** 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?"](https://doi.org/10.3390%2Ffi10020020). *Future Internet*. **10** (2): 20. [doi](/source/Doi_(identifier)):[10.3390/fi10020020](https://doi.org/10.3390%2Ffi10020020).

1. **[^](#cite_ref-126)** ["Blockchain reaction: Tech companies plan for critical mass"](http://www.ey.com/Publication/vwLUAssets/ey-blockchain-reaction-tech-companies-plan-for-critical-mass/$FILE/ey-blockchain-reaction.pdf) (PDF). Ernst & Young. p. 5. [Archived](https://web.archive.org/web/20161114001423/http://www.ey.com/Publication/vwLUAssets/ey-blockchain-reaction-tech-companies-plan-for-critical-mass/$FILE/ey-blockchain-reaction.pdf) (PDF) from the original on 14 November 2016. Retrieved 13 November 2016.

1. **[^](#cite_ref-127)** Carrie Smith. [Blockchain Reaction: How library professionals are approaching blockchain technology and its potential impact.](https://americanlibrariesmagazine.org/2019/03/01/library-blockchain-reaction/) [Archived](https://web.archive.org/web/20190912044927/https://americanlibrariesmagazine.org/2019/03/01/library-blockchain-reaction/) 12 September 2019 at the [Wayback Machine](/source/Wayback_Machine) *American Libraries* March 2019.

1. **[^](#cite_ref-128)** ["IBM Blockchain based on Hyperledger Fabric from the Linux Foundation"](https://www.ibm.com/blockchain/hyperledger.html). *IBM.com*. 9 January 2018. [Archived](https://web.archive.org/web/20171207035925/https://www.ibm.com/blockchain/hyperledger.html) from the original on 7 December 2017. Retrieved 18 January 2018.

1. **[^](#cite_ref-129)** 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.org/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.

1. **[^](#cite_ref-130)** 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/20190203225703/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.

1. **[^](#cite_ref-131)** ["Why J.P. Morgan Chase Is Building a Blockchain on Ethereum"](http://fortune.com/2016/10/04/jp-morgan-chase-blockchain-ethereum-quorum/). *Fortune*. [Archived](https://web.archive.org/web/20170202033844/http://fortune.com/2016/10/04/jp-morgan-chase-blockchain-ethereum-quorum/) from the original on 2 February 2017. Retrieved 24 January 2017.

1. **[^](#cite_ref-132)** 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](/source/Bibcode_(identifier)):[2019RSERv.100..143A](https://ui.adsabs.harvard.edu/abs/2019RSERv.100..143A). [doi](/source/Doi_(identifier)):[10.1016/j.rser.2018.10.014](https://doi.org/10.1016%2Fj.rser.2018.10.014). [S2CID](/source/S2CID_(identifier)) [116422191](https://api.semanticscholar.org/CorpusID:116422191).

1. **[^](#cite_ref-133)** ["This Blockchain-Based Energy Platform Is Building A Peer-To-Peer Grid"](https://www.fastcompany.com/40479952/this-blockchain-based-energy-platform-is-building-a-peer-to-peer-grid). *Fast Company*. 16 October 2017. [Archived](https://web.archive.org/web/20200607085107/https://www.fastcompany.com/40479952/this-blockchain-based-energy-platform-is-building-a-peer-to-peer-grid) from the original on 7 June 2020. Retrieved 7 June 2020.

1. **[^](#cite_ref-134)** ["Blockchain-based microgrid gives power to consumers in New York"](https://www.newscientist.com/article/2079334-blockchain-based-microgrid-gives-power-to-consumers-in-new-york/). [Archived](https://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.

1. **[^](#cite_ref-135)** 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.1007/s11042-018-6801-z). *Multimedia Tools and Applications*. **78** (23): 32633–32657. [doi](/source/Doi_(identifier)):[10.1007/s11042-018-6801-z](https://doi.org/10.1007%2Fs11042-018-6801-z). [ISSN](/source/ISSN_(identifier)) [1380-7501](https://search.worldcat.org/issn/1380-7501). [S2CID](/source/S2CID_(identifier)) [254858308](https://api.semanticscholar.org/CorpusID:254858308).

1. **[^](#cite_ref-136)** Khan, Safiullah; Lee, Wai-Kong; Hwang, Seong Oun (2021). "AEchain: A lightweight blockchain for IoT applications". *IEEE Consumer Electronics Magazine*. **11** (2): 64–76. [doi](/source/Doi_(identifier)):[10.1109/MCE.2021.3060373](https://doi.org/10.1109%2FMCE.2021.3060373). [ISSN](/source/ISSN_(identifier)) [2162-2256](https://search.worldcat.org/issn/2162-2256). [S2CID](/source/S2CID_(identifier)) [234325223](https://api.semanticscholar.org/CorpusID:234325223).

1. **[^](#cite_ref-137)** 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%2FACCESS.2020.2972026). *IEEE Access*. **8**: 77642–77652. [Bibcode](/source/Bibcode_(identifier)):[2020IEEEA...877642M](https://ui.adsabs.harvard.edu/abs/2020IEEEA...877642M). [doi](/source/Doi_(identifier)):[10.1109/ACCESS.2020.2972026](https://doi.org/10.1109%2FACCESS.2020.2972026). [hdl](/source/Hdl_(identifier)):[10356/145745](https://hdl.handle.net/10356%2F145745). [ISSN](/source/ISSN_(identifier)) [2169-3536](https://search.worldcat.org/issn/2169-3536). [S2CID](/source/S2CID_(identifier)) [214205788](https://api.semanticscholar.org/CorpusID:214205788).

1. **[^](#cite_ref-138)** 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](/source/Doi_(identifier)):[10.1145/3211933.3211939](https://doi.org/10.1145%2F3211933.3211939). [ISBN](/source/ISBN_(identifier)) [978-1-4503-5838-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4503-5838-5). [S2CID](/source/S2CID_(identifier)) [169188795](https://api.semanticscholar.org/CorpusID:169188795).

1. **[^](#cite_ref-139)** 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://ieeexplore.ieee.org/document/8645638). *IBM Journal of Research and Development*. **63** (2/3): 4:1–4:12. [doi](/source/Doi_(identifier)):[10.1147/JRD.2019.2900651](https://doi.org/10.1147%2FJRD.2019.2900651). [ISSN](/source/ISSN_(identifier)) [0018-8646](https://search.worldcat.org/issn/0018-8646). [S2CID](/source/S2CID_(identifier)) [201109790](https://api.semanticscholar.org/CorpusID:201109790). [Archived](https://web.archive.org/web/20210111161010/https://ieeexplore.ieee.org/document/8645638) from the original on 11 January 2021. Retrieved 9 January 2021.

1. **[^](#cite_ref-140)** 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=Verisart&pg=PA159) from the original on 26 August 2023. Retrieved 8 July 2023 – via [Google Books](/source/Google_Books).

1. **[^](#cite_ref-141)** Brett, Charles (18 April 2018). ["EUIPO Blockathon Challenge 2018 -"](https://www.enterprisetimes.co.uk/2018/04/18/euipo-blockathon-challenge-2018/). *Enterprise Times*. [Archived](https://web.archive.org/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.

1. **[^](#cite_ref-142)** ["EUIPO Anti-Counterfeiting Blockathon Forum"](https://euipo.europa.eu/ohimportal/en/web/observatory/blockathon). [Archived](https://web.archive.org/web/20210111160351/https://euipo.europa.eu/ohimportal/en/web/observatory/blockathon) from the original on 11 January 2021. Retrieved 9 January 2021.

1. **[^](#cite_ref-143)** ["PT Industrieel Management"](https://web.archive.org/web/20220524211503/https://privacy.vakmedianet.nl/ptindustrieelmanagement/?ref=https%3A%2F%2Fwww.ptindustrieelmanagement.nl%2Fhse%2Fnieuws%2F2020%2F06%2Fnen-innoveert-certificatencheck-en-blockchain-1013171%3F_ga%3D2.11339894.336094574.1598975931-710406553.1598975931). *PT Industrieel Management*. Archived from [the original](https://privacy.vakmedianet.nl/ptindustrieelmanagement/?ref=https%3A%2F%2Fwww.ptindustrieelmanagement.nl%2Fhse%2Fnieuws%2F2020%2F06%2Fnen-innoveert-certificatencheck-en-blockchain-1013171%3F_ga%3D2.11339894.336094574.1598975931-710406553.1598975931) on 24 May 2022. Retrieved 1 September 2020.

1. **[^](#cite_ref-144)** ["China selects pilot zones, application areas for blockchain project"](https://www.reuters.com/world/china/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/world/china/china-selects-pilot-zones-application-areas-blockchain-project-2022-01-30/) from the original on 7 June 2022. Retrieved 7 June 2022.

1. **[^](#cite_ref-:9222_145-0)** Šimalčík, Matej (2023). "Rule by Law". In Kironska, Kristina; Turscanyi, Richard Q. (eds.). *Contemporary China: a New Superpower?*. [Routledge](/source/Routledge). [ISBN](/source/ISBN_(identifier)) [978-1-03-239508-1](https://en.wikipedia.org/wiki/Special:BookSources/978-1-03-239508-1).

1. **[^](#cite_ref-wegner_146-0)** Wegner, Peter (March 1996). ["Interoperability"](https://doi.org/10.1145%2F234313.234424). *ACM Computing Surveys*. **28**: 285–287. [doi](/source/Doi_(identifier)):[10.1145/234313.234424](https://doi.org/10.1145%2F234313.234424).

1. **[^](#cite_ref-survey_147-0)** Belchior, Rafael; Vasconcelos, André; Guerreiro, Sérgio; Correia, Miguel (May 2020). "A Survey on Blockchain Interoperability: Past, Present, and Future Trends". [arXiv](/source/ArXiv_(identifier)):[2005.14282](https://arxiv.org/abs/2005.14282) [[cs.DC](https://arxiv.org/archive/cs.DC)].

1. **[^](#cite_ref-ietf-draft_148-0)** Hardjono, T.; Hargreaves, M.; Smith, N. (2 October 2020). *An Interoperability Architecture for Blockchain Gateways* (Technical report). IETF. draft-hardjono-blockchain-interop-arch-00.

1. **[^](#cite_ref-149)** 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/ar2018e5.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.

1. **[^](#cite_ref-150)** 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/http://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.

1. **[^](#cite_ref-151)** Hiltzik, Michael (18 June 2018). ["Is this scathing report the death knell for bitcoin?"](https://latimes.com/business/hiltzik/la-fi-hiltzik-bitcoin-bank-20180618-story.html). *Los Angeles Times*. [Archived](https://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.

1. **[^](#cite_ref-152)** Ossinger, Joanna (2 February 2022). ["Polkadot Has Least Carbon Footprint, Crypto Researcher Says"](https://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.

1. **[^](#cite_ref-153)** 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-technology/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.

1. **[^](#cite_ref-154)** Criddle, Christina (February 20, 2021) ["Bitcoin consumes 'more electricity than Argentina'."](https://www.bbc.com/news/technology-56012952) [Archived](https://web.archive.org/web/20210501232045/https://www.bbc.com/news/technology-56012952) 1 May 2021 at the [Wayback Machine](/source/Wayback_Machine) BBC News. (Retrieved April 26, 2021.)

1. **[^](#cite_ref-155)** 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-change/) 11 July 2021 at the [Wayback Machine](/source/Wayback_Machine) Forbes.com. (Retrieved April 26, 2021.)

1. **[^](#cite_ref-156)** Rowlatt, Justin (February 27, 2021) ["How Bitcoin's vast energy use could burst its bubble."](https://www.bbc.com/news/science-environment-56215787) [Archived](https://web.archive.org/web/20210430171538/https://www.bbc.com/news/science-environment-56215787) 30 April 2021 at the [Wayback Machine](/source/Wayback_Machine) BBC News. (Retrieved April 26, 2021.)

1. **[^](#cite_ref-157)** Sorkin, Andrew et al. (March 9, 2021) ["Why Bill Gates Is Worried About Bitcoin."](https://www.nytimes.com/2021/03/09/business/dealbook/bill-gates-bitcoin.html) [Archived](https://web.archive.org/web/20210430172327/https://www.nytimes.com/2021/03/09/business/dealbook/bill-gates-bitcoin.html) 30 April 2021 at the [Wayback Machine](/source/Wayback_Machine) *New York Times*. (Retrieved April 25, 2021.)

1. **[^](#cite_ref-158)** Illing, Sean (11 April 2018). ["Why Bitcoin is bullshit, explained by an expert"](https://www.vox.com/conversations/2018/4/11/17206018/bitcoin-blockchain-cryptocurrency-weaver). *[Vox](/source/Vox_(website))*. [Archived](https://web.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.

1. **[^](#cite_ref-159)** Weaver, Nicholas (20 April 2018). ["Blockchains and Cryptocurrencies: Burn It With Fire"](https://www.youtube.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.

1. **[^](#cite_ref-160)** Köhler, Susanne; Pizzol, Massimo (20 November 2019). ["Life Cycle Assessment of Bitcoin Mining"](https://doi.org/10.1021%2Facs.est.9b05687). *Environmental Science & Technology*. **53** (23): 13598–13606. [Bibcode](/source/Bibcode_(identifier)):[2019EnST...5313598K](https://ui.adsabs.harvard.edu/abs/2019EnST...5313598K). [doi](/source/Doi_(identifier)):[10.1021/acs.est.9b05687](https://doi.org/10.1021%2Facs.est.9b05687). [PMID](/source/PMID_(identifier)) [31746188](https://pubmed.ncbi.nlm.nih.gov/31746188).

1. **[^](#cite_ref-161)** Stoll, Christian; Klaaßen, Lena; Gallersdörfer, Ulrich (2019). ["The Carbon Footprint of Bitcoin"](https://doi.org/10.1016%2Fj.joule.2019.05.012). *Joule*. **3** (7): 1647–1661. [Bibcode](/source/Bibcode_(identifier)):[2019Joule...3.1647S](https://ui.adsabs.harvard.edu/abs/2019Joule...3.1647S). [doi](/source/Doi_(identifier)):[10.1016/j.joule.2019.05.012](https://doi.org/10.1016%2Fj.joule.2019.05.012).

1. **[^](#cite_ref-162)** ["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.

1. **[^](#cite_ref-163)** Cuen, Leigh (March 21, 2021) ["The debate about cryptocurrency and data consumption."](https://techcrunch.com/2021/03/21/the-debate-about-cryptocurrency-and-energy-consumption/) [Archived](https://web.archive.org/web/20211110201818/https://techcrunch.com/2021/03/21/the-debate-about-cryptocurrency-and-energy-consumption/) 10 November 2021 at the [Wayback Machine](/source/Wayback_Machine) TechCrunch. (Retrieved April 26, 2021.)

1. **[^](#cite_ref-164)** ["The Ethereum Merge: What It Is and Why It Is Important | Insights | Holland & Knight"](https://www.hklaw.com/en/insights/publications/2022/09/the-ethereum-merge-what-it-is-and-why-it-is-important). *www.hklaw.com*. Retrieved 5 December 2024.

1. **[^](#cite_ref-165)** 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](/source/Doi_(identifier)):[10.2139/ssrn.2822729](https://doi.org/10.2139%2Fssrn.2822729). [S2CID](/source/S2CID_(identifier)) [157317501](https://api.semanticscholar.org/CorpusID:157317501). [SSRN](/source/SSRN_(identifier)) [2822729](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2822729). [Archived](https://web.archive.org/web/20211230155958/http://www.netinst.org/Catalini_16-02.pdf) (PDF) from the original on 30 December 2021. Retrieved 22 December 2021.

1. **[^](#cite_ref-166)** 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-11e7-99bd-13beb0903fa3). *Financial Times*. [Archived](https://web.archive.org/web/20220126153853/https://www.ft.com/content/f736b04e-3708-11e7-99bd-13beb0903fa3) from the original on 26 January 2022. Retrieved 26 January 2022.

1. **[^](#cite_ref-167)** Janssen, Marijn; Weerakkody, Vishanth; Ismagilova, Elvira; Sivarajah, Uthayasankar; Irani, Zahir (2020). ["A framework for analysing blockchain technology adoption: Integrating institutional, market and technical factors"](http://resolver.tudelft.nl/uuid:5e48b1c9-f4d3-4f59-9831-529e0d7c91d6). *International Journal of Information Management*. **50**. Elsevier: 302–309. [doi](/source/Doi_(identifier)):[10.1016/j.ijinfomgt.2019.08.012](https://doi.org/10.1016%2Fj.ijinfomgt.2019.08.012). [hdl](/source/Hdl_(identifier)):[10454/17358](https://hdl.handle.net/10454%2F17358). [S2CID](/source/S2CID_(identifier)) [203129604](https://api.semanticscholar.org/CorpusID:203129604).

1. **[^](#cite_ref-168)** 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](/source/Doi_(identifier)):[10.1007/978-3-030-10549-5_42](https://doi.org/10.1007%2F978-3-030-10549-5_42), [hdl](/source/Hdl_(identifier)):[2066/200787](https://hdl.handle.net/2066%2F200787), [ISBN](/source/ISBN_(identifier)) [978-3-030-10548-8](https://en.wikipedia.org/wiki/Special:BookSources/978-3-030-10548-8), [S2CID](/source/S2CID_(identifier)) [57662305](https://api.semanticscholar.org/CorpusID:57662305)

1. **[^](#cite_ref-169)** 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](/source/Doi_(identifier)):[10.1145/3396743.3396750](https://doi.org/10.1145%2F3396743.3396750). [ISBN](/source/ISBN_(identifier)) [9781450377065](https://en.wikipedia.org/wiki/Special:BookSources/9781450377065). [S2CID](/source/S2CID_(identifier)) [218982506](https://api.semanticscholar.org/CorpusID:218982506). Archived from [the original](https://doi.org/10.1145/3396743.3396750) on 5 June 2020 – via ACM Digital Library.

1. **[^](#cite_ref-170)** Hsieh, Ying-Ying; Vergne, Jean-Philippe; Anderson, Philip; Lakhani, Karim; [Reitzig, Markus](/source/Markus_Reitzig) (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](/source/Doi_(identifier)):[10.1186/s41469-019-0041-1](https://doi.org/10.1186%2Fs41469-019-0041-1). [hdl](/source/Hdl_(identifier)):[10044/1/88332](https://hdl.handle.net/10044%2F1%2F88332). [ISSN](/source/ISSN_(identifier)) [2245-408X](https://search.worldcat.org/issn/2245-408X).

1. **[^](#cite_ref-171)** Felin, Teppo; Lakhani, Karim (2018). "What Problems Will You Solve With Blockchain?". *MIT Sloan Management Review*.

1. **[^](#cite_ref-172)** 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](/source/Doi_(identifier)):[10.17705/1jais.00518](https://doi.org/10.17705%2F1jais.00518). [S2CID](/source/S2CID_(identifier)) [69365923](https://api.semanticscholar.org/CorpusID:69365923).

1. **[^](#cite_ref-173)** 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/blockchains-guide-information.html). *The New York Times*. [Archived](https://web.archive.org/web/20201027183122/https://www.nytimes.com/2018/06/27/business/dealbook/blockchains-guide-information.html) from the original on 27 October 2020. Retrieved 24 October 2020.

1. **[^](#cite_ref-174)** Hugh Rooney, Brian Aiken, & Megan Rooney. (2017). Q&A. Is Internal Audit Ready for Blockchain? *Technology Innovation Management Review*, (10), 41.

1. **[^](#cite_ref-175)** Richard C. Kloch, Jr Simon J. Little, *Blockchain and Internal Audit* Internal Audit Foundation, 2019 [ISBN](/source/ISBN_(identifier)) [978-1-63454-065-0](https://en.wikipedia.org/wiki/Special:BookSources/978-1-63454-065-0)

1. **[^](#cite_ref-176)** Alexander, A. (2019). The audit, transformed: New advancements in technology are reshaping this core service. *Accounting Today*, 33(1)

1. **[^](#cite_ref-177)** Franco, Pedro (21 October 2014). [*Understanding Bitcoin: Cryptography, Engineering and Economics*](https://books.google.com/books?id=erMQBQAAQBAJ&dq=testnet+blockchain&pg=PA74). [John Wiley & Sons](/source/John_Wiley_%26_Sons). p. 74. [ISBN](/source/ISBN_(identifier)) [978-1-119-01914-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-119-01914-5).

1. **[^](#cite_ref-178)** Badr, Bellaj; Horrocks, Richard; Wu, Xun (Brian) (30 November 2018). [*Blockchain By Example: A developer's guide to creating decentralized applications using Bitcoin, Ethereum, and Hyperledger*](https://books.google.com/books?id=ci59DwAAQBAJ&q=testnet%20free%20funding%20faucet). Packt Publishing Ltd. p. 19. [ISBN](/source/ISBN_(identifier)) [978-1-78847-391-0](https://en.wikipedia.org/wiki/Special:BookSources/978-1-78847-391-0).

1. **[^](#cite_ref-179)** Hu, Yao-Chieh; Lee, Ting-Ting; Chatzopoulos, Dimitris; Hui, Pan (15 June 2018). ["Hierarchical interactions between Ethereum smart contracts across Testnets"](https://doi.org/10.1145/3211933.3211935). *Proceedings of the 1st Workshop on Cryptocurrencies and Blockchains for Distributed Systems*. Association for Computing Machinery. pp. 7–13. [doi](/source/Doi_(identifier)):[10.1145/3211933.3211935](https://doi.org/10.1145%2F3211933.3211935). [ISBN](/source/ISBN_(identifier)) [9781450358385](https://en.wikipedia.org/wiki/Special:BookSources/9781450358385). [S2CID](/source/S2CID_(identifier)) [134234291](https://api.semanticscholar.org/CorpusID:134234291).

1. **[^](#cite_ref-180)** Canellis, David (27 September 2018). ["Bitcoin hard fork nightmare becomes reality after testnet splits"](https://thenextweb.com/news/bitcoin-testnet-chainsplit-fork). *TNW | Hardfork*. Retrieved 10 October 2022.

1. **[^](#cite_ref-181)** ["What is a Mainnet?"](https://www.investopedia.com/terms/m/mainnet.asp). *Investopedia*. Retrieved 2 February 2025.

1. **[^](#cite_ref-182)** ["Mainnet Launch: What It Means"](https://decrypt.co/resources/what-is-a-mainnet). *Decrypt*. Retrieved 2 February 2025.

1. **[^](#cite_ref-183)** Extance, Andy (30 September 2015). ["The future of cryptocurrencies: Bitcoin and beyond"](https://doi.org/10.1038%2F526021a). *Nature*. **526** (7571): 21–23. [Bibcode](/source/Bibcode_(identifier)):[2015Natur.526...21E](https://ui.adsabs.harvard.edu/abs/2015Natur.526...21E). [doi](/source/Doi_(identifier)):[10.1038/526021a](https://doi.org/10.1038%2F526021a). [ISSN](/source/ISSN_(identifier)) [0028-0836](https://search.worldcat.org/issn/0028-0836). [OCLC](/source/OCLC_(identifier)) [421716612](https://search.worldcat.org/oclc/421716612). [PMID](/source/PMID_(identifier)) [26432223](https://pubmed.ncbi.nlm.nih.gov/26432223).

1. **[^](#cite_ref-184)** *Ledger (eJournal / eMagazine, 2015)*. OCLC. [OCLC](/source/OCLC_(identifier)) [910895894](https://search.worldcat.org/oclc/910895894).

1. **[^](#cite_ref-185)** Hertig, Alyssa (15 September 2015). ["Introducing Ledger, the First Bitcoin-Only Academic Journal"](https://www.vice.com/en/article/introducing-ledger-the-first-bitcoin-only-academic-journal/). *Motherboard*. [Archived](https://web.archive.org/web/20170110172807/http://motherboard.vice.com/read/introducing-ledger-the-first-bitcoin-only-academic-journal) from the original on 10 January 2017. Retrieved 10 January 2017.

1. **[^](#cite_ref-186)** 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](/source/Doi_(identifier)):[10.5195/LEDGER.2015.1](https://doi.org/10.5195%2FLEDGER.2015.1) (inactive 1 July 2025). [ISSN](/source/ISSN_(identifier)) [2379-5980](https://search.worldcat.org/issn/2379-5980). [OCLC](/source/OCLC_(identifier)) [910895894](https://search.worldcat.org/oclc/910895894). [Archived](https://web.archive.org/web/20150922190603/http://ledger.pitt.edu/ojs/public/journals/1/AuthorGuide.pdf) (PDF) from the original on 22 September 2015. Retrieved 11 January 2017.{{[cite journal](https://en.wikipedia.org/wiki/Template:Cite_journal)}}: CS1 maint: DOI inactive as of July 2025 ([link](https://en.wikipedia.org/wiki/Category:CS1_maint:_DOI_inactive_as_of_July_2025))

1. **[^](#cite_ref-187)** ["Why is Git not considered a "block chain"?"](https://stackoverflow.com/questions/46192377/why-is-git-not-considered-a-block-chain). *Stack Overflow*. Retrieved 2 April 2025.

## 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/BlockchainPaper.pdf) (PDF) (Report). Sutardja Center for Entrepreneurship & Technology Technical Report. University of California, Berkeley. [Archived](https://web.archive.org/web/20170320054252/http://scet.berkeley.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/web/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](/source/SSRN_(identifier)) [2849251](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2849251).

- Mazonka, Oleg (29 December 2016). ["Blockchain: Simple Explanation"](https://web.archive.org/web/20170807214027/http://jrxv.net/x/16/chain.pdf) (PDF). *Journal of Reference*. Archived from [the original](http://jrxv.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](/source/ISBN_(identifier)) [978-0-241-23785-4](https://en.wikipedia.org/wiki/Special:BookSources/978-0-241-23785-4). [OCLC](/source/OCLC_(identifier)) [971395169](https://search.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. Nara, Nara, Japan: IEEE. pp. 168–75. [doi](/source/Doi_(identifier)):[10.1109/ICDCSW.2016.28](https://doi.org/10.1109%2FICDCSW.2016.28). [ISBN](/source/ISBN_(identifier)) [978-1-5090-3686-8](https://en.wikipedia.org/wiki/Special:BookSources/978-1-5090-3686-8). [ISSN](/source/ISSN_(identifier)) [2332-5666](https://search.worldcat.org/issn/2332-5666).

- Raval, Siraj (2016). [*Decentralized Applications: Harnessing Bitcoin's Blockchain Technology*](http://shop.oreilly.com/product/0636920039334.do?sortby=publicationDate). Oreilly. [ISBN](/source/ISBN_(identifier)) [9781491924549](https://en.wikipedia.org/wiki/Special:BookSources/9781491924549). [Archived](https://web.archive.org/web/20170530201714/http://shop.oreilly.com/product/0636920039334.do?sortby=publicationDate) from the original on 30 May 2017. Retrieved 2 May 2017.

- Bashir, Imran (2017). *Mastering Blockchain*. Packt Publishing, Ltd. [ISBN](/source/ISBN_(identifier)) [978-1-78712-544-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-78712-544-5). [OCLC](/source/OCLC_(identifier)) [967373845](https://search.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** 2. [doi](/source/Doi_(identifier)):[10.1186/s13635-019-0085-3](https://doi.org/10.1186%2Fs13635-019-0085-3). [S2CID](/source/S2CID_(identifier)) [84837476](https://api.semanticscholar.org/CorpusID:84837476).

- D. Puthal, N. Malik, [S. P. Mohanty](/source/Saraju_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_Blockchain.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-sector-a-review-of-the-landscape-and-opportunities)", *Harvard Law School of Corporate Governance*, posted on Friday, January 28, 2022

## External links

Wikiversity has learning resources about ***[Blockchain](https://en.wikiversity.org/wiki/Blockchain)***

- Media related to [Blockchain](https://commons.wikimedia.org/wiki/Category:Blockchain) at Wikimedia Commons

v t e Cryptocurrencies Technology Blockchain Cryptocurrency tumbler Cryptocurrency wallet Cryptographic hash function Decentralized exchange Decentralized finance Distributed ledger Fork Lightning Network MetaMask Smart contract Web3 Consensus mechanisms Proof of authority Proof of space Proof of stake Proof of work Proof of work currencies SHA-256-based Bitcoin Bitcoin Cash Counterparty LBRY MazaCoin Namecoin Peercoin Titcoin Ethash-based Ethereum (1.0) Ethereum Classic Scrypt-based Auroracoin Bitconnect Coinye Dogecoin Litecoin Equihash-based Bitcoin Gold Zcash RandomX-based Monero X11-based Dash Petro Other AmbaCoin Firo IOTA Nervos Network Primecoin Verge Vertcoin Proof of stake currencies Algorand Avalanche Cardano EOS.IO Ethereum (2.0) Gridcoin ICON Injective Kin Nxt Peercoin Polkadot Solana Steem Tezos TON ERC-20 tokens Augur Aventus Basic Attention Token Chainlink Kin KodakCoin Minds Polygon Shiba Inu The DAO TRON Stablecoins Dai Diem Pax Terra Tether USD Coin Meme coins CAR Chill Guy Coinye Dogecoin LGBcoin Libra Melania Pawthereum Trump Other currencies Chia Filecoin HBAR (Hashgraph) Helium Luna MobileCoin Nano NEO SafeMoon Stellar WhopperCoin XRP Ledger Inactive currencies BitConnect Coinye KodakCoin OneCoin Petro Crypto service companies Hyperledger IQ.Wiki Initiative Q Related topics $Libra cryptocurrency scandal 2023 United States banking crisis Airdrop Bitcoin in El Salvador BitLicense Blockchain game Complementary currency Crypto-anarchy Cryptocurrency and crime Bankruptcy of FTX Trial of Sam Bankman-Fried Scam center Pig butchering scam Cryptocurrencies in Europe Cryptocurrencies in Puerto Rico Cryptocurrency bubble Cryptocurrency in Australia Cryptocurrency in Nigeria Cryptocurrency scams Digital currency Decentralized autonomous organization Decentralized application Distributed ledger technology law Double-spending Environmental impact Initial coin offering Initial exchange offering List of cryptocurrencies Non-fungible token Token money United States Strategic Bitcoin Reserve Virtual currency Voiceverse NFT plagiarism scandal Category Commons List

v t e Bitcoin History Economics Politics Legal status Environmental effects People Gavin Andresen Andreas Antonopoulos Brian Armstrong Adam Back Vitalik Buterin Wences Casares Luke Dashjr Wei Dai Tim Draper Hal Finney Mark Karpelès Dave Kleiman Dadvan Yousuf Satoshi Nakamoto Keonne Rodriguez Charlie Shrem Nick Szabo Zhimin Qian Ross Ulbricht Roger Ver Erik Voorhees Paolo Ardoino Cody Wilson Cameron Winklevoss Tyler Winklevoss Craig Wright Jihan Wu Lists List of bitcoin companies List of bitcoin forks List of bitcoin organizations List of people in blockchain technology Technologies Bitcoin network Blockchain Cryptocurrency Cryptocurrency wallet Bitcoin ATM ECDSA Lightning Network P2P Proof of work SegWit SHA-2 Forks Client Bitcoin Unlimited Currency Bitcoin Cash Bitcoin Gold Bitcoin Satoshi Vision History Bitcoin scalability problem History of bitcoin 2013 Bitcoin buried in Newport landfill 2018 cryptocurrency crash 2018 Bitcoin bomb threats 2020 Twitter account hijacking Movies The Rise and Rise of Bitcoin (2014 film) Deep Web (2015 film) Legal entities (not exchanges) Bitcoin Foundation Bitcoin Magazine BitGo Bitmain Canaan Creative CoinDesk GHash.io Nuri Strategy Bitcoin in El Salvador Bitcoin Law Bitcoin Beach Bitcoin City Category Commons

v t e Database management systems Types Object-oriented comparison Relational list comparison Key–value Column-oriented list Document-oriented Wide-column store Graph NoSQL NewSQL In-memory list Multi-model comparison Cloud Blockchain-based database Concepts Database ACID Armstrong's axioms Codd's 12 rules CAP theorem CRUD Null Candidate key Foreign key PACELC design principle Superkey Surrogate key Unique key Objects Relation table column row View Transaction Transaction log Trigger Index Stored procedure Cursor Partition Components Concurrency control Data dictionary JDBC XQJ ODBC Query language Query optimizer Query rewriting system Query plan Functions Administration Query optimization Replication Sharding Related topics Database models Database normalization Database storage Distributed database Federated database system Referential integrity Relational algebra Relational calculus Relational model Object–relational database Transaction processing List of SQL software and tools Category Outline

Authority control databases International FAST National United States France BnF data Czech Republic Latvia Israel Other Yale LUX

---
Adapted from the Wikipedia article [Blockchain](https://en.wikipedia.org/wiki/Blockchain) by Wikipedia contributors ([contributor history](https://en.wikipedia.org/wiki/Blockchain?action=history)). Available under [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). Changes may have been made.
