Blockchain

Extracted and modified from ikipedia under CC-BY-SA 3.0



A blockchain, [1] [2] [3] originally block chain, [4] [5] is a growing list of records, called blocks, that are linked using cryptography. [1] [6] Each block contains a cryptographic hash of the previous block, [6] a timestamp, and transaction data (generally represented as a Merkle tree).

By design, a blockchain is 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". [7] For use as a distributed ledger, a blockchain is typically managed by a peer-to-peer network collectively adhering to a protocol for inter-node communication and validating new blocks. Once recorded, the data in any given block cannot be altered retroactively without alteration of all subsequent blocks, which requires consensus of the network majority. Although blockchain records are not unalterable, blockchains may be considered secure by design and exemplify a distributed computing system with high Byzantine fault tolerance. Decentralized consensus has therefore been claimed with a blockchain. [8]

Blockchain was invented by a person (or group of people) using the name Satoshi Nakamoto in 2008 to serve as the public transaction ledger of the cryptocurrency bitcoin. [1] The identity of Satoshi Nakamoto remains unknown to date. The invention of the blockchain for bitcoin made it the first digital currency to solve the double-spending problem without the need of a trusted authority or central server. The bitcoin design has inspired other applications, [1] [3] and blockchains that are readable by the public are widely used by cryptocurrencies. Blockchain is considered a type of payment rail. [9] Private blockchains have been proposed for business use. Sources such as Computerworld called the marketing of such blockchains without a proper security model "snake oil". [10]

The first work on a cryptographically secured chain of blocks was described in 1991 by Stuart Haber and W. Scott Stornetta. [6] [11] They wanted to implement a system where document timestamps could not be tampered with. In 1992, Haber, Stornetta, and Dave Bayer incorporated Merkle trees to the design, which improved its efficiency by allowing several document certificates to be collected into one block. [6] [12]

The first blockchain was conceptualized by a person (or group of people) known as Satoshi Nakamoto in 2008. Nakamoto improved the design in an important way using a Hashcash-like method to timestamp blocks without requiring them to be signed by a trusted party and introducing a difficulty parameter to stabilize rate with which blocks are added to the chain. [6] The design was implemented the following year by Nakamoto as a core component of the cryptocurrency bitcoin, where it serves as the public ledger for all transactions on the network. [1]

In August 2014, the bitcoin blockchain file size, containing records of all transactions that have occurred on the network, reached 20 GB (gigabytes). [13] In January 2015, the size had grown to almost 30 GB, and from January 2016 to January 2017, the bitcoin blockchain grew from 50 GB to 100 GB in size. The ledger size had exceeded 200 GiB by early 2020. [14]

The words block and chain were used separately in Satoshi Nakamoto's original paper, but were eventually popularized as a single word, blockchain, by 2016.

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

In May 2018, Gartner found that only 1% of CIOs indicated any kind of blockchain adoption within their organisations, and only 8% of CIOs were in the short-term "planning or [looking at] active experimentation with blockchain". [16]

A blockchain is a decentralized, distributed, and oftentimes public, digital ledger consisting of records called blocks that is used to record transactions across many computers so that any involved block cannot be altered retroactively, without the alteration of all subsequent blocks. [1] [17] This allows the participants to verify and audit transactions independently and relatively inexpensively. [18] A blockchain database is managed autonomously using a peer-to-peer network and a distributed timestamping server. They are authenticated by mass collaboration powered by collective self-interests. [19] Such a design facilitates robust workflow where participants' uncertainty regarding data security is marginal. The use of a blockchain removes the characteristic of infinite reproducibility from a digital asset. It confirms that each unit of value was transferred only once, solving the long-standing problem of double spending. A blockchain has been described as a value-exchange protocol. [20] A blockchain can maintain title rights because, when properly set up to detail the exchange agreement, it provides a record that compels offer and acceptance.

Blocks hold batches of valid transactions that are hashed and encoded into a Merkle tree. [1] Each block includes the cryptographic hash of the prior block in the blockchain, linking the two. The linked blocks form a chain. [1] This iterative process confirms the integrity of the previous block, all the way back to the original genesis block. [21]

Sometimes separate blocks can be produced concurrently, creating a temporary fork. In addition to a secure hash-based history, any blockchain has a specified algorithm for scoring different versions of the history so that one with a higher score can be selected over others. Blocks not selected for inclusion in the chain are called orphan blocks. [21] 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 the 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 [22] as more blocks are built on top of it, eventually becoming very low. [1] [23] :ch. 08 [24] For example, bitcoin uses a proof-of-work system, where the chain with the most cumulative proof-of-work is considered the valid one by the network. There are a number of methods that can be used to demonstrate a sufficient level of computation. Within a blockchain the computation is carried out redundantly rather than in the traditional segregated and parallel manner. [25]

The block time is the average time it takes for the network to generate one extra block in the blockchain. Some blockchains create a new block as frequently as every five seconds. By the time of block completion, the included data becomes verifiable. In cryptocurrency, this is practically when the transaction takes place, so a shorter block time means faster transactions. The block time for Ethereum is set to between 14 and 15 seconds, while for bitcoin it is on average 10 minutes. [26]

A hard fork is a rule change such that the software validating according to the old rules will see the blocks produced according to the new rules as invalid. In case of a hard fork, all nodes meant to work in accordance with the new rules need to upgrade their software.

