Diving Into DAG-Based Blockchain Systems

Total Page:16

File Type:pdf, Size:1020Kb

Diving Into DAG-Based Blockchain Systems SoK: Diving into DAG-based Blockchain Systems Qin Wangy,x, Jiangshan Yuz, Shiping Chenx, Yang Xiangy y Swinburne University of Technology, Melbourne, Australia. z Monash University, Melbourne, Australia x CSIRO, Data61, Sydney, Australia ABSTRACT scalability, cannot perfectly co-exist in a blockchain system. For Blockchain plays an important role in cryptocurrency markets example, one major hindrance to Nakamoto Consensus (NC) [1] and technology services. However, limitations on high latency and is the reduced security with an increased block generation rate. low scalability retard their adoptions and applications in classic The security of NC’s longest chain wins rule requires that honest designs. Reconstructed blockchain systems have been proposed nodes should be aware of other’s blocks soon after the block’s pro- to avoid the consumption of competitive transactions caused by duction. If the block creation rate exceeds the propagation time, linear sequenced blocks. These systems, instead, structure trans- concurrent blocks increase the possibility of forks happening. To actions/blocks in the form of Directed Acyclic Graph (DAG) and mitigate the bottleneck of performance, multiple approaches have consequently re-build upper layer components including consensus, been proposed from different angles. incentives, etc. The promise of DAG-based blockchain systems is to Potential Solutions. These approaches include the methods on enable fast confirmation (complete transactions within million sec- sharding technique [11][12], layer2 protocols [13], sidechain tech- onds) and high scalability (attach transactions in parallel) without nique [14], heterogeneous structure [15], hybrid consensus solu- significantly compromising security. However, this field still lacks tions [16] and assisted techniques [17] such as modifying hard- systematic work that summarises the DAG technique. To bridge coded parameters [18] and cross-chain technique [19]. Sharding the gap, this Systematization of Knowledge (SoK) provides a com- splits pending transactions into smaller shards and makes them prehensive analysis of DAG-based blockchain systems. Through processed in parallel, but it is hard to achieve the consensus across deconstructing open-sourced systems and reviewing academic re- shards due to the asynchronization. Cross-chain protocols help to searches, we conclude the main components and featured proper- partially solve the problem by establishing the channels between ties of systems, and provide the approach to establish a DAG. With multiple shards (horizontal sharding [19]). As a sacrifice, these on- this in hand, we analyze the security and performance of several top protocols inevitably result in heavy and redundant systems, leading systems, followed by discussions and comparisons with con- weakening efficiency and stability. Layer2 protocols enable par- current (scaling blockchain) techniques. We further identify open ticipants to perform off-(main)chain transactions through private challenges to highlight the potentiality of DAG-based solutions and communication rather than broadcasting to the whole network. indicate their promising directions for future research. Together with such features, the challenge is how to properly and effectively guarantee the validity and consistency between off-chain KEYWORDS and on-chain transactions. The technique of sidechain pegs the aux- DAG-based Blockchain, SoK, Performance iliary chains to involve more transactions. Heterogeneous structure adds the new types of blocks to assign them with different tasks. 1 INTRODUCTION Hybrid consensus solution combines multiple fundamental consen- Limitations. Blockchain becomes an emerging technology to real- sus mechanisms together (PoX+BFT [15][16][20]) to integrate their ize the distributed ledgers1. The rising interest in blockchain has benefits. Modifying hard-coded parameters e.g. directly increases attracted extensive attention. Thanking to its great potential to the volume of block from 1M to 8M in BCH [18]. However, these tackle critical security and trust challenges in various distributed techniques are still based on the linear-based backbone protocol, environments, blockchain technology enjoys rapid development limiting the scope of exploitation. Therefore, the radical modifi- arXiv:2012.06128v2 [cs.CR] 14 Dec 2020 [1][2] with derived topics evolving into a well-studied field [3][4] cation – reconstructing chains from the underlying structure and in both industry [5][6] and academia [7][8]. However, the great topology, become an emerging solution. impact of blockchain promotes an influx of participants joining the DAG-based Approach. Linearly structured blockchain systems game. Continuously increased traffic results in unavoidably cata- maintain all the transactions/blocks in one single chain. Concurrent strophic congestion due to the performance bottlenecks including transactions/blocks compete for one valid position each round. This slow confirmation, low throughput and poor scalability. Compared to design inevitably leads to slow confirmation due to competitive min- most centralized systems, these factors cannot be easily improved ers, conflicted transactions, and wasted computations. The perfor- in blockchain systems which require decentralization as the prior- mance of the system can only be artificially suppressede.g. ( adjust ity. Several studies raise the view of blockchain trilemma [9] and the confirm time) so that each block is fully attached before thenext the trade-off [10], claiming that the decentralization, security, and one’s arrival. Very few orphan blocks can be involved in the system. 1In this paper, we regard “blockchain” as a general term covering types and models To this end, aiming to enable more transactions simultaneously pro- which are based on the same technology. For simplicity, we ignore the difference cessed/confirmed motivates the emerge of DAG-based blockchain between “blockchain” and “distributed ledger”. Also, we occasionally use “DAGs" to represent “DAG-based Blockchains” for short. systems [21][22][23][24]. They structure the transactions/blocks in the form of graph topology to underlyingly alter the actual oper- sections enable a deep understanding of the design princi- ations. DAG-based systems can improve performance by requiring ples, system features, and unique properties. Readers can less communication, computation and storage overhead. However, learn the full views of collected systems through these multi- the sources of existed open-sourced projects and solutions are dis- dimensional analysis. parate and disorganized. Various basic concepts in DAGs (e.g. vertex ⋄ Discussion. Additionally, we review concurrent techniques meaning, consensus approach, order sequence) are still confused, surrounding the DAG and clarify a series of open questions and potential challenges have neither been clearly identified. An in Section 8. Detailed discussions help us learn more about organized and structured systematic overview is absent for newcom- current challenges and the potential future of this field. ers. Several studies draw their attention to this field, but the works ⋄ Summary. As a summary, our analysis framework has an- are either rough in summaries [25][26][27][28][29][30][31][32], swered the listed questions in detail. Discussions on elements superficial in analysis [17][33][34][35][36][37][38][39][40], or in- of the DAG model provide us a simple but complete classi- complete in evaluations [41][42][43][44]. fication of current DAG-based systems, answering Q1 and Q2. Deconstructions of consensus mechanisms show us how Contributions. In this SoK, we attempt to consolidate the core current DAG-based systems operate with their unique de- knowledge of the structural shift in blockchain systems and review signs, answering Q3. Analysis of the properties, securities, the state-of-the-art DAG-based blockchain systems with compre- and performance enables us to understand Q4, Q5, and Q6. hensive mechanisms and properties. To drive future research, we Discussions, comparisons, and challenges answer Q7 and also provide multifaceted discussions and comparisons with concur- Q8. Surrounding details about the origination, progress, and rent scaling techniques of blockchain. Furthermore, we summarise application are provided in Section 8, 9. unsolved problems existed in current DAG systems, hoping to high- light the research challenges in this field. We start with a series of Insights. Our work provides a roadmap for studying the applied- simple questions, aiming to provide brief guidance for readers. DAG systems. Based on our scrutinized analysis, we provide several insights in this part: a) DAG-based blockchains are still far away Q1. What is the DAG-based blockchain. from commercial applications due to their incompatible designs, Q2. How do they structure the ledgers. absence of standards, unreliable security, varied performance, and Q3. How to run the consensus. unfinished implementations. b) DAG structure has the potential Q4. What are the desired properties. to improve scalability and performance but inevitably sacrifices Q5. How secure are they. certain properties like consistency or finality. c) DAG-based sys- Q6. What is the performance improvement. tems vary from one to another. A uniformly formalized model can Q7. How is this different from other techniques. hardly cover all key points. Instead, a loose and informal model Q8. What are the research challenges. benefits a lot for better understanding. d) Although applying
Recommended publications
  • Cryptocurrency: the Economics of Money and Selected Policy Issues
    Cryptocurrency: The Economics of Money and Selected Policy Issues Updated April 9, 2020 Congressional Research Service https://crsreports.congress.gov R45427 SUMMARY R45427 Cryptocurrency: The Economics of Money and April 9, 2020 Selected Policy Issues David W. Perkins Cryptocurrencies are digital money in electronic payment systems that generally do not require Specialist in government backing or the involvement of an intermediary, such as a bank. Instead, users of the Macroeconomic Policy system validate payments using certain protocols. Since the 2008 invention of the first cryptocurrency, Bitcoin, cryptocurrencies have proliferated. In recent years, they experienced a rapid increase and subsequent decrease in value. One estimate found that, as of March 2020, there were more than 5,100 different cryptocurrencies worth about $231 billion. Given this rapid growth and volatility, cryptocurrencies have drawn the attention of the public and policymakers. A particularly notable feature of cryptocurrencies is their potential to act as an alternative form of money. Historically, money has either had intrinsic value or derived value from government decree. Using money electronically generally has involved using the private ledgers and systems of at least one trusted intermediary. Cryptocurrencies, by contrast, generally employ user agreement, a network of users, and cryptographic protocols to achieve valid transfers of value. Cryptocurrency users typically use a pseudonymous address to identify each other and a passcode or private key to make changes to a public ledger in order to transfer value between accounts. Other computers in the network validate these transfers. Through this use of blockchain technology, cryptocurrency systems protect their public ledgers of accounts against manipulation, so that users can only send cryptocurrency to which they have access, thus allowing users to make valid transfers without a centralized, trusted intermediary.
    [Show full text]
  • A Cryptocurrency Spectrum Short Analysis
    Journal of Risk and Financial Management Review A Cryptocurrency Spectrum Short Analysis 1 2 3 Mircea Constantin S, cheau , Simona Liliana Crăciunescu , Iulia Brici and Monica Violeta Achim 3,* 1 Faculty of Automation, Computers and Electronics, University of Craiova, 200585 Craiova, Romania; [email protected] 2 Simona Liliana Crăciunescu, The Bucharest University of Economic Studies, 010374 Bucharest, Romania; [email protected] 3 Faculty of Economics and Business Administration, Babes, -Bolyai University, 400591 Cluj-Napoca, Romania; [email protected] * Correspondence: [email protected] Received: 30 June 2020; Accepted: 11 August 2020; Published: 17 August 2020 Abstract: Technological development brings about economic changes that affect most citizens, both in developed and undeveloped countries. The implementation of blockchain technologies that bring cryptocurrencies into the economy and everyday life also induce risks. Authorities are continuously concerned about ensuring balance, which is, among other things, a prudent attitude. Achieving this goal sometimes requires the development of standards and regulations applicable at the national or global level. This paper attempts to dive deeper into the worldwide operations, related to cryptocurrencies, as part of a general phenomenon, and also expose some of the intersections with cybercrime. Without impeding creativity, implementing suggested proposals must comply with the rules in effect and provide sufficient flexibility for adapting and integrating them. Different segments need to align or reposition, as alteration is only allowed in a positive way. Adopting cryptocurrency decisions should be unitary, based on standard policies. Keywords: cryptocurrencies; fraud; algorithms; correlations; impact; risks; regulation; blockchain 1. Introduction In the area of influence of computer science, the terms undergo rapid mutations, both in sense and interpretability.
    [Show full text]
  • Whitepaper [2], Nakamoto Explains That
    Introduction Since its inception in 2009, Bitcoin [1] and the concept of a blockchain, was developed in response to an inherent flaw in the way transactions were processed on the Internet. In his whitepaper [2], Nakamoto explains that Commerce on the Internet has come to rely almost exclusively on financial institutions serving as trusted third parties to process electronic payments. While the system works well enough for most transactions, it still suffers from the inherent weaknesses of the trust based model (Nakamoto, 2007) Bitcoin has been rapidly adopted into today’s modern marketplaces. A primary issue with Bitcoin’s rapid adoption is the increase of demand on the original blockchain to handle varying degrees of large transactions. With increased demand comes increased transactional waiting periods, and this has resulted in higher transactional fees in attempts to try and speed-up transaction confirmation times. Official Verge Blackpaper 5.0 2 Table of contents Introduction 2 1.0 Overview 4 1.1 Multi-Algo PoW 4 1.2 Tailored transactional applications 4 1.3 Simple transactions 4 1.4 Stealth transactions 5 1.5 Anon transactions 5 2.0 The Verge Network 6 2.1 TOR Integration 6 2.2 I2P Integration 7 2.3 Electrum 7 2.4 TOR Android 9 3.0 Encrypted Messaging 10 3.1 Message Propagation 11 4.0 Dual-Key Stealth Addressing 12 4.1 Dual-Key Stealth Address Protocol 13 4.2 Key Agreements 14 4.3 The Diffie-Hellman algorithm 14 4.4 Elliptic-Curve Diffie-Hellman (ECDH) 15 4.5 Key Take-aways 17 5.0 Atomic Swaps 18 5.1 What is a Hash Time-Locked Contract (HTLC)? 18 5.2 How do Hash Time-Locked Contracts work? 18 5.3 What are the benefits of HTLC’s? 19 5.4 What are the benefits of Atomic Swaps? 19 5.5 What are the limitations of on-chain Atomic Swaps? 19 5.6 What is the Lightning Network? 19 6.0 Rootstock (RSK) 21 7.0 Ring confidential transactions 24 7.1 Ring Signatures 25 7.2 Pendersen Commitment 25 7.3 Range Proofs 26 Conclusion 26 References 28 Personal Note 30 Official Verge Blackpaper 5.0 3 1.0 Overview The core innovation behind Bitcoin is its decentralized structure.
    [Show full text]
  • Coinbase Explores Crypto ETF (9/6) Coinbase Spoke to Asset Manager Blackrock About Creating a Crypto ETF, Business Insider Reports
    Crypto Week in Review (9/1-9/7) Goldman Sachs CFO Denies Crypto Strategy Shift (9/6) GS CFO Marty Chavez addressed claims from an unsubstantiated report earlier this week that the firm may be delaying previous plans to open a crypto trading desk, calling the report “fake news”. Coinbase Explores Crypto ETF (9/6) Coinbase spoke to asset manager BlackRock about creating a crypto ETF, Business Insider reports. While the current status of the discussions is unclear, BlackRock is said to have “no interest in being a crypto fund issuer,” and SEC approval in the near term remains uncertain. Looking ahead, the Wednesday confirmation of Trump nominee Elad Roisman has the potential to tip the scales towards a more favorable cryptoasset approach. Twitter CEO Comments on Blockchain (9/5) Twitter CEO Jack Dorsey, speaking in a congressional hearing, indicated that blockchain technology could prove useful for “distributed trust and distributed enforcement.” The platform, given its struggles with how best to address fraud, harassment, and other misuse, could be a prime testing ground for decentralized identity solutions. Ripio Facilitates Peer-to-Peer Loans (9/5) Ripio began to facilitate blockchain powered peer-to-peer loans, available to wallet users in Argentina, Mexico, and Brazil. The loans, which utilize the Ripple Credit Network (RCN) token, are funded in RCN and dispensed to users in fiat through a network of local partners. Since all details of the loan and payments are recorded on the Ethereum blockchain, the solution could contribute to wider access to credit for the unbanked. IBM’s Payment Protocol Out of Beta (9/4) Blockchain World Wire, a global blockchain based payments network by IBM, is out of beta, CoinDesk reports.
    [Show full text]
  • Blockchain in Japan
    Blockchain in Japan " 1" Blockchain in Japan " "The impact of Blockchain is huge. Its importance is similar to the emergence of Internet” Ministry of Economy, Trade and Industry of Japan1 1 Japanese Trade Ministry Exploring Blockchain Tech in Study Group, Coindesk 2" Blockchain in Japan " About this report This report has been made by Marta González for the EU-Japan Centre for Industrial Cooperation, a joint venture between the European Commission and the Japanese Ministry of Economy, Trade and Industry (METI). The Centre aims to promote all forms of industrial, trade and investment cooperation between Europe and Japan. For that purpose, it publishes a series of thematic reports designed to support research and policy analysis of EU-Japan economic and industrial issues. To elaborate this report, the author has relied on a wide variety of sources. She reviewed the existing literature, including research papers and press articles, and interviewed a number of Blockchain thought leaders and practitioners to get their views. She also relied on the many insights from the Japanese Blockchain community, including startups, corporation, regulators, associations and developers. Additionally, she accepted an invitation to give a talk1 about the state of Blockchain in Europe, where she also received input and interest from Japanese companies to learn from and cooperate with the EU. She has also received numerous manifestations of interest during the research and writing of the report, from businesses to regulatory bodies, revealing a strong potential for cooperation between Europe and Japan in Blockchain-related matters. THE AUTHOR Marta González is an Economist and Software Developer specialized in FinTech and Blockchain technology.
    [Show full text]
  • Towards Secure Blockchains
    Towards Secure Blockchains Concepts, Requirements, Assessments | EDITORIAL Editorial Blockchain is currently one of the most widely Consequently, the analysis on the following discussed topics in the area of information pages presents blockchain technology in detail technology. This technology for distributed data and extensively studies its aspects relevant to IT storage originated from the cryptocurrency security. It also assesses to what extent blockchain Bitcoin, which became famous especially due to technology is able to achieve the security prop- the record highs its market value attained in 2017. erties ascribed to it and how it may be evaluated Based on its promise of preventing manipulation within the current legal framework. of data on a purely technical level using its decen- tralised structure, offering maximum transpar- This document thus supports developers and ency and replacing intermediaries within business potential users of blockchain solutions in per- processes, many ideas for applying blockchain forming a well-founded assessment of risks technology in fairly different areas have been and in taking IT security into account from the developed in recent years. start. Furthermore, the dynamic development of blockchain technology offers the possibility Politics has also increasingly taken up blockchain of using the results of this analysis as a basis for technology. For instance, the term blockchain is future discussions on both the national and inter- used several times within the coalition agreement national level. With blockchain—as with other of the 19th election period of the German parlia- topics in IT security—the BSI thus strives to shape ment dating from 2018, and the German federal information security for government, business government has set itself the target of developing and society.
    [Show full text]
  • Facilitating Cross-Chain Cryptocurrency Exchanges: an Inquiry Into Blockchain Technology and Interoperability with an Emphasis on Cryptocurrency Arbitrage
    Eastern Michigan University DigitalCommons@EMU Senior Honors Theses & Projects Honors College 2020 Facilitating cross-chain cryptocurrency exchanges: An inquiry into blockchain technology and interoperability with an emphasis on cryptocurrency arbitrage Samuel Grone Follow this and additional works at: https://commons.emich.edu/honors Part of the Computer Sciences Commons Facilitating cross-chain cryptocurrency exchanges: An inquiry into blockchain technology and interoperability with an emphasis on cryptocurrency arbitrage Abstract Since the introduction and proliferation of the blockchain-based cryptocurrency Bitcoin, alternative cryptocurrencies also based on blockchain technology have exploded in number. It was once believed that one, or very few, cryptocurrencies would eventually dominate the market and drive out competitors. This assumption, however, was incorrect. Thousands of cryptocurrencies exist concurrently. The vast number of cryptocurrencies leads to a problem—what if the cryptocurrency that an individual possesses does not meet their current needs as well as another cryptocurrency might? The attempt to solve this problem has led to the rise of many cryptocurrency exchanges and exchange schemes. In this paper, we will discuss the motivations for an individual to be interested in exchanging two or more cryptocurrencies by describing and comparing various popular cryptocurrencies with different desirable attributes. While we will discuss these attributes, this paper will give special focus to arbitrage in particular. In addition, we will describe various cryptocurrency exchange schemes and their advantages and disadvantages. Finally, we contribute to the understanding of cryptocurrency exchangeability and interoperability by comparing the historical price data of several cryptocurrencies to determine how often arbitrage has been possible in the past. Degree Type Open Access Senior Honors Thesis Department Computer Science First Advisor Weitian Tong Second Advisor S.
    [Show full text]
  • List of Cryptoassets That Can Be Legally Traded in Indonesia
    List of Cryptoassets That Can Be Legally Traded in Indonesia Approved cryptoassets under Bappebti Regulation No. 7 of 2020 regarding the Stipulation of the List of Cryptoassets that Are Allowed to Be Traded in the Cryptoasset Physical Market. 1. Bitcoin 81. Verge 161. Storm 2. Ethereum 82. Pax gold 162. Vertcoin 3. Tether 83. Matic network 163. Ttc 4. Xrp/ripple 84. Kava 164. Metadium 5. Bitcoin cash 85. Komodo 165. Pumapay 6. Binance coin 86. Steem 166. Nav coin 7. Polkadot 87. Aelf 167. Dmarket 8. Chainlink 88. Fantom 168. Spendcoin 9. Lightcoin 89. Horizen 169. Tael 10. Bitcoin sv 90. Ardor 170. Burst 11. Litecoin 91. Hive 171. Gifto 12. Crypto.com coin 92. Enigma 172. Sentinel protocol 13. Usd coin 93. V. Systems 173. Quantum resistant ledger 14. Eos 94. Z coin 174. Digix gold token 15. Tron 95. Wax 175. Blocknet 16. Cardano 96. Stratis 176. District0x 17. Tezos 97. Ankr 177. Propy 18. Stellar 98. Ark 178. Eminer 19. Neo 99. Syscoin 179. Ost 20. Nem 100. Power ledger 180. Steamdollar 21. Cosmos 101. Stasis euro 181. Particl 22. Wrapped bitcoin 102. Harmony 182. Data 23. Iota 103. Pundi x 183. Sirinlabs 24. Vechain 104. Solve.care 184. Tokenomy 25. Dash 105. Gxchain 185. Digitalnote 26. Ehtereum classic 106. Coti 186. Abyss token 27. Yearn.finance 107. Origin protokol 187. Cake 28. Theta 108. Xinfin network 188. Veriblock 29. Binance usd 109. Btu protocol 189. Hydro 30. Omg network 110. Dad 190. Viberate 31. Maker 111. Orion protocol 191. Rupiahtoken 32. Ontology 112. Cortex 192.
    [Show full text]
  • Development of Education in the United Statw and How Major Schools of Educational Thoughtave Affected It
    DOCUMENT RESUME ED 132 232 UD 016 630 AUTHOR Lawrence, -Joyce V.; Mamola, Claire Z. TITLE public Education in the United States. A Modularized Course. Elementary Education 301e. Secondary Education 3040. SPONS AGENCY Appalachian/State Univ., Boone, N.C. Center for Instructional Development. PUB DATE [75] NOTE EDRS PRICE MF-$0.83 HC-$19.41 Plus Postage. DESCRIPTORS College Curriculum; Course Descriptions; Course Organization; *Education Courses; Education Majors; Elementary Secondary Education; Independent Study; Individualized Instruction; Instructional Materials;, /*Learning Modules; *Programed Instruction; Public Education; *Teacher Education Curriculum; Teaching Methods; *UnderyLaduate Students ABSTPACT . This modularized,.self-paced study program in Elementary 4nd Secondary Education for K-12 majors is an evolving course of study designed for responsible students.The course is organized into six modules: Trends and Issues in Contemporary Education, Phil6sOphical and Historical Foundations of Education, Administrative Structure and Financing of Public Education, Curriculum/Instruction, Students with Special Needs, and Legal Aspects of Public Education. Module One examines current writers and crucial questions in American education. Options for study within n this module also include examinatiOn of these questions: What could evaluation be? Is education a profession? What's "in"? Whose values? How can we foster creativity? Module Two is an overview of the development of education in the United Statw and how major schools of educational thoughtave affected it. Moable Three examines patterns of organizati n and ways of financing the educational proqess. Module Four is4'.. an pverview of o-ganizational conceptsin today!s schools including alternatives % traditional schooling. Module Five is an opportunity to become. acquainted with problems face& by students of various cultures and by students designated "exceptional" as they experience public schooling.
    [Show full text]
  • Verge Merchant2
    About Verge The grassroots culture is what makes Verge unique and dynamic. What is Verge? Verge is a cryptocurrency designed for people and for everyday use. It improves upon the original Bitcoin blockchain and aims to fulfill its initial purpose of providing individuals and businesses with a fast, efficient and decentralized way of making direct transactions while maintaining your privacy. What is the Verge Currency Mission? Our mission is to empower people around the world by bringing blockchain transactions into everyday life. Verge Currency makes it possible to engage in direct transactions quickly, efficiently and privately. With Verge Currency, businesses and individuals have flexible options for sending and receiving payments. With the flip of a switch, we offer helpful integrations and tools that enable them to handle large scale transactions between merchants and small scale private payments. About NetCents Our Business NetCents Technology Inc, the transactional hub for all cryptocurrency payments, Publicly traded in Canada and Germany equips forward-thinking businesses with (CSE:NC / Frankfurt: 26n) the technology to seamlessly integrate KYC, AML, IP Verification cryptocurrency processing into their AI 2.0 proprietary algorithms to payment model without taking on the risk protect against fraud or volatility of the crypto market. Instant Settlements to protect against market-volatility and illiquidity Platform demo The Opportunity Build Buzz & Brand Build buzz, brand awareness, and further appeal to your Awareness target audience when you sell your products and services for Cryptocurrency. Increase Sales Access an untapped $430 billion dollar market that is looking to spend their cryptocurrency holdings. Instant Settlements Leverage the liquidity of instant 'crypto-to-fiat or crypto- to-crypto' settlement.
    [Show full text]
  • Profitability of Technical Trading Rules Among Cryptocurrencies with Privacy Function ⁎ Shaker Ahmeda, Klaus Grobysa,B, , Niranjan Sapkotaa
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Osuva Finance Research Letters xxx (xxxx) xxxx Contents lists available at ScienceDirect Finance Research Letters journal homepage: www.elsevier.com/locate/frl Profitability of technical trading rules among cryptocurrencies with privacy function ⁎ Shaker Ahmeda, Klaus Grobysa,b, , Niranjan Sapkotaa a University of Vaasa, School of Accounting and Finance, P.O. Box 700, FI-65101 Vaasa, Finland b University of Vaasa, Innovation and Entrepreneurship (InnoLab), P.O. Box 700, FI-65101 Vaasa, Finland. ARTICLE INFO ABSTRACT JEL classification: This paper studies simple moving average trading strategies employing daily price data on the ten G01 most-traded cryptocurrencies that exhibit the ‘privacy function’. Investigating the 2016–2018 G21 period, our results indicate a variable moving average strategy is successful only G30 when applied to Dash generating returns of 14.6%−18.25% p.a. in excess of the simple buy- G32 and-hold benchmark strategy. However, when applying our technical trading rules to the entire set of ten privacy coins shows that, on an aggregate level, simple technical trading rules do not Keywords: generate positive returns in excess of a buy-and-hold strategy. Technical analysis Cryptocurrency Bitcoin Financial technology FinTech 1. Introduction Cryptocurrency markets have attracted a great deal of attention in the most recent academic literature. In this regard, Gerritsen et al. (2019), Corbet et al. (2019), and Miller et al. (2019) explore the profitability of technical trading rules in the Bitcoin market. Gerritsen et al.'s (2019) findings suggest that the profitability of specific technical trading rules, such as the tradingrange breakout rule, can consistently exceed that of a buy-and-hold strategy.
    [Show full text]
  • The Tree of Blockchain to Shed Light on the Innovation Within Different Components
    THE TREE OF BLOCKCHAIN APREPRINT Florian Spychiger∗ Paolo Tasca School of Management and Law Centre for Blockchain Technologies Zurich University of Applied Sciences University College London Winterthur, Switzerland London, Great Britain [email protected] [email protected] Claudio J. Tessone y Business Administration University of Zurich Zurich, Switzerland [email protected] October 7, 2020 ABSTRACT This study covers the evolutionary development of blockchain technologies over the last 11 years (2009 – 2019) and sheds lights on potential areas of innovation in heretofore unexplored sub- components. For this purpose, we collected and analysed detailed data on 107 different blockchain technologies and studied their component-wise technological evolution. The diversity of their designs was captured by deconstructing the blockchains using the Tasca-Tessone taxonomy (2019) to build what we call the "tree of blockchain" composed of blockchain main and sub-components. With the support of information theory and phylogenetics, we found that most design explorations have been conducted within the components in the areas of consensus mechanisms and cryptographic primitives. We also show that some sub-components like Consensus Immutability and Failure Tolerance, Access and Control layer and Access Supply Management have predictive power over other sub-components. We finally found that few dominant design models - the genetic driving clusters of Bitcoin, Ethereum and XRP - influenced the evolutionary paths of most of the succeeding blockchains.
    [Show full text]