SlideShare une entreprise Scribd logo
1  sur  25
Télécharger pour lire hors ligne
Blockchain
A new disruption in financial servies?
2
Bitcoin :	
  Currency and technology
• Mining
• 21	
  million
• Volatile	
  value
• >50%	
  in	
  hands	
  of	
  880	
  individuals
• Litecoin,	
  Ripple,	
  Zerocoin
Currency
“Satoshi	
  Nakamoto”
2009
• Blockchain
• Distributed	
  shared	
  ledger
• Cryptograhy (SHA-­‐256,	
  PKI)
• Consensus	
  model
• Smart	
  contracts
Technology
3
Party D’s Records Bank Records
Party C’s Records Auditor Records
Party B’s Records
Party A’s Records
API-integrations
Hack
Ledger
Ledger
Ledger
Ledger
Ledger
Ledger
Inefficient,	
  expensive,	
  error	
  sensitive	
  and	
  vulnerable
Information	
  &	
  asset	
  exchange	
  in	
  business	
  networks	
  – Separate	
  ledgers
4
Information	
  &	
  asset	
  exchange	
  in	
  business	
  networks	
  – Shared	
  ledgers
Party D’s Records Bank records
Party C’s Records Auditor records
Party B Records
Party A’s Records
Ledger
Ledger
Ledger
Ledger
Ledger
Ledger
Consistency,	
  efficiency,	
  security	
  and	
  resilience
5
4	
  key concepts of	
  blockchain
Distributed	
  shared	
  ledger Cryptography
Consensus Smart	
  contracts
6
4	
  key concepts of	
  blockchain	
  -­‐ Distributed	
  shared	
  ledgers
• Group	
  of	
  replicated logs/databases	
  (nodes)
• Transactions	
  distributed	
  in	
  blocks
• All	
  nodes	
  hold	
  all transactions
• Parties	
  identified with	
  public	
  key	
  (=	
  anonymised)
• Accessibility of	
  transactions	
  depending	
  on	
  blockchain implementation
• Resilient for	
  failure	
  of	
  one	
  or	
  more	
  nodes
• Group	
  of	
  nodes	
  operate	
  tamper	
  proof
Nodes of	
  Bitcoin ledger
7
8
Visualisation of	
  Bitcoin	
  flows	
  between	
  participants
Source	
  :	
  Elliptic.co
9
4	
  key concepts of	
  blockchain	
  – Cryptography (1/2)
Hashing
Creation	
  of	
  a	
  bit	
  string	
  (digest)	
  representing	
  integrity	
  of	
  content	
  other	
  string.	
  Changing	
  one	
  character	
  in	
  the	
  original	
  string	
  results	
  in	
  complete	
  different	
  has.	
  
Changing	
  multiple	
  characters	
  in	
  original	
  string	
  that	
  results	
  in	
  the	
  same	
  hash	
  requires	
  large	
  amount	
  of	
  processing	
  power	
  for	
  a long	
  period	
  of	
  time.	
  	
  
Sample	
  sentence	
  to	
  explain	
  
how	
  SHA256	
  works
Sample	
  sentence	
  to	
  explain
how	
  SHA256	
  works.
79e8a584005254f7717547b5829fd01fa
6c6831bd92a2d28c93305636c71b499
c19617618972f1dc643b2bb7075c7cac
ac3aea970581ca5c6ec30aee59a74c07
Extra	
  dot
Input	
  data
Hash	
  value
(32	
  bytes)
Hashing Hashing
10
4	
  key concepts of	
  blockchain	
  – Cryptography (2/2)
Public	
  &	
  private	
  keys	
  and	
  wallets
Two	
  large	
  prime	
  numbers	
  that	
  have	
  a	
  mathematical	
  relation	
  with	
  each	
  other.	
  A	
  string	
  encrypted	
  with	
  one	
  key	
  can	
  only	
  be	
  decrypted	
  with	
  the	
  other.	
  One	
  key	
  
needs	
  to	
  be	
  kept	
  private,	
  the	
  other	
  one	
  can	
  be	
  made	
  publicly	
  known	
  so	
  that	
  it	
  can	
  be	
  used	
  by	
  other	
  parties	
  to	
  exchange	
  data	
  with you	
  in	
  a	
  secure	
  manner.	
  Private	
  
keys	
  need	
  to	
  be	
  stored	
  that	
  it	
  is	
  accessible	
  only	
  for	
  owner.	
  This	
  can	
  be	
  done	
  on	
  personal	
  devices	
  (PC,	
  smart	
  card,	
  USB	
  stick, phone,	
  …)	
  or	
  remotely	
  with	
  a	
  service	
  
provider	
  (cold	
  and	
  hot	
  wallets).
Encryption
Scrambling	
  of	
  clear	
  text	
  with	
  the	
  public	
  key	
  of	
  the	
  recipient	
  so	
  that	
  the	
  holder	
  of	
  that	
  private	
  key	
  is	
  the	
  only	
  one	
  that	
  can descramble	
  the	
  message.	
  This	
  is	
  used	
  to	
  
guarantee	
  the	
  confidentiality	
  of	
  the	
  data	
  exchanged.	
  	
  
Confidential	
  text	
  to	
  be	
  secured	
  by	
  encryption a66b311c9b158c1e55d4e6cc555016d2e554ac….
Encryption
Confidential	
  text	
  to	
  be	
  secured	
  by	
  encryption
Decryption
Private	
  keyPublic	
  key PKI	
  management
Digital	
  signature
Encryption	
  of	
  hash	
  representing	
  of	
  original	
  data	
  to	
  be	
  secured	
  with	
  the	
  private	
  key	
  of	
  the	
  sender	
  (called	
  digital	
  signature)	
  that	
  is	
  decrypted	
  by	
  the	
  recipient	
  with	
  the	
  