By storing data across its peer-to-peer network, the blockchain eliminates a number of risks that come with data being held centrally. [1] The decentralized blockchain may use ad hoc message passing and distributed networking.

Peer-to-peer blockchain networks lack centralized points of vulnerability that computer crackers can exploit; likewise, it has no central point of failure. Blockchain security methods include the use of public-key cryptography. [4] :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. [1]

Every node in a decentralized system has a copy of the blockchain. Data quality is maintained by massive database replication [8] and computational trust. No centralized "official" copy exists and no user is "trusted" more than any other. [4] Transactions are broadcast to the network using software. Messages are delivered on a best-effort basis. Mining nodes validate transactions, [21] add them to the block they are building, and then broadcast the completed block to other nodes. [23] :ch. 08 Blockchains use various time-stamping schemes, such as proof-of-work, to serialize changes. [28] Alternative consensus methods include proof-of-stake. [21] Growth of a decentralized blockchain is accompanied by the risk of centralization because the computer resources required to process larger amounts of data become more expensive. [29]

Open blockchains are more user-friendly than some traditional ownership records, which, while open to the public, still require physical access to view. Because all early blockchains were permissionless, controversy has arisen over the blockchain definition. An issue in this ongoing debate is whether a private system with verifiers tasked and authorized (permissioned) by a central authority should be considered a blockchain. [30] [31] [32] [33] [34] Proponents of permissioned or private chains argue that the term "blockchain" may be applied to any data structure that batches data into time-stamped blocks. These blockchains serve as a distributed version of multiversion concurrency control (MVCC) in databases. [35] 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. [36] :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. [30] [32] Nikolai Hampton of Computerworld said that "many in-house blockchain solutions will be nothing more than cumbersome databases," and "without a clear security model, proprietary blockchains should be eyed with suspicion." [10] [37]

The great advantage to an open, permissionless, or public, blockchain network is that guarding against bad actors is not required and no access control is needed. [22] This means that applications can be added to the network without the approval or trust of others, using the blockchain as a transport layer. [22]

Bitcoin and other cryptocurrencies currently secure their blockchain by requiring new entries to include a proof of work. To prolong the blockchain, bitcoin uses Hashcash puzzles. While Hashcash was designed in 1997 by Adam Back, the original idea was first proposed by Cynthia Dwork and Moni Naor and Eli Ponyatovski in their 1992 paper "Pricing via Processing or Combatting Junk Mail".

In 2016, venture capital investment for blockchain-related projects was weakening in the USA but increasing in China. [38] Bitcoin and many other cryptocurrencies use open (public) blockchains. As of April 2018 [update] , bitcoin has the highest market capitalization.

Permissioned blockchains use an access control layer to govern who has access to the network. [39] In contrast to public blockchain networks, validators on private blockchain networks are vetted by the network owner. They do not rely on anonymous nodes to validate transactions nor do they benefit from the network effect. [citation needed] Permissioned blockchains can also go by the name of 'consortium' blockchains. [citation needed]

Nikolai Hampton pointed out in Computerworld that "There is also no need for a '51 percent' attack on a private blockchain, as the private blockchain (most likely) already controls 100 percent of all block creation resources. If you could attack or damage the blockchain creation tools on a private corporate server, you could effectively control 100 percent of their network and alter transactions however you wished." [10] This has a set of particularly profound adverse implications during a financial crisis or debt crisis like the financial crisis of 2007–08, where politically powerful actors may make decisions that favor some groups at the expense of others, [40] [41] and "the bitcoin blockchain is protected by the massive group mining effort. It's unlikely that any private blockchain will try to protect records using gigawatts of computing power — it's time consuming and expensive." [10] 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." [10]

The analysis of public blockchains has become increasingly important with the popularity of bitcoin, Ethereum, litecoin and other cryptocurrencies. [42] A blockchain, if it is public, provides anyone who wants access to observe and analyse the chain data, given one has the know-how. The process of understanding and accessing the flow of crypto has been an issue for many cryptocurrencies, crypto-exchanges and banks. [43] [44] The reason for this is accusations of blockchain enabled cryptocurrencies enabling illicit dark market trade of drugs, weapons, money laundering etc. [45] A common belief has been that cryptocurrency is private and untraceable, thus leading many actors to use it for illegal purposes. This is changing and now specialised tech-companies provide blockchain tracking services, making crypto exchanges, law-enforcement and banks more aware of what is happening with crypto funds and fiat crypto exchanges. The development, some argue, has led criminals to prioritise use of new cryptos such as Monero. [46] [47] [48] The question is about public accessibility of blockchain data and the personal privacy of the very same data. It is a key debate in cryptocurrency and ultimately in blockchain. [49]

Blockchain technology can be integrated into multiple areas. The primary use of blockchains today is as a distributed ledger for cryptocurrencies, most notably bitcoin. There are a few operational products maturing from proof of concept by late 2016. [38] Businesses have been thus far reluctant to place blockchain at the core of the business structure. [50]

Most cryptocurrencies use blockchain technology to record transactions. For example, the bitcoin network and Ethereum network are both based on blockchain. On 8 May 2018 Facebook confirmed that it would open a new blockchain group [51] which would be headed by David Marcus, who previously was in charge of Messenger. Facebook's planned cryptocurrency platform, Libra, was formally announced on June 18, 2019. [52] [53]

