SIMPLER OTC SMART CONTRACTS UNIVERSAL CONTRACTS

Size: px
Start display at page:

Download "SIMPLER OTC SMART CONTRACTS UNIVERSAL CONTRACTS"

Transcription

1 SIMPLER OTC SMART CONTRACTS UNIVERSAL CONTRACTS Sofus Mortensen 3 October 2017

2 Nordea taking the lead in the Nordics in Distributed Ledger Group Efforts Architecture Working Group Only code contributor to Corda outside R3 Lab & Research Center Participating in 12 projects 67 members Legal and Regulatory Working Group Dialogue with Regulatory Authorities Nordea Group wide project exploration: - Trade Finance - Capital Markets / OTC Smart Contracts - Legal, Regulatory & Compliance 2

3 Own engagements - driven by passion for innovation Efforts Nordea s Fintech Accelerator programme European Banking Federation Participating in Blockchain Task Force Colloborating with universities blockchainschool.eu Blockchain Hackathons Exploring HyperLedger project with IBM 3

4 Agenda What is blockchain? Smart Contracts Simpler OTC Smart Contracts Idea Implementation 4

5 What is blockchain? 5

6 What is blockchain DLT? Distributed Ledger Technology 6

7 What is blockchain DLT? Distributed Ledger Technology Party A Party B Perception Perception Business Logic Business Logic Ledger Ledger 7

8 What is blockchain DLT? Distributed Ledger Technology Party A Party B Perception Perception Business Logic Business Logic Ledger Ledger 8

9 What is blockchain DLT? Distributed Ledger Technology Party A Party B Perception Perception Business Logic Business Logic Shared Distributed Ledger 9

10 What is blockchain DLT? Distributed Ledger Technology Party A Party B Perception Perception Smart Contracts Business Logic Shared Distributed Ledger 10

11 What is blockchain DLT? Distributed Ledger Technology Party A Party B Shared Perception? Smart Contracts Shared Business Logic Shared Distributed Ledger 11

12 Smart Contracts State on Ledger Example: - Ownership of asset STATE 12

13 Smart Contracts STATE Transaction STATE - Actor proposes transaction - Transaction is validated against contract by network - Upon consensus transaction is final 13

14 Smart Contracts STATE Transaction STATE Transaction STATE 14

15 Smart Contracts STATE STATE Transaction STATE STATE 15

16 Smart Contracts Levels of abstraction A concrete contract A standardized contract with specified parameters Smart contract source code (Solidity, Java/Kotlin) Smart contract bytecode (Bitcoin, Ethereum, JVM) Rigid Flexible Business IT 16

17 Simpler OTC Smart Contracts Motivation Reduce complexity of writing a new type of contract Specification Testing Making OTC Smart Contracts accessible by business Reading Reasoning Writing? Could Smart Contracts replace legal contracts? Probably not 17

18 Composing contracts Article Composing Contracts: An adventure in financial engineering by Simon Peyton Jones, Jean-Marc Eber, Julian Seward Current representation of an OTC contract A contract is represented by a contract identifier and a list of its properties Future representation: denotional semantics A contract should be represented by an accurate description of what it does Representation should be compositional from a finite, minimal set of building blocks Understanding of building blocks and ways of composition is equivalent to understanding all possible contracts. 18

19 Denotional semantics Automatic translation of contract semantics to: Smart contract code Termsheet Instructions for back office. Scheduling. Scripts for price calculations Scripts for risk calculation (market risk, CCR, CVA, xva) Legal clause (?) Interpretation instead of translation? Contract semantics become state on the ledger Underlying smart contract validates transactions 19

20 Example I-O-U High Street Bank 100 K Owes GBP ACME Corp 20

21 Example Zero coupon bond High Street Bank ACME Corp 100 K May EXERCISE Owes GBP If time > 1 June 2018 ACME Corp 21

22 Scheduling and events Example of events: Exercise of an option, can only be triggered by holder A scheduled payment Key principle: The beneficiary of an event is responsible for triggering the event. Operational liability is less complicated! 22

23 Example life cycle Issue Issue Signed by High Street Bank Issue 23

24 Example life cycle Command EXERCISE Issue Signed by High Street Bank Command EXERCISE Signed by ACME Corp Issue EXERCISE 24

25 Example life cycle Spending IOU Command EXERCISE Signed by High Street Bank EXERCISE 25

26 Example life cycle Spending IOU Command EXERCISE Signed by High Street Bank Move Signed by ACME Corp EXERCISE Move 26

27 Implementation in R3 Corda DSL 27

28 Example Zero coupon bond DSL in Kotlin arrange { actions { acmecorp.may { execute".giventhat(after( )) { highstreetbank.owes(acmecorp, 100.K, GBP) 28

29 Example Zero coupon bond DSL in Kotlin arrange { actions { (acmecorp or highstreetbank).may { execute".giventhat(after( )) { highstreetbank.owes(acmecorp, 100.K, GBP) 29

30 Example IR Caplet 30

31 Example: IR Caplet Issued contract arrange { actions { (acmecorp or highstreetbank).may { "exercise".anytime { val floating = interest(notional, "act/365", fix("libor", tradedate, Tenor("6M")), " ", " ") val fixed = interest(notional, "act/365", 0.5, " ", " ") highstreetbank.owes(acmecorp, floating - fixed, "GBP") 31

32 Example: IR Caplet Applying Fixing arrange { actions { (acmecorp or highstreetbank).may { "exercise".anytime { val floating = interest(notional, "act/365", 0.67, " ", " ") val fixed = interest(notional, "act/365", 0.5, " ", " ") highstreetbank.owes(acmecorp, floating - fixed, "GBP") 32

33 Example: IR Caplet ACME Corp chooses to exercise arrange { actions { val floating = val fixed = highstreetbank.owes(acmecorp, floating - fixed, "GBP") 33

34 Example IR Cap 34

35 Example: IR Cap Rolling out date sequence arrange { rollout(" ", " ", Frequency.SemiAnnual) { actions { (acmecorp or highstreetbank).may { "exercise".anytime { val floating = interest(notional, "act/365", fix("libor", start, Tenor("3M")), start, end) val fixed = interest(notional, "act/365", 0.5.bd, start, end) highstreetbank.gives(acmecorp, floating - fixed, "GBP") next() acmecorp.may { "skip".anytime { next() 35

36 Example: IR Cap arrange { rollout(" ", " ", Frequency.SemiAnnual) { actions { (acmecorp or highstreetbank).may { "exercise".anytime { val floating = interest(notional, "act/365", fix("libor", start, Tenor("3M")), start, end) val fixed = interest(notional, "act/365", 0.5, start, end) highstreetbank.gives(acmecorp, floating - fixed, "GBP") next() acmecorp.may { "skip".anytime { next() 36

37 Example IR Cap with limited upside arrange { rollout(" ", " ", Frequency.SemiAnnual, object { val limit = variable(150.k) ) { actions { (acmecorp or highstreetbank).may { "exercise".anytime { val floating = interest(notional, "act/365", fix("libor", start, Tenor("3M")), start, end) val fixed = interest(notional, "act/365", 0.5, start, end) val payout = min(floating fixed, vars.limit) highstreetbank.gives(acmecorp, payout, currency) next(vars.limit to vars.limit - payout) acmecorp.may { "skip".anytime { next() 37

38 Building blocks summary Overview Obligations Actions (events, scheduling) Observables, fixings Expressions, calculations Rollout of data sequences Templates State variables Conventions Holidays calendars Rolling conventions Settlement 38

39 Q & A

Seminar Distributed Systems Blockchain: From Cryptocurrencies to Smart Contracts. Signe Rüsch

Seminar Distributed Systems Blockchain: From Cryptocurrencies to Smart Contracts. Signe Rüsch Seminar Distributed Systems Blockchain: From Cryptocurrencies to Smart Contracts Signe Rüsch October 25, 2017 Table of Contents Organisational Signe Rüsch Seminar Distributed Systems 2 Organisational Course

More information

Blockchain: More than. bitcoin

Blockchain: More than. bitcoin Blockchain: More than. bitcoin andrzej grzesik twitter://ags313 andrzej.grzesik@gmail.com andrzejgrzesik.info from lives from Blockchain - Revolution? Revolution It changes how we interact New Money Money

More information

Why is IBM Blockchain based on Sebastjan Štucl Delivery Manager, GTS, IBM Slovenia

Why is IBM Blockchain based on Sebastjan Štucl Delivery Manager, GTS, IBM Slovenia Why is IBM Blockchain based on Hyperledger@LinuxFoundation Sebastjan Štucl Delivery Manager, GTS, IBM Slovenia sebastjan.stucl@si.ibm.com 2 Trusted Third Party IBM Blockchain 2017 IBM Corporation 3 There

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

CREDITS. A New Blockchain Generation

CREDITS. A New Blockchain Generation A New Blockchain Generation PROBLEMS OF BLOCKCHAIN Now we can distinguish the following technical problems of the platforms: 1. LOW NETWORK CAPACITY 2. TIME OF PAYMENTS AND SMART CONTRACT EXECUTION 3.

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

DnA Contract BPMN Processes

DnA Contract BPMN Processes 1 Overview 1.1 Why BPMN? BPMN (Business Process Model and Notation) diagrams have been used to provide a graphical notation for specifying the processes in each of the following: (a) (b) a sample interest

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

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

Me, myself and my Car Dossier

Me, myself and my Car Dossier Me, myself and my Car Dossier Data protection and identities in the age of blockchains Matthias Loepfe Head of AdNovum Incubator 1 What is Blockchain? Blockchain Cryptocurrency Blockchain = Technology

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

BLOCKCHAIN Use Cases. Copyright 2017 All Right Reserved

BLOCKCHAIN Use Cases.   Copyright 2017 All Right Reserved BLOCKCHAIN Use Cases www.blockchaintrainingalliance.com Public and Private Blockchains Public: open to anyone ( permissionless ) Identity unknown, individuals Ex: Zcash zero-knowledge proofs Open access

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

Deloitte EMEA Blockchain Lab Hungarian National Bank April 20 th, 2018

Deloitte EMEA Blockchain Lab Hungarian National Bank April 20 th, 2018 Deloitte EMEA Blockchain Lab Hungarian National Bank April 20 th, 2018 Blockchain Basics Use Case Examples Financial Services Regulatory Overview 2 Copyright Deloitte EMEA Blockchain Lab A decentralized,

More information

DEVELOPING ON HYPERLEDGER FABRIC

DEVELOPING ON HYPERLEDGER FABRIC DEVELOPING ON HYPERLEDGER FABRIC COURSE OVERVIEW: This instructor-led Hyperledger training course is designed for developers and administrators who want to take a comprehensive deep dive on Hyperledger

More information

Blockchain and Internet of Things: Why a Perfect Match. Fabio Antonelli - Head of FBK - CREATE-NET Research Center

Blockchain and Internet of Things: Why a Perfect Match. Fabio Antonelli - Head of FBK - CREATE-NET Research Center Blockchain and Internet of Things: Why a Perfect Match Fabio Antonelli - fantonelli@fbk.eu Head of OpenIoT@ FBK - CREATE-NET Research Center About me Fabio Antonelli Head of OpenIoT Research Unit in FBK

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

Solution Brief. Trusting the transaction of things: IoT and blockchain intersect

Solution Brief. Trusting the transaction of things: IoT and blockchain intersect Solution Brief Trusting the transaction of things: IoT and blockchain intersect With all of the buzz around blockchain technology supporting a new generation of transactional applications, you may be wondering

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

Altoros Hyperledger Demo. Distributed Clearing Platform for Derivatives

Altoros Hyperledger Demo. Distributed Clearing Platform for Derivatives Altoros Hyperledger Demo Distributed Clearing Platform for Derivatives Introducing Hyperledger A collaborative effort created to advance blockchain technology by identifying and addressing important features

More information

Blockchain policy inertia: Where s the disruption?

Blockchain policy inertia: Where s the disruption? Blockchain policy inertia: Where s the disruption? Aisha Sobey, MPhil in IR and Politics, University of Cambridge B lockchain has been framed as a technology that could alter the shape of the world dramatically

More information

Digitalisierung in der Energiewende am Beispiel der TenneT Blockchain-Piloten

Digitalisierung in der Energiewende am Beispiel der TenneT Blockchain-Piloten Digitalisierung in der Energiewende am Beispiel der TenneT Blockchain-Piloten 21.11.2017 Ariette Franke - TenneT TSO TenneT a leading European TSO GRID > 22,000 km END-USERS > 41 Mio EMPLOYEES > 3000 INVESTMENT

More information

Harnessing Commodity Markets Commodities and Blockchain - Distributed Ledger Technology

Harnessing Commodity Markets Commodities and Blockchain - Distributed Ledger Technology Harnessing Commodity Markets Commodities and Blockchain - Distributed Ledger Technology Jean-Marc Bonnefous Energy Risk Summit, London 22/23 June 2016 Blockchain and Commodity Markets The Basics of Blockchain

More information

A System-of-System Model

A System-of-System Model A System-of-System Model Claudio Lima, Ph.D. Blockchain Engineering Council BEC, Co-Founder IEEE DLT/Blockchain Standards, Vice-Chair, Chair NIST, September 17 th 2018 Disclaimer This presentation expresses

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

FIRMO: Secure Execution of Financial Contracts

FIRMO: Secure Execution of Financial Contracts FIRMO: Secure Execution of Financial Contracts FIRMO, 12 April 2018 Abstract The Firmo protocol executes financial contracts on blockchain technology. Contracts are written using the domain specific language;

More information

Banking: operation transformation. 15 June 2016

Banking: operation transformation. 15 June 2016 Banking: operation transformation 15 June 2016 Blockchain the transaction makeover 15 June 2016 Luis Pastor Head of IT Consulting and Global Blockchain leader Grant Thornton Spain When the trust relies

More information

BLOCKCHAIN: INCREASING TRANSPARENCY IN MEDIA & ADVERTISING. Jessica B. Lee, Partner, Advanced Media and Technology

BLOCKCHAIN: INCREASING TRANSPARENCY IN MEDIA & ADVERTISING. Jessica B. Lee, Partner, Advanced Media and Technology BLOCKCHAIN: INCREASING TRANSPARENCY IN MEDIA & ADVERTISING Jessica B. Lee, Partner, Advanced Media and Technology jblee@loeb.com July 2018 1 Today s Topics Blockchain basics Smart contracts and permissioned

More information

INTRODUCTION BLOCKCHAIN TECHNOLOGIES. Nyenrode Breukelen, 28 March 2017 M. Oskar van Deventer

INTRODUCTION BLOCKCHAIN TECHNOLOGIES. Nyenrode Breukelen, 28 March 2017 M. Oskar van Deventer INTRODUCTION BLOCKCHAIN TECHNOLOGIES Nyenrode Breukelen, 28 March 2017 M. Oskar van Deventer BLOCKCHAIN RAISES MANY QUESTIONS What is this "blockchain" stuff that everybody is talking about? Concrete examples

More information

Paolo Caniccio. A Blockchain solution for European SMEs

Paolo Caniccio. A Blockchain solution for European SMEs Paolo Caniccio A Blockchain solution for European SMEs IFTA 2017 - Milan A Blockchain solution for European SMEs Paolo Caniccio London Stock Exchange Group London Stock Exchange Group Three years ago Page

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

4/19/2017 BLOCKCHAINS PRACTICES IN THE BRAVE NEW WORLD. BLOCKCHAIN AND ACCOUNTANCY: A Smart Combination? Martijn Siebrand. Agenda.

4/19/2017 BLOCKCHAINS PRACTICES IN THE BRAVE NEW WORLD. BLOCKCHAIN AND ACCOUNTANCY: A Smart Combination? Martijn Siebrand. Agenda. BLOCKCHAINS PRACTICES IN THE BRAVE NEW WORLD BLOCKCHAIN AND ACCOUNTANCY: A Smart Combination? Martijn Siebrand Agenda Introduction Fintech-Blockchain focus Aim of the session: Accountancy To inform Innovation

More information

IEW. OINT OF NOTHER ROM BLOCKCHAIN 101 // EXECUTIVE DECK. Marcelo T. de Alvear 405 Oficina # 9 Ciudad de Buenos Aires Argentina

IEW. OINT OF NOTHER ROM BLOCKCHAIN 101 // EXECUTIVE DECK. Marcelo T. de Alvear 405 Oficina # 9 Ciudad de Buenos Aires Argentina // Marcelo T. de Alvear 405 Oficina # 9 Ciudad de Buenos Aires Argentina // T + 54 11 5352 1259 hi @ atixlabs.com // www.atixlabs.com ROM NOTHER OINT OF IEW. BLOCKCHAIN 101 // EXECUTIVE DECK > IT S NOT

More information

LEGALLY BINDING APPLICATIONS WILL DEFINE FUTURE BLOCKCHAINS

LEGALLY BINDING APPLICATIONS WILL DEFINE FUTURE BLOCKCHAINS See discussions, stats, and author profiles for this publication at: https://www.researchgate.net/publication/325553197 LEGALLY BINDING APPLICATIONS WILL DEFINE FUTURE BLOCKCHAINS Presentation May 2018

More information

Blockchain technology in financial institutions 1

Blockchain technology in financial institutions 1 Blockchain technology in financial institutions 1 Sander van Loosbroek, Director Distributed Ledger Technologies, Cegeka Blockchain is a shared, distributed ledger that is secured by cryptography. Computers

More information

BLOCKCHAIN WORKSHOP. by Deriv Asia & DX Markets. Sam Ahmed. 2015: Not to be circulated or distributed.

BLOCKCHAIN WORKSHOP. by Deriv Asia & DX Markets. Sam Ahmed. 2015: Not to be circulated or distributed. BLOCKCHAIN WORKSHOP by Deriv Asia & DX Markets Sam Ahmed 2015: Not to be circulated or distributed. Table of Contents 2 1. Who We Are 2. What is a Block Chain? 3. Basic Principles of Blockchain 4. Arguments

More information

Three-dimensional Scalable Blockchain instant transactions 100k+ on-chain real-time auto sharding

Three-dimensional Scalable Blockchain instant transactions 100k+ on-chain real-time auto sharding Three-dimensional Scalable Blockchain instant transactions 100k on-chain real-time auto sharding NEW PROTOCOL RESONANCE COMPLETELY NEW CODE TESTNET IS READY ThePower.io Whitepaper Technical paper (on demand)

More information

Swiss OTC Blockchain Information about the Swiss OTC Blockchain and further development

Swiss OTC Blockchain Information about the Swiss OTC Blockchain and further development Swiss OTC Blockchain Information about the Swiss OTC Blockchain and further development Michele Forte, Head of Fintech, michele.forte@ti8m.ch Consulting. Design. Agile Projects. Products. Innovation Hosting.

More information

Introduction to FRONT ARENA. Instruments

Introduction to FRONT ARENA. Instruments Introduction to FRONT ARENA. Instruments Responsible teacher: Anatoliy Malyarenko August 30, 2004 Contents of the lecture. FRONT ARENA architecture. The PRIME Session Manager. Instruments. Valuation: background.

More information

Blockchain & The Telecoms Industry IIT RTC Conference, Chicago October

Blockchain & The Telecoms Industry IIT RTC Conference, Chicago October Blockchain & The Telecoms Industry IIT RTC Conference, Chicago dean.bubley@disruptive-analysis.com @disruptivedean Dean Bubley & Disruptive Analysis Tech/telecom analyst & strategic consulting since 1991

More information

Compliance for Security Token Issuance and Trading

Compliance for Security Token Issuance and Trading Technical White Paper May 2018 Compliance for Security Token Issuance and Trading Abstract In this paper, we present a framework and approach to implement regulated capital markets using blockchain technology.

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

ICO Review: Republic Protocol (REN)

ICO Review: Republic Protocol (REN) ICO Review: Republic Protocol (REN) Decentralized Dark Pool Exchange January 20, 2018 PROJECT OVERVIEW What is a dark pool? An exchange where orders are placed and executed on a hidden order book. Exists

More information

WHITEPAPER INVOICE FINANCE ON THE BLOCKCHAIN. By Steve Nico Williams Populous

WHITEPAPER INVOICE FINANCE ON THE BLOCKCHAIN. By Steve Nico Williams Populous WHITEPAPER INVOICE FINANCE ON THE BLOCKCHAIN By Steve Nico Williams Populous TABLE OF CONTENTS ABSTRACT... 2 INTRODUCTION... 3 EXTENSIBLE BUSINESS REPORTING LANGUAGE XBRL... 4 USING XBRL IN TARGETED CLIENT

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

Distributed ledger technologies (DLTs) - revolution or evolution?

Distributed ledger technologies (DLTs) - revolution or evolution? Andrea Pinna Market Integration Division Distributed ledger technologies (DLTs) - revolution or evolution? Helsinki - 14 June 2016 The views expressed are those of the author and do not necessarily reflect

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: 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

Blockchain / Distributed Ledger Technology

Blockchain / Distributed Ledger Technology Blockchain / Distributed Ledger Technology Emerging Legal Issues and Business Trends Michael D. Palage (Michael@Palage.com) Blockchain: Hip or Hype 2 Blockchain/DLT - Cryptocurrency October 2008 White

More information

A new blockchain generation

A new blockchain generation A new blockchain generation Problems of blockchain Now we can distinguish the following technical problems of the platforms: 1. Low network capacity 2. Time of paymentsand smart contract execution 3. High

More information

IBM Blockchain Platform Explained

IBM Blockchain Platform Explained IBM Blockchain Platform Explained An Introduction to the IBM Blockchain Platform Eric Cattoir eric_cattoir@be.ibm.com @CattoirEric Blockchain Explained Series Blockchain Explained IBM Blockchain Platform

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: Programming And Technology Guide 2 In 1 By Charles Jensen READ ONLINE

Blockchain: Programming And Technology Guide 2 In 1 By Charles Jensen READ ONLINE Blockchain: Programming And Technology Guide 2 In 1 By Charles Jensen READ ONLINE Want To Know How You Can Benefit From Blockchain? Are You Guide To Blockchain Technology And Leveraging Blockchain Programming.

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

Agenda. The debate about blockchain: unclear and unsettled? Advancing economics in business. Unclear and unsettled?

Agenda. The debate about blockchain: unclear and unsettled? Advancing economics in business. Unclear and unsettled? Agenda Advancing economics in business The debate about blockchain: unclear and unsettled? Post-trading the clearing and settlement of securities and money after a trade has always been considered the

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

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. 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

Blockchain and Bitcoin: Impact on Insurance Industry

Blockchain and Bitcoin: Impact on Insurance Industry Blockchain and Bitcoin: Impact on Insurance Industry ACLI Financial & Investment Roundtable Sea Island, Georgia Edmund J. Zaharewicz Shareholder Carlton Fields Jorden Burt, P.A. March 19, 2018 The views

More information

BACK TO BASICS: BLOCKCHAIN, FINTECH, INSURTECH AND PROPTECH

BACK TO BASICS: BLOCKCHAIN, FINTECH, INSURTECH AND PROPTECH BACK TO BASICS: BLOCKCHAIN, FINTECH, INSURTECH AND PROPTECH WIN In-House Counsel Day Melbourne 2018 Thursday 15 March 2018 www.dlapiper.com Thursday 15 March 2018 0 Our objectives today 1. An overview

More information

Blockchain in practice

Blockchain in practice Blockchain in practice Johan Toll, AVP, NASDAQ Market Technology October, 2017 The state of blockchain PUBLIC BLOCKCHAIN ASSETS DRAMATICALLY OUTPERFORMS TRADITIONAL ASSETS Source: Coindesk 3 AGGREGATE

More information

Fintech and Innovation: From disruption to real world change

Fintech and Innovation: From disruption to real world change Fintech and Innovation: From disruption to real world change Moscow Business Forum and Rosswift AGM 2016, 12 April 2016 Panel Joining via Skype Stanley Wachs Ekaterina Frolovicheva Vadim Kotov Artem Duvanov

More information

Blockchain in Re/Insurance

Blockchain in Re/Insurance Blockchain in Re/Insurance Technology with a Purpose Swiss Re Institute Paul Meeusen, Head Distributed Technology, Swiss Re Alessandro Sorniotti, Research Staff Member, IBM Rüschlikon, 7 November 2017

More information

Harbor Token White Paper

Harbor Token White Paper ver 1.1 Harbor Token White Paper Harbor Token is an ERC20-based cryptocurrency of the Ethereum network as a token with the right to purchase all goods and services distributed on the Harbor platform. It

More information

Blockchain Developers Course

Blockchain Developers Course Blockchain Developers Course Training from CapitalWave Inc. Technology Enabled Learning TM 2016-2017 The Blockchain Academy Inc. All rights reserved Version 2017801 Blockchain Developers Course WHEN: STARTING

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

The Great Custodian Bank Shake-up Part 1: Blockchain to Rewire Custodial Operations

The Great Custodian Bank Shake-up Part 1: Blockchain to Rewire Custodial Operations The Great Custodian Bank Shake-up Part 1: Blockchain to Rewire Custodial Operations Abstract Custodian banks are facing a slew of challenges such as cost pressures, operational inef ciencies, and aging

More information

Blockchain: Potential Impact on Shipping and Logistics K. Blythe Daly, New York April 11, 2018

Blockchain: Potential Impact on Shipping and Logistics K. Blythe Daly, New York April 11, 2018 Blockchain: Potential Impact on Shipping and Logistics K. Blythe Daly, New York April 11, 2018 Copyright 2018 Holland & Knight LLP. All Rights Reserved Blockchain in the News Maersk, IBM Blockchain JV

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

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 for Green Bond

Blockchain for Green Bond www.fintech4good.co info@fintech4good.co @FT4GXiaochen Blockchain for Green Bond Mr. Xiaochen Zhang, Task Force on Green Business, EBAC President, FinTech4Good Blockchain for Financial Services: some examples

More information

Legal Quick Hit 2016 SUTHERLAND ASBILL & BRENNAN LLP / SUTHERLAND (EUROPE) LLP

Legal Quick Hit 2016 SUTHERLAND ASBILL & BRENNAN LLP / SUTHERLAND (EUROPE) LLP Legal Quick Hit All Rights Reserved. This communication is for general informational purposes only and is not intended to constitute legal advice or a recommended course of action in any given situation.

More information

Smart Contracts on Blockchain Platforms

Smart Contracts on Blockchain Platforms Smart Contracts on Blockchain Platforms Prof. Dr. Florian Matthes 24.1.2019, Juristische Gesellschaft Augsburg e.v. Chair of Software Engineering for Business Information Systems (sebis) Faculty of Informatics

More information

DOING BUSINESS OF BLOCKCHAIN IN INDIA.

DOING BUSINESS OF BLOCKCHAIN IN INDIA. DOING BUSINESS OF BLOCKCHAIN IN INDIA WHAT IS BLOCKCHAIN TECHNOLOGY? The business world has been abuzz about blockchain technology across many industries, ranging from finance to healthcare. Blockchain

More information

Blockchain Technology: Preparing for Change

Blockchain Technology: Preparing for Change 04 Blockchain Technology: Preparing for Change Blockchain Technology: Preparing for Change 04 In Short Blockchain-related Venture Capital $392.86 million in 2015 funding through July Settlement Days Syndicated

More information

SECURITY TOKEN MCEX: A

SECURITY TOKEN MCEX: A SECURITY TOKEN MCEX: A Regulated Security Token +14074834057 www.mercury.cash / www.miami.exchange support@mercury.cash 6427 Milner Blvd #4, Orlando, FL, 32809 US Version 1.2 Abstract: The modern world

More information

Equity Marketplace A Blockchain Implementation

Equity Marketplace A Blockchain Implementation Equity Marketplace A Blockchain Implementation About us I am Tullio Menga, ICT architect and developer. I have been working in Capital Market area during last twenty years, specifically in the field of

More information

Color Pay : Next Paradigm for Instant Payment

Color Pay : Next Paradigm for Instant Payment Color Pay : Next Paradigm for Instant Payment Table of Contents Table of Contents 2 Abstract 2 What is PUF? 3 Overview of PUF 3 Architecture of PUF Chip 3 Internals of PUF Chip 4 External Interfaces of

More information

Blockchain and Intellectual Property: An Interdependent Relationship

Blockchain and Intellectual Property: An Interdependent Relationship Blockchain and Intellectual Property: An Interdependent Relationship 1 Blockchain is a New Type of Database Shared Source of Truth Distributed every participant has a copy Accurate trust mechanism used

More information

NAC IncomeChoice 10 fixed index annuity

NAC IncomeChoice 10 fixed index annuity NAC IncomeChoice 10 fixed index annuity The income you need, the potential you want 25432Z-20 REV 1-19 Go for a retirement paycheck big enough for your life For all the tough choices you ve had to make

More information

BLOCKCHAIN EVOLUTION. The shifting perception of blockchain and the potential impact on businesses, governments and the investment landscape.

BLOCKCHAIN EVOLUTION. The shifting perception of blockchain and the potential impact on businesses, governments and the investment landscape. The shifting perception of blockchain and the potential impact on businesses, governments and the investment landscape. Introduction The following commentary is intended to provide a brief introduction

More information

Blockchain: The Foundational Technology Behind Cryptocurrencies. Dr. Zach Steelman Assistant Professor Information Systems Department

Blockchain: The Foundational Technology Behind Cryptocurrencies. Dr. Zach Steelman Assistant Professor Information Systems Department Blockchain: The Foundational Technology Behind Cryptocurrencies Dr. Zach Steelman Assistant Professor Information Systems Department Healthcare Financial Management Association Conference Friday, August

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

FinTech Opportunities and Challenges for securities companies

FinTech Opportunities and Challenges for securities companies FinTech Opportunities and Challenges for securities companies 23 rd ASF AGM 2018 Lynn Kuo CIO and Executive Vice President Head of Innovation Technology Department CAPITAL Securities Corp. 23 rd ASF AGM

More information

Research Faculty Summit Systems Fueling future disruptions

Research Faculty Summit Systems Fueling future disruptions Research Faculty Summit 2018 Systems Fueling future disruptions BlockchainDB Towards a Shared Database on Blockchains Carsten Binnig Data Management Lab, TU Darmstadt Blockchains: A Shared Database? Client

More information

Blockchain & Standards ANSI SPRING

Blockchain & Standards ANSI SPRING Blockchain & Standards ANSI SPRING Heather Kreger, CTO International Standards V5.0 2017 IBM Corporation Requirements of blockchain for business Append-only distributed system of record shared across business

More information

From Cash to Blockchain and Bitcoin: Payments of the Past, Present and Future

From Cash to Blockchain and Bitcoin: Payments of the Past, Present and Future From Cash to Blockchain and Bitcoin: Payments of the Past, Present and Future Barbara Raths, CTP Senior Relationship Manager, Government Banking, SVP 09/19/2017 207-747-7089 Barbara.raths@peoples.com Agenda

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

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

What You Need to Know About Insuretech/Blockchain

What You Need to Know About Insuretech/Blockchain What You Need to Know About Insuretech/Blockchain Brian T. Casey, Esq. Partner, Co-Chair Regulatory & Transactions Insurance Practice Group 2017 Locke Lord LLP / Brian T. Casey CCIA Delta 2017 Conference,

More information

Blockchain in Insurance: An Introduction

Blockchain in Insurance: An Introduction Blockchain in Insurance: An Introduction Asha Vellaikal Head, Marsh Digital Labs asha.vellaikal@marsh.com April, 2018 What Is Blockchain? Blockchain is a distributed ledger technology a ledger maintained

More information

Blockchain & Smart Contracts. Project Management tools in the 21 st Century

Blockchain & Smart Contracts. Project Management tools in the 21 st Century 1 Blockchain & Smart Contracts Project Management tools in the 21 st Century Ancient Ledgers Early Transactional Trust 2 Modern Ledgers Still Basically the Same? 3 Current Information Systems 4 Lack of

More information

WHITEPAPER. Copyright 2018 Fox Trading FX

WHITEPAPER. Copyright 2018 Fox Trading FX WHITEPAPER Copyright 2018 Fox Trading FX CONTENTS 1. DISCLAIMER... 4 2. INTRODUCTION... 6 2.1. Trading revolution with cryptocurrency... 6 2.2. Automatic trading with robots... 7 2.3. Advantages and disadvantages

More information

An Introduction to Bitcoin

An Introduction to Bitcoin Slide Heading An Introduction to Bitcoin Varun Ebenezer, CISA BMO Financial Group September 14, 2016 Speaker Background Senior Audit Manager on the Technology and Operations U.S. Audit Team at BMO Financial

More information

28 Jun 2018, Thiruvananthapuram Gold Sponsor

28 Jun 2018, Thiruvananthapuram Gold Sponsor 28 Jun 2018, Thiruvananthapuram Gold Sponsor Background National banks and regulators, exchanges and investment banks across the world are taking seriously the financial innovation of distributed ledger

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

Blockchain 101. Blockchain in Digital Marketing and Media Industry. An esatya Initiative. The Rumsan Group.

Blockchain 101. Blockchain in Digital Marketing and Media Industry. An esatya Initiative. The Rumsan Group. Blockchain 101 Blockchain in Digital Marketing and Media Industry An esatya Initiative The Rumsan Group How I discovered Blockchain? Santosh Shrestha Founder, Rumsan Group Left RBS Budhanilkantha School

More information

B3i Codex1 Demo. InsureTech - Europe Chapter of the CPCU Society

B3i Codex1 Demo. InsureTech - Europe Chapter of the CPCU Society B3i Codex1 Demo InsureTech - Europe Chapter of the CPCU Society Enrico Alessandri, Systems & Processes Expert, Swiss Re P&C Business Management London, 16 February 2018 Blockchain Introduction 2 Blockchain

More information

Blockchain. Delivered.

Blockchain. Delivered. Blockchain. Delivered. Paul Benwell & Associates Investor Presentation February 21, 2018 2018 BLOK Technologies Inc. Disclaimer Except for the statements of historical fact, this presentation contains

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