L3. Blockchains and Cryptocurrencies

Size: px
Start display at page:

Download "L3. Blockchains and Cryptocurrencies"

Transcription

1 L3. Blockchains and Cryptocurrencies Alice E. Fischer September 6, 2018 Blockchains and Cryptocurrencies... 1/16

2 Blockchains Transactions Blockchains and Cryptocurrencies... 2/16

3 Blockchains, in theory A Blockchain is a theoretical construct built using cryptography. It has several nice properties, in theory: It is a decentralized, anonymous and public digital ledger, managed by collectively trusted servers. It is indelible, that is permanent and unchangeable. Additions to the blockchain are immediately visible to everyone. A blockchain gives a unique, public, global, and consistent view of its data. The problem is that real implementations cannot fully implement the theory. Blockchains and Cryptocurrencies... 3/16

4 How a Blockchain Works A blockchain is a ledger (record of transactions) implemented by: A list of encrypted blocks. Each block contains the cryptographic hash of the prior block, linking them together, plus data about a batch of transactions, The chain is managed and maintained by a peer-to-peer network that follows a protocol for communication and validation. Once recorded, the data in a block cannot be changed without changing all subsequent blocks. As time passes, and more blocks are added, it becomes very unlikely, but not impossible, that any change will happen. Blockchains and Cryptocurrencies... 4/16

5 How Blockchains Grow There are 21 million possible bitcoin. Another one is mined approximately every 10 minutes. Bitcoin was the first cryptocurrency; Ethereum branched from it and uses slightly different protocols. In both, a miner tries to solve a compute-intensive puzzle. When someone solves it, he earns a bitcoin or 5 units of Ether and a new puzzle is initiated. The miner then adds a new block to his current chain and sends the now, longer chain to other miners from his previous contact list 1. 1 If this fails, there are services for finding current miners Blockchains and Cryptocurrencies... 5/16

6 Storing the Records: Bitcoin Bitcoin is a cryptocurrency built on a blockchain. It is maintained by many miners, all of whom own bitcoins. These copies are distributed among the maintainers and live in the cloud. In January 2017, the blockchain file for Bitcoin was 100 GB and growing. Simply storing the file permanently costs money. Also, transmitting it, or even part of it, on the internet costs both time and money. Blockchains and Cryptocurrencies... 6/16

7 Proof of Work and Reward The puzzle consists of finding a number y (called the nonce ) such that the SHA-256 hash of the current blockchain together with y yields a hash value that is smaller than the current target. The target is adjusted periodically to cause a bitcoin to be mined about every 10 minutes. The reward for solving a puzzle was initially 50 bitcoin. It was halved in 2012 to 25 and again in 2016 to 12.5 It will be halved again every 4 years until all 21 million bitcoins have been created. In 2018, approximately 78% of all coins had been mined. Blockchains and Cryptocurrencies... 7/16

8 Extending the Chain Each block in the Bitcoin chain defines the target for the next bitcoin contest. A block contains the newly-found nonce, a new target, and a record of many bitcoin transactions. When a new block is created, all transactions in it have been provisional accepted. The newly extended chain is sent to the miner s peers (by default, 8 peers). Blockchains and Cryptocurrencies... 8/16

9 The New Block When it is received by a second miner, there are two possibilities: If it is longer than his current chain, he throws out the old chain and adopts the new one. They he stops working on solving the old puzzle and starts on the new one. If is shorter than or the same length as the chain he currently has, the new chain is ignored. The receiving miner offers the new chain to its own peers, and transmits it if the peer does not already have it. This propagation continues until everyone in the world knows. All miners follow this same discard/adopt/propagate rule, with the result that the longest chain will eventually wipe out all shorter ones. Blockchains and Cryptocurrencies... 9/16

10 Forking A fork happens when two different blocks (call them A and B) are created at the same time in different parts of the network. Both will be propagated to other miners and will eventually reach all of the miners However, propagation may take a while. During that time, both are circulating among the miners, Some will try to add blocks to A, and others to B. Eventually, some node will be working on A when a copy of B comes in, or vice versa. If chain B is longer at that time, the new blocks on A will become orphans and their contents will be discarded. It is as if they never happened. Blockchains and Cryptocurrencies... 10/16

11 Reaching Consensus In the world of Bitcoin, consensus means that all miners agree on one version of the blockchain. Thus, when a Bitcoin miner records a transaction by including it in a new block, the new block may or may not be permanent. If a fork happens, one version or the other will eventually be discarded by all the miners, producing a consensus. There is no final commit operation and no way to know when consensus has been reached. Blockchains and Cryptocurrencies... 11/16

12 An isolated network outage is not a problem. An isolated network outage is not a problem. If a miner is offline for a while, he might as well just quit trying to mine. Nothing the miner does during the outage is meaningful. When he reconnects, the protocol is to immediately synchronize with the rest of the internet and get the current version of the blockchain. The same is true if a miner s message is dropped or delayed for a long time. He loses for a while, but easily gets back into the bitcoin contest. Blockchains and Cryptocurrencies... 12/16

13 Wallets and Owners. A new public/private key pair is created for every transaction. When the transaction is bundled into a block, the block stores the public key of the bitcoin owner. A user s wallet contains a list of his private keys, each one associated with some bitcoin transaction. To use the output in a future transaction, the payer must digitally sign the transaction using the corresponding private key. This makes unauthorized transfers difficult. If the private key is lost, the bitcoin network will not recognize any other evidence of ownership. The coins are then lost and cannot be recovered. For example, in 2013 one user said he lost 7,500 bitcoins, worth $7.5 million at that time, when he discarded a hard drive containing his private key. Blockchains and Cryptocurrencies... 13/16

14 Transactions A miner is the middleman in any transaction. Here s how Alice transfers a Bitcoin to Bob: Suppose Alice has some bitcoin in her wallet. She creates a transaction request giving a specific amount of coin to Bob, and signs it with her private key. The transaction is then broadcast to all of the miners. Each miner first verifies the validity (no double spending) of the transaction by using its current copy of the blockchain. When a miner includes the transaction in a new block, it is confirmed once. When the next miner wins a bitcoin, it will be confirmed a second time. Blockchains and Cryptocurrencies... 14/16

15 Average Time for Confirmation. Three confirmations are usually required for payments over $1000, six for over $10,000, and many more for massive transfers. Sites that accept Bitcoin as payment can set their own minimum number of confirmations needed. On the average, it took 17 minutes to confirm a Bitcoin transaction in April, Getting six confirmations takes about an hour. Imagine making a credit-card transaction at a computer store, and having to wait half an hour to have the transaction cleared. Blockchains and Cryptocurrencies... 15/16

16 Digital Currency Exchanges Bitcoin exchanges are businesses that allow customers to trade digital currencies for other currencies. They charge transaction fees as commissions for their services. Most digital currencies exchanges operate outside of Western countries, avoiding regulatory oversight and complicating prosecutions DCEs often handle multiple Western currencies, and sometimes maintain bank accounts in several countries. There are many exchanges, some more reliable than others, including : Coinbase, Kraken, Bitstamp, Binanac. A history of major problems is dealt with in the next lecture. Blockchains and Cryptocurrencies... 16/16

Computer Security. 13. Blockchain & Bitcoin. Paul Krzyzanowski. Rutgers University. Spring 2018

Computer Security. 13. Blockchain & Bitcoin. Paul Krzyzanowski. Rutgers University. Spring 2018 Computer Security 13. Blockchain & Bitcoin Paul Krzyzanowski Rutgers University Spring 2018 April 18, 2018 CS 419 2018 Paul Krzyzanowski 1 Bitcoin & Blockchain Bitcoin cryptocurrency system Introduced

More information

Bitcoin. CS 161: Computer Security Prof. Raluca Ada Poipa. April 24, 2018

Bitcoin. CS 161: Computer Security Prof. Raluca Ada Poipa. April 24, 2018 Bitcoin CS 161: Computer Security Prof. Raluca Ada Poipa April 24, 2018 What is Bitcoin? Bitcoin is a cryptocurrency: a digital currency whose rules are enforced by cryptography and not by a trusted party

More information

arxiv: v1 [q-fin.gn] 6 Dec 2016

arxiv: v1 [q-fin.gn] 6 Dec 2016 THE BLOCKCHAIN: A GENTLE FOUR PAGE INTRODUCTION J. H. WITTE arxiv:1612.06244v1 [q-fin.gn] 6 Dec 2016 Abstract. Blockchain is a distributed database that keeps a chronologicallygrowing list (chain) of records

More information

Bitcoin. CS 161: Computer Security Prof. Raluca Ada Popa. April 11, 2019

Bitcoin. CS 161: Computer Security Prof. Raluca Ada Popa. April 11, 2019 Bitcoin CS 161: Computer Security Prof. Raluca Ada Popa April 11, 2019 What is Bitcoin? Bitcoin is a cryptocurrency: a digital currency whose rules are enforced by cryptography and not by a trusted party

More information

The Blockchain Trevor Hyde

The Blockchain Trevor Hyde The Blockchain Trevor Hyde Bitcoin I Bitcoin is a cryptocurrency introduced in 2009 by the mysterious Satoshi Nakomoto. I Satoshi Nakomoto has never been publicly identified. Bitcoin Over the past year

More information

Bitcoin. Based on Bitcoin Tutorial presentation by Joseph Bonneau, Princeton University. Bonneau slides marked JB

Bitcoin. Based on Bitcoin Tutorial presentation by Joseph Bonneau, Princeton University. Bonneau slides marked JB Bitcoin Based on Bitcoin Tutorial presentation by Joseph Bonneau, Princeton University Bonneau slides marked JB Bitcoin Snapshot: October 2, 2015 Bitcoin is a combination of several things: a currency,

More information

White Paper. Bizanc Blockchain

White Paper. Bizanc Blockchain White Paper Versão 0.0.1 Bizanc Blockchain 1.0 Summary Bizanc is a decentralized platform for commercialization of digital assets, operating on a Blockchain architecture, allowing trading of cryptocurrencies

More information

Cisco Live /11/2016

Cisco Live /11/2016 1 2 3 4 5 Blockchain technology will become Like the TCP / IP for the WWW everyone uses it, but it will be transparent to them. Examples: Disrupt business models Car energy supplier can advertise where

More information

Accounting for crypto assets mining and validation issues

Accounting for crypto assets mining and validation issues Accounting Tax Global IFRS Viewpoint Accounting for crypto assets mining and validation issues What s the issue? Currently, IFRS does not provide specific guidance on accounting for crypto assets. This

More information

Introduction to Blockchains. John Kelsey, NIST