Blockchain-based smart contracts are proposed contracts that can be partially or fully executed or enforced without human interaction. [54] One of the main objectives of a smart contract is automated escrow. An IMF staff discussion reported that smart contracts based on blockchain technology might reduce moral hazards and optimize the use of contracts in general. But "no viable smart contract systems have yet emerged." Due to the lack of widespread use their legal status is unclear. [55] [56]

Major portions of the financial industry are implementing distributed ledgers for use in banking, [57] [58] [59] and according to a September 2016 IBM study, this is occurring faster than expected. [60]

Banks are interested in this technology because it has potential to speed up back office settlement systems. [61]

Banks such as UBS are opening new research labs dedicated to blockchain technology in order to explore how blockchain can be used in financial services to increase efficiency and reduce costs. [62] [63]

Berenberg, a German bank, believes that blockchain is an "overhyped technology" that has had a large number of "proofs of concept", but still has major challenges, and very few success stories. [64]

In December 2018, Bitwala launched Europe's first regulated blockchain banking solution that enables users to manage both their bitcoin and euro deposits in one place with the safety and convenience of a German bank account. The bank account is hosted by the Berlin-based solarisBank. [65]

The blockchain has also given rise to Initial coin offerings (ICOs) as well as a new category of digital asset called Security Token Offerings (STOs), also sometimes referred to as Digital Security Offerings (DSOs). [66] STO/DSOs may be conducted privately or on a public, regulated stock exchange and are used to tokenize traditional assets such as company shares as well as more innovative ones like intellectual property, real estate, art, or individual products. A number of companies are active in this space providing services for compliant tokenization, private STOs, and public STOs.

A blockchain game CryptoKitties, launched in November 2017. [67] The game made headlines in December 2017 when a cryptokitty character - an in-game virtual pet - was sold for more than US$100,000. [68] CryptoKitties illustrated scalability problems for games on Ethereum when it created significant congestion on the Ethereum network with about 30% of all Ethereum transactions being for the game. [69]

CryptoKitties also demonstrated how blockchains can be used to catalog game assets (digital assets). [70]

Blockchain is also being used in peer-to-peer energy trading. [71] [72] [73]

There are a number of efforts and industry organizations working to employ blockchains in supply chain management.

Everledger is one of the inaugural clients of IBM's blockchain-based tracking service. [74]

Walmart and IBM are running a trial to use a blockchain-backed system for supply chain monitoring — all nodes of the blockchain are administered by Walmart and are located on the IBM cloud. [75]

Hyperledger Grid develops open components for blockchain supply chain solutions. [76] [77]

Blockchain domain names are another use of blockchain on the rise. Unlike regular domain names, blockchain domain names are entirely an asset of the domain owner and can only be controlled by the owner through a private key. [78] Blockchain domains, pave way to having sites that are more resistant to censorship and thus enabling freedom of speech as there are no authorities or individuals that can intervene on controlling a domain except the private key holder. [79] [80] Again, they are a better option to replace the traditional cryptocurrency wallet addresses as one can easily memorize the domain and use it for receiving payments. [81]

Organizations providing blockchain domain name services include Unstoppable Domains, Namecoin and Ethereum Name Services. [82]

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 [83] or musicians. [84] In 2017, IBM partnered with ASCAP and PRS for Music to adopt blockchain technology in music distribution. [85] Imogen Heap's Mycelia service has also been proposed as blockchain-based alternative "that gives artists more control over how their songs and associated data circulate among fans and other musicians." [86] [87]

New distribution methods are available for the insurance industry such as peer-to-peer insurance, parametric insurance and microinsurance following the adoption of blockchain. [88] [89] The sharing economy and IoT are also set to benefit from blockchains because they involve many collaborating peers. [90] Online voting is another application of the blockchain. [91] [92] The use of blockchain in libraries is being studied with a grant from the U.S. Institute of Museum and Library Services. [93]

Other designs include:

Currently, there are at least four types of blockchain networks — public blockchains, private blockchains, consortium blockchains and hybrid blockchains.

A public blockchain has absolutely no access restrictions. Anyone with an Internet connection can send transactions to it as well as become a validator (i.e., participate in the execution of a consensus protocol). [97] [self-published source?] Usually, such networks offer economic incentives for those who secure them and utilize some type of a Proof of Stake or Proof of Work algorithm.

Some of the largest, most known public blockchains are the bitcoin blockchain and the Ethereum blockchain.

A private blockchain is permissioned. [39] One cannot join it unless invited by the network administrators. Participant and validator access is restricted.

A hybrid blockchain has a combination of centralized and decentralized features. [98] The exact workings of the chain can vary based on which portions of centralization decentralization are used.

A sidechain is a designation for a blockchain ledger that runs in parallel to a primary blockchain. [99] [100] Entries from the primary blockchain (where said entries typically represent digital assets) can be linked to and from the sidechain; this allows the sidechain to otherwise operate independently of the primary blockchain (e.g., by using an alternate means of record keeping, alternate consensus algorithm, etc.). [101]

In October 2014, the MIT Bitcoin Club, with funding from MIT alumni, provided undergraduate students at the Massachusetts Institute of Technology access to $100 of bitcoin. The adoption rates, as studied by Catalini and Tucker (2016), revealed that when people who typically adopt technologies early are given delayed access, they tend to reject the technology. [102]

Motivations for adopting blockchain technology have been investigated by researchers. Janssen et al. provided a framework for analysis. [103] Koens & Poll pointed out that adoption could be heavily driven by non-technical factors. [104] Based on behavioral models, Li [105] discussed the differences between adoption at individual level and at organization level.

Scholars in business and management have started studying the role of blockchains to support collaboration. [106] [107] 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. [108] Contrary to contracts, blockchains do not directly rely on the legal system to enforce agreements. In addition, contrary to the use of relational norms, blockchains do not require trust or direct connections between collaborators.

The need for internal audit to provide effective oversight of organizational efficiency will require a change in the way that information is accessed in new formats. [109] Blockchain adoption requires a framework to identify the risk of exposure associated with transactions using blockchain. The 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. [110] The American Institute of Certified Public Accountants has outlined new roles for auditors as a result of blockchain. [111]

The Bank for International Settlements has criticized the public proof-of-work blockchains for high energy consumption. [114] [112] [115] Nicholas Weaver, of the International Computer Science Institute at the University of California, Berkeley examines blockchain's online security, and the energy efficiency of proof-of-work public blockchains, and in both cases finds it grossly inadequate. [113] [116] The 31—45 TWh of electricity used for bitcoin in 2018 produced 17—22.9 MtCO2. [117] [118]

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. [119] The journal covers aspects of mathematics, computer science, engineering, law, economics and philosophy that relate to cryptocurrencies such as bitcoin. [120] [121]

The journal encourages authors to digitally sign a file hash of submitted papers, which are then timestamped into the bitcoin blockchain. Authors are also asked to include a personal bitcoin address in the first page of their papers for non-repudiation purposes. [122]




References

  1. "Blockchains: The great chain of being sure about things". The Economist. 31 October 2015. Archived 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. ^
  2. Morris, David Z. (15 May 2016). "Leaderless, Blockchain-Based Venture Capital Fund Raises $100 Million, And Counting". Fortune. Archived from the original on 21 May 2016. Retrieved 23 May 2016. ^
  3. Popper, Nathan (21 May 2016). "A Venture Fund With Plenty of Virtual Capital, but No Capitalist". The New York Times. Archived from the original on 22 May 2016. Retrieved 23 May 2016. ^
  4. Brito, Jerry; Castillo, Andrea (2013). Bitcoin: A Primer for Policymakers (PDF) (Report). Fairfax, VA: Mercatus Center, George Mason University. Archived (PDF) from the original on 21 September 2013. Retrieved 22 October 2013. ^
  5. Trottier, Leo (18 June 2016). "original-bitcoin" (self-published code collection). github. Archived from the original on 17 April 2016. Retrieved 18 June 2016. This is a historical repository of Satoshi Nakamoto's original bit coin sourcecode ^
  6. Narayanan, Arvind; Bonneau, Joseph; Felten, Edward; Miller, Andrew; Goldfeder, Steven (2016). Bitcoin and cryptocurrency technologies: a comprehensive introduction. Princeton: Princeton University Press. ISBN 978-0-691-17169-2. ^
  7. Iansiti, Marco; Lakhani, Karim R. (January 2017). "The Truth About Blockchain". Harvard Business Review. Harvard University. Archived 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. ^
  8. Raval, Siraj (2016). "What Is a Decentralized Application?". Decentralized Applications: Harnessing Bitcoin's Blockchain Technology. O'Reilly Media, Inc. pp. 1–2. ISBN 978-1-4919-2452-5. OCLC 968277125. Retrieved 6 November 2016 – via Google Books. ^
  9. "Blockchain may finally disrupt payments from Micropayments to credit cards to SWIFT". dailyfintech.com. 10 February 2018. Retrieved 18 November 2018. ^
  10. Hampton, Nikolai (5 September 2016). "Understanding the blockchain hype: Why much of it is nothing more than snake oil and spin". Computerworld. Archived from the original on 6 September 2016. Retrieved 5 September 2016. ^
  11. Haber, Stuart; Stornetta, W. Scott (January 1991). "How to time-stamp a digital document". Journal of Cryptology. 3 (2): 99–111. CiteSeerX 10.1.1.46.8740. doi:10.1007/bf00196791. ^
  12. Bayer, Dave; Haber, Stuart; Stornetta, W. Scott (March 1992). Improving the Efficiency and Reliability of Digital Time-Stamping. Sequences. 2. pp. 329–334. CiteSeerX 10.1.1.71.4891. doi:10.1007/978-1-4613-9323-8_24. ISBN 978-1-4613-9325-2. ^
  13. Nian, Lam Pak; Chuen, David LEE Kuo (2015). "A Light Touch of Regulation for Virtual Currencies". In Chuen, David LEE Kuo (ed.). Handbook of Digital Currency: Bitcoin, Innovation, Financial Instruments, and Big Data. Academic Press. p. 319. ISBN 978-0-12-802351-8. ^
  14. "Blockchain Size". ^
  15. "The future of blockchain in 8 charts". Raconteur. 27 June 2016. Archived from the original on 2 December 2016. Retrieved 3 December 2016. ^
  16. "Hype Killer - Only 1% of Companies Are Using Blockchain, Gartner Reports | Artificial Lawyer". Artificial Lawyer. 4 May 2018. Retrieved 22 May 2018. ^
  17. Armstrong, Stephen (7 November 2016). "Move over Bitcoin, the blockchain is only just getting started". Wired. Archived from the original on 8 November 2016. Retrieved 9 November 2016. ^
  18. Catalini, Christian; Gans, Joshua S. (23 November 2016). "Some Simple Economics of the Blockchain" (PDF). doi:10.2139/ssrn.2874598. SSRN 2874598. Cite journal requires |journal= (help) ^
  19. Tapscott, Don; Tapscott, Alex (8 May 2016). "Here's Why Blockchains Will Change the World". Fortune. Archived from the original on 13 November 2016. Retrieved 16 November 2016. ^
  20. Bheemaiah, Kariappa (January 2015). "Block Chain 2.0: The Renaissance of Money". Wired. Archived from the original on 14 November 2016. Retrieved 13 November 2016. ^
  21. Bhaskar, Nirupama Devi; Chuen, David LEE Kuo (2015). "Bitcoin Mining Technology". Handbook of Digital Currency. pp. 45–65. doi:10.1016/B978-0-12-802117-0.00003-5. ISBN 978-0-12-802117-0. ^
  22. Antonopoulos, Andreas (20 February 2014). "Bitcoin security model: trust by computation". Radar. O'Reilly. Archived from the original on 31 October 2016. Retrieved 19 November 2016. ^
  23. Antonopoulos, Andreas M. (2014). Mastering Bitcoin. Unlocking Digital Cryptocurrencies. Sebastopol, CA: O'Reilly Media. ISBN 978-1449374037. Archived from the original on 1 December 2016. Retrieved 3 November 2015. ^
  24. Nakamoto, Satoshi (October 2008). "Bitcoin: A Peer-to-Peer Electronic Cash System" (PDF). bitcoin.org. Archived (PDF) from the original on 20 March 2014. Retrieved 28 April 2014. ^
  25. "Permissioned Blockchains". Explainer. Monax. Archived from the original on 20 November 2016. Retrieved 20 November 2016. ^
  26. 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: 246–251. doi:10.1109/iciip47207.2019.8985677. ISBN 978-1-7281-0899-5. ^
  27. Lee, Timothy (12 March 2013). "Major glitch in Bitcoin network sparks sell-off; price temporarily falls 23%". Arstechnica. Archived from the original on 22 April 2013. Retrieved 25 February 2018. ^
  28. Kopfstein, Janus (12 December 2013). "The Mission to Decentralize the Internet". The New Yorker. Archived 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.' ^
  29. Gervais, Arthur; Karame, Ghassan O.; Capkun, Vedran; Capkun, Srdjan. "Is Bitcoin a Decentralized Currency?". InfoQ. InfoQ & IEEE computer society. Archived from the original on 10 October 2016. Retrieved 11 October 2016. ^
  30. Voorhees, Erik (30 October 2015). "It's All About the Blockchain". Money and State. Archived from the original on 1 November 2015. Retrieved 2 November 2015. ^
  31. Reutzel, Bailey (13 July 2015). "A Very Public Conflict Over Private Blockchains". PaymentsSource. New York, NY: SourceMedia, Inc. Archived from the original on 21 April 2016. Retrieved 18 June 2016. ^
  32. Casey, Michael J. (15 April 2015). "Moneybeat/BitBeat: Blockchains Without Coins Stir Tensions in Bitcoin Community". The Wall Street Journal. Archived from the original on 10 June 2016. Retrieved 18 June 2016. ^
  33. "The 'Blockchain Technology' Bandwagon Has A Lesson Left To Learn". dinbits.com. 3 November 2015. Archived from the original on 29 June 2016. Retrieved 18 June 2016. ^
  34. DeRose, Chris (26 June 2015). "Why the Bitcoin Blockchain Beats Out Competitors". American Banker. Archived from the original on 30 March 2016. Retrieved 18 June 2016. ^
  35. Greenspan, Gideon (19 July 2015). "Ending the bitcoin vs blockchain debate". multichain.com. Archived from the original on 8 June 2016. Retrieved 18 June 2016. ^
  36. Tapscott, Don; Tapscott, Alex (May 2016). The Blockchain Revolution: How the Technology Behind Bitcoin is Changing Money, Business, and the World. ISBN 978-0-670-06997-2. ^
  37. Barry, Levine (11 June 2018). "A new report bursts the blockchain bubble". MarTech. Retrieved 13 July 2018. ^
  38. Ovenden, James. "Blockchain Top Trends In 2017". The Innovation Enterprise. Archived from the original on 30 November 2016. Retrieved 4 December 2016. ^
  39. Bob Marvin (30 August 2017). "Blockchain: The Invisible Technology That's Changing the World". PC MAG Australia. ZiffDavis, LLC. Archived from the original on 25 September 2017. Retrieved 25 September 2017. ^
  40. Salsman, R.M. (19 September 2013). "The Financial Crisis Was A Failure Of Government, Not Free Markets". Forbes. Retrieved 8 May 2018. ^
  41. O'Keeffe, M.; Terzi, A. (7 July 2015). "The political economy of financial crisis policy". Bruegel. Retrieved 8 May 2018. ^
  42. Dr Garrick Hileman & Michel Rauchs (2017). "GLOBAL CRYPTOCURRENCY BENCHMARKING STUDY" (PDF). Cambridge Centre for Alternative Finance. University of Cambridge Judge Business School – via crowdfundinsider. ^
  43. Raymaekers, Wim (March 2015). "Cryptocurrency Bitcoin: Disruption, challenges and opportunities". www.ingentaconnect.com. Retrieved 15 May 2019. ^
  44. "Why Crypto Companies Still Can't Open Checking Accounts". 3 March 2019. Retrieved 4 June 2019. ^
  45. Christian Brenig, Rafael Accorsi & Günter Müller (Spring 2015). "Economic Analysis of Cryptocurrency Backed Money Laundering". Association for Information Systems AIS Electronic Library (AISeL). ^
  46. Greenberg, Andy (25 January 2017). "Monero, the Drug Dealer's Cryptocurrency of Choice, Is on Fire". Wired. ISSN 1059-1028. Retrieved 15 May 2019. ^
  47. Orcutt, Mike. "It's getting harder to hide money in Bitcoin". MIT Technology Review. Retrieved 15 May 2019. ^
  48. "Explainer: 'Privacy coin' Monero offers near total anonymity". Reuters. 15 May 2019. Retrieved 15 May 2019. ^
  49. "An Untraceable Currency? Bitcoin Privacy Concerns - FinTech Weekly". FinTech Magazine Article. 7 April 2018. Retrieved 15 May 2019. ^
  50. Katie Martin (27 September 2016). "CLS dips into blockchain to net new currencies". Financial Times. Archived from the original on 9 November 2016. Retrieved 7 November 2016. ^
  51. Wagner, Kurt (8 May 2018). "Facebook is making its biggest executive shuffle in company history". Recode. Retrieved 25 September 2018. ^
  52. Isaac, Mike; Popper, Nathaniel (18 June 2019). "Facebook Plans Global Financial System Based on Cryptocurrency". The New York Times. Retrieved 18 June 2019. ^
  53. Constine, Josh (18 June 2019). "Facebook announces Libra cryptocurrency: All you need to know". TechCrunch. Retrieved 19 June 2019. ^
  54. Franco, Pedro (2014). Understanding Bitcoin: Cryptography, Engineering and Economics. John Wiley & Sons. p. 9. ISBN 978-1-119-01916-9. Archived from the original on 14 February 2017. Retrieved 4 January 2017 – via Google Books. ^
  55. Governatori, Guido; Idelberger, Florian; Milosevic, Zoran; Riveret, Regis; Sartor, Giovanni; Xu, Xiwei (2018). "On legal contracts, imperative and declarative smart contracts, and blockchain systems". Artificial Intelligence and Law. 26 (4): 33. doi:10.1007/s10506-018-9223-3. ^
  56. Virtual Currencies and Beyond: Initial Considerations (PDF). IMF Discussion Note. International Monetary Fund. 2016. p. 23. ISBN 978-1-5135-5297-2. Archived (PDF) from the original on 14 April 2018. Retrieved 19 April 2018. ^
  57. Epstein, Jim (6 May 2016). "Is Blockchain Technology a Trojan Horse Behind Wall Street's Walled Garden?". Reason. Archived 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. ^
  58. Redrup, Yolanda (29 June 2016). "ANZ backs private blockchain, but won't go public". Australia Financial Review. Archived from the original on 3 July 2016. Retrieved 7 July 2016. Blockchain networks can be either public or private. Public blockchains have many users and there are no controls over who can read, upload or delete the data and there are an unknown number of pseudonymous participants. In comparison, private blockchains also have multiple data sets, but there are controls in place over who can edit data and there are a known number of participants. ^
  59. Shah, Rakesh (1 March 2018). "How Can The Banking Sector Leverage Blockchain Technology?". PostBox Communications. PostBox Communications Blog. Archived from the original on 17 March 2018. Banks preferably have a notable interest in utilizing Blockchain Technology because it is a great source to avoid fraudulent transactions. Blockchain is considered hassle free, because of the extra level of security it offers. ^
  60. Kelly, Jemima (28 September 2016). "Banks adopting blockchain 'dramatically faster' than expected: IBM". Reuters. Reuters. Archived from the original on 28 September 2016. Retrieved 28 September 2016. ^
  61. Arnold, Martin (23 September 2013). "IBM in blockchain project with China UnionPay". Financial Times. Archived from the original on 9 November 2016. Retrieved 7 November 2016. ^
  62. "UBS leads team of banks working on blockchain settlement system". Reuters. 24 August 2016. Archived from the original on 19 May 2017. Retrieved 13 May 2017. ^
  63. "Cryptocurrency Blockchain". capgemini.com. Archived from the original on 5 December 2016. Retrieved 13 May 2017. ^
  64. Kelly, Jemima (31 October 2017). "Top banks and R3 build blockchain-based payments system". Reuters. Retrieved 9 July 2018. ^
  65. Köln, Nils Wischmeyer (2018). "Bank mit Kette". Sueddeutsche Zeitung (in German). ISSN 0174-4917. Retrieved 29 April 2019. ^
  66. https://www2.deloitte.com/content/dam/Deloitte/lu/Documents/technology/lu-token-assets-securities-tomorrow.pdf ^
  67. "Internet firms try their luck at blockchain games". Asia Times. 22 February 2018. Retrieved 28 February 2018. ^
  68. Evelyn Cheng (6 December 2017). "Meet CryptoKitties, the $100,000 digital beanie babies epitomizing the cryptocurrency mania". CNBC. Retrieved 28 February 2018. ^
  69. Laignee Barron (13 February 2018). "CryptoKitties is Going Mobile. Can Ethereum Handle the Traffic?". Fortune. Retrieved 30 September 2018. ^
  70. "CryptoKitties craze slows down transactions on Ethereum". 12 May 2017. Archived from the original on 12 January 2018. ^
  71. Blockchain technology in the energy sector: A systematic review of challenges and opportunities ^
  72. This Blockchain-Based Energy Platform Is Building A Peer-To-Peer Grid ^
  73. Blockchain-based microgrid gives power to consumers in New York ^
  74. Nash, Kim S. (14 July 2016). "IBM Pushes Blockchain into the Supply Chain". The Wall Street Journal. Archived from the original on 18 July 2016. Retrieved 24 July 2016. ^
  75. Corkery, Michael; Popper, Nathaniel (24 September 2018). "From Farm to Blockchain: Walmart Tracks Its Lettuce". The New York Times. Retrieved 5 December 2018. ^
  76. 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". ComputerWorld. Retrieved 8 March 2019. ^
  77. Hyperledger (22 January 2019). "Announcing Hyperledger Grid, a new project to help build and deliver supply chain solutions!". Retrieved 8 March 2019. ^
  78. "Blockchain Domains: What Are They and How Are They Implemented? | Hacker Noon". hackernoon.com. Retrieved 16 April 2020. ^
  79. "Unstoppable Domains and the End of Internet Censorship". HedgeTrade Blog. 22 April 2019. Retrieved 16 April 2020. ^
  80. "Commentary: Blockchain Could Be the Savior of Free Speech". Fortune. Retrieved 16 April 2020. ^
  81. ".Kred launches as dual DNS and ENS domain". Domain Name Wire | Domain Name News. 6 March 2020. Retrieved 16 April 2020. ^
  82. S, James; August 28, ers in Networking on; 2019; Pst, 7:26 Am. "Blockchain-based Unstoppable Domains is a rehash of a failed idea". TechRepublic. Retrieved 16 April 2020.CS1 maint: numeric names: authors list (link) ^
  83. 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", IEEE Vehicular Technology Magazine, 2018. ^
  84. "Blockchain Could Be Music's Next Disruptor". 22 September 2016. Archived from the original on 23 September 2016. ^
  85. "ASCAP, PRS and SACEM Join Forces for Blockchain Copyright System". Music Business Worldwide. 9 April 2017. Archived from the original on 10 April 2017. ^
  86. Burchardi, K.; Harle, N. (20 January 2018). "The blockchain will disrupt the music business and beyond". Wired UK. Retrieved 8 May 2018. ^
  87. Bartlett, Jamie (6 September 2015). "Imogen Heap: saviour of the music industry?". The Guardian. Archived from the original on 22 April 2016. Retrieved 18 June 2016. ^
  88. Wang, Kevin; Safavi, Ali (29 October 2016). "Blockchain is empowering the future of insurance". Tech Crunch. AOL Inc. Archived from the original on 7 November 2016. Retrieved 7 November 2016. ^
  89. 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?". Future Internet. 10 (2): 20. doi:10.3390/fi10020020. ^
  90. "Blockchain reaction: Tech companies plan for critical mass" (PDF). Ernst & Young. p. 5. Archived (PDF) from the original on 14 November 2016. Retrieved 13 November 2016. ^
  91. "Online Voting Platform FAQ's". Follow My Vote. Archived from the original on 27 October 2016. Retrieved 7 December 2016. ^
  92. Chandra, Prabhul. "Reimagining Democracy: What if votes were a crypto-currency?". democracywithoutborders.org. Archived from the original on 5 February 2018. Retrieved 5 February 2018. ^
  93. Carrie Smith. Blockchain Reaction: How library professionals are approaching blockchain technology and its potential impact. American Libraries March 2019. ^
  94. "IBM Blockchain based on Hyperledger Fabric from the Linux Foundation". IBM.com. 9 January 2018. Archived from the original on 7 December 2017. Retrieved 18 January 2018. ^
  95. "Why J.P. Morgan Chase Is Building a Blockchain on Ethereum". Fortune. Archived from the original on 2 February 2017. Retrieved 24 January 2017. ^
  96. Melanie Swan (2015). Blockchain: Blueprint for a New Economy. O'Reilly Media. pp. 38–39. ISBN 9781491920473. ^
  97. "How Companies Can Leverage Private Blockchains to Improve Efficiency and Streamline Business Processes". Perfectial. ^
  98. [Distributed Ledger Technology: Hybrid Approach, Front-to-Back Designing and Changing Trade Processing Infrastructure, By Martin Walker, First published:, 24 OCT 2018 ISBN 978-1-78272-389-9] ^
  99. Siraj Raval (18 July 2016). Decentralized Applications: Harnessing Bitcoin's Blockchain Technology. "O'Reilly Media, Inc.". pp. 22–. ISBN 978-1-4919-2452-5. ^
  100. Niaz Chowdhury (16 August 2019). Inside Blockchain, Bitcoin, and Cryptocurrencies. CRC Press. pp. 22–. ISBN 978-1-00-050770-6. ^
  101. U.S. Patent 10,438,290 ^
  102. Catalini, Christian; Tucker, Catherine E. (11 August 2016). "Seeding the S-Curve? The Role of Early Adopters in Diffusion". doi:10.2139/ssrn.2822729. SSRN 2822729. Cite journal requires |journal= (help) ^
  103. Janssen, Marijn; Weerakkody, Vishanth; Ismagilova, Elvira; Sivarajah, Uthayasankar; Irani, Zahir (2020). "A framework for analysing blockchain technology adoption: Integrating institutional, market and technical factors". International Journal of Information Management. Elsevier. 50: 302–309. doi:10.1016/j.ijinfomgt.2019.08.012. ^
  104. Koens, Tommy; Poll, Erik (2019), Euro-Par 2018: Parallel Processing Workshops, Lecture Notes in Computer Science, 11339, pp. 535–546, doi:10.1007/978-3-030-10549-5_42, ISBN 978-3-030-10548-8 Missing or empty |title= (help); |chapter= ignored (help) ^
  105. Li, Jerry (2020), "Blockchain technology adoption: Examining the Fundamental Drivers", Proceedings of the 2nd International Conference on Management Science and Industrial Engineering, ACM Publication, April 2020, pp. 253–260. https://dl.acm.org/doi/abs/10.1145/3396743.3396750 ^
  106. Hsieh, Ying-Ying; Vergne, Jean-Philippe; Anderson, Philip; Lakhani, Karim; Reitzig, Markus (12 February 2019). "Correction to: Bitcoin and the rise of decentralized autonomous organizations". Journal of Organization Design. 8 (1): 3. doi:10.1186/s41469-019-0041-1. ISSN 2245-408X. ^
  107. Felin, Teppo; Lakhani, Karim (2018). "What Problems Will You Solve With Blockchain?". MIT Sloan Management Review. ^
  108. Lumineau, Fabrice; Wang, Wenqian; Schilke, Oliver (2020). "Blockchain Governance—A New Way of Organizing Collaborations?". Organization Science. ^
  109. Hugh Rooney, Brian Aiken, & Megan Rooney. (2017). Q&A. Is Internal Audit Ready for Blockchain? Technology Innovation Management Review, (10), 41. ^
  110. Richard C. Kloch, Jr Simon J. Little, Blockchain and Internal Audit Internal Audit Foundation, 2019 ISBN 978-1-63454-065-0 ^
  111. Alexander, A. (2019). The audit, transformed: New advancements in technology are reshaping this core service. Accounting Today, 33(1) ^
  112. Janda, Michael (18 June 2018). "Cryptocurrencies like bitcoin cannot replace money, says Bank for International Settlements". ABC (Australia). Retrieved 18 June 2018. ^
  113. Illing, Sean (11 April 2018). "Why Bitcoin is bullshit, explained by an expert". Vox. Retrieved 17 July 2018. ^
  114. Hyun Song Shin (June 2018). "Chapter V. Cryptocurrencies: looking beyond the hype" (PDF). BIS 2018 Annual Economic Report. Bank for International Settlements. Retrieved 19 June 2018. Put in the simplest terms, the quest for decentralised trust has quickly become an environmental disaster. ^
  115. Hiltzik, Michael (18 June 2018). "Is this scathing report the death knell for bitcoin?". Los Angeles Times. Retrieved 19 June 2018. ^
  116. Weaver, Nicholas. "Blockchains and Cryptocurrencies: Burn It With Fire". YouTube video. Berkeley School of Information. Retrieved 17 July 2018. ^
  117. Köhler, Susanne; Pizzol, Massimo (20 November 2019). "Life Cycle Assessment of Bitcoin Mining". Environmental Science & Technology. 53 (23): 13598–13606. Bibcode:2019EnST...5313598K. doi:10.1021/acs.est.9b05687. PMID 31746188. ^
  118. Stoll, Christian; Klaaßen, Lena; Gallersdörfer, Ulrich (2019). "The Carbon Footprint of Bitcoin". Joule. 3 (7): 1647–1661. doi:10.1016/j.joule.2019.05.012. ^
  119. Extance, Andy (30 September 2015). "The future of cryptocurrencies: Bitcoin and beyond". Nature. 526 (7571): 21–23. Bibcode:2015Natur.526...21E. doi:10.1038/526021a. ISSN 0028-0836. OCLC 421716612. PMID 26432223. ^
  120. Ledger (eJournal / eMagazine, 2015). OCLC. OCLC 910895894. ^
  121. Hertig, Alyssa (15 September 2015). "Introducing Ledger, the First Bitcoin-Only Academic Journal". Motherboard. Archived from the original on 10 January 2017. Retrieved 10 January 2017. ^
  122. Rizun, Peter R.; Wilmer, Christopher E.; Burley, Richard Ford; Miller, Andrew (2015). "How to Write and Format an Article for Ledger" (PDF). Ledger. 1 (1): 1–12. doi:10.5195/LEDGER.2015.1 (inactive 26 May 2020). ISSN 2379-5980. OCLC 910895894. Archived (PDF) from the original on 22 September 2015. Retrieved 11 January 2017. ^