SlideShare a Scribd company logo
https://www.flickr.com/photos/123780409@N05/14321573302/
Blockchain & IoT
Lothar Wieske
https://www.flickr.com/photos/alkalinezoo/89030908/
Digitalization
SMAC
...
Augmented Reality
Blockchain
Internet of Things
...
...
Artificial Intelligence
Cognitive Services
Deep Learning
...
Business >>> Customer
Pipeline >>> Platform
https://www.flickr.com/photos/n28307/11724219854/
Rise of Digital Platforms Over The Last 10 Years
Oil Barrons Stepped Down - Silicon Kids Moved Up
https://github.com/lwieske/digital-pipelines2platforms
At current churn rate,
75% of the S&P 500
will be replaced by 2027.
https://www.innosight.com/insight/corporate-longevity-turbulence-ahead-for-large-organizations/
https://www.flickr.com/photos/justinwkern/6328287672/
Bretton Woods
1944
Nixon Shock
1971
Lehman Collapse
2008
All About The Money
Bitcoin
time
Blocks
Transactions
Bitcoin Blockchain
Journal
Bitcoin Blockchain
LedgerJournalTransaction
Blockchain
Transactions
• are Multi-Input/Multi-Output.
• consume Input All-or-Nothing.
Bitcoin Blockchain
LedgerJournalTransaction
Blockchain
UTXO = Unspent Transaction Outputs
As accounts have an all-or-nothing behaviour, the Bitcoin
blockchain does not store the Ledger. It just keeps a list of
UTXOs as pointers into the journal to keep all information.
Bitcoin Blockchain
LedgerJournalTransaction
Blockchain
Immutability
Authorization
Consensus
Bitcoin Blockchain
https://www.flickr.com/photos/1ffischer/13925891289/
Immutability - Hashes
SHA-256
HashPrevBlock is the SHA256 hash of the previous block.
• Immutes all the historical blocks.
MerkleRoot is the merkle root over the transaction list.
• Immutes the current transaction list.
HashPrevBlock MerkleRoot
................................
................................
Block Header
Bitcoin Blockchain - Immultability
HashPrevBlock MerkleRoot
...................................
................
Block Header
Bitcoin Blockchain - Immultability
A merkle tree in general hashes elements in a list (leaves) and paires and
hashes results until a merkle root remains.
A merkle tree gives granularity in transaction validation; lite clients can
validate entire blocks, transaction groups, or just single transactions with
partial merkle branches only.
#1 #2 #3 #4 #5 #6 #7 #8
78#56#34#12
#1234 #5678
#12345678
tx1 tx2 tx3 tx4 tx5 tx6 tx7 tx8
Bitcoin Blockchain - Immultability
https://www.flickr.com/photos/1ffischer/13925891289/ https://www.flickr.com/photos/cogdog/2568019743/
Authorization – Elliptic Curve Signatures
secp256k1
OP-DUP
OP_HASH160
<pubkeyhash>
OP_EQUALVERIFY
OP__CHECKSIG
<sig>
<pubkey>
TXI
TXO
<sig>
<pubkey>
OP-DUP
OP_HASH160
<pubkeyhash>
OP_EQUALVERIFY
OP__CHECKSIG
Stack
Bitcoin Blockchain - Authorization
<btcaddress>
<privkey>
<pubkey>
<pubkeyhash>
secp256k1
ripe160(sha256(.))
1+base58(.)+chksum(.)
ECDSA
secp256k1
Bitcoin Blockchain - Authorization
secp256k1
% openssl ecparam -param_enc explicit -text -noout -name secp256k1
Field Type: prime-field
Prime:
00:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:
ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:fe:ff:
ff:fc:2f
A: 0
B: 7 (0x7)
Generator (uncompressed):
04:79:be:66:7e:f9:dc:bb:ac:55:a0:62:95:ce:87:
0b:07:02:9b:fc:db:2d:ce:28:d9:59:f2:81:5b:16:
f8:17:98:48:3a:da:77:26:a3:c4:65:5d:a4:fb:fc:
0e:11:08:a8:fd:17:b4:48:a6:85:54:19:9c:47:d0:
8f:fb:10:d4:b8
Order:
00:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:ff:
ff:fe:ba:ae:dc:e6:af:48:a0:3b:bf:d2:5e:8c:d0:
36:41:41
Cofactor: 1 (0x1)
Bitcoin Blockchain - Authorization
Bitcoin Blockchain - Authorization
Bitcoin Curve over a very small prime number - ist GF(43).
Private Key is an arbitrary number between zero and the order of the Abelian Group.
Public Key results from repeated (#=Private Key) addition of the Generator to itself.
ECDSA starts with that construction ...
https://github.com/lwieske/blocktech-ecdsa/blob/master/ecdsa.ipynb
https://www.flickr.com/photos/enerva/8669121231/
CAP
FLP
BFT
Consensus – Nakamoto (Proof of Work)
Byzantine Agreement
(single source has an initial value)
Agreement: All non-faulty processes must agree on the same value.
Consensus Problem
(all processes have an initial value)
Agreement: All non-faulty processes must agree on the same (single) value.
These problems are equivalent to one another!
Bitcoin Blockchain - Consensus
FLP 1985
Impossibility of Distributed Consensus with One FaultyProcess
Fischer & Lynch & Paterson, JACM 1985
The consensus problem involves an asynchronous system
of processes, some of which may beunreliable. The problem
is for the reliable processes to agree on a binary value.
In this paper, it is shown that every protocol for this problem has the
possibility of nontermination, even with only one faulty process.
By way of contrast, solutions are known for the synchronous case, the
“Byzantine Generals”problem.
Bitcoin Blockchain - Consensus
PBFT 1999
Practical Byzantine Fault Tolerance
Castro & Liskov, OSDI 1999
This paper presents a new, practical algorithm for
state machine replication that tolerates Byzantine faults.
The algorithm offers both liveness and safetyprovided at most
out of a total of replicas are simultaneously faulty.
The algorithm works in asynchronous systems like the Internet and it
incorporates important optimizations that enable it to perform efficiently
Bitcoin Blockchain - Consensus
Nakamoto Consensus 2008
Bitcoin: A Peer-to-Peer Electronic Cash System
Satoshi Nakamoto, 2008
... The network timestamps transactions by hashing them into an
ongoing chain of hash-based proof-of-work, forming a record that
cannot be changed without redoing the proof-of-work. The longest
chain not only serves as proof ... that it came from the largest pool
of CPU power. As long as a majority of CPU power is controlled
by nodes that are not cooperating to attack the network, they'll
generate the longest chain and outpace attackers.
Bitcoin Blockchain - Consensus
https://www.flickr.com/photos/frankcarman/8192806771/
Consensus is a Zoo.
Difficulty demands leading zeros in the block header hash.
Nonce has to be guessed to achieve that.
This guessing is compute intensiv, so it is a proof of work.
Difficulty Nonce
................................
................................
Block Header
Bitcoin Blockchain - Consensus
Sometimes several miners come with competing new blocks.
There are rules to direct the race towards the longest chain.
Finally, proof of work inhibits double spending of (U)TXOs.
Difficulty Nonce
................................
................................
Block Header
Bitcoin Blockchain - Consensus
https://www.flickr.com/photos/isnapshot/12793650333/
https://www.flickr.com/photos/armydre2008/11076933333/
CPU GPU FGPA ASIC
Ethereum
Ethereum
Contract Ledger
Bitcoin
Transaction Journal
Ethereum has Normal Accounts and Contract Accounts
Bitcoin Blockchain
LedgerJournal
Blockchain
Normal Accounts and Contract Accounts both have balances.
Bitcoin Blockchain
LedgerJournal
Blockchain
Normal Accounts balances are for currency transfer.
Partial Spending. (They are not UTXOs.)
Bitcoin Blockchain
LedgerJournal
Blockchain
Contract Accounts balances are consumed for contract execution.
Bitcoin Blockchain
LedgerJournal
Blockchain
Contract Accounts in addition link to the contract code and state of execution.
Bitcoin Blockchain
LedgerJournal
Blockchain
Immutability
Authorization
Consensus
Ethereum Blockchain
Immutability
merkle tree over the transaction list
hash over uncles list
Patricia tries
Ethereum Blockchain
Authorization
ECDSA over secp256k1
Ethereum Blockchain
Consensus
proof of work based on ethash (memory hard)
ghost protocol favoring heaviest chains
(bitcoin favors longest chains)
Ethereum Blockchain
Hyperledger
Hyperledger Fabric is a platform for distributed ledger
solutions, underpinned by a modular architecture
delivering high degrees of confidentiality, resiliency,
flexibility and scalability. It is designed to support
pluggable implementations of different components, and
accommodate the complexity and intricacies that exist
across the economic ecosystem.
Hyperledger Fabric delivers a uniquely elastic and
extensible architecture, distinguishing it from alternative
blockchain solutions.
Hyperledger
Immutability
Authorization
Consensus
Immutability:	SHA-256
Authorization:	Public	Key	Infrastructure	with RSA/ECC	Keys
Consensus:	Practical Byzantine Fault	Tolerance (PBFT)
Ethereum Blockchain
Nakamoto Consortium
Network Structure decentralized permissioned
Scalability 1000s nodes 10s nodes
Consensus Finality - +
Throughput - +
Latency - +
Power Consumption - +
Correctness Proof - +
Nakamoto Consensus vs. Consortium Consensus
Adapted from Marko Vukolic, IBM
Consortium
Hyperledger
PBFT
Nakamoto
Bitcoin
POW - Bitcoin
?Nakamoto?
Ethereum
POS - Casper
https://www.flickr.com/photos/hiltibold/6978014677/
A smart contract is a computerized transaction protocol
that executes the terms of a contract. The general
objectives of smart contract design are to satisfy
common contractual conditions (such as payment terms,
liens, confidentiality, and even enforcement), minimize
exceptions both malicious and accidental, and minimize
the need for trusted intermediaries. Related economic
goals include lowering fraud loss, arbitration and
enforcement costs, and other transaction costs
Nick Szabo, 1994
Whisper
(Network)
Swarm
(Storage)
Engine
(Compute)
Ethereum Virtual Machine
Ethereum allows users to create their own operations (not just predefined
bitcoin transactions). This way, it serves as platform and protocol for
decentralized blockchain applications – not only for cryptocurrencies.
At the heart of Ethereum is the Ethereum Virtual Machine (EVM), an
infrastructure (compute, network, storage) that executes code of arbitrary
algorithmic complexity called Smart Contracts.
Developers can create applications that run on the EVM using friendly
programming languages modelled on existing languages like JavaScript
and Python.
Whisper
(Network)
Swarm
(Storage)
Engine
(Compute)
Normal	Accounts Contract AccountsGas
ChainState
Ethereum Virtual Machine + Smart Contracts
Ether	is the fuel for operating the Ethereum	platform.	It is a	payment to the
machines executing the requested smart	contract operations on	the EVM.
The total supply of ether and its rate of issuance was decided by the
donations gathered on the 2014 presale. The results were roughly: 60
million ether created to contributors of the presale and 12 Million (20% of
the above) were created to the development fund. 5 ethers are created
every block (roughly 15-17 seconds) to the miner of the block and 2-3
ethers are sometimes sent to another miner if they were also able to find a
solution but his block wasn't included (called uncle/aunt reward).
Whisper
(Network)
Swarm
(Storage)
Engine
(Compute)
Normal	Accounts Contract AccountsGas
ChainState
From Smart Contracts to Decentralized Applications
Ethereum Solidity – Token Contract
pragma solidity ^0.4.8;
contract MyToken {
...
event Transfer(
address indexed from,
address indexed to,
uint256 value);
/* Initializes contract with initial supply tokens */
function MyToken(
uint256 initialSupply,
string tokenName,
uint8 decimalUnits,
string tokenSymbol ) {
balanceOf[msg.sender] = initialSupply;
...
Ethereum Wallet – Deploy New Contract
Ethereum Wallet – Contract Source Code
Ethereum Wallet – Create Contract
Ethereum Wallet – Send Funds
Ethereum Wallet – Receiver Adds Token
https://www.flickr.com/photos/96dpi/3856167219/
Forks
Internet of Things
Autonomous Objects
Programmable Value
https://www.flickr.com/photos/carstenc/10266217656/
https://www.flickr.com/photos/myxi/5535373711/
Cryptocurrency Smart	Contract
Smart	Property
Smart	Value
Smart	Identity
Smart	Documents
Smart	Media
https://www.flickr.com/photos/sgym662114114/8428787624/
Decentralized
Autonomous
Organization
https://www.flickr.com/photos/32716504@N03/8380889887/
Blockchain Technology (BlockTech)
can
track connected devices,
process transactions,
coordinate devices, and
enable autonomous behaviour.
Brooklyn Microgrid
Brooklyn is known the world over for things small-batch and local, like
designer clogs, craft bourbon and artisanal sauerkraut.
In a promising experiment in an affluent swath of the borough, dozens of
solar-panel arrays spread across rowhouse rooftops are wired into a
growing network. Called the Brooklyn Microgrid, the project is signing up
residents and businesses to a virtual trading platform that will allow solar-
energy producers to sell excess-electricity credits from their systems to
buyers in the group, who may live as close as next door.
slock.it - The Universal Sharing Network: Rent, Sell or Share Anything
With Slock.it,	Airbnb apartments become fully automated,	smart	objects
can be rented on	demand and unused vehicles get a	new lease	on	life.
set deposit
pay deposit
return deposit
set price
receive payment
lock	/	unlock
https://www.flickr.com/photos/micsworld/8659151886/
Parking
Renting
https://www.flickr.com/photos/93247586@N05/14410913274/
Automotive
Supply
Chain
https://www.flickr.com/photos/volvob12b/8863877963/
Autonomous
Driving
Forensics
https://www.flickr.com/photos/matt_gibson/15273343947/
https://www.flickr.com/photos/intherough/3253349104/
Blockchains drive business and technology.
Bitcoin‘s Proof-of-Work scales to 1000s of nodes.
Etherum plans to adopt Proof-of-Stake very soon.
Hyperledger partitions into endorsing and validating nodes.
Smart Contracts/Chaincodes enable programmable values.
Blockchains transforms the Internet-of-Things into an Internet-of-Value.

More Related Content

What's hot

Encode Club Hackathon
Encode Club Hackathon  Encode Club Hackathon
Encode Club Hackathon
Vanessa Lošić
 
Icsa2018 blockchain tutorial
Icsa2018 blockchain tutorialIcsa2018 blockchain tutorial
Icsa2018 blockchain tutorial
Len Bass
 
Cybesecurity of the IoT
Cybesecurity of the IoTCybesecurity of the IoT
Cybesecurity of the IoT
Altoros
 
FIWARE IoT Introduction 1
FIWARE IoT Introduction 1FIWARE IoT Introduction 1
FIWARE IoT Introduction 1
Fernando Lopez Aguilar
 
blockchain is the new cloud
blockchain is the new cloudblockchain is the new cloud
blockchain is the new cloud
Yuval Birenboum
 
Architecting Azure IoT Solutions
Architecting Azure IoT SolutionsArchitecting Azure IoT Solutions
Architecting Azure IoT Solutions
GlobalLogic Ukraine
 
IDC - Blockchain Threat Model
IDC - Blockchain Threat ModelIDC - Blockchain Threat Model
IDC - Blockchain Threat Model
PeteLind
 
Webinar: Enterprise Blockchain Radically Simplified with Truffle and Kaleido
Webinar: Enterprise Blockchain Radically Simplified with Truffle and KaleidoWebinar: Enterprise Blockchain Radically Simplified with Truffle and Kaleido
Webinar: Enterprise Blockchain Radically Simplified with Truffle and Kaleido
Kaleido
 
Building IoT Solutions using Windows IoT Core
Building IoT Solutions using Windows IoT CoreBuilding IoT Solutions using Windows IoT Core
Building IoT Solutions using Windows IoT Core
WinWire Technologies Inc
 
Hyperledger Sawtooth Lake Intel's OSS Contribution to Enterprise Blockchain
Hyperledger Sawtooth Lake Intel's OSS Contribution to Enterprise BlockchainHyperledger Sawtooth Lake Intel's OSS Contribution to Enterprise Blockchain
Hyperledger Sawtooth Lake Intel's OSS Contribution to Enterprise Blockchain
Altoros
 
Getting Started in Blockchain Security and Smart Contract Auditing
Getting Started in Blockchain Security and Smart Contract AuditingGetting Started in Blockchain Security and Smart Contract Auditing
Getting Started in Blockchain Security and Smart Contract Auditing
Beau Bullock
 
Fiware, the future internet
Fiware, the future internetFiware, the future internet
Fiware, the future internet
Fernando Lopez Aguilar
 
Blockchain and Internet of Things
Blockchain and Internet of ThingsBlockchain and Internet of Things
Blockchain and Internet of Things
Valerie Lampkin
 
FIWARE Wednesday Webinars - How to Debug IoT Agents
FIWARE Wednesday Webinars - How to Debug IoT AgentsFIWARE Wednesday Webinars - How to Debug IoT Agents
FIWARE Wednesday Webinars - How to Debug IoT Agents
FIWARE
 
IoTSummit - Introduction to IoT Hub
IoTSummit - Introduction to IoT HubIoTSummit - Introduction to IoT Hub
IoTSummit - Introduction to IoT Hub
Marco Silva
 
Microsoft Azure IoT Hub (Sam Vanhoutte @TechdaysNL 2017)
Microsoft Azure IoT Hub (Sam Vanhoutte @TechdaysNL 2017)Microsoft Azure IoT Hub (Sam Vanhoutte @TechdaysNL 2017)
Microsoft Azure IoT Hub (Sam Vanhoutte @TechdaysNL 2017)
Codit
 
Quant Overledger - OIX Open Identity Exchange 14th July 2018
Quant Overledger - OIX Open Identity Exchange 14th July 2018Quant Overledger - OIX Open Identity Exchange 14th July 2018
Quant Overledger - OIX Open Identity Exchange 14th July 2018
Gilbert Verdian
 
Building a dApp on Tezos
Building a dApp on TezosBuilding a dApp on Tezos
Building a dApp on Tezos
TinaBregovi
 
Hashgraph as Code
Hashgraph as CodeHashgraph as Code
Hashgraph as Code
Calvin Cheng
 

What's hot (19)

Encode Club Hackathon
Encode Club Hackathon  Encode Club Hackathon
Encode Club Hackathon
 
Icsa2018 blockchain tutorial
Icsa2018 blockchain tutorialIcsa2018 blockchain tutorial
Icsa2018 blockchain tutorial
 
Cybesecurity of the IoT
Cybesecurity of the IoTCybesecurity of the IoT
Cybesecurity of the IoT
 
FIWARE IoT Introduction 1
FIWARE IoT Introduction 1FIWARE IoT Introduction 1
FIWARE IoT Introduction 1
 
blockchain is the new cloud
blockchain is the new cloudblockchain is the new cloud
blockchain is the new cloud
 
Architecting Azure IoT Solutions
Architecting Azure IoT SolutionsArchitecting Azure IoT Solutions
Architecting Azure IoT Solutions
 
IDC - Blockchain Threat Model
IDC - Blockchain Threat ModelIDC - Blockchain Threat Model
IDC - Blockchain Threat Model
 
Webinar: Enterprise Blockchain Radically Simplified with Truffle and Kaleido
Webinar: Enterprise Blockchain Radically Simplified with Truffle and KaleidoWebinar: Enterprise Blockchain Radically Simplified with Truffle and Kaleido
Webinar: Enterprise Blockchain Radically Simplified with Truffle and Kaleido
 
Building IoT Solutions using Windows IoT Core
Building IoT Solutions using Windows IoT CoreBuilding IoT Solutions using Windows IoT Core
Building IoT Solutions using Windows IoT Core
 
Hyperledger Sawtooth Lake Intel's OSS Contribution to Enterprise Blockchain
Hyperledger Sawtooth Lake Intel's OSS Contribution to Enterprise BlockchainHyperledger Sawtooth Lake Intel's OSS Contribution to Enterprise Blockchain
Hyperledger Sawtooth Lake Intel's OSS Contribution to Enterprise Blockchain
 
Getting Started in Blockchain Security and Smart Contract Auditing
Getting Started in Blockchain Security and Smart Contract AuditingGetting Started in Blockchain Security and Smart Contract Auditing
Getting Started in Blockchain Security and Smart Contract Auditing
 
Fiware, the future internet
Fiware, the future internetFiware, the future internet
Fiware, the future internet
 
Blockchain and Internet of Things
Blockchain and Internet of ThingsBlockchain and Internet of Things
Blockchain and Internet of Things
 
FIWARE Wednesday Webinars - How to Debug IoT Agents
FIWARE Wednesday Webinars - How to Debug IoT AgentsFIWARE Wednesday Webinars - How to Debug IoT Agents
FIWARE Wednesday Webinars - How to Debug IoT Agents
 
IoTSummit - Introduction to IoT Hub
IoTSummit - Introduction to IoT HubIoTSummit - Introduction to IoT Hub
IoTSummit - Introduction to IoT Hub
 
Microsoft Azure IoT Hub (Sam Vanhoutte @TechdaysNL 2017)
Microsoft Azure IoT Hub (Sam Vanhoutte @TechdaysNL 2017)Microsoft Azure IoT Hub (Sam Vanhoutte @TechdaysNL 2017)
Microsoft Azure IoT Hub (Sam Vanhoutte @TechdaysNL 2017)
 
Quant Overledger - OIX Open Identity Exchange 14th July 2018
Quant Overledger - OIX Open Identity Exchange 14th July 2018Quant Overledger - OIX Open Identity Exchange 14th July 2018
Quant Overledger - OIX Open Identity Exchange 14th July 2018
 
Building a dApp on Tezos
Building a dApp on TezosBuilding a dApp on Tezos
Building a dApp on Tezos
 
Hashgraph as Code
Hashgraph as CodeHashgraph as Code
Hashgraph as Code
 

Similar to Blockchain IoT Night / 25th Oct 2017

Blockchain mechanism for IET Mauritius Network
Blockchain mechanism for IET Mauritius NetworkBlockchain mechanism for IET Mauritius Network
Blockchain mechanism for IET Mauritius Network
charles okaformbah
 
Demystifying Blockchain for businesses
Demystifying Blockchain for businessesDemystifying Blockchain for businesses
Demystifying Blockchain for businesses
Scott Turner
 
Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)
Tomoaki Sato
 
Introduction to Blockchain Web3 Session
Introduction to Blockchain Web3 SessionIntroduction to Blockchain Web3 Session
Introduction to Blockchain Web3 Session
DSCIITPatna
 
BlockChain for the Banker
BlockChain for the BankerBlockChain for the Banker
BlockChain for the Banker
Bohdan Szymanik
 
A beginners Guide to NFTs.pdf
A beginners Guide to NFTs.pdfA beginners Guide to NFTs.pdf
A beginners Guide to NFTs.pdf
Akash Agrawal
 
Why we need censorship-resistant AI
Why we need censorship-resistant AIWhy we need censorship-resistant AI
Why we need censorship-resistant AI
Pandora Boxchain
 
The Basic Theories of Blockchain
The Basic Theories of BlockchainThe Basic Theories of Blockchain
The Basic Theories of Blockchain
Sota Watanabe
 
Blockchin architecture azure meetup
Blockchin architecture azure meetupBlockchin architecture azure meetup
Blockchin architecture azure meetup
Mohammad Asif
 
181
181181
Blockchain
BlockchainBlockchain
Bitcoin- Technology beyond Politics
Bitcoin- Technology beyond PoliticsBitcoin- Technology beyond Politics
Bitcoin- Technology beyond Politics
Dr. Juan Trujillo
 
Abhishek jaiswal blockchain
Abhishek jaiswal blockchainAbhishek jaiswal blockchain
Abhishek jaiswal blockchain
Abhishek Jaiswal
 
BCHGraz - Meetup #8 - Intro & Ethereum
 BCHGraz - Meetup #8 - Intro & Ethereum BCHGraz - Meetup #8 - Intro & Ethereum
BCHGraz - Meetup #8 - Intro & Ethereum
BlockchainHub Graz
 
Blockchain based Banking System
Blockchain based Banking SystemBlockchain based Banking System
Blockchain based Banking System
Gaurav Singh
 
Blockchain disruptive technology 2018
Blockchain disruptive technology 2018Blockchain disruptive technology 2018
Blockchain disruptive technology 2018
Ziyad Abualrob
 
Blockchain and Its Applications in the Real World
Blockchain and Its Applications in the Real WorldBlockchain and Its Applications in the Real World
Blockchain and Its Applications in the Real World
IRJET Journal
 
Blockchain. A Guide For Beginners
Blockchain. A Guide For BeginnersBlockchain. A Guide For Beginners
Blockchain. A Guide For Beginners
ElifTech
 
Ethereum Mining How To
Ethereum Mining How ToEthereum Mining How To
Ethereum Mining How To
Nugroho Gito
 
Blockchain, Ethereum and ConsenSys
Blockchain, Ethereum and ConsenSysBlockchain, Ethereum and ConsenSys
Blockchain, Ethereum and ConsenSys
WithTheBest
 

Similar to Blockchain IoT Night / 25th Oct 2017 (20)

Blockchain mechanism for IET Mauritius Network
Blockchain mechanism for IET Mauritius NetworkBlockchain mechanism for IET Mauritius Network
Blockchain mechanism for IET Mauritius Network
 
Demystifying Blockchain for businesses
Demystifying Blockchain for businessesDemystifying Blockchain for businesses
Demystifying Blockchain for businesses
 
Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)
 
Introduction to Blockchain Web3 Session
Introduction to Blockchain Web3 SessionIntroduction to Blockchain Web3 Session
Introduction to Blockchain Web3 Session
 
BlockChain for the Banker
BlockChain for the BankerBlockChain for the Banker
BlockChain for the Banker
 
A beginners Guide to NFTs.pdf
A beginners Guide to NFTs.pdfA beginners Guide to NFTs.pdf
A beginners Guide to NFTs.pdf
 
Why we need censorship-resistant AI
Why we need censorship-resistant AIWhy we need censorship-resistant AI
Why we need censorship-resistant AI
 
The Basic Theories of Blockchain
The Basic Theories of BlockchainThe Basic Theories of Blockchain
The Basic Theories of Blockchain
 
Blockchin architecture azure meetup
Blockchin architecture azure meetupBlockchin architecture azure meetup
Blockchin architecture azure meetup
 
181
181181
181
 
Blockchain
BlockchainBlockchain
Blockchain
 
Bitcoin- Technology beyond Politics
Bitcoin- Technology beyond PoliticsBitcoin- Technology beyond Politics
Bitcoin- Technology beyond Politics
 
Abhishek jaiswal blockchain
Abhishek jaiswal blockchainAbhishek jaiswal blockchain
Abhishek jaiswal blockchain
 
BCHGraz - Meetup #8 - Intro & Ethereum
 BCHGraz - Meetup #8 - Intro & Ethereum BCHGraz - Meetup #8 - Intro & Ethereum
BCHGraz - Meetup #8 - Intro & Ethereum
 
Blockchain based Banking System
Blockchain based Banking SystemBlockchain based Banking System
Blockchain based Banking System
 
Blockchain disruptive technology 2018
Blockchain disruptive technology 2018Blockchain disruptive technology 2018
Blockchain disruptive technology 2018
 
Blockchain and Its Applications in the Real World
Blockchain and Its Applications in the Real WorldBlockchain and Its Applications in the Real World
Blockchain and Its Applications in the Real World
 
Blockchain. A Guide For Beginners
Blockchain. A Guide For BeginnersBlockchain. A Guide For Beginners
Blockchain. A Guide For Beginners
 
Ethereum Mining How To
Ethereum Mining How ToEthereum Mining How To
Ethereum Mining How To
 
Blockchain, Ethereum and ConsenSys
Blockchain, Ethereum and ConsenSysBlockchain, Ethereum and ConsenSys
Blockchain, Ethereum and ConsenSys
 

More from Lothar Wieske

Innovation im Spannungsfeld des „Weg-Von“ und dem „Hin-Zu“ - 19/11/2019
Innovation im Spannungsfeld des „Weg-Von“ und dem „Hin-Zu“ - 19/11/2019Innovation im Spannungsfeld des „Weg-Von“ und dem „Hin-Zu“ - 19/11/2019
Innovation im Spannungsfeld des „Weg-Von“ und dem „Hin-Zu“ - 19/11/2019
Lothar Wieske
 
Chaos Engineering Here We_Go
Chaos Engineering Here We_GoChaos Engineering Here We_Go
Chaos Engineering Here We_Go
Lothar Wieske
 
Digital Disruption
Digital DisruptionDigital Disruption
Digital Disruption
Lothar Wieske
 
Jumping Jack Flash
Jumping Jack FlashJumping Jack Flash
Jumping Jack Flash
Lothar Wieske
 
Elastic Compute Cloud: Darf es noch ein Server mehr sein?
Elastic Compute Cloud: Darf es noch ein Server mehr sein?Elastic Compute Cloud: Darf es noch ein Server mehr sein?
Elastic Compute Cloud: Darf es noch ein Server mehr sein?
Lothar Wieske
 
Amazon Web Services: Flaggschiff des Cloud Computings
Amazon Web Services: Flaggschiff des Cloud ComputingsAmazon Web Services: Flaggschiff des Cloud Computings
Amazon Web Services: Flaggschiff des Cloud Computings
Lothar Wieske
 
Cloud Computing - Technology Radar 2015 / Apr 27th 2015
Cloud Computing - Technology Radar 2015 / Apr 27th 2015Cloud Computing - Technology Radar 2015 / Apr 27th 2015
Cloud Computing - Technology Radar 2015 / Apr 27th 2015
Lothar Wieske
 
Cassandra – die NoSQL-Datenbank für große Mengen und schnelle Zugriffe
Cassandra – die NoSQL-Datenbank für große Mengen und schnelle ZugriffeCassandra – die NoSQL-Datenbank für große Mengen und schnelle Zugriffe
Cassandra – die NoSQL-Datenbank für große Mengen und schnelle Zugriffe
Lothar Wieske
 
Dateisysteme und Datenbanken im Cloud Computing
Dateisysteme und Datenbanken im Cloud ComputingDateisysteme und Datenbanken im Cloud Computing
Dateisysteme und Datenbanken im Cloud Computing
Lothar Wieske
 
Vom Utility Computing zum Cloud Computing
Vom Utility Computing zum Cloud ComputingVom Utility Computing zum Cloud Computing
Vom Utility Computing zum Cloud Computing
Lothar Wieske
 
Organizational Patterns for Cloud Computing / Apr 7th 2014
Organizational Patterns for Cloud Computing / Apr 7th 2014Organizational Patterns for Cloud Computing / Apr 7th 2014
Organizational Patterns for Cloud Computing / Apr 7th 2014Lothar Wieske
 
Steps Towards Cloud Computing / Apr 9th 2013
Steps Towards Cloud Computing / Apr 9th 2013Steps Towards Cloud Computing / Apr 9th 2013
Steps Towards Cloud Computing / Apr 9th 2013Lothar Wieske
 
Cloud Architecture + Cloud Architects / Jan 24th 2012
Cloud Architecture + Cloud Architects / Jan 24th 2012Cloud Architecture + Cloud Architects / Jan 24th 2012
Cloud Architecture + Cloud Architects / Jan 24th 2012
Lothar Wieske
 
Cloud Computing im Unternehmen / Jan 25th 2011
Cloud Computing im Unternehmen / Jan 25th 2011Cloud Computing im Unternehmen / Jan 25th 2011
Cloud Computing im Unternehmen / Jan 25th 2011
Lothar Wieske
 

More from Lothar Wieske (14)

Innovation im Spannungsfeld des „Weg-Von“ und dem „Hin-Zu“ - 19/11/2019
Innovation im Spannungsfeld des „Weg-Von“ und dem „Hin-Zu“ - 19/11/2019Innovation im Spannungsfeld des „Weg-Von“ und dem „Hin-Zu“ - 19/11/2019
Innovation im Spannungsfeld des „Weg-Von“ und dem „Hin-Zu“ - 19/11/2019
 
Chaos Engineering Here We_Go
Chaos Engineering Here We_GoChaos Engineering Here We_Go
Chaos Engineering Here We_Go
 
Digital Disruption
Digital DisruptionDigital Disruption
Digital Disruption
 
Jumping Jack Flash
Jumping Jack FlashJumping Jack Flash
Jumping Jack Flash
 
Elastic Compute Cloud: Darf es noch ein Server mehr sein?
Elastic Compute Cloud: Darf es noch ein Server mehr sein?Elastic Compute Cloud: Darf es noch ein Server mehr sein?
Elastic Compute Cloud: Darf es noch ein Server mehr sein?
 
Amazon Web Services: Flaggschiff des Cloud Computings
Amazon Web Services: Flaggschiff des Cloud ComputingsAmazon Web Services: Flaggschiff des Cloud Computings
Amazon Web Services: Flaggschiff des Cloud Computings
 
Cloud Computing - Technology Radar 2015 / Apr 27th 2015
Cloud Computing - Technology Radar 2015 / Apr 27th 2015Cloud Computing - Technology Radar 2015 / Apr 27th 2015
Cloud Computing - Technology Radar 2015 / Apr 27th 2015
 
Cassandra – die NoSQL-Datenbank für große Mengen und schnelle Zugriffe
Cassandra – die NoSQL-Datenbank für große Mengen und schnelle ZugriffeCassandra – die NoSQL-Datenbank für große Mengen und schnelle Zugriffe
Cassandra – die NoSQL-Datenbank für große Mengen und schnelle Zugriffe
 
Dateisysteme und Datenbanken im Cloud Computing
Dateisysteme und Datenbanken im Cloud ComputingDateisysteme und Datenbanken im Cloud Computing
Dateisysteme und Datenbanken im Cloud Computing
 
Vom Utility Computing zum Cloud Computing
Vom Utility Computing zum Cloud ComputingVom Utility Computing zum Cloud Computing
Vom Utility Computing zum Cloud Computing
 
Organizational Patterns for Cloud Computing / Apr 7th 2014
Organizational Patterns for Cloud Computing / Apr 7th 2014Organizational Patterns for Cloud Computing / Apr 7th 2014
Organizational Patterns for Cloud Computing / Apr 7th 2014
 
Steps Towards Cloud Computing / Apr 9th 2013
Steps Towards Cloud Computing / Apr 9th 2013Steps Towards Cloud Computing / Apr 9th 2013
Steps Towards Cloud Computing / Apr 9th 2013
 
Cloud Architecture + Cloud Architects / Jan 24th 2012
Cloud Architecture + Cloud Architects / Jan 24th 2012Cloud Architecture + Cloud Architects / Jan 24th 2012
Cloud Architecture + Cloud Architects / Jan 24th 2012
 
Cloud Computing im Unternehmen / Jan 25th 2011
Cloud Computing im Unternehmen / Jan 25th 2011Cloud Computing im Unternehmen / Jan 25th 2011
Cloud Computing im Unternehmen / Jan 25th 2011
 

Recently uploaded

DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Product School
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
RinaMondal9
 
Assure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyesAssure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.
ViralQR
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
Vlad Stirbu
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Nexer Digital
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 

Recently uploaded (20)

DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
 
Assure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyesAssure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyes
 
Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.Welocme to ViralQR, your best QR code generator.
Welocme to ViralQR, your best QR code generator.
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 

Blockchain IoT Night / 25th Oct 2017