public	
  of	
  the	
  sender.	
  If	
  the	
  decrypted	
  hash	
  matches	
  the	
  content	
  of	
  the	
  original	
  data	
  it	
  implies	
  two	
  things.	
  First,	
  the	
  encryption	
  can	
  only	
  be	
  performed	
  with	
  the	
  
private	
  key	
  corresponding	
  with	
  public	
  key	
  and	
  secondly,	
  the	
  original	
  data	
  can’t	
  be	
  tampered	
  with.
2100f86450888dc01725af78a0e70415… 2626043be7d913ff5d8520b39253eef6240e31d…
Encryption
2100f86450888dc01725af78a0e70415…
Public	
  keyPrivate	
  key PKI	
  management
Hash	
  of	
  data	
  to	
  be	
  secured Hash	
  to	
  be	
  checked	
  with	
  original	
  data
Decryption
11
4	
  key concepts of	
  blockchain	
  – Consensus
• Consensus	
  =	
  Majority of	
  nodes	
  agree	
  on	
  validity	
  of	
  transactions
• Includes	
  validation	
  on	
  double-­‐spending
• Permissionless (public)	
  vs.	
  permissioned (private)	
  blockchain setup
• Proof-­‐of-­‐work	
  /	
  proof-­‐of-­‐stake	
  the	
  proof	
  validity	
  of	
  node
(only	
  applicable	
  for	
  permissionless network)
12
4	
  key concepts of	
  blockchain	
  – Smart	
  Contracts
• Business	
  logic that	
  can	
  be	
  assigned	
  to	
  a	
  transaction	
  on	
  the	
  blockchain
• Acts	
  as	
  a	
  ‘notary’ of	
  blockchain transactions
• Holds	
  conditions under	
  which	
  specific	
  actions	
  can/must	
  be	
  perfomed
• Facilitates	
  escrow services
• Can’t	
  be	
  modified without	
  predefined	
  permissions
13
Sample	
  case	
  of	
  blockchain	
  for smart	
  contracts
14
Source	
  :	
  Financial	
  Times
How	
  a	
  blockchain	
  works?
Value	
  of	
  blockchain technology
15
Reduction	
  of	
  costs	
  and	
  complexity Shared	
  trusted	
  transactions
Resilience Secure Auditability
Reduction	
  of	
  errors
16
Potential of	
  blockchain	
  extends across a	
  wide range	
  of	
  application areas
Financial	
  Services
• Payments
• Securities	
  registration	
  &	
  processing
• Lending
Property
• Real	
  estate
• Intellectual	
  property
• Cars
Governmental	
  services
• Voting
• Registrations	
  (passports,	
  driving	
  license)
• Permits
Identification	
  &	
  Security
• Party/device	
  registration
• Authentication
• Access	
  control
Trade
• Document	
  exchange
• Asset	
  exchange
• Escrow	
  services
• Trade	
  agreements
Internet	
  of	
  Things	
  (IoT)
• Autonomous	
  devices,	
  such	
  as
• Cars
• Drones
• Robots
We	
  are	
  at	
  the	
  threshold	
  of	
  a	
  massive	
  explosion	
  in	
  the	
  history	
  of	
  computing
Devices  are  becoming  significantly  more  intelligent  and  connected
17
18
Role of	
  blockchain	
  technology in	
  Internet	
  of	
  Things
*	
  =	
  Autonomous	
  Decentralized	
  Peer-­‐to-­‐peer	
  Telemetry	
  
19
ADEPT*	
  – PoT of	
  IBM	
  and Samsung	
  on	
  IoT applying blockchain	
  technology
ibm.biz/empoweringtheedge
Key differentiating elements between blockchain	
  protocols:
• Permission model	
  (private	
  vs.	
  public)
• Consensus	
  approach
• Smart	
  contracts
• Extensibility &	
  programmability
• APIs
• Scalability &	
  latency
• Resource	
  consumption
Multiple	
  implementations	
  of	
  blockchain	
  related	
  protocols	
  :
• Bitcoin
• Ethereum
• Ripple
• Stellar
• Tendermint
• Factom
• Hyperledger
• …and	
  many	
  more
There is	
  not one blockchain	
  protocol
20
Key factors	
  that influence the future of	
  blockchain,	
  crypto	
  assets and smart	
  contracts
Interoperability	
  &	
  standardisation
-­‐ Messages
-­‐ Consensus
-­‐ APIs
Scalability
-­‐ Volumes
-­‐ Response	
  times
Vulnarability
-­‐ DDoS	
  attacks
-­‐ Confidentiality
Regulatory	
  
-­‐ Issuance	
  of	
  crypto	
  assets
-­‐ Compliancy	
  rules
-­‐ Oversight
21
Deploy your	
  blockchain
fabric	
  of	
  choice
Help	
  you
design	
  and	
  build
your	
  POC
+
+
Help	
  guide	
  your	
  blockchain	
  
exploration
Research Middleware Services Cloud iX Design &
Development
IBM’s value add in	
  blockchain
1. Discuss	
  Blockchain	
  technology
2. Explore	
  customer	
  business	
  
model
3. Asses	
  Blockchain	
  suitability
1. Show	
  Blockchain Application	
  
Demo
2. Explain	
  technology	
  usage
3. Validate	
  Client	
  Interest
1. Understand	
  Blockchain	
  concepts
&	
  elements
2. Hands on	
  with	
  Blockchain	
  
technology
3. Demo	
  customization	
  using	
  
Design	
  Thinking
1. Explore customer	
  specific	
  
business	
  model
2. Design,	
  build	
  &	
  iterate	
  approach
3. Builds	
  limited	
  scope	
  deployable	
  
solution
2	
  hours	
  meeting 2	
  hours	
  demo 1	
  day	
  workshop 2-­‐6	
  weeks
Remote	
  or	
  face	
  to	
  face Remote	
  or	
  face	
  to	
  face Face	
  to	
  face Co-­‐located joint	
  team
Fee of	
  charge Free	
  of charge Free of	
  charge For	
  charge
Conversation Demonstration
Proof	
  of	
  
Concept
Proof	
  of	
  
Technology
Overview IBM	
  blockchain	
  engagement	
  model
Sample	
  agenda	
  1-­‐day	
  workshop
• Introduction (10	
  mins)
• Technology	
  Overview(50	
  mins)
• Break (15	
  mins)
• Understand (90	
  mins)
• Lunch (60	
  mins)
• Explore (90	
  mins)
• Break (15	
  mins)
• Prototype	
  (30	
  mins)
• Evaluate (60	
  mins)
UNDERSTAND
EXPLORE
PROTOTYPE
EVALUATE
Is blockchain going to be the next big disruptor for…
… information technology
… the economy
… the society
… our lifestyle
?
25

Contenu connexe

Tendances

Blockchain and Internet of Things
Blockchain and Internet of ThingsBlockchain and Internet of Things
Blockchain and Internet of ThingsValerie Lampkin
 
Kathleen Breitman at the Hyperledger Meetup
Kathleen Breitman at the Hyperledger Meetup Kathleen Breitman at the Hyperledger Meetup
Kathleen Breitman at the Hyperledger Meetup Altoros
 
IBM Blockchain Experience - Suwat - 20161027
IBM Blockchain Experience - Suwat - 20161027IBM Blockchain Experience - Suwat - 20161027
IBM Blockchain Experience - Suwat - 20161027IBM Thailand Co Ltd
 
IBM Bluemix Paris meetup #23 - 20170425 - Loansquare
IBM Bluemix Paris meetup #23 - 20170425 - Loansquare IBM Bluemix Paris meetup #23 - 20170425 - Loansquare
IBM Bluemix Paris meetup #23 - 20170425 - Loansquare IBM France Lab
 
Banking on a Blockchain
Banking on a BlockchainBanking on a Blockchain
Banking on a BlockchainAltoros
 
Blockchain for Business on Hyperledger
Blockchain for Business on HyperledgerBlockchain for Business on Hyperledger
Blockchain for Business on HyperledgerAll Things Open
 
TDC2018FLN | Trilha Blockchain - BlockChain Casos de Usos alem das CryptoMoedas
TDC2018FLN | Trilha Blockchain - BlockChain Casos de Usos alem das CryptoMoedasTDC2018FLN | Trilha Blockchain - BlockChain Casos de Usos alem das CryptoMoedas
TDC2018FLN | Trilha Blockchain - BlockChain Casos de Usos alem das CryptoMoedastdc-globalcode
 
IBM - Blockchain Explained - Introduction for Business
IBM - Blockchain Explained - Introduction for BusinessIBM - Blockchain Explained - Introduction for Business
IBM - Blockchain Explained - Introduction for BusinessIBM Sverige
 
Gluecon 2016 Keynote: Deploying and Managing Blockchain Applications
Gluecon 2016 Keynote: Deploying and Managing Blockchain ApplicationsGluecon 2016 Keynote: Deploying and Managing Blockchain Applications
Gluecon 2016 Keynote: Deploying and Managing Blockchain ApplicationsDuncan Johnston-Watt
 
NRCLive FinTech event Trends in FinTech
NRCLive FinTech event Trends in FinTech NRCLive FinTech event Trends in FinTech
NRCLive FinTech event Trends in FinTech Maarten Korz
 
Blockchain Application Design and Development, and the Case of Programmable M...
Blockchain Application Design and Development, and the Case of Programmable M...Blockchain Application Design and Development, and the Case of Programmable M...
Blockchain Application Design and Development, and the Case of Programmable M...Ingo Weber
 
The Role of Blockchain in Enterprise Commerce and Product Content Management
The Role of Blockchain in Enterprise Commerce and Product Content ManagementThe Role of Blockchain in Enterprise Commerce and Product Content Management
The Role of Blockchain in Enterprise Commerce and Product Content ManagementSAP Customer Experience
 
Blockchain in enterprise - Challenges, Considerations and Designs
Blockchain in enterprise - Challenges, Considerations and DesignsBlockchain in enterprise - Challenges, Considerations and Designs
Blockchain in enterprise - Challenges, Considerations and DesignsMichael Chi
 
Blockchain session @ 2nd Bluemix Meetup
Blockchain session @  2nd Bluemix MeetupBlockchain session @  2nd Bluemix Meetup
Blockchain session @ 2nd Bluemix MeetupAlberto Miyazaki
 
Anatomy of a hyperledger application
Anatomy of a hyperledger applicationAnatomy of a hyperledger application
Anatomy of a hyperledger applicationEric Cattoir
 
Blockchain with HyperLedger (Public version)
Blockchain with HyperLedger (Public version)Blockchain with HyperLedger (Public version)
Blockchain with HyperLedger (Public version)Benjamin Fuentes
 
Blockchain and Supply Chain
Blockchain and Supply ChainBlockchain and Supply Chain
Blockchain and Supply ChainFinancial Poise
 
Blockchain and Smart Contracts (Series: Blockchain Basics)
Blockchain and Smart Contracts (Series: Blockchain Basics)Blockchain and Smart Contracts (Series: Blockchain Basics)
Blockchain and Smart Contracts (Series: Blockchain Basics)Financial Poise
 
BLOCKCHAIN & THE HOLLYWOOD SUPPLY CHAIN
BLOCKCHAIN & THE HOLLYWOOD SUPPLY CHAINBLOCKCHAIN & THE HOLLYWOOD SUPPLY CHAIN
BLOCKCHAIN & THE HOLLYWOOD SUPPLY CHAINETCenter
 

Tendances (20)

Blockchain and Internet of Things
Blockchain and Internet of ThingsBlockchain and Internet of Things
Blockchain and Internet of Things
 
Kathleen Breitman at the Hyperledger Meetup
Kathleen Breitman at the Hyperledger Meetup Kathleen Breitman at the Hyperledger Meetup
Kathleen Breitman at the Hyperledger Meetup
 
Blockchain for the Enterprise
Blockchain for the EnterpriseBlockchain for the Enterprise
Blockchain for the Enterprise
 
IBM Blockchain Experience - Suwat - 20161027
IBM Blockchain Experience - Suwat - 20161027IBM Blockchain Experience - Suwat - 20161027
IBM Blockchain Experience - Suwat - 20161027
 
IBM Bluemix Paris meetup #23 - 20170425 - Loansquare
IBM Bluemix Paris meetup #23 - 20170425 - Loansquare IBM Bluemix Paris meetup #23 - 20170425 - Loansquare
IBM Bluemix Paris meetup #23 - 20170425 - Loansquare
 
Banking on a Blockchain
Banking on a BlockchainBanking on a Blockchain
Banking on a Blockchain
 
Blockchain for Business on Hyperledger
Blockchain for Business on HyperledgerBlockchain for Business on Hyperledger
Blockchain for Business on Hyperledger
 
TDC2018FLN | Trilha Blockchain - BlockChain Casos de Usos alem das CryptoMoedas
TDC2018FLN | Trilha Blockchain - BlockChain Casos de Usos alem das CryptoMoedasTDC2018FLN | Trilha Blockchain - BlockChain Casos de Usos alem das CryptoMoedas
TDC2018FLN | Trilha Blockchain - BlockChain Casos de Usos alem das CryptoMoedas
 
IBM - Blockchain Explained - Introduction for Business
IBM - Blockchain Explained - Introduction for BusinessIBM - Blockchain Explained - Introduction for Business
IBM - Blockchain Explained - Introduction for Business
 
Gluecon 2016 Keynote: Deploying and Managing Blockchain Applications
Gluecon 2016 Keynote: Deploying and Managing Blockchain ApplicationsGluecon 2016 Keynote: Deploying and Managing Blockchain Applications
Gluecon 2016 Keynote: Deploying and Managing Blockchain Applications
 
NRCLive FinTech event Trends in FinTech
NRCLive FinTech event Trends in FinTech NRCLive FinTech event Trends in FinTech
NRCLive FinTech event Trends in FinTech
 
Blockchain Application Design and Development, and the Case of Programmable M...
Blockchain Application Design and Development, and the Case of Programmable M...Blockchain Application Design and Development, and the Case of Programmable M...
Blockchain Application Design and Development, and the Case of Programmable M...
 
The Role of Blockchain in Enterprise Commerce and Product Content Management
The Role of Blockchain in Enterprise Commerce and Product Content ManagementThe Role of Blockchain in Enterprise Commerce and Product Content Management
The Role of Blockchain in Enterprise Commerce and Product Content Management
 
Blockchain in enterprise - Challenges, Considerations and Designs
Blockchain in enterprise - Challenges, Considerations and DesignsBlockchain in enterprise - Challenges, Considerations and Designs
Blockchain in enterprise - Challenges, Considerations and Designs
 
Blockchain session @ 2nd Bluemix Meetup
Blockchain session @  2nd Bluemix MeetupBlockchain session @  2nd Bluemix Meetup
Blockchain session @ 2nd Bluemix Meetup
 
Anatomy of a hyperledger application
Anatomy of a hyperledger applicationAnatomy of a hyperledger application
Anatomy of a hyperledger application
 
Blockchain with HyperLedger (Public version)
Blockchain with HyperLedger (Public version)Blockchain with HyperLedger (Public version)
Blockchain with HyperLedger (Public version)
 
Blockchain and Supply Chain
Blockchain and Supply ChainBlockchain and Supply Chain
Blockchain and Supply Chain
 
Blockchain and Smart Contracts (Series: Blockchain Basics)
Blockchain and Smart Contracts (Series: Blockchain Basics)Blockchain and Smart Contracts (Series: Blockchain Basics)
Blockchain and Smart Contracts (Series: Blockchain Basics)
 
BLOCKCHAIN & THE HOLLYWOOD SUPPLY CHAIN
BLOCKCHAIN & THE HOLLYWOOD SUPPLY CHAINBLOCKCHAIN & THE HOLLYWOOD SUPPLY CHAIN
BLOCKCHAIN & THE HOLLYWOOD SUPPLY CHAIN
 

Similaire à Blockchain a-new-disruption-in-financial-servies by ibm

Introduction to Blockchain and Smart Contracts
Introduction to Blockchain and Smart ContractsIntroduction to Blockchain and Smart Contracts
Introduction to Blockchain and Smart ContractsSaad Zaher
 
Block chains and crypto currencies - introduction
Block chains and crypto currencies - introductionBlock chains and crypto currencies - introduction
Block chains and crypto currencies - introductionInitio
 
Blockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and ApplicationsBlockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and ApplicationsIngo Weber
 
An introduction to blockchain and hyperledger v ru
An introduction to blockchain and hyperledger v ruAn introduction to blockchain and hyperledger v ru
An introduction to blockchain and hyperledger v ruLennartF
 
SITIST 2018 Part 1 - Blockchain and Enterprise Use Cases
SITIST 2018 Part 1 - Blockchain and Enterprise Use CasesSITIST 2018 Part 1 - Blockchain and Enterprise Use Cases
SITIST 2018 Part 1 - Blockchain and Enterprise Use Casessitist
 
The Impact and Potential of Blockchain on the Banking Sector
The Impact and Potential of Blockchain on the Banking SectorThe Impact and Potential of Blockchain on the Banking Sector
The Impact and Potential of Blockchain on the Banking SectorPECB
 
Introduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractIntroduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractThanh Nguyen
 
Blockchain Security and Privacy
Blockchain Security and PrivacyBlockchain Security and Privacy
Blockchain Security and PrivacyAnil John
 
Blockchain e mercato
Blockchain e mercatoBlockchain e mercato
Blockchain e mercatoCDagata
 
Lapine blockchain introduction 10/04/2018
Lapine blockchain introduction 10/04/2018Lapine blockchain introduction 10/04/2018
Lapine blockchain introduction 10/04/2018Chuck Bair
 
Blockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_FinalBlockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_FinalDavid Lee Kuo Chuen 李国权
 
Real world blockchain solutions - DevDays Asia 2018 - Taipei
Real world blockchain solutions - DevDays Asia 2018 - TaipeiReal world blockchain solutions - DevDays Asia 2018 - Taipei
Real world blockchain solutions - DevDays Asia 2018 - TaipeiMichael Chi
 
InitVerse Blockchain - 5 minutes to understand the blockchain.pdf
InitVerse Blockchain - 5 minutes to understand the blockchain.pdfInitVerse Blockchain - 5 minutes to understand the blockchain.pdf
InitVerse Blockchain - 5 minutes to understand the blockchain.pdfInitVerse Blockchain
 
Blockchain technology.docx
Blockchain technology.docxBlockchain technology.docx
Blockchain technology.docxaymenabbaci
 
Ultimate guide to understand- What is Blockchain Technology
Ultimate guide to understand- What is Blockchain Technology Ultimate guide to understand- What is Blockchain Technology
Ultimate guide to understand- What is Blockchain Technology Chapter247 Infotech
 
Blockchain - Primer for City CIOs v05 01 22.pdf
Blockchain - Primer for City CIOs v05 01 22.pdfBlockchain - Primer for City CIOs v05 01 22.pdf
Blockchain - Primer for City CIOs v05 01 22.pdfssusera441c2
 
DWeb and Civil Society: An Introduction For Makers
DWeb and Civil Society: An Introduction For MakersDWeb and Civil Society: An Introduction For Makers
DWeb and Civil Society: An Introduction For MakersTechSoup
 
DSDT Meetup July 2018
DSDT Meetup July 2018DSDT Meetup July 2018
DSDT Meetup July 2018DSDT_MTL
 

Similaire à Blockchain a-new-disruption-in-financial-servies by ibm (20)

Introduction to Blockchain and Smart Contracts
Introduction to Blockchain and Smart ContractsIntroduction to Blockchain and Smart Contracts
Introduction to Blockchain and Smart Contracts
 
Block chains and crypto currencies - introduction
Block chains and crypto currencies - introductionBlock chains and crypto currencies - introduction
Block chains and crypto currencies - introduction
 
Blockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and ApplicationsBlockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and Applications
 
An introduction to blockchain and hyperledger v ru
An introduction to blockchain and hyperledger v ruAn introduction to blockchain and hyperledger v ru
An introduction to blockchain and hyperledger v ru
 
SITIST 2018 Part 1 - Blockchain and Enterprise Use Cases
SITIST 2018 Part 1 - Blockchain and Enterprise Use CasesSITIST 2018 Part 1 - Blockchain and Enterprise Use Cases
SITIST 2018 Part 1 - Blockchain and Enterprise Use Cases
 
The Impact and Potential of Blockchain on the Banking Sector
The Impact and Potential of Blockchain on the Banking SectorThe Impact and Potential of Blockchain on the Banking Sector
The Impact and Potential of Blockchain on the Banking Sector
 
Introduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractIntroduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart Contract
 
Blockchain Security and Privacy
Blockchain Security and PrivacyBlockchain Security and Privacy
Blockchain Security and Privacy
 
Blockchain e mercato
Blockchain e mercatoBlockchain e mercato
Blockchain e mercato
 
Block chain
Block chainBlock chain
Block chain
 
Lapine blockchain introduction 10/04/2018
Lapine blockchain introduction 10/04/2018Lapine blockchain introduction 10/04/2018
Lapine blockchain introduction 10/04/2018
 
Blockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_FinalBlockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_Final
 
Real world blockchain solutions - DevDays Asia 2018 - Taipei
Real world blockchain solutions - DevDays Asia 2018 - TaipeiReal world blockchain solutions - DevDays Asia 2018 - Taipei
Real world blockchain solutions - DevDays Asia 2018 - Taipei
 
InitVerse Blockchain - 5 minutes to understand the blockchain.pdf
InitVerse Blockchain - 5 minutes to understand the blockchain.pdfInitVerse Blockchain - 5 minutes to understand the blockchain.pdf
InitVerse Blockchain - 5 minutes to understand the blockchain.pdf
 
Introduction to Blockchain and Cryptocurrencies
Introduction to Blockchain and CryptocurrenciesIntroduction to Blockchain and Cryptocurrencies
Introduction to Blockchain and Cryptocurrencies
 
Blockchain technology.docx
Blockchain technology.docxBlockchain technology.docx
Blockchain technology.docx
 
Ultimate guide to understand- What is Blockchain Technology
Ultimate guide to understand- What is Blockchain Technology Ultimate guide to understand- What is Blockchain Technology
Ultimate guide to understand- What is Blockchain Technology
 
Blockchain - Primer for City CIOs v05 01 22.pdf
Blockchain - Primer for City CIOs v05 01 22.pdfBlockchain - Primer for City CIOs v05 01 22.pdf
Blockchain - Primer for City CIOs v05 01 22.pdf
 
DWeb and Civil Society: An Introduction For Makers
DWeb and Civil Society: An Introduction For MakersDWeb and Civil Society: An Introduction For Makers
DWeb and Civil Society: An Introduction For Makers
 
DSDT Meetup July 2018
DSDT Meetup July 2018DSDT Meetup July 2018
DSDT Meetup July 2018
 

Plus de Diego Alberto Tamayo

11 best practices for #mobile device management ( #mdm ) https /www-01.ibm.c...
11 best practices for #mobile device management ( #mdm )  https /www-01.ibm.c...11 best practices for #mobile device management ( #mdm )  https /www-01.ibm.c...
11 best practices for #mobile device management ( #mdm ) https /www-01.ibm.c...Diego Alberto Tamayo
 
Ibm white paper_harnessing_ap_is_and_platforms_0
Ibm white paper_harnessing_ap_is_and_platforms_0Ibm white paper_harnessing_ap_is_and_platforms_0
Ibm white paper_harnessing_ap_is_and_platforms_0Diego Alberto Tamayo
 
Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...
Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...
Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...Diego Alberto Tamayo
 
Watson – un sistema diseñado para respuestas @ibm
Watson – un sistema diseñado para respuestas   @ibmWatson – un sistema diseñado para respuestas   @ibm
Watson – un sistema diseñado para respuestas @ibmDiego Alberto Tamayo
 
Blockchain powering the internet of value
Blockchain powering the internet of value  Blockchain powering the internet of value
Blockchain powering the internet of value Diego Alberto Tamayo
 
Blockchain technology amplify your enterprise / IBM
Blockchain technology amplify your enterprise / IBMBlockchain technology amplify your enterprise / IBM
Blockchain technology amplify your enterprise / IBMDiego Alberto Tamayo
 
Blockchain the chain of trust and its potential / IBM
Blockchain the chain of trust and its potential / IBMBlockchain the chain of trust and its potential / IBM
Blockchain the chain of trust and its potential / IBMDiego Alberto Tamayo
 
Blockchain rewires financial markets / IBM
Blockchain  rewires financial markets / IBMBlockchain  rewires financial markets / IBM
Blockchain rewires financial markets / IBMDiego Alberto Tamayo
 
Ibm elastic storage server moderno sistema de almacenamiento definido por s...
Ibm elastic storage server   moderno sistema de almacenamiento definido por s...Ibm elastic storage server   moderno sistema de almacenamiento definido por s...
Ibm elastic storage server moderno sistema de almacenamiento definido por s...Diego Alberto Tamayo
 
Ibm flash system a9000 una solución todo f lash altamente paralela para empre...
Ibm flash system a9000 una solución todo f lash altamente paralela para empre...Ibm flash system a9000 una solución todo f lash altamente paralela para empre...
Ibm flash system a9000 una solución todo f lash altamente paralela para empre...Diego Alberto Tamayo
 
IBM Object Storage and Software Defined Solutions - Cleversafe
IBM Object Storage and Software Defined Solutions - CleversafeIBM Object Storage and Software Defined Solutions - Cleversafe
IBM Object Storage and Software Defined Solutions - CleversafeDiego Alberto Tamayo
 
COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...
COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...
COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...Diego Alberto Tamayo
 
Driving client value through hybrid cloud - IBM
Driving client value through hybrid cloud - IBMDriving client value through hybrid cloud - IBM
Driving client value through hybrid cloud - IBMDiego Alberto Tamayo
 
Global location trends 2016 annual report by IBM
Global location trends 2016 annual report by IBMGlobal location trends 2016 annual report by IBM
Global location trends 2016 annual report by IBMDiego Alberto Tamayo
 
Learning to trust artificial intelligence systems accountability, compliance ...
Learning to trust artificial intelligence systems accountability, compliance ...Learning to trust artificial intelligence systems accountability, compliance ...
Learning to trust artificial intelligence systems accountability, compliance ...Diego Alberto Tamayo
 
The ecosystem equation collaboration in the connected economy @harvard biz @i...
The ecosystem equation collaboration in the connected economy @harvard biz @i...The ecosystem equation collaboration in the connected economy @harvard biz @i...
The ecosystem equation collaboration in the connected economy @harvard biz @i...Diego Alberto Tamayo
 
Device democracy -Saving the future of the #InternetOfThings @IBMIBV
Device democracy -Saving the future of the #InternetOfThings  @IBMIBV Device democracy -Saving the future of the #InternetOfThings  @IBMIBV
Device democracy -Saving the future of the #InternetOfThings @IBMIBV Diego Alberto Tamayo
 
The cognitive advantage insights from early adopters on driving business va...
The cognitive advantage   insights from early adopters on driving business va...The cognitive advantage   insights from early adopters on driving business va...
The cognitive advantage insights from early adopters on driving business va...Diego Alberto Tamayo
 

Plus de Diego Alberto Tamayo (20)

11 best practices for #mobile device management ( #mdm ) https /www-01.ibm.c...
11 best practices for #mobile device management ( #mdm )  https /www-01.ibm.c...11 best practices for #mobile device management ( #mdm )  https /www-01.ibm.c...
11 best practices for #mobile device management ( #mdm ) https /www-01.ibm.c...
 
Ibm white paper_harnessing_ap_is_and_platforms_0
Ibm white paper_harnessing_ap_is_and_platforms_0Ibm white paper_harnessing_ap_is_and_platforms_0
Ibm white paper_harnessing_ap_is_and_platforms_0
 
Hybrid connectivity
Hybrid connectivityHybrid connectivity
Hybrid connectivity
 
Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...
Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...
Ibm systems servidor linux power8 de 1u ibm power system s821 lc un servidor ...
 
Watson – un sistema diseñado para respuestas @ibm
Watson – un sistema diseñado para respuestas   @ibmWatson – un sistema diseñado para respuestas   @ibm
Watson – un sistema diseñado para respuestas @ibm
 
Blockchain powering the internet of value
Blockchain powering the internet of value  Blockchain powering the internet of value
Blockchain powering the internet of value
 
Blockchain technology amplify your enterprise / IBM
Blockchain technology amplify your enterprise / IBMBlockchain technology amplify your enterprise / IBM
Blockchain technology amplify your enterprise / IBM
 
Blockchain the chain of trust and its potential / IBM
Blockchain the chain of trust and its potential / IBMBlockchain the chain of trust and its potential / IBM
Blockchain the chain of trust and its potential / IBM
 
Blockchain rewires financial markets / IBM
Blockchain  rewires financial markets / IBMBlockchain  rewires financial markets / IBM
Blockchain rewires financial markets / IBM
 
Ibm elastic storage server moderno sistema de almacenamiento definido por s...
Ibm elastic storage server   moderno sistema de almacenamiento definido por s...Ibm elastic storage server   moderno sistema de almacenamiento definido por s...
Ibm elastic storage server moderno sistema de almacenamiento definido por s...
 
Ibm flash system a9000 una solución todo f lash altamente paralela para empre...
Ibm flash system a9000 una solución todo f lash altamente paralela para empre...Ibm flash system a9000 una solución todo f lash altamente paralela para empre...
Ibm flash system a9000 una solución todo f lash altamente paralela para empre...
 
IBM Object Storage and Software Defined Solutions - Cleversafe
IBM Object Storage and Software Defined Solutions - CleversafeIBM Object Storage and Software Defined Solutions - Cleversafe
IBM Object Storage and Software Defined Solutions - Cleversafe
 
COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...
COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...
COLDCHAIN“Bringing high-quality vaccines and refrigerated medicine to patient...
 
Ibm power systems hpc cluster
Ibm power systems hpc cluster Ibm power systems hpc cluster
Ibm power systems hpc cluster
 
Driving client value through hybrid cloud - IBM
Driving client value through hybrid cloud - IBMDriving client value through hybrid cloud - IBM
Driving client value through hybrid cloud - IBM
 
Global location trends 2016 annual report by IBM
Global location trends 2016 annual report by IBMGlobal location trends 2016 annual report by IBM
Global location trends 2016 annual report by IBM
 
Learning to trust artificial intelligence systems accountability, compliance ...
Learning to trust artificial intelligence systems accountability, compliance ...Learning to trust artificial intelligence systems accountability, compliance ...
Learning to trust artificial intelligence systems accountability, compliance ...
 
The ecosystem equation collaboration in the connected economy @harvard biz @i...
The ecosystem equation collaboration in the connected economy @harvard biz @i...The ecosystem equation collaboration in the connected economy @harvard biz @i...
The ecosystem equation collaboration in the connected economy @harvard biz @i...
 
Device democracy -Saving the future of the #InternetOfThings @IBMIBV
Device democracy -Saving the future of the #InternetOfThings  @IBMIBV Device democracy -Saving the future of the #InternetOfThings  @IBMIBV
Device democracy -Saving the future of the #InternetOfThings @IBMIBV
 
The cognitive advantage insights from early adopters on driving business va...
The cognitive advantage   insights from early adopters on driving business va...The cognitive advantage   insights from early adopters on driving business va...
The cognitive advantage insights from early adopters on driving business va...
 

Dernier

Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 

Dernier (20)

Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 

Blockchain a-new-disruption-in-financial-servies by ibm

  • 1. Blockchain A new disruption in financial servies?
  • 2. 2 Bitcoin :  Currency and technology • Mining • 21  million • Volatile  value • >50%  in  hands  of  880  individuals • Litecoin,  Ripple,  Zerocoin Currency “Satoshi  Nakamoto” 2009 • Blockchain • Distributed  shared  ledger • Cryptograhy (SHA-­‐256,  PKI) • Consensus  model • Smart  contracts Technology
  • 3. 3 Party D’s Records Bank Records Party C’s Records Auditor Records Party B’s Records Party A’s Records API-integrations Hack Ledger Ledger Ledger Ledger Ledger Ledger Inefficient,  expensive,  error  sensitive  and  vulnerable Information  &  asset  exchange  in  business  networks  – Separate  ledgers
  • 4. 4 Information  &  asset  exchange  in  business  networks  – Shared  ledgers Party D’s Records Bank records Party C’s Records Auditor records Party B Records Party A’s Records Ledger Ledger Ledger Ledger Ledger Ledger Consistency,  efficiency,  security  and  resilience
  • 5. 5 4  key concepts of  blockchain Distributed  shared  ledger Cryptography Consensus Smart  contracts
  • 6. 6 4  key concepts of  blockchain  -­‐ Distributed  shared  ledgers • Group  of  replicated logs/databases  (nodes) • Transactions  distributed  in  blocks • All  nodes  hold  all transactions • Parties  identified with  public  key  (=  anonymised) • Accessibility of  transactions  depending  on  blockchain implementation • Resilient for  failure  of  one  or  more  nodes • Group  of  nodes  operate  tamper  proof
  • 8. 8 Visualisation of  Bitcoin  flows  between  participants Source  :  Elliptic.co
  • 9. 9 4  key concepts of  blockchain  – Cryptography (1/2) Hashing Creation  of  a  bit  string  (digest)  representing  integrity  of  content  other  string.  Changing  one  character  in  the  original  string  results  in  complete  different  has.   Changing  multiple  characters  in  original  string  that  results  in  the  same  hash  requires  large  amount  of  processing  power  for  a long  period  of  time.     Sample  sentence  to  explain   how  SHA256  works Sample  sentence  to  explain how  SHA256  works. 79e8a584005254f7717547b5829fd01fa 6c6831bd92a2d28c93305636c71b499 c19617618972f1dc643b2bb7075c7cac ac3aea970581ca5c6ec30aee59a74c07 Extra  dot Input  data Hash  value (32  bytes) Hashing Hashing
  • 10. 10 4  key concepts of  blockchain  – Cryptography (2/2) Public  &  private  keys  and  wallets Two  large  prime  numbers  that  have  a  mathematical  relation  with  each  other.  A  string  encrypted  with  one  key  can  only  be  decrypted  with  the  other.  One  key   needs  to  be  kept  private,  the  other  one  can  be  made  publicly  known  so  that  it  can  be  used  by  other  parties  to  exchange  data  with you  in  a  secure  manner.  Private   keys  need  to  be  stored  that  it  is  accessible  only  for  owner.  This  can  be  done  on  personal  devices  (PC,  smart  card,  USB  stick, phone,  …)  or  remotely  with  a  service   provider  (cold  and  hot  wallets). Encryption Scrambling  of  clear  text  with  the  public  key  of  the  recipient  so  that  the  holder  of  that  private  key  is  the  only  one  that  can descramble  the  message.  This  is  used  to   guarantee  the  confidentiality  of  the  data  exchanged.     Confidential  text  to  be  secured  by  encryption a66b311c9b158c1e55d4e6cc555016d2e554ac…. Encryption Confidential  text  to  be  secured  by  encryption Decryption Private  keyPublic  key PKI  management Digital  signature Encryption  of  hash  representing  of  original  data  to  be  secured  with  the  private  key  of  the  sender  (called  digital  signature)  that  is  decrypted  by  the  recipient  with  the   public  of  the  sender.  If  the  decrypted  hash  matches  the  content  of  the  original  data  it  implies  two  things.  First,  the  encryption  can  only  be  performed  with  the   private  key  corresponding  with  public  key  and  secondly,  the  original  data  can’t  be  tampered  with. 2100f86450888dc01725af78a0e70415… 2626043be7d913ff5d8520b39253eef6240e31d… Encryption 2100f86450888dc01725af78a0e70415… Public  keyPrivate  key PKI  management Hash  of  data  to  be  secured Hash  to  be  checked  with  original  data Decryption
  • 11. 11 4  key concepts of  blockchain  – Consensus • Consensus  =  Majority of  nodes  agree  on  validity  of  transactions • Includes  validation  on  double-­‐spending • Permissionless (public)  vs.  permissioned (private)  blockchain setup • Proof-­‐of-­‐work  /  proof-­‐of-­‐stake  the  proof  validity  of  node (only  applicable  for  permissionless network)
  • 12. 12 4  key concepts of  blockchain  – Smart  Contracts • Business  logic that  can  be  assigned  to  a  transaction  on  the  blockchain • Acts  as  a  ‘notary’ of  blockchain transactions • Holds  conditions under  which  specific  actions  can/must  be  perfomed • Facilitates  escrow services • Can’t  be  modified without  predefined  permissions
  • 13. 13 Sample  case  of  blockchain  for smart  contracts
  • 14. 14 Source  :  Financial  Times How  a  blockchain  works?
  • 15. Value  of  blockchain technology 15 Reduction  of  costs  and  complexity Shared  trusted  transactions Resilience Secure Auditability Reduction  of  errors
  • 16. 16 Potential of  blockchain  extends across a  wide range  of  application areas Financial  Services • Payments • Securities  registration  &  processing • Lending Property • Real  estate • Intellectual  property • Cars Governmental  services • Voting • Registrations  (passports,  driving  license) • Permits Identification  &  Security • Party/device  registration • Authentication • Access  control Trade • Document  exchange • Asset  exchange • Escrow  services • Trade  agreements Internet  of  Things  (IoT) • Autonomous  devices,  such  as • Cars • Drones • Robots
  • 17. We  are  at  the  threshold  of  a  massive  explosion  in  the  history  of  computing Devices  are  becoming  significantly  more  intelligent  and  connected 17
  • 18. 18 Role of  blockchain  technology in  Internet  of  Things
  • 19. *  =  Autonomous  Decentralized  Peer-­‐to-­‐peer  Telemetry   19 ADEPT*  – PoT of  IBM  and Samsung  on  IoT applying blockchain  technology ibm.biz/empoweringtheedge
  • 20. Key differentiating elements between blockchain  protocols: • Permission model  (private  vs.  public) • Consensus  approach • Smart  contracts • Extensibility &  programmability • APIs • Scalability &  latency • Resource  consumption Multiple  implementations  of  blockchain  related  protocols  : • Bitcoin • Ethereum • Ripple • Stellar • Tendermint • Factom • Hyperledger • …and  many  more There is  not one blockchain  protocol 20
  • 21. Key factors  that influence the future of  blockchain,  crypto  assets and smart  contracts Interoperability  &  standardisation -­‐ Messages -­‐ Consensus -­‐ APIs Scalability -­‐ Volumes -­‐ Response  times Vulnarability -­‐ DDoS  attacks -­‐ Confidentiality Regulatory   -­‐ Issuance  of  crypto  assets -­‐ Compliancy  rules -­‐ Oversight 21
  • 22. Deploy your  blockchain fabric  of  choice Help  you design  and  build your  POC + + Help  guide  your  blockchain   exploration Research Middleware Services Cloud iX Design & Development IBM’s value add in  blockchain
  • 23. 1. Discuss  Blockchain  technology 2. Explore  customer  business   model 3. Asses  Blockchain  suitability 1. Show  Blockchain Application   Demo 2. Explain  technology  usage 3. Validate  Client  Interest 1. Understand  Blockchain  concepts &  elements 2. Hands on  with  Blockchain   technology 3. Demo  customization  using   Design  Thinking 1. Explore customer  specific   business  model 2. Design,  build  &  iterate  approach 3. Builds  limited  scope  deployable   solution 2  hours  meeting 2  hours  demo 1  day  workshop 2-­‐6  weeks Remote  or  face  to  face Remote  or  face  to  face Face  to  face Co-­‐located joint  team Fee of  charge Free  of charge Free of  charge For  charge Conversation Demonstration Proof  of   Concept Proof  of   Technology Overview IBM  blockchain  engagement  model
  • 24. Sample  agenda  1-­‐day  workshop • Introduction (10  mins) • Technology  Overview(50  mins) • Break (15  mins) • Understand (90  mins) • Lunch (60  mins) • Explore (90  mins) • Break (15  mins) • Prototype  (30  mins) • Evaluate (60  mins) UNDERSTAND EXPLORE PROTOTYPE EVALUATE
  • 25. Is blockchain going to be the next big disruptor for… … information technology … the economy … the society … our lifestyle ? 25