Blockchain Demystified

Size: px
Start display at page:

Download "Blockchain Demystified"

Transcription

1 Blockchain Demystified DR THEODOSIS MOUROUZIS (CIIM, UCL CBT, CYPRUS BLOCKCHAIN TECHNOLOGIES)

2 Cyprus Blockchain Technologies Centre The Cyprus Blockchain Technologies Ltd. is a non-profit organization established as a collaboration among academic institutions, financial institutions, banks and technology companies. Members so far are: We are open for more members and advisors if you are interested (either as company or individual). Link: BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 2

3 Cyprus Blockchain Technologies Centre BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 3

4 Presentation Overview The Blockchain: Public vs Private Blockchain and Consensus Algorithms Introduction to Smart-Contracts Initial Coin Offerings (ICOs) BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 4

5 Evolution of Money BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 5

6 Blockchain technology was firstly introduced in 2008 by Satoshi Nakatomo (unknown person or group of persons) in the paper Bitcoin: A Peer-to-Peer Electronic Cash System (Ref: It became Open Source in BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 6

7 Bitcoin is the first complete e-cash system with the following characteristics: - Peer-to-peer (P2P) network in which users can transact without the need of a central authority or trusted third party. - Pseudo-anonymous (identified via public key) and anyone can join the network. - Rules and incentives are enforced through consensus mechanisms for approving transactions. The majority always wins. - All data are public and stored in a publicly distributed ledger called the Blockchain. - Full utilization of cryptographic primitives (digital signatures, hash functions) to solve e-cash challenges and ownership/provenance issues. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 7

8 Problems addressed in Bitcoin architecture that gave rise to the generalization of Blockchain as a more generic technology for transacting and tracking assets: No Counterfeiting: Nobody can increase the money (or any other asset) supply at will. No Double Spending: Nobody can spend the same value more than once. Transaction Irreversibility/Immutability: Nobody can undo a Transaction. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 8

9 What is a Blockchain? A shared, distributed, append-only, cryptographically secure database/ledger used to record either transactions or account balances for a set of assets and users. A copy of this ledger is maintained on every node in the network. Ownership of an asset or right to perform an action is guaranteed via digital signatures (provenance). Appending on the ledger requires the ecosystem to reach to a consensus via some consensus algorithms that are either computationally hard problems (public/open/permissionless) or based on access permissions (private/permissioned). It is claimed that Blockchain will do for transactions what Internet did for information. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 9

10 BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 10

11 "The technology most likely to change the next decade of business is not the social web, big data, the cloud, robotics, or even artificial intelligence. It s the blockchain... Harvard Business Review "The Impact of Blockchain Goes Beyond Financial Services," May 2016 BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 11

12 The Use Cases for Blockchain: Storage for digital records Exchange & Tracking of digital (or physical) assets (tokenization aspect) Crowdfunding via Initial Coin Offerings (ICOs) - Forms of tokens: utilities, securities or equities, currencies Execution of smart-contracts - Terms & Conditions are encoded into the code - Distributed network executes contract and checks compliance - Outcomes are automatically validated without the need of a third party BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 12

13 Figure 1: How Blockchain works (Ref. PWC). BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 13

14 All transactions are visible on the ledger (Example: blockexplorer.com). BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 14

15 Figure 2: Business networks before and after Blockchain (Ref. Blockchain for Dummies by IBM). Blockchain revolutionizes the traditional business: Cost effective, Efficient, Secure & safe BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 15

16 Ownership guaranteed by Public Key Cryptography (Digital Signatures). Each user has two pairs of keys; the public and the private key. Public key is related to the public address of the user over the network while the private key is used either to prove ownership of an asset or right to access or initiate a transaction. Public Key can be also used to prove that the user has the access to perform an action or transfer an asset. All history can be checked on the ledger if the public key is associated with a person. Addresses looks like 16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM and it is calculated from a Public Key. This offers pseudo-anonymity since nobody knows who owns this address. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 16

17 A user uses his/her private key to initiate a transfer/transaction/access request. This transaction gets an identifier based on the content of the transaction (exact amount, recipient s address) and then signed by the secret key of the originator. Identifiers are derived via cryptographically strong hash functions. Validity of the signature is derived via originator s public key. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 17

18 A hash function is a one way function that takes as input text of arbitrary length and outputs fixed-length string. Flipping one bit in the input results in a randomly distributed output. Hard to construct same identifiers with different inputs in the transactions which means it is computationally infeasible to alter/modify the content of a transaction. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 18

19 SHA-256 is a cryptographically secure one way hashing algorithm that takes any input value and converts to a 32 byte output: SHA-256 Secret 7e32a729b1226ed1270f282a8c63054d09b26bc9ec53ea69771ce38158dfade8 SHA-256 Sacret fdbd74c69cc87718c1c9cdffd517e0daed9c56d896ecc97e 4f9c94f88068ae93 BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 19

20 Transactions are populated in one block and then send for verification to the miners/verifiers who have to solve a computationally hard problem and come up with a solution called the difficulty statement (proof-of-work) Each block that hosts the transactions contains the following information 1. Timestamp 2. The hash of the previous block as a reference 3. At least one transaction 4. The Merkle Root (Tree) : all transactions hashed together in a pre-defined way 5. The block s own hash 6. Difficulty statement BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 20

21 BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 21

22 Figure 3: Hashchain used to link different blocks in Blockchain. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 22

23 Because the network is P2P there is no single point of truth. Forks occur as temporary inconsistencies between versions of the block, which are resolved by eventual re-convergence as more blocks are added to one of the forks. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 23

24 Soft forks versus Hard forks A soft fork is a forward-compatible change to the consensus rules that allows un-upgraded clients to continue to operate with the new rules. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 24

25 In contrast to a temporary fork, a hard fork does not re-converge to a single chain. Instead the two chains evolve independently. Hard forks occur on several occasions : - Change on the consensus rules - Spinoff coin (Bitcoin Cash, ERC20 tokens) - Bugs on the software BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 25

26 Where are these tokens/digital assets stored? Cold vs Hot wallets - Cold wallets: The private key is stored offline. - Hot wallets: The private key is stored online and usually maintained by the exchange operator BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 26

27 Public vs Private Blockchain and Consensus Algorithms We have public/open/permissionless and private/permissioned Blockchains. Both are decentralized, peer-to-peer networks where each participant maintains a copy of a shared append-only ledger of digitally signed transactions. They maintain the copies in sync through a protocol referred to as consensus. The basic difference is related to who is allowed to participate in the network, execute the consensus protocol and maintain the shared ledger. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 27

28 Public vs Private Blockchain and Consensus Algorithms Public network is open and anyone can join and participate in the network. The network has an incentivizing mechanism to encourage more participants to join the network. Public blockchain requires substantial amount of computational power to maintain a distributed ledger at a large scale. Each node must solve the computationally incentive proof-ofwork problem. A private blockchain network requires an invitation and must be validated by either the network starter or by a set of rules put in place by the network starter. Businesses who set up a private blockchain, will generally set up a permissioned network. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 28

29 Public vs Private Blockchain and Consensus Algorithms BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 29

30 Public vs Private Blockchain and Consensus Algorithms Enterprise-Focused Increased Ownership & Control Increased Anonymity of Participants / Validators Public Federated Caretaker consortium Private Blockchain Technologies Bitcoin, Ethereum Hyperledger Fabric, R3 Corda Network Ownership Open To All By Invitation One entity controls all nodes Participation Anonymous fully decentralized participation Pre-authorized participation in Read/Write or Read-Only mode Separation of Concern No Yes, via specific channels Consensus Mechanism Proof of Work or Stake Protocols (e.g. Mining) Various Pluggable Mechanisms such as Simplified Byzantine Fault Tolerance, etc Transactions throughput 7-15/sec 100 s s/sec BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 30

31 Public vs Private Blockchain and Consensus Algorithms Consensus Mechanisms Proof of work Proof of stake Proof of capacity Multi-signature Practical Byzantine Fault Tolerance (PBFT) Explanation Computationally intense problem to be solved; requires large computations and involves computing many hashes Validators are chosen deterministically based on the stake they have in the system Based on the availability of hard drive allocating for mining/verification Several stakeholders that own secret keys could provide permission by ALL signing the transaction An algorithm designed to settle disputes among computing nodes (network participants) when one node in a set of nodes generates different output from the others in the set BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 31

32 Intro to Smart Contracts A contract is a relation between two or more parties which includes legally enforceable obligations between them. Current paper-based systems drive $18T in transactions per year. Contracts can be converted into a programmable code. This enable peer-to-peer trading of everything from renewable energy to automated hotel room bookings. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 32

33 Intro to Smart Contracts Figure 4: Processes in smart contracts (Ref: BlockGeeks). BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 33

34 Intro to Smart Contracts Figure 5: Tracking vehicle ownership without and with Blockchain/Smart Contracts (ref. Blockchain for Dummies by IBM). BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 34

35 Initial Coin Offerings (ICOs) An ICO is a fundraising (crowdfunding) event, known as token coins, effected using Blockchain Technology, in which a token or coin is offered to a participant in return for either cash (fiat currency) or cryptocurrency, such as Ether or Bitcoin. Investors can contribute as much money as they wish in a very similar way as in crowdfunding campaigns (i.e. Kickstarter or Indiegogo). Instead of shares of stock, investors of individuals buy tokens (a digital asset or technologybased contract) that is assigned a certain monetary value that is expected to surge over time (hopefully). BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 35

36 Initial Coin Offerings (ICOs) The name ICOs was inspired by the the IPOs (Initial Public Offerings) that companies conduct in order to sell stock to investors. Unlike stock offerings, ICOs are generally designed so that investors don t get an ownership stake in the start-ups. People buy these tokens because they want to use the services on which the coin will be used. If the coin does provide an ownership stake, the Securities and Exchange Commission has said, the companies must comply with all securities law since it is considered as security. A few coins have done this, but most have tried to avoid it. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 36

37 Initial Coin Offerings (ICOs) A new cryptocurrency is created on a protocol such as Counterparty, Ethereum (via forking), or Openledger. The value is arbitrarily determined by the startup team behind the ICO based on what they think the network is worth at its current stage. Then, via price dynamics determined by market supply and demand, the value is settled on by the network of participants, rather than by a central authority or government. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 37

38 Initial Coin Offerings (ICOs) Types of Tokens Utilities: The token can be used to access a particular service. Securities or Equities: The token represents stake into the company. Currencies: The token can be used to purchase items from retailers. BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 38

39 Initial Coin Offerings (ICOs) Consumer Risks Market Risks Technology Risks Unclear regulatory space Undefined legal obligations Lack of understanding the technology Inadequate security knowledge Tax risks Risk of uninsured losses Phishing scams Price volatility Lack of liquidity Possible market manipulation by stakeholders not acting fairly (whales, pump-anddump, spoofing, front running) Market movements attributed to ICO cash outs Exchanges not acting fairly Exchanges with limited understanding of technology risks Weakness or flaws in the Blockchain infrastructure Weaknesses, bugs or flaws in the smart-contracts codes Weak passwords used for protecting wallets Weak security protections when tokens are held on exchanges or cold wallets BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 39

40 Initial Coin Offerings (ICOs) Scam vs Investment? To invest or not? Tips Understand the regulatory framework in the jurisdiction where the ICO is conducted Do they explain why the need the amount of money the claim and is there proper allocation of funds? Check the company s history (track records, patents, publications, financials) Conduct background checks of core team members and advisors Are there any partners or industry associations related to the ICO? Is there a real need about this product? Does decentralization really needed? Is there any code published in open source repositories such as github? Is the team active in the proper communication channels? Is the team complete with respect to all important roles? Are there any escrow mechanisms in place to return the funds in case something goes wrong (e.g. sofcap not needed)? BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 40

41 End of Presentation BLOCKCHAIN DEMYSTIFIED: A LEVEL-SET BY DR THEODOSIS MOUROUZIS 41

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

L3. Blockchains and Cryptocurrencies

L3. Blockchains and Cryptocurrencies L3. Blockchains and Cryptocurrencies Alice E. Fischer September 6, 2018 Blockchains and Cryptocurrencies... 1/16 Blockchains Transactions Blockchains and Cryptocurrencies... 2/16 Blockchains, in theory

More information

Blockchain & The Hollywood Supply Chain

Blockchain & The Hollywood Supply Chain HITS: Fall 2017 - Innovation & Technology: Hollywood 2025 October 23, 2017 October 18, 2017 2:50 3:10 PM Skirball Cultural Center Los Angeles, CA Blockchain & The Hollywood Supply Chain Steve Wong DXC

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

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 Demystified for Business Intelligence Professionals

Blockchain Demystified for Business Intelligence Professionals Blockchain Demystified for Business Intelligence Professionals Jennifer Stirrup Director Data Relish Ltd Jen Stirrup Boutique Consultancy Owner of Data Relish Postgraduate degrees in Artificial Intelligence

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

Blockchain & beleggingen. NBA Amsterdam, 28 mei 2018

Blockchain & beleggingen. NBA Amsterdam, 28 mei 2018 Blockchain & beleggingen NBA Amsterdam, 28 mei 2018 Introductie Dennis de Vries Joined in 2015 as senior manager Audit serving financial institutions Appointed lead KPMG Digital Ledger Services Netherlands

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

primechain building blockchains for a better world

primechain building blockchains for a better world primechain building blockchains for a better world 8 steps to building blockchain solutions Rohas Nagpal, Primechain Technologies Pvt. Ltd. 8 steps to building blockchain solutions When Blockchain technology

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

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

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

Version 1.0. The Blockchain An architectural view

Version 1.0. The Blockchain An architectural view Version 1.0 The Blockchain An architectural view Version 1.0 TOC 1. Introduction of Presenters 5. Equilibrium of the blockchain ecosystem 2. Origins of the blockchain 6. Types of blockchains 3. Basic Principles

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

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

Blockchain Technology in Banking and Financial Services

Blockchain Technology in Banking and Financial Services Blockchain Technology in Banking and Financial Services Daniel Rozycki Payments Consultant Payments, Standards, & Outreach Group Federal Reserve Bank of Minneapolis EPCOR Payments Conference Spring 2017

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

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

Blockchain 101 for Healthcare Session 145 March 7, 2018, 11:30 a.m.

Blockchain 101 for Healthcare Session 145 March 7, 2018, 11:30 a.m. Blockchain 101 for Healthcare Session 145 March 7, 2018, 11:30 a.m. Brian Behlendorf, Executive Director of Hyperledger at The Linux Foundation Corey Todaro, Chief Operating Officer at Hashed Health 1

More information

Practical Blockchain: Navigating Through The Hall of Mirrors. Sandy Carielli Director of Security Technologies Entrust Datacard

Practical Blockchain: Navigating Through The Hall of Mirrors. Sandy Carielli Director of Security Technologies Entrust Datacard Practical Blockchain: Navigating Through The Hall of Mirrors Sandy Carielli Director of Security Technologies Entrust Datacard Quick Survey QUICK SURVEY "Blockchain In Banking: Success Depends On Technology

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

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

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

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

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

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

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

Genesis Crypto Blockchain Investment Bank. A Blockchain Platform for Cryptocurrency-based Financial Services

Genesis Crypto Blockchain Investment Bank. A Blockchain Platform for Cryptocurrency-based Financial Services Genesis Crypto Blockchain Investment Bank A Blockchain Platform for Cryptocurrency-based Financial Services : Genesis Crypto Blockchain Investment Bank A Blockchain Platform for Cryptocurrency-based Financial

More information

Introduction to Blockchain

Introduction to Blockchain Introduction to Blockchain with focus on Energy June 1 st 2018 Tony Giroti tony@energy-blockchain.org Jun 1, 2018 CONTENT COPYRIGHT 2018, ENERGY BLOCKCHAIN CONSORTIUM, Tony Giroti, tony@energy-blockchain.org

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

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

Blockchain. Rogers D. Stephens Technical FedEx I.T. April 2018

Blockchain. Rogers D. Stephens Technical FedEx I.T. April 2018 Blockchain Rogers D. Stephens Technical Fellow @ FedEx I.T. April 2018 Blockchain: An Emerging Technology What is it? Why is it significant? Gartner Hype Cycle 2017 2 Where did Blockchain come from? Ghost

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

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

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

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

LEADING THE WAY GLOBAL SPECIALIST RISK ADVISER & BROKER JLT SOUTH AFRICA #SAAFF2018

LEADING THE WAY GLOBAL SPECIALIST RISK ADVISER & BROKER JLT SOUTH AFRICA   #SAAFF2018 LEADING THE WAY GLOBAL SPECIALIST RISK ADVISER & BROKER JLT SOUTH AFRICA www.za.jlt.com #SAAFF2018 Demystifying Blockchain & its Impact on the Supply Chain Louise Wiggett August 2018 Blockchain The Start

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

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

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

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

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

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

Blockchain & Bitcoin. Länsstyrelserna David Bauman

Blockchain & Bitcoin. Länsstyrelserna David Bauman Blockchain & Bitcoin Länsstyrelserna 2017-03-28 David Bauman Agenda What is Money? What is Bitcoin & Blockchain? How does it Work? Areas of Application Future Public Sector Questions What is Currency?

More information

DRAFT Dsion is. Startup Funding on Blockchain Platform

DRAFT Dsion is. Startup Funding on Blockchain Platform DRAFT 1.0.9 Dsion is Startup Funding on Blockchain Platform 2 Dsion White Paper Startup Funding on Blockchain Platform CONTENTS 1. What is Dsion? 5 1) Dsion Summary 5 1-1) Absence of a Fair and Secure

More information

Andrés Araya Falcone Gerente de Tecnologia Bolsa de Comercio de Santiago, Chile

Andrés Araya Falcone Gerente de Tecnologia Bolsa de Comercio de Santiago, Chile Andrés Araya Falcone Gerente de Tecnologia Bolsa de Comercio de Santiago, Chile Rajiv Chodhari Vice President, Financial Markets & Wealth Management IBM, Estados Unidos the thing that's driving bitcoin

More information

THE BLOCKCHAIN DISRUPTION. INSIGHT REPORT on Blockchain prepared by The Burnie Group

THE BLOCKCHAIN DISRUPTION. INSIGHT REPORT on Blockchain prepared by The Burnie Group THE BLOCKCHAIN DISRUPTION INSIGHT REPORT on Blockchain prepared by The Burnie Group NOVEMBER 2017 BUILDING VALUE Business networks create value. The efficiency of business networks is a function of the

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

Understanding Blockchain & its implications for financial professionals

Understanding Blockchain & its implications for financial professionals Understanding Blockchain & its implications for financial professionals Professor George M. Giaglis Director, Institute for the Future, University of Nicosia http://unic.ac.cy/blockchain giaglis.g@unic.ac.cy

More information

Blockchain: The New Line of Defense

Blockchain: The New Line of Defense Blockchain: The New Line of Defense Who Am I Your Presenter & Advisory in This Domain q Cybersecurity Solutions Architect for Enterprise & National Level Projects for Kaspersky Lab Middle East, Turkey

More information

Blockchain 2.0: Smart Contracts

Blockchain 2.0: Smart Contracts Blockchain 2.0: Smart Contracts Karan Bharadwaj August 7, 2016 The relevance of blockchain technology to the financial world has grown substantially over the last few years. An important aspect of the

More information

Economic Incentives and Blockchain Security

Economic Incentives and Blockchain Security Economic Incentives and Blockchain Security Abstract Much like steam engines and the internet, blockchain has emerged as a disruptive technology and a foundation for tomorrow s businesses and ecosystem.

More information

Building Blockchain Solutions

Building Blockchain Solutions Provide Authenticity and Trust to all information you create, process, store and distribute Digital Disruption Is Here The application of new digital technologies causes seismic upheavals in all markets:

More information

Fintech & Blockchain demystified

Fintech & Blockchain demystified Fintech & Blockchain demystified What is it, why, when and its effect Ir Olivier Rikken MBA Scharloo, Curaçao, 28 June 2018 Improving performance, managing risk. Curriculum vitae Olivier Rikken Education:

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

Changing Data Protection: Heading towards a Blockchain-Operated Future

Changing Data Protection: Heading towards a Blockchain-Operated Future SESSION ID: SDS-R02 Changing Data Protection: Heading towards a Blockchain-Operated Future Eugene Aseev Head of Singapore R&D Centre Acronis @toxzique Agenda Blockchain yesterday Background Blockchain

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

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

Komodo Platform Overview

Komodo Platform Overview Komodo Platform Overview w w w. k o m o d o p l a t f o r m. c o m Goldenman Korean Ambassador KOMODO basic information Category : Privacy, Platform ICO Date : 2016 년 9-10 월 Total supply : 200,000,000

More information

IFRS (#) Accounting for crypto-assets

IFRS (#) Accounting for crypto-assets IFRS (#) Accounting for crypto-assets Contents 1. Introduction 1 2. What are crypto-assets? 2 2.1. Cryptocurrencies 3 2.2. Tokens (crypto-assets other than cryptocurrencies) 5 3. Accounting for crypto-assets

More information

21 st Geneva Report on the World Economy. Peterson Institute Presentation September 26, 2018

21 st Geneva Report on the World Economy. Peterson Institute Presentation September 26, 2018 21 st Geneva Report on the World Economy Peterson Institute Presentation September 26, 2018 1 Satoshi Nakamoto: Bitcoin P2P e-cash paper October 31, 2008 I've been working on a new electronic cash system

More information

IOV: a Blockchain Communication System

IOV: a Blockchain Communication System IOV: a Blockchain Communication System December 2017 - February 2018 Antoine Herzog a, Serge Karim Ganem b, Isabella Dell c, and Florin Dzeladini d a antoine@iov.one; b karim@iov.one; c isabella@iov.one;

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

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

Bitcoin, Blockchain Technology, Block Chain Ecosystem : What You Need to Know?

Bitcoin, Blockchain Technology, Block Chain Ecosystem : What You Need to Know? Bitcoin, Blockchain Technology, Block Chain Ecosystem : What You Need to Know? Speaker : Zuriati Ahmad Zukarnain Designation : Associate Professor Company : Universiti Putra Malaysia Bitcoin, Blockchain

More information

Committee on WIPO Standards (CWS)

Committee on WIPO Standards (CWS) E CWS/6/4 REV. ORIGINAL: ENGLISH DATE: SEPTEMBER 6, 2018 Committee on WIPO Standards (CWS) Sixth Session Geneva, October 15 to 19, 2018 CREATION OF A TASK TO PREPARE RECOMMENDATIONS FOR BLOCKCHAIN Document

More information

Blockchain Series Part 1 of 4:

Blockchain Series Part 1 of 4: Blockchain Series Part 1 of 4: Blockchain 101 It s Not Just Cryptocurrency #HASHTAG SPEAKERS Glynna Christian Partner, Co-Head Global Tech Transactions Orrick Michaela Ross Tech & Telecom Reporter Bloomberg

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 Developer TERM 1: FUNDAMENTALS. Blockchain Fundamentals. Project 1: Create Your Identity on Bitcoin Core. Become a blockchain developer

Blockchain Developer TERM 1: FUNDAMENTALS. Blockchain Fundamentals. Project 1: Create Your Identity on Bitcoin Core. Become a blockchain developer Blockchain Developer Become a blockchain developer TERM 1: FUNDAMENTALS Blockchain Fundamentals Project 1: Create Your Identity on Bitcoin Core Blockchains are a public record of completed value transactions

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

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

Global Financial Systems Chapter 21 Technology

Global Financial Systems Chapter 21 Technology Global Financial Systems Chapter 21 Technology Jon Danielsson London School of Economics 2018 To accompany Global Financial Systems: Stability and Risk http://www.globalfinancialsystems.org/ Published

More information

Jian Chan Australian Lead E:

Jian Chan Australian Lead E: The Vertical Blockchain Solution NEM-101 www.nem.io Jian Chan Australian Lead E: jian@nemaustralia.io Jian Chan Australian Lead E: jian@nemaustralia.io Insert NEM.io landing page video here. https://nem.io/wp-content/themes/nem/video/nem-basic-intro-small.mp4

More information

Blockchain for Education & Research Webinar. December 6, 2016

Blockchain for Education & Research Webinar. December 6, 2016 Blockchain for Education & Research Webinar December 6, 2016 Agenda Blockchain basics & potential use cases Promises & challenges Major players & areas of activity Potential use cases in education & research

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

Healthcare, Blockchain and Smart Contracts: Emerging Issues for Healthcare Counsel

Healthcare, Blockchain and Smart Contracts: Emerging Issues for Healthcare Counsel Presenting a live 90-minute webinar with interactive Q&A Healthcare, Blockchain and Smart Contracts: Emerging Issues for Healthcare Counsel Leveraging Distributed Ledger Technology in Healthcare, Protecting

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

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

DeMarche Putting Research To Work Page 1

DeMarche Putting Research To Work Page 1 DeMarche Putting Research To Work Page 1 www.demarche.com (913) 384-4994 Cryptocurrency and the Institutional Investor DeMarche Putting Research To Work Page 2 Mark Andes Consultant & Manager of Alternatives

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

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

DEMYSTIFYING BLOCKCHAIN: FROM CRYPTOCURRENCY TO SMART CONTRACTS

DEMYSTIFYING BLOCKCHAIN: FROM CRYPTOCURRENCY TO SMART CONTRACTS DEMYSTIFYING BLOCKCHAIN: FROM CRYPTOCURRENCY TO SMART CONTRACTS 1. DEMYSTIFYING BLOCKCHAIN Blockchain is an emerging technology that promises to revolutionize digital transactions. However, blockchain

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

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

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

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

Uses of Blockchain in Supply Chain Traceability

Uses of Blockchain in Supply Chain Traceability Uses of Blockchain in Supply Chain Traceability Marek Laskowski and Henry Kim Schulich School of Business, York University http://blockchain.lab.yorku.ca 1 Agenda Cryptographic Foundations Blockchain (what

More information

BLOCKCHAINS AND PUBLIC RECORDKEEPING

BLOCKCHAINS AND PUBLIC RECORDKEEPING BLOCKCHAINS AND PUBLIC RECORDKEEPING Use the chat box at the right of the screen to tell us who you are, where you re from, and who is participating with you today. (To open the chat window, click on the

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

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

Blockchain-based Traceability in Agri-Food Supply Chain Management: A practical Implementation

Blockchain-based Traceability in Agri-Food Supply Chain Management: A practical Implementation Blockchain-based Traceability in Agri-Food Supply Chain Management: A practical Implementation Miguel Pincheira Caro, Muhammand Salek Ali, Massimo Vecchio and Raffaele Giaffreda Agenda What is a Blockchain?

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

BLOCKCHAIN IN PRACTICE

BLOCKCHAIN IN PRACTICE BLOCKCHAIN IN PRACTICE Matthew Van Niekerk Cassandre Vandeputte www.bestppt.com 1 THE BIG BLACK BOX OF BLOCKS? We always overestimate the change that will occur in the next 2 years and underestimate the

More information

The XDC Protocol. XinFin Organization

The XDC Protocol. XinFin Organization The XDC Protocol TECHNICAL WHITEPAPER By XinFin Organization www.xinfin.org Blockchain technology for global trade and finance September 2017 Contact us: info@xinfin.org Table of Contents 1. Blockchain

More information

THE MOST INNOVATIVE AND LUCRATIVE WAY TO EARN BITCOIN.

THE MOST INNOVATIVE AND LUCRATIVE WAY TO EARN BITCOIN. THE MOST INNOVATIVE AND LUCRATIVE WAY TO EARN BITCOIN Abstract... Our Goal... The Marketplaces Issues... What is Kubic Coin?. What we do?... Why we use Ethereum?... Fast and Smooth Investment System...

More information

WHITEPAPER BLOCKCHAIN DEPLOYMENT & ICO MANAGEMENT

WHITEPAPER BLOCKCHAIN DEPLOYMENT & ICO MANAGEMENT WHITEPAPER BLOCKCHAIN DEPLOYMENT & ICO MANAGEMENT JUNE 2018 Disclaimer The ChainZilla coins being sold as part of the Token Sale are a functional part of the blockchain-driven Blockchain-as-a-service platform

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

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

Blockchains and the future of finance

Blockchains and the future of finance Blockchains and the future of finance David Yermack NYU Stern School of Business National Bureau of Economic Reseach FinTech UBS s trading floor, Stamford, Ct., USA 2005 2016 The blockchain When will the

More information