Introduction to Blockchains. John Kelsey, NIST Introduction to Blockchains John Kelsey, NIST Overview Prologue: A chess-by-mail analogy What problem does a blockchain solve? How do they work? Hash chains Deciding what blocks are valid on the chain

More information

Blockchain made Simple

Blockchain made Simple Blockchain made Simple Rhonda Okamoto, Blockchain & Cryptocurrency Enthusiast rhondaokamoto@gmail.com 609-433-1442 What is Blockchain? When and Where is Blockchain useful? What is the difference between

More information

Level 2, HTLC, SegWit

Level 2, HTLC, SegWit Innovation and Cryptoventures Level 2, HTLC, SegWit Campbell R. Harvey Duke University and NBER February 19, 2018 2 Transactions per Second https://en.bitcoin.it/wiki/scalability Visa processes about 2,000

More information

Introduction to Blockchain Technology

Introduction to Blockchain Technology Introduction to Blockchain Technology Current Trends in Artificial Intelligence Volker Strobel PhD student @ IRIDIA 23 February 2017 Part I: Bitcoin: Idea, Basics, Technology Part II: Altcoins, Use cases,

More information

Surface Web/Deep Web/Dark Web

Surface Web/Deep Web/Dark Web Cryptocurrency Surface Web/Deep Web/Dark Web How to Get Data? Where Hacking, Cyber Fraud, and Money Laundering Intersect How to Pay? Digital Currency What is Bitcoin? https://youtu.be/aemv9ukpazg Bitcoin

More information

Blockchain: Where are We and Where are We Heading?

Blockchain: Where are We and Where are We Heading? Blockchain: Where are We and Where are We Heading? Objectives Define the underlying technologies of blockchain Describe some shortcomings of blockchain Describe the accounting profession s interest in

More information

Blockchain explained. by Jerome Kehrli

Blockchain explained. by Jerome Kehrli by Jerome Kehrli Witten on Friday Oct 07, 2016 The blockchain and blockchain related topics are becoming increasingly discussed and studied nowadays. There is not one single day where I don't hear about

More information

EVERYTHING YOU NEED TO KNOW ABOUT DIGITAL LEDGER TECHNOLOGY, THE BLOCKCHAIN AND CRYPTOCURRENCIESÓ (Part I June 2018)

EVERYTHING YOU NEED TO KNOW ABOUT DIGITAL LEDGER TECHNOLOGY, THE BLOCKCHAIN AND CRYPTOCURRENCIESÓ (Part I June 2018) EVERYTHING YOU NEED TO KNOW ABOUT DIGITAL LEDGER TECHNOLOGY, THE BLOCKCHAIN AND CRYPTOCURRENCIESÓ (Part I June 2018) Robert C. Brighton, Jr. Brighton Legal Solutions P.A. rcbrightonbizlaw@gmail.com This

More information

CSCI 1800 Cybersecurity and International Relations. Bitcoins and Blockchains John E. Savage

CSCI 1800 Cybersecurity and International Relations. Bitcoins and Blockchains John E. Savage CSCI 1800 Cybersecurity and International Relations Bitcoins and Blockchains John E. Savage Overview of the Talk We describe the bitcoin system, which supports monetary exchange without a central authority

More information

Cryptocurrencies (Session I) Computer Science and Law

Cryptocurrencies (Session I) Computer Science and Law Cryptocurrencies (Session I) Computer Science and Law Outline Part 1 SoK: Research Perspectives and Challenges for Bitcoin and Cryptocurrencies Part 2 Advancing a Framework for Regulating Cryptocurrency

More information

AlloyCoin: A Crypto-Currency with a Guaranteed Minimum Value

AlloyCoin: A Crypto-Currency with a Guaranteed Minimum Value AlloyCoin: A Crypto-Currency with a Guaranteed Minimum Value Alloy Reserve Development Team Alloy Reserve LLC, Dayton, OH 45435, USA support@alloycoin.com http://www.alloycoin.com Abstract. AlloyCoin is

More information

BITCOINS and CRYPTOCURRENCIES How It Works. Principal Consultant CISA, CISSP

BITCOINS and CRYPTOCURRENCIES How It Works. Principal Consultant CISA, CISSP BITCOINS and CRYPTOCURRENCIES How It Works Drexx@Laggui.com Principal Consultant CISA, CISSP Requirement: Unlearn many things that you thought you were very certain about. Have an open mind. Covered topics

More information

Technical Line. A holder s accounting for cryptocurrencies. What you need to know. Overview

Technical Line. A holder s accounting for cryptocurrencies. What you need to know. Overview No. 2018-12 18 October 2018 Technical Line A holder s accounting for cryptocurrencies In this issue: Overview... 1 Blockchain, cryptocurrencies and tokens... 2 Tokens... 3 A holder s accounting for cryptocurrencies...

More information

Lecture 23 Cryptocurrency. Stephen Checkoway University of Illinois at Chicago CS 487 Fall 2017 Slides from Miller s ECE 422

Lecture 23 Cryptocurrency. Stephen Checkoway University of Illinois at Chicago CS 487 Fall 2017 Slides from Miller s ECE 422 Lecture 23 Cryptocurrency Stephen Checkoway University of Illinois at Chicago CS 487 Fall 2017 Slides from Miller s ECE 422 The Times 03/Jan/2009 Chancellor on brink of second bailout for banks. 11,000

More information

Bitcoins and Blockchains

Bitcoins and Blockchains Bitcoins and Blockchains 1 Bitcoins? 2 Properties of money Symbolises value Substitutes value Proof of ownership Easy to transfer Agreed upon value Difficult to forge/limited supply Needs little storage

More information

Crypto-Philanthropy: Virtual Currency and the Future of Charitable Giving

Crypto-Philanthropy: Virtual Currency and the Future of Charitable Giving Crypto-Philanthropy: Virtual Currency and the Future of Charitable Giving Presentation to the San Francisco Foundation: Professional Advisers Luncheon Jon D. Feldhammer May 18, 2018 Perkins Coie LLP JON

More information

BitShares is. a decentralized network. All About BitShares in Infographics

BitShares is. a decentralized network. All About BitShares in Infographics BitShares is a decentralized network It is operated by those who participate No single government or company controls it 1 LEARN MORE About the Benefits> BitShares has digital tokens These have the properties

More information

Bitcoin Currency & Blockchain Technology

Bitcoin Currency & Blockchain Technology Bitcoin Currency & Blockchain Technology April 27, 2018 Stephen Burns, CFA Vice President, Portfolio Manager Endowment and Foundation Investments Glenmede 215-419-6958 Stephen.Burns@Glenmede.com How seriously

More information

Blockchain, data protection, and the GDPR

Blockchain, data protection, and the GDPR Blockchain, data protection, and the GDPR v1.0 25.05.2018 Contributors: Natalie Eichler, Silvan Jongerius, Greg McMullen, Oliver Naegele, Liz Steininger, Kai Wagner Introduction GDPR was created before

More information

Blockchain: from electronic cash to redefining trust

Blockchain: from electronic cash to redefining trust Blockchain: from electronic cash to redefining trust Gabriel Aleixo researcher ITS Rio BLOCKCHAIN TECHNOLOGY Provides a new way for transferring and storing data in multiple aspects, without relying on

More information

Introduction to Blockchain Rick McMullin, bitheads, inc.

Introduction to Blockchain Rick McMullin, bitheads, inc. Introduction to Blockchain Rick McMullin, bitheads, inc. mcmullin@bitheads.com What we will cover What is blockchain? History and examples of a few blockchains The crypto craze Why use a blockchain? What

More information

Private Wealth Management. Understanding Blockchain as a Potential Disruptor

Private Wealth Management. Understanding Blockchain as a Potential Disruptor Private Wealth Management Understanding Blockchain as a Potential Disruptor 2 Blockchain and Cryptocurrency The interest in blockchain stems from the idea that its development is comparable to the early

More information

INTRODUCTION TO THE BLOCKCHAIN ERRIN ICT Working Group Meeting on Blockchain June 13, Javier Prieto IoT Digital Innovation Hub

INTRODUCTION TO THE BLOCKCHAIN ERRIN ICT Working Group Meeting on Blockchain June 13, Javier Prieto IoT Digital Innovation Hub INTRODUCTION TO THE BLOCKCHAIN ERRIN ICT Working Group Meeting on Blockchain June 13, 2018 Content Bitcoin Beyond bitcoin The blockchain is an incorruptible digital ledger of economic transactions that

More information

Table of contents. 2

Table of contents. 2 Whitepaper Table of contents Table of contents... 2 Overview... 3 TrillionToken... 3 Sports Betting Platform... 3 Cryptocurrency... 3 Blockchain technology... 3 Ethereum network... 5 TrillionToken token...

More information

Blockchain Demystified

Blockchain Demystified Blockchain Demystified DR THEODOSIS MOUROUZIS (CIIM, UCL CBT, CYPRUS BLOCKCHAIN TECHNOLOGIES) Cyprus Blockchain Technologies Centre The Cyprus Blockchain Technologies Ltd. is a non-profit organization

More information

Metro: A peer-to-peer cross-chain digital asset exchange

Metro: A peer-to-peer cross-chain digital asset exchange Metro: A peer-to-peer cross-chain digital asset exchange Metro.software 2018 metrosoftware@zoho.com Abstract The pegged sidechain technology allows us to safely move assets from the asset mainchain to

More information

Block This Way: Securing Identities using Blockchain

Block This Way: Securing Identities using Blockchain Block This Way: Securing Identities using Blockchain James Argue, Stephen Curran BC Ministry of Citizens Services February 7, 2018 The Identity on the Internet Challenge The Internet was built without

More information

Blockchain 101. Featuring: MNP & The CSE Date: December 4, 2018

Blockchain 101. Featuring: MNP & The CSE Date: December 4, 2018 Blockchain 101 Featuring: MNP & The CSE Date: December 4, 2018 Presenters Maruf Raza, CPA, CA National Director of Public Companies maruf.raza@mnp.ca George Huang, CPA, CA Senior Manager, Public Companies

More information

Cryptocurrency and Blockchain Technology

Cryptocurrency and Blockchain Technology Cryptocurrency and Blockchain Technology Mohammad Sayad Haghighi, PhD, SMIEEE Assistant Professor sayad@ut.ac.ir University of Tehran, Iran 1 How did it start? We had Hash Chains in cryptography before.

More information

an introduction to Blockchain Technology

an introduction to Blockchain Technology an introduction to Blockchain Technology PETER LANGELA send a photo over the internet send a photo over the internet copy send a photo over the internet X copy X send money over the internet send money

More information

Alexandros Fragkiadakis, FORTH-ICS, Greece

Alexandros Fragkiadakis, FORTH-ICS, Greece Alexandros Fragkiadakis, FORTH-ICS, Greece Outline Trust management and trust computation Blockchain technology and its characteristics Blockchain use-cases for IoT Smart contracts Blockchain challenges

More information

BLOCKCHAINS MINING NUMBERS NOT GOLD

BLOCKCHAINS MINING NUMBERS NOT GOLD BLOCKCHAINS MINING NUMBERS NOT GOLD PRESENTED BY DESPITE A FAMILY IN FINANCE I VE MADE ONLY ONE INVESTMENT Living in Malaysia for 20 Years Building Web Applications for 15 Years Building Tech Communities

More information

The BitShares Blockchain

The BitShares Blockchain The BitShares Blockchain Introduction Stichting BitShares Blockchain Foundation Zutphenseweg 6 7418 AJ Deventer Netherlands Chamber of Commerce: 66190169 http://www.bitshares.foundation info@bitshares.foundation

More information

Lightning or How to Pay Quickly with Bitcoin. Karim Baghery

Lightning or How to Pay Quickly with Bitcoin. Karim Baghery Lightning or How to Pay Quickly with Bitcoin Karim Baghery Supervised by Micha l Zajac University of Tartu, Estonia karim.baghery@ut.ee June 16, 2018 Abstract During last few years their have been huge

More information

An introduction. Dr Ken Boness

An introduction. Dr Ken Boness An introduction Dr Ken Boness 1 Evident Proof is A digital platform, underpinned by blockchain technology, which ensures that data transactions, events and documents can be used as dependable evidence

More information

Blockchain and the Maritime Industry

Blockchain and the Maritime Industry MARCH 2018 Blockchain and the Maritime Industry An introduction We will look at A review of the current transactional ecosystem The blockchain concept Smart contracts Q&A Current Shipping Transactional

More information

Bitcoin Blockchain technology. Mihail Nikulin, Co-founder & CTO, Lykke

Bitcoin Blockchain technology. Mihail Nikulin, Co-founder & CTO, Lykke Bitcoin Blockchain technology Mihail Nikulin, Co-founder & CTO, Lykke What is money? Copy protection consensus Consensus based on top of proof of existence Mining is burning electricity Colored Coins BTC/ETH/Some

More information

FLASH TOKEN WHITE PAPER

FLASH TOKEN WHITE PAPER FLASH TOKEN WHITE PAPER 2017 Blockchain Technology Cryptocurrency and the Economy Cryptocurrency Market The Flash Company Mining Benefits in Business Company Structure FLASH TOKEN ICO: the Order of Implementation

More information

The Blockchain Technology

The Blockchain Technology The Blockchain Technology Mooly Sagiv Tel Aviv University http://www.cs.tau.ac.il/~msagiv/courses/blockchain.html msagiv@acm.org Advisory Board Shelly Grossman Noam Rinetzky Ittai Abraham Guy Golan-Gueta

More information

The Blockchain Identity

The Blockchain Identity Innovation and Cryptoventures The Blockchain Identity Campbell R. Harvey Duke University and NBER Revised January 19, 2018 3 Blockchain is a technology There is no the blockchain blockchain is a technology.

More information

CHALLENGES AND RISKS OF BLOCKCHAIN TECHNOLOGY

CHALLENGES AND RISKS OF BLOCKCHAIN TECHNOLOGY CHALLENGES AND RISKS OF BLOCKCHAIN TECHNOLOGY Christian Sprecher Ulrich Gallersdörfer 24.02.2017 @ IRIS 2017 PEOPLE Christian Sprecher CTO weblaw.ch Ulrich Gallersdörfer Master Student at TUM Friday, February

More information

The Blockchain Identity

The Blockchain Identity The Blockchain Identity Campbell R. Harvey Duke University, NBER and Investment Strategy Advisor, Man Group, plc Revised September 16, 2016 Imagine Closing on a house with No title insurance Minimal legal

More information

BLOCKCHAIN: SOCIAL INNOVATION IN FINANCE & ACCOUNTING

BLOCKCHAIN: SOCIAL INNOVATION IN FINANCE & ACCOUNTING International Journal of Management (IJM) Volume 10, Issue 1, January-February 2019, pp. 14-18, Article ID: IJM_10_01_003 Available online at http://www.iaeme.com/ijm/issues.asp?jtype=ijm&vtype=10&itype=1

More information

Speaker. Bitcoin: How it works. The problem of digital cash. The problem of digital cash

Speaker. Bitcoin: How it works. The problem of digital cash. The problem of digital cash Speaker : How it works. A lightweight intro to block chains Ulrich Haböck Kompetenzzentrum für IT-Security, FH Campus Wien October 30, 2017 Ulrich Haböck ulrich.haboeck@fh-campuswien.ac.at PGP-key: 48F796E247BEEDE8.

More information

In this article, I describe the technology behind Bitcoin s blockchain, and

In this article, I describe the technology behind Bitcoin s blockchain, and Blockchain Hype or Hope? RADIA PERLMAN Radia Perlman s work has had a profound impact on how computer networks function today, enabling huge networks, like the Internet, to be robust, scalable, and largely

More information

LinkedIn /in/petkanic/

LinkedIn /in/petkanic/ This is the first time in a history of a mankind when we are able to permanently record the history of a mankind. Yes, blockchain is a bubble. And it s going to burst. But that s amazing! Because only

More information

How Blockchain Technology Changes Marketing

How Blockchain Technology Changes Marketing How Blockchain Technology Changes Marketing Campbell R. Harvey Duke University and NBER @camharvey Version: May 1, 2018 Agenda Understanding blockchain Impact on marketing Questions Campbell R. Harvey

More information

Bitcoin and why it will change the world

Bitcoin and why it will change the world Bitcoin and why it will change the world Luv Khemani What is Bitcoin? Brief History of Bitcoin - Bitcoin Design paper released in 2008 by an annonymous programmer calling himself Satoshi Nakamoto - Bitcoin

More information

November 2018 Abstract

November 2018 Abstract etxcoin@outlook.com November 2018 Abstract A purely peer-to-peer version of electronic cash scalable and friendly to use would allow online payments to be sent directly from one party to another without

More information

Blockchain Technology: Concepts. Whitepaper 1

Blockchain Technology: Concepts. Whitepaper 1 Whitepaper 1 Introduction Cryptocurrency, the digital currency system that enables global monetary transactions between two parties without the need for a trusted third party financial institution, has

More information

Blockchain Technology for Next Generation ICT

Blockchain Technology for Next Generation ICT Blockchain Technology for Next Generation ICT Jun Kogure Ken Kamakura Tsunekazu Shima Takekiyo Kubo Blockchain technology, which supports low-cost decentralized distributed data management featuring tamper

More information

Proof of work and Proof of stake explanation

Proof of work and Proof of stake explanation Bitspace White paper is a living document. We are constantly upgrading our white paper to answer all your questions and provide all information you could possibly need in understanding Bitspace ecosystem

More information

SECRET COIN WHITE PAPER

SECRET COIN WHITE PAPER ABSTRACT With the development of blockchain technology and the rapid growth of the cryptocurrency market, new opportunities appear consistently in the field of investment. The traditional economy changes

More information

Auditing in the Crypto-Asset Sector

Auditing in the Crypto-Asset Sector Auditing in the Crypto-Asset Sector Introduction Many of the reporting issuers in Canada s crypto-asset sector obtained material crypto-asset holdings or engaged in material crypto-mining activity during

More information

CONTENTS DISCLAIMER... 3 EXECUTIVE SUMMARY... 4 INTRO... 4 ICECHAIN... 5 ICE CHAIN TECH... 5 ICE CHAIN POSITIONING... 6 SHARDING... 7 SCALABILITY...

CONTENTS DISCLAIMER... 3 EXECUTIVE SUMMARY... 4 INTRO... 4 ICECHAIN... 5 ICE CHAIN TECH... 5 ICE CHAIN POSITIONING... 6 SHARDING... 7 SCALABILITY... CONTENTS DISCLAIMER... 3 EXECUTIVE SUMMARY... 4 INTRO... 4 ICECHAIN... 5 ICE CHAIN TECH... 5 ICE CHAIN POSITIONING... 6 SHARDING... 7 SCALABILITY... 7 DECENTRALIZATION... 8 SECURITY FEATURES... 8 CROSS

More information

Uniting Capital with Purpose. Unlock Blockchain

Uniting Capital with Purpose. Unlock Blockchain Uniting Capital with Purpose 2018 Current and Future State of Cryptocurrencies January 2018 By Muhammed Taha Yesilhark Founder & CIO of Q2Q Capital Would you say you have basic understanding of what Blockchain

More information

Blockchain and distributed ledger technology at Travelport

Blockchain and distributed ledger technology at Travelport Blockchain and distributed ledger technology at Travelport A Travelport white paper Enterprise Architecture April 2018 2018 Travelport All rights reserved. Travelport, Apollo, Galileo, Worldspan and the

More information

IFRS Discussion Group

IFRS Discussion Group IFRS Discussion Group Report on the Public Meeting June 21, 2018 The IFRS Discussion Group s purpose is to act in an advisory capacity to assist the Accounting Standards Board (AcSB) in supporting the

More information

A.J. Bahou, LLM, MSECE Bahou Miller PLLC

A.J. Bahou, LLM, MSECE Bahou Miller PLLC A.J. Bahou, LLM, MSECE Bahou Miller PLLC AJBahou@BahouMiller.com ISACA and ISC2 December 2017 The views expressed herein are solely the presenter s and do not necessarily reflect any position of Bahou

More information

Blockchain Overview. Amr Eid Cloud Architect, Cloud Platform, MEA

Blockchain Overview. Amr Eid Cloud Architect, Cloud Platform, MEA Blockchain Overview Amr Eid Cloud Architect, Cloud Platform, MEA amreid@eg.ibm.com History Business / Academic 1991: The first crypto secured chain of blocks How to time-stamp a digital document Bitcoin

More information

Tax Reporting of Bitcoin and Other Cryptocurrency: Calculating Basis, Income and Gain

Tax Reporting of Bitcoin and Other Cryptocurrency: Calculating Basis, Income and Gain Tax Reporting of Bitcoin and Other Cryptocurrency: Calculating Basis, Income and Gain FOR LIVE PROGRAM ONLY TUESDAY, JUNE 26, 2018, 1:00-2:50 pm Eastern IMPORTANT INFORMATION FOR THE LIVE PROGRAM This

More information

What is HomeBlockCoin

What is HomeBlockCoin Whitepaper This is not the final version of the HomeBlockCoin whitepaper. There won t be any significant changes but we will add more information as soon as possible. About HomeBlockCoin HomeBlockCoin

More information

Will Bitcoin and the Block Chain change the way we Live and Work? Martyn Thomas CBE FREng Livery Company Professor of Information Technology

Will Bitcoin and the Block Chain change the way we Live and Work? Martyn Thomas CBE FREng Livery Company Professor of Information Technology Will Bitcoin and the Block Chain change the way we Live and Work? Martyn Thomas CBE FREng Livery Company Professor of Information Technology 1 2 Money A way of storing and transferring value Value based

More information

Mining Market Overview

Mining Market Overview NANO MINING TOKEN NanoPool is an end-to-end cryptocurrency mining services provider. It is launching NANOMining Token (NANO), a utility token based on ERC-20 standard on Ethereum Blockchain. NANO will

More information

Understanding Cryptocurrency (updated May 2018) Ari Paul CIO, Managing Partner BlockTower Capital

Understanding Cryptocurrency (updated May 2018) Ari Paul CIO, Managing Partner BlockTower Capital Understanding Cryptocurrency (updated May 2018) Ari Paul CIO, Managing Partner BlockTower Capital 1 What is cryptocurrency? Cryptocurrency is at the intersection of game theory, cryptography, computer

More information

In the future, many kinds of cryptocurrencies will be born, and service competition will increase.

In the future, many kinds of cryptocurrencies will be born, and service competition will increase. A financial revolution will be triggered by the birth of Blockchain! When people began to say this, most people did not attempt to listen to it. Several years have passed since then, and only some people

More information

Bitcoin Lightening Network: a Distributed Network for Scalability of Bitcoin. Shahla Atapoor

Bitcoin Lightening Network: a Distributed Network for Scalability of Bitcoin. Shahla Atapoor Bitcoin Lightening Network: a Distributed Network for Scalability of Bitcoin Shahla Atapoor Supervised by Prof. Eero Vainikko University of Tartu, Estonia shahla.atapoor@ut.ee January 3, 2019 Abstract

More information

Blockchain and Smart Contracts: Relevance of Security Facts and Myths to Industrial Control

Blockchain and Smart Contracts: Relevance of Security Facts and Myths to Industrial Control Blockchain and Smart Contracts: Relevance of Security Facts and Myths to Industrial Control R. R. Brooks rrb@g.clemson.edu Clemson University Electrical and Computer Engineering September 20 th, 2018 1

More information

whitepaper Abstract Introduction Features Special Functionality Roles in DiQi network Application / Use cases Conclusion

whitepaper Abstract Introduction Features Special Functionality Roles in DiQi network Application / Use cases Conclusion whitepaper Abstract Introduction Features Special Functionality Roles in DiQi network Application / Use cases Conclusion Abstract DiQi (pronounced Dee Chi) is a decentralized platform for smart property.

More information

Bitcoin (BTC) C$4,943 (US$3,745) November 26, 3:15 pm

Bitcoin (BTC) C$4,943 (US$3,745) November 26, 3:15 pm Bitcoin (BTC) C$4,943 (US$3,745) General Cryptocurrency News: According to Aon Risk Solutions, there is currently US$6 billion in available cryptocurrency insurance coverage for crypto-related crimes.

More information

Blockchain: An introduction and use-cases June 12 th, 2018

Blockchain: An introduction and use-cases June 12 th, 2018 Blockchain: An introduction and use-cases June 12 th, 2018 Agenda What we will cover today An introduction to Blockchain Blockchain for CFO Proof-of-Concepts Round up 2018 Deloitte Belgium Blockchain:

More information

Journal of Multistate Taxation and Incentives (Thomson Reuters/Tax & Accounting) Volume 28, Number 4, July 2018

Journal of Multistate Taxation and Incentives (Thomson Reuters/Tax & Accounting) Volume 28, Number 4, July 2018 Journal of Multistate Taxation and Incentives (Thomson Reuters/Tax & Accounting) Volume 28, Number 4, July 2018 SHOP TALK Blockchain & Cryptocurrency Two Roads Converge By JUSTIN E. HOBSON JUSTIN E. HOBSON

More information

Initial Coin Offerings

Initial Coin Offerings Initial Coin Offerings Hossein Kazemi CAIA Association & Isenberg School of Management, University of Masschusetts May 30, 2018 1. Introduction In the late 1940s, W.J. Howey company owned a hotel and large

More information

Transferring Data through an Ethereum Blockchain using Transactions

Transferring Data through an Ethereum Blockchain using Transactions DNAtix DevOps Whitepaper Transferring Data through an Ethereum Blockchain using Transactions DNAtix Development Team Internal Research The DNAtix development team has conducted an internal test in order

More information

New IRS Scrutiny on Cryptocurrency Reporting: Filing Requirements and Exchange Treatment

New IRS Scrutiny on Cryptocurrency Reporting: Filing Requirements and Exchange Treatment Presenting a 90-minute encore presentation featuring live Q&A New IRS Scrutiny on Cryptocurrency Reporting: Filing Requirements and Exchange Treatment TUESDAY, APRIL 24, 2018 1pm Eastern 12pm Central 11am

More information

Blockchain and Risk ISACA Northern UK, April 20 th, Mike Small CEng, FBCS, CITP Senior Analyst Kuppinger Cole

Blockchain and Risk ISACA Northern UK, April 20 th, Mike Small CEng, FBCS, CITP Senior Analyst Kuppinger Cole Blockchain and Risk ISACA Northern UK, April 20 th, 2016 Mike Small CEng, FBCS, CITP Senior Analyst Kuppinger Cole Mike.Small@kuppingercole.com Agenda Mike Small KuppingerCole Trust and Integrity The Bitcoin

More information

A block chain based decentralized exchange

A block chain based decentralized exchange A block chain based decentralized exchange Harsh Patel Harsh.patel54@gmail.com Abstract. A pure peer to peer version of the exchange system would allow all parties access to the market without relying

More information

Universal Payment Channels

Universal Payment Channels Universal Payment Channels Jehan Tremback, Zack Hess jehan.tremback@gmail.com, zack.bitcoin@gmail.com November 2015 v0.5 Abstract This paper concerns a payment network called Universal Payment Channels,

More information

Cryptocurrencies as Charitable Gifts: Should Your Charity Say Yes?

Cryptocurrencies as Charitable Gifts: Should Your Charity Say Yes? With the increased notoriety of cryptocurrencies, many charities are exploring the option of accepting Bitcoin, Ripple, Litecoin and nearly 2,000 other virtual currencies for donations. In fact, Fidelity

More information

Lyves Trustworthy payments despite anonymity. Version 2.4.1

Lyves Trustworthy payments despite anonymity. Version 2.4.1 Lyves Trustworthy payments despite anonymity Version 2.4.1 1. INTRODUCTION 4 1.1. Blockchain 4 1.1.1. About Blockchain 4 1.1.2. Cryptocurrency 8 1.2. Lyves 10 1.2.1. Our Vision 10 1.2.2. Our Team 12 2.

More information

Blockchain Basics with focus on Energy

Blockchain Basics with focus on Energy Blockchain Basics with focus on Energy Energy Blockchain Webinar Series: Webinar #2 July 13, 2018 July 13 th 2018 Tony Giroti, tony@energy-blockchain.org CONTENT COPYRIGHT 2018, ENERGY BLOCKCHAIN CONSORTIUM,

More information

New Kids on the Blockchain: RIM Blockchain Applications Today & Tomorrow

New Kids on the Blockchain: RIM Blockchain Applications Today & Tomorrow New Kids on the Blockchain: RIM Blockchain Applications Today & Tomorrow Q. Scott Kaye, Partner, Rimon Law John Isaza, Information Governance Solutions, LLC AGENDA What is Blockchain? How it works Forming

More information

Investing in the Blockchain Ecosystem

Investing in the Blockchain Ecosystem Introduction When investors hear the term Blockchain, most probably think of cryptocurrencies (which are digital currencies, operated independently from a central bank), with Bitcoin being the most well-known.

More information

International Journal of Computer Engineering and Applications, Volume XII, Special Issue, April- ICITDA 18,

International Journal of Computer Engineering and Applications, Volume XII, Special Issue, April- ICITDA 18, International Journal of Computer Engineering and Applications, Volume XII, Special Issue, April- ICITDA 18, www.ijcea.com ISSN 2321-3469 ABSTRACT: BLOCKCHAIN, CRYPTOCURRENCY AND BITCOIN Nurul Hassan,

More information

Blockchain in Healthcare

Blockchain in Healthcare Blockchain in Healthcare Presented to the Kentucky HFMA Chapter Tom Skoog, Principal July 19, 2018 What are Blockchain and Bitcoin and How Can They Be Used? Bitcoin and Blockchain - - what s the difference

More information

Copyright Scottsdale Institute All Rights Reserved.

Copyright Scottsdale Institute All Rights Reserved. Copyright Scottsdale Institute 2017. All Rights Reserved. No part of this document may be reproduced or shared with anyone outside of your organization without prior written consent from the author(s).

More information

CME Bitcoin Futures The Basics

CME Bitcoin Futures The Basics CME Bitcoin Futures The Basics January 2018 Dave Lerman Senior Director, Education CME Group David.lerman@cmegroup.com Disclaimer Neither futures trading nor swaps trading are suitable for all investors,

More information

What Blockchain Means For Your Organization s Insurance Program

What Blockchain Means For Your Organization s Insurance Program What Blockchain Means For Your Organization s Insurance Program Bradley Arant Boult Cummings LLP Presented by Katherine J. Henry and Brendan W. Hogan November 2, 2017 Bradley Arant Boult Cummings LLP Attorney-Client

More information

chainfrog WHAT ARE SMART CONTRACTS?

chainfrog WHAT ARE SMART CONTRACTS? chainfrog WHAT ARE SMART CONTRACTS? WHAT ARE SMART CONTRACTS AND WHERE AND WHY WOULD YOU USE THEM A question I get asked again and again at lectures and conferences is, what exactly are smart contracts?

More information

Blockchain and the possible impact on testing. New technology needs new testing?

Blockchain and the possible impact on testing. New technology needs new testing? Specialisten in vooruitgang Blockchain and the possible impact on testing. New technology needs new testing? Jeroen Rosink TestCon Vilnius October 18 th 2018 Software testen Business Process Transformation

More information

Pottery Research is an organization that uses knowledge of law and financial markets, where it interacts, to assist investment and business stability

Pottery Research is an organization that uses knowledge of law and financial markets, where it interacts, to assist investment and business stability Pottery Research is an organization that uses knowledge of law and financial markets, where it interacts, to assist investment and business stability in Sub Saharan Africa. Through the provision of business,

More information