SlideShare a Scribd company logo
1
© Jerome Kehrli @ niceideas.ch
http://www.niceideas.ch/roller2/badtrash/entry/blockchain-explained-beta
The Blockchain
The Technology behind Bitcoin
2
1. What is the blockchain ?
3
INITIAL DEFINITION
The blockchain is the technology running the bitcoin.
Some Definitions
WIKIPEDIA DEFINITION
A blockchain is a distributed database that maintains a continuously-
growing list of records called blocks secured from tampering and revision.
MY DEFINITION
The blockchain is a secured protocol enabling peer-to-peer exchanges on a
distributed network in a secured, public and non-repudiable way.
4
A tiny little bit of history
Architecture and principle first designed
for Bitcoin
A solution to make the database both
secured and widely distributed
Actually the main innovation of the
Bitcoin
Conceived in 2008 and implemented in
2009
Satoshi Nakamoto
As of 2014 : “Blockchain 2.0”
Evolution over the initial blockchain
From simple transactions to actual
Software Programs
From simply a distributed transaction
ledger to a globally decentralized, un-
ownable, digital computer
5
Introduction Example
Bob is an online web
surfer and is looking for
a suite. He wants to buy
it online.
Sally runs an online
shop and sells clothes.
6
2. Problem(s) solved by the blockchain
7
Usual Situation (1)
Recall the introduction problem
This is what happens in practice
8
Usual Situation (2)
9
Usual Situation (3)
10
Usual Situation (4)
11
Usual Situation (5)
12
Usual Situation (6)
13
Usual Situation (7)
14
Usual Situation (8)
15
The financial system is opaque and lacks transparency and fairness.
All these intermediates are no volunteers. They work for money and get paid for
their services.
The transaction costs money to both the buyer and the seller.
There are interest rates, fees, surcharges, etc.
EFTs in Europe can cost 25 euros.
Credit transactions can cost several percent of the transaction.
All these exchanges are error prone.
Credit card informations are often stolen.
Banks make mistakes.
An account holder is eventually not even the actual owner of his account.
The bank really owns the account.
Funds can be garnished, even frozen completely.
Banks and other payment processors like PayPal, Visa, and Mastercard may refuse to
process payments for certain legal entities.
Financial exchanges are slow.
Checking and low cost wire services take days to complete.
The problems with this model
16
A clearing house
is a financial institution that provides clearing and settlement services for financial
and commodities derivatives and securities transactions
stands between two clearing participants / firms (banks)
reduces the risk of one (or more) clearing firm failing to honor its trade settlement
obligations.
It nets offsetting transactions between multiple counterparties.
Clearing House
17
Clearing House (1)
Buyers and sellers use intermediaries because they may not trust the other
party, but they trust that the intermediary will assure the transaction is
completed faithfully. This is the fundamental role of a clearing house
18
Clearing House (2)
19
When one bank sends money to another, no physical currency changes hands.
Banks and settlement systems use central electronic ledgers to track assets.
But such central ledgers - or clearing houses - can be slow and inefficient, often
relying on faxes or manual input.
That not only wastes time but racks up fees.
The system is also open to hacking and fraud.
These central institutions gets fees to cover such risks of course as well as
many other services. The price is high
It prevents, for instance, micro-payments services who are not able to support the
charge asked by these central structures.
The problems with Clearing Houses
20
Distributed Ledgers
OTHER DEFINITION
A blockchain is a type of distributed ledger, comprised of unchangeable,
digitally recorded data in packages called blocks.
A distributed ledger (also called shared ledger) is a consensus of replicated,
shared, and synchronized digital data geographically spread across multiple
sites, countries, and/or institutions.
Every node in the decentralized system has a copy of the ledger.
No centralized "official" copy exists and no user is "trusted" more than any other.
21
Distributed Ledger instead of Central Ledger
22
3. Operation of the blockchain
23
Blockchain overview (1)
The blockchain itself is a list of blocks.
These digitally recorded "blocks" of data are stored in a linear chain.
Each block in the chain contains data (e.g. bitcoin transaction) and is
cryptographically hashed.
Each block includes the hash of the prior block in the blockchain, linking the
two, ensuring all data in the overall "blockchain" has not been tampered with and
remains unchanged.
This has the effect of creating a chain of blocks from the genesis block to the
current block.
Each block is guaranteed to come after the previous block chronologically because the
previous block's hash would otherwise not be known.
24
Blockchain overview (2)
The blockchain network is a peer-to-peer network of independent nodes
communicating together by message broadcasting.
A node is not necessarily connected to every other node, but at least some of
them.
25
Blockchain overview (3)
26
Blockchain principle (1)
The operation principle of is pretty straightforward to understand. We’ll illustrate it
her on the Bitcoin blockchain.
Principle is as follows :
1. A user wants to pay another user some bitcoins, he broadcasts a transaction to the network.
2. Miners add the transaction as they receive it to their current block, the one they are currently
working on
3. Randomly, one of the miner may win the lottery and "mine" the block (we'll get back to that)
4. At that moment, this new "definitive" block is broadcasted to the network and added to
everyone's copy of the blockchain
27
Blockchain principle (2)
28
Blockchain principle (3)
29
Blockchain principle (2)
30
Blockchain principle (2)
31
Blockchain principle (2)
32
In order for a block to be accepted by network participants, miners must
complete a proof of work which covers all of the data in the block.
The proof of work is a piece of data which is difficult (costly, time-consuming) to
produce but easy for others to verify and which satisfies certain requirements.
Producing a proof of work can be a random process with low probability so that a lot of
trial and error is required on average before a valid proof of work is generated.
Bitcoin uses the Hashcash proof of work system.
For a block to be valid it must hash to a value less than the current target; this
means that each block indicates that work has been done generating it.
Each block contains the hash of the preceding block, thus each block has a
chain of blocks that together contain a large amount of work.
Changing a block (which can only be done by making a new block containing the
same predecessor) requires regenerating all successors and redoing the work
they contain.
This protects the block chain from tampering.
The amount of successors is relevant when qualifying the validity of a block : at least 6
successors are required to consider a block valid
Proof of Work
33
Mining principle (1)
34
Mining principle (2)
35
Mining principle (3)
36
Mining principle (4)
37
Mining principle (5)
38
4. Technical Aspects
39
Blockchain structure
The blockchain data structure is an ordered, back-linked list of blocks of
transactions.
Every block contains a hash of the previous block. This has the effect of creating a
chain of blocks from the genesis block to the current block.
Each block is guaranteed to come after the previous block chronologically because the
previous block's hash would otherwise not be known.
Each block is also computationally impractical to modify once it has been
in the chain for a while because every block after it would also have to be
regenerated.
New transactions are constantly being processes by miners into new blocks
which are added to the end of the chain and can never be changed or removed
once accepted by the network.
40
Block Structure
Each block contains, among other things :
a record of some or all recent transactions,
and
a reference to the block that came
immediately before it.
It also contains an answer to a difficult-to-
solve mathematical puzzle, the hash or
Proof of Work.
41
Mining
In the Bitcoin world, transactions are broadcast to the network by the sender,
and all peers trying to solve blocks collect the transaction records and add them
to the block they are working to solve. This is called Mining.
Mining is the process of adding transaction records to Bitcoin's public ledger of past
transactions. This ledger of past transactions is called the block chain as it is a chain of
blocks.
Mining is intentionally designed to be resource-intensive and difficult so that the
number of blocks found each day by miners remains steady. Individual blocks must
contain a proof of work to be considered valid.
The primary purpose of mining is to allow Bitcoin nodes to reach a secure,
tamper-resistant consensus.
42
Mining algorithm (1)
43
Mining algorithm (2)
44
Mining algorithm (3)
45
Mining algorithm (4)
46
Mining algorithm (5)
47
Mining algorithm (6)
48
Mining algorithm (7)
49
Mining algorithm (8)
50
The difficulty is the measure of how difficult it is to find a new block compared
to the easiest it can ever be.
It is recalculated every 2016 blocks to a value such that the previous 2016
blocks would have been generated in exactly two weeks had everyone been
mining at this difficulty.
This will yield, on average, one block every ten minutes.
Difficulty Adjustment
51
Target Value (1)
52
Target Value (2)
53
Target Value (3)
54
Target Value (4)
55
Target Value (5)
56
Target Value (6)
57
Target Value (7)
58
Target Value (8)
59
Mining is also the mechanism used to introduce Bitcoins into the system:
Miners are paid any transaction fees as well as
a "subsidy" of newly created coins.
These both serves the purpose of disseminating new coins in a decentralized
manner as well as motivating people to provide security for the system.
It gives miners incentive to put their computation power at the disposal of the
blockchain network.
Because there is a reward of brand new bitcoins for solving each block, every
block also contains a record of which Bitcoin addresses or scripts are entitled to
receive the reward.
This record is known as a generation transaction (or a coinbase transaction) and is
always the first transaction appearing in every block.
Miner retribution
60
Miner’s reward (1)
61
Miner’s reward (2)
62
Miner’s reward (3)
63
Miner’s reward (4)
64
In the specific case of the bitcoin, Satoshi had very soon the idea of limiting the bitcoin supply.
In a centralized economy, currency is issued by a central bank at a rate that is supposed to match the
growth of the amount of goods that are exchanged so that these goods can be traded with stable
prices.
The monetary base is controlled by this central bank.
In the United States, the Fed increases the monetary base by issuing currency, increasing the
amount banks have on reserve, and more recently, printing money electronically in a process called
Quantitative Easing.
In a fully decentralized monetary system, there is no central authority that regulates the monetary
base.
Instead, currency is created by the nodes of a peer-to-peer network.
The Bitcoin generation algorithm defines, in advance, how currency will be created and at what rate.
Any currency that is generated by a malicious user that does not follow the rules will be rejected by
the network and thus is worthless.
Bitcoins are created each time a user discovers a new block.
The rate of block creation is adjusted every 2016 blocks to aim for a constant two week adjustment
period (equivalent to 6 per hour.)
The number of bitcoins generated per block is set to decrease geometrically, with a 50% reduction
every 210,000 blocks, or approximately four years.
The result is that the number of bitcoins in existence is not expected to exceed 21 million.
Speculated justifications for the unintuitive value "21 million" are that it matches a 4-year reward
halving schedule; or the ultimate total number of bitcoins that will be mined is close to the
maximum capacity of a 64-bit floating point number.
Bitcoin limited supply
65
Bitcoin Monetary Inflation
66
A wallet is basically the Bitcoin equivalent of a bank account. It allows you to
receive bitcoins, store them, and then send them to others.
The name "Bitcoin wallet" is a bit of a misnomer. Bitcoin wallets don't hold actual
Bitcoins, those are essentially stored on the blockchain.
Instead, Bitcoin wallets hold the private keys that give users the right to use those
coins.
Each Bitcoin wallet comes with at least two keys : one public, and one private.
A Bitcoin address, or simply address, is an identifier of 26-35 alphanumeric
characters, beginning with the number 1 or 3, that represents a possible
destination for a bitcoin payment.
Addresses can be generated at no cost by any user of Bitcoin.
Bitcoin Wallet Cryptography
67
Wallet cryptography (1)
68
Wallet cryptography (2)
69
Wallet cryptography (3)
70
Wallet cryptography (4)
71
A Merkle Tree is a tree constructed by hashing paired data (the leaves), then
pairing and hashing the results until a single hash remains, the merkle root.
The construction of the Merke tree is such that if any single leaf transaction is
changed, all hashes along the branch would be changed and ultimately the
merkle root as well.
This is a key property ensuring security of the blockchain.
Merkle trees in bitcoin use a double SHA-256, the SHA-256 hash of the SHA-
256 hash of something.
Merkle Trees
72
Merkle Tree
This procedure repeats
recursively until we reach a row
consisting of just a single
double-hash.
This is the Merkle root of the
tree.
First from the top row of the tree
with the ordered double-SHA-
256 hashes of the byte streams
of the transactions in the block.
Then the row below it consists of
half that number of hashes.
Each entry is the double-SHA-
256 of the 64-byte concatenation
of the corresponding two hashes
below it in the tree.
73
Replication (1)
Both new transactions and newly mined blocked are broadcasted to the peer-to-
peer network using the Flood Protocol.
74
Replication (2)
75
Replication (3)
76
Replication (4)
77
Replication (5)
78
Replication (6)
79
It's possible for the blockchain to have temporary splits
for instance, if two miners arrive at two different valid solutions for the same block at
the same time, unbeknownst to one another.
The peer-to-peer network is designed to resolve these splits within a short
period of time, so that eventually only one branch of the chain survives.
The client accepts the longest chain of blocks as valid.
The "length" of the entire block chain refers to the chain with the most combined
difficulty, not the one with the most blocks.
This prevents someone from forking the chain and creating a large number of low-
difficulty blocks, and having it accepted by the network as "longest".
Orphaned, Extinct and Staled Blocks
80
Blockchain branches(1)
81
Blockchain branches(2)
82
Blockchain branches(3)
83
Blockchain branches(4)
84
Blockchain branches(5)
85
5. Blockchain 2.0
86
The Blockchain 2.0 is an evolution of the blockchain protocol enabling not
only to exchange transaction but rather code and programs in the form of Smart
Contracts
Now developers are allowed to build programs and API's on the Blockchain Protocol.
This relatively new concept involves the development of programs that can be
entrusted with money.
Smart contracts are programs that encode certain conditions and outcomes.
By developing ready to use programs that function on predetermined conditions
between the supplier and the client, smart programs ensure a secure escrow
service in real time at near zero marginal cost
Apart from Financial transactions, smart contracts makes the blockchain
technology entering a whole lot of different industry.
For instance in the Legal System, companies like Empowered Law use the public
distributed ledger of transactions that makes up the Block Chain to provide Multi-
Signature account services for asset protection, estate planning, dispute resolution,
leasing and corporate governance.
87
Blockchain 2.0 (1)
88
Blockchain 2.0 (2)
89
6. Sum-Up
90
Sum-Up
91
The Blockchain 2.0 and its applications -
“From Bitcoin Transaction
to Smart Contracts”
- will be the topic of a next article on my blog
and a future presentation
92
Thanks for listening
Ad

More Related Content

What's hot (20)

Blockchain Explained | Blockchain Simplified | Blockchain Technology | Blockc...
Blockchain Explained | Blockchain Simplified | Blockchain Technology | Blockc...Blockchain Explained | Blockchain Simplified | Blockchain Technology | Blockc...
Blockchain Explained | Blockchain Simplified | Blockchain Technology | Blockc...
Edureka!
 
Blockchain Technology Fundamentals
Blockchain Technology FundamentalsBlockchain Technology Fundamentals
Blockchain Technology Fundamentals
Experfy
 
How does blockchain work
How does blockchain workHow does blockchain work
How does blockchain work
Shishir Aryal
 
An Introduction to Blockchain
An Introduction to BlockchainAn Introduction to Blockchain
An Introduction to Blockchain
NexThoughts Technologies
 
BLOCKCHAIN
BLOCKCHAINBLOCKCHAIN
BLOCKCHAIN
Nitish sharma
 
Blockchain basics
Blockchain basicsBlockchain basics
Blockchain basics
Romit Bose
 
Blockchain Presentation
Blockchain PresentationBlockchain Presentation
Blockchain Presentation
Zied GUESMI
 
Smart contracts
Smart contractsSmart contracts
Smart contracts
removed_5ef8f4100b1d7e8bfe3d2dc557fe10d0
 
Introduction to Blockchain
Introduction to BlockchainIntroduction to Blockchain
Introduction to Blockchain
Malak Abu Hammad
 
What's cryptocurrency ?
What's cryptocurrency ?What's cryptocurrency ?
What's cryptocurrency ?
Everythingcrypto
 
Blockchain 101 | Blockchain Tutorial | Blockchain Smart Contracts | Blockchai...
Blockchain 101 | Blockchain Tutorial | Blockchain Smart Contracts | Blockchai...Blockchain 101 | Blockchain Tutorial | Blockchain Smart Contracts | Blockchai...
Blockchain 101 | Blockchain Tutorial | Blockchain Smart Contracts | Blockchai...
Edureka!
 
Blockchain and Cryptocurrency for Dummies
Blockchain and Cryptocurrency for DummiesBlockchain and Cryptocurrency for Dummies
Blockchain and Cryptocurrency for Dummies
Narudom Roongsiriwong, CISSP
 
Introduction to bitcoin
Introduction to bitcoinIntroduction to bitcoin
Introduction to bitcoin
Wolf McNally
 
Blockchain
BlockchainBlockchain
Blockchain
Sai Nath
 
Bitcoin Final Year Seminar Report
Bitcoin Final Year Seminar ReportBitcoin Final Year Seminar Report
Bitcoin Final Year Seminar Report
Shantanu Singh
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain Technology
Rashi Singh
 
Blockchain ppt
Blockchain pptBlockchain ppt
Blockchain ppt
abhi sharma
 
Blockchain
BlockchainBlockchain
Blockchain
Rishabh Sharma
 
Blockchain 101 by imran bashir
Blockchain 101  by imran bashirBlockchain 101  by imran bashir
Blockchain 101 by imran bashir
Imran Bashir
 
Cryptocurrency for Dummies
Cryptocurrency for DummiesCryptocurrency for Dummies
Cryptocurrency for Dummies
Miguel Duarte
 
Blockchain Explained | Blockchain Simplified | Blockchain Technology | Blockc...
Blockchain Explained | Blockchain Simplified | Blockchain Technology | Blockc...Blockchain Explained | Blockchain Simplified | Blockchain Technology | Blockc...
Blockchain Explained | Blockchain Simplified | Blockchain Technology | Blockc...
Edureka!
 
Blockchain Technology Fundamentals
Blockchain Technology FundamentalsBlockchain Technology Fundamentals
Blockchain Technology Fundamentals
Experfy
 
How does blockchain work
How does blockchain workHow does blockchain work
How does blockchain work
Shishir Aryal
 
Blockchain basics
Blockchain basicsBlockchain basics
Blockchain basics
Romit Bose
 
Blockchain Presentation
Blockchain PresentationBlockchain Presentation
Blockchain Presentation
Zied GUESMI
 
Introduction to Blockchain
Introduction to BlockchainIntroduction to Blockchain
Introduction to Blockchain
Malak Abu Hammad
 
Blockchain 101 | Blockchain Tutorial | Blockchain Smart Contracts | Blockchai...
Blockchain 101 | Blockchain Tutorial | Blockchain Smart Contracts | Blockchai...Blockchain 101 | Blockchain Tutorial | Blockchain Smart Contracts | Blockchai...
Blockchain 101 | Blockchain Tutorial | Blockchain Smart Contracts | Blockchai...
Edureka!
 
Introduction to bitcoin
Introduction to bitcoinIntroduction to bitcoin
Introduction to bitcoin
Wolf McNally
 
Blockchain
BlockchainBlockchain
Blockchain
Sai Nath
 
Bitcoin Final Year Seminar Report
Bitcoin Final Year Seminar ReportBitcoin Final Year Seminar Report
Bitcoin Final Year Seminar Report
Shantanu Singh
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain Technology
Rashi Singh
 
Blockchain 101 by imran bashir
Blockchain 101  by imran bashirBlockchain 101  by imran bashir
Blockchain 101 by imran bashir
Imran Bashir
 
Cryptocurrency for Dummies
Cryptocurrency for DummiesCryptocurrency for Dummies
Cryptocurrency for Dummies
Miguel Duarte
 

Viewers also liked (20)

Blockchain: The Information Technology of the Future
Blockchain: The Information Technology of the FutureBlockchain: The Information Technology of the Future
Blockchain: The Information Technology of the Future
Melanie Swan
 
Bitcoin and Blockchain Technology Explained: Not just Cryptocurrencies, Econo...
Bitcoin and Blockchain Technology Explained: Not just Cryptocurrencies, Econo...Bitcoin and Blockchain Technology Explained: Not just Cryptocurrencies, Econo...
Bitcoin and Blockchain Technology Explained: Not just Cryptocurrencies, Econo...
Melanie Swan
 
Block chain 101 what it is, why it matters
Block chain 101  what it is, why it mattersBlock chain 101  what it is, why it matters
Block chain 101 what it is, why it matters
Paul Brody
 
How does a blockchain work?
How does a blockchain work?How does a blockchain work?
How does a blockchain work?
Deloitte UK
 
History of Distributed Computing
History of Distributed ComputingHistory of Distributed Computing
History of Distributed Computing
Shermin Voshmgir
 
How to evaluate an ICO
How to evaluate an ICOHow to evaluate an ICO
How to evaluate an ICO
Shermin Voshmgir
 
Cryptocurrency tutorial
Cryptocurrency tutorialCryptocurrency tutorial
Cryptocurrency tutorial
Valentin Kalinov
 
Smart contracts & dApps
Smart contracts & dAppsSmart contracts & dApps
Smart contracts & dApps
Shermin Voshmgir
 
Blockchain Explained
Blockchain ExplainedBlockchain Explained
Blockchain Explained
Shermin Voshmgir
 
Ethereum
EthereumEthereum
Ethereum
Shermin Voshmgir
 
Introduction to Blockchain
Introduction to BlockchainIntroduction to Blockchain
Introduction to Blockchain
Ferdinando Maria Ametrano
 
Why How What - The Blockchain
Why How What - The BlockchainWhy How What - The Blockchain
Why How What - The Blockchain
Sam Wouters
 
What is Bitcoin? - A guide for beginners
What is Bitcoin? - A guide for beginnersWhat is Bitcoin? - A guide for beginners
What is Bitcoin? - A guide for beginners
Jonathan Waller
 
State of Bitcoin and Blockchain 2016
State of Bitcoin and Blockchain 2016State of Bitcoin and Blockchain 2016
State of Bitcoin and Blockchain 2016
CoinDesk
 
Bitcoin: The Internet of Money
Bitcoin: The Internet of MoneyBitcoin: The Internet of Money
Bitcoin: The Internet of Money
winklevosscap
 
History of the internet of information and blockchain, the internet of value
History of the internet of information and blockchain, the internet of value History of the internet of information and blockchain, the internet of value
History of the internet of information and blockchain, the internet of value
wehome.me, a home sharing on blockchain owned by hosts and guests
 
Blockchain & the Future of Democracy
Blockchain & the Future of DemocracyBlockchain & the Future of Democracy
Blockchain & the Future of Democracy
Shermin Voshmgir
 
Introduction to Blockchain
Introduction to BlockchainIntroduction to Blockchain
Introduction to Blockchain
Jordan Harris
 
Blockchain intro - the basics
Blockchain intro - the basicsBlockchain intro - the basics
Blockchain intro - the basics
Zakir Hoosen
 
Intro into blockchain
Intro into blockchainIntro into blockchain
Intro into blockchain
Roderik van der Veer
 
Blockchain: The Information Technology of the Future
Blockchain: The Information Technology of the FutureBlockchain: The Information Technology of the Future
Blockchain: The Information Technology of the Future
Melanie Swan
 
Bitcoin and Blockchain Technology Explained: Not just Cryptocurrencies, Econo...
Bitcoin and Blockchain Technology Explained: Not just Cryptocurrencies, Econo...Bitcoin and Blockchain Technology Explained: Not just Cryptocurrencies, Econo...
Bitcoin and Blockchain Technology Explained: Not just Cryptocurrencies, Econo...
Melanie Swan
 
Block chain 101 what it is, why it matters
Block chain 101  what it is, why it mattersBlock chain 101  what it is, why it matters
Block chain 101 what it is, why it matters
Paul Brody
 
How does a blockchain work?
How does a blockchain work?How does a blockchain work?
How does a blockchain work?
Deloitte UK
 
History of Distributed Computing
History of Distributed ComputingHistory of Distributed Computing
History of Distributed Computing
Shermin Voshmgir
 
Why How What - The Blockchain
Why How What - The BlockchainWhy How What - The Blockchain
Why How What - The Blockchain
Sam Wouters
 
What is Bitcoin? - A guide for beginners
What is Bitcoin? - A guide for beginnersWhat is Bitcoin? - A guide for beginners
What is Bitcoin? - A guide for beginners
Jonathan Waller
 
State of Bitcoin and Blockchain 2016
State of Bitcoin and Blockchain 2016State of Bitcoin and Blockchain 2016
State of Bitcoin and Blockchain 2016
CoinDesk
 
Bitcoin: The Internet of Money
Bitcoin: The Internet of MoneyBitcoin: The Internet of Money
Bitcoin: The Internet of Money
winklevosscap
 
Blockchain & the Future of Democracy
Blockchain & the Future of DemocracyBlockchain & the Future of Democracy
Blockchain & the Future of Democracy
Shermin Voshmgir
 
Introduction to Blockchain
Introduction to BlockchainIntroduction to Blockchain
Introduction to Blockchain
Jordan Harris
 
Blockchain intro - the basics
Blockchain intro - the basicsBlockchain intro - the basics
Blockchain intro - the basics
Zakir Hoosen
 
Ad

Similar to The Blockchain - The Technology behind Bitcoin (20)

3_How mining works _Byzantine_Fault_ToleranceBFT.pptx
3_How mining works _Byzantine_Fault_ToleranceBFT.pptx3_How mining works _Byzantine_Fault_ToleranceBFT.pptx
3_How mining works _Byzantine_Fault_ToleranceBFT.pptx
Modern College Shivajinagar, Pune-5
 
Blockchain Technology | Bitcoin | Ethereum Coin | Cryptocurrency
Blockchain Technology | Bitcoin | Ethereum Coin | CryptocurrencyBlockchain Technology | Bitcoin | Ethereum Coin | Cryptocurrency
Blockchain Technology | Bitcoin | Ethereum Coin | Cryptocurrency
Unbiased Technolab
 
Tutorial blockchain technical overview-ss
Tutorial blockchain technical overview-ssTutorial blockchain technical overview-ss
Tutorial blockchain technical overview-ss
Howard Anglin
 
The Basic Theories of Blockchain
The Basic Theories of BlockchainThe Basic Theories of Blockchain
The Basic Theories of Blockchain
Sota Watanabe
 
A Primer on Blockchain and its Potential, with a Focus on the GCC
A Primer on Blockchain and its Potential, with a Focus on the GCCA Primer on Blockchain and its Potential, with a Focus on the GCC
A Primer on Blockchain and its Potential, with a Focus on the GCC
Zeyad T. Al Mudhaf
 
cryptocurrency mining and digital currencies Bitcoin, Ethereum underlying te...
cryptocurrency mining and digital currencies  Bitcoin, Ethereum underlying te...cryptocurrency mining and digital currencies  Bitcoin, Ethereum underlying te...
cryptocurrency mining and digital currencies Bitcoin, Ethereum underlying te...
rsiyengar.com
 
Blockchain: The Invisible Technology – How We Build a Blockchain
Blockchain: The Invisible Technology – How We Build a BlockchainBlockchain: The Invisible Technology – How We Build a Blockchain
Blockchain: The Invisible Technology – How We Build a Blockchain
PriyAnshu Bansal
 
chapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptxchapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptx
AschalewAyele2
 
chapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptxchapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptx
AschalewAyele2
 
Abhishek jaiswal blockchain
Abhishek jaiswal blockchainAbhishek jaiswal blockchain
Abhishek jaiswal blockchain
Abhishek Jaiswal
 
A_Survey_on_Mining_Cryptocurrencies Paper
A_Survey_on_Mining_Cryptocurrencies PaperA_Survey_on_Mining_Cryptocurrencies Paper
A_Survey_on_Mining_Cryptocurrencies Paper
allberson
 
BLOCKCHAIN PPT.pptx
BLOCKCHAIN PPT.pptxBLOCKCHAIN PPT.pptx
BLOCKCHAIN PPT.pptx
SohanaAmreen
 
Introduction to Blockchain
Introduction to Blockchain Introduction to Blockchain
Introduction to Blockchain
mohammad alkhalil
 
Cryptocurrency-Bitcoin
Cryptocurrency-BitcoinCryptocurrency-Bitcoin
Cryptocurrency-Bitcoin
SatwikaHotwani
 
Blockchain Facts_ What Is It, How It Works, and How It Can Be Used.pdf
Blockchain Facts_ What Is It, How It Works, and How It Can Be Used.pdfBlockchain Facts_ What Is It, How It Works, and How It Can Be Used.pdf
Blockchain Facts_ What Is It, How It Works, and How It Can Be Used.pdf
MaryRozetteNuezca
 
Blockchain 101 - public, tokenized blockchains
Blockchain 101 - public, tokenized blockchainsBlockchain 101 - public, tokenized blockchains
Blockchain 101 - public, tokenized blockchains
Brett Colbert
 
Bitcoin : A fierce decentralized crypto currency - Report
Bitcoin : A fierce decentralized crypto currency - ReportBitcoin : A fierce decentralized crypto currency - Report
Bitcoin : A fierce decentralized crypto currency - Report
Shivek Khurana
 
1.Introduction to Blockchain Technology.pptx
1.Introduction to Blockchain Technology.pptx1.Introduction to Blockchain Technology.pptx
1.Introduction to Blockchain Technology.pptx
Modern College Shivajinagar, Pune-5
 
1910990335_ppt on blockchain and its issue.ppt
1910990335_ppt on blockchain and its issue.ppt1910990335_ppt on blockchain and its issue.ppt
1910990335_ppt on blockchain and its issue.ppt
bansalvvinayak832
 
Understanding the Inner Workings of Bitcoin.pdf
Understanding the Inner Workings of Bitcoin.pdfUnderstanding the Inner Workings of Bitcoin.pdf
Understanding the Inner Workings of Bitcoin.pdf
PaulClaybrook
 
Blockchain Technology | Bitcoin | Ethereum Coin | Cryptocurrency
Blockchain Technology | Bitcoin | Ethereum Coin | CryptocurrencyBlockchain Technology | Bitcoin | Ethereum Coin | Cryptocurrency
Blockchain Technology | Bitcoin | Ethereum Coin | Cryptocurrency
Unbiased Technolab
 
Tutorial blockchain technical overview-ss
Tutorial blockchain technical overview-ssTutorial blockchain technical overview-ss
Tutorial blockchain technical overview-ss
Howard Anglin
 
The Basic Theories of Blockchain
The Basic Theories of BlockchainThe Basic Theories of Blockchain
The Basic Theories of Blockchain
Sota Watanabe
 
A Primer on Blockchain and its Potential, with a Focus on the GCC
A Primer on Blockchain and its Potential, with a Focus on the GCCA Primer on Blockchain and its Potential, with a Focus on the GCC
A Primer on Blockchain and its Potential, with a Focus on the GCC
Zeyad T. Al Mudhaf
 
cryptocurrency mining and digital currencies Bitcoin, Ethereum underlying te...
cryptocurrency mining and digital currencies  Bitcoin, Ethereum underlying te...cryptocurrency mining and digital currencies  Bitcoin, Ethereum underlying te...
cryptocurrency mining and digital currencies Bitcoin, Ethereum underlying te...
rsiyengar.com
 
Blockchain: The Invisible Technology – How We Build a Blockchain
Blockchain: The Invisible Technology – How We Build a BlockchainBlockchain: The Invisible Technology – How We Build a Blockchain
Blockchain: The Invisible Technology – How We Build a Blockchain
PriyAnshu Bansal
 
chapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptxchapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptx
AschalewAyele2
 
chapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptxchapter 4 Selected Topics in computer.pptx
chapter 4 Selected Topics in computer.pptx
AschalewAyele2
 
Abhishek jaiswal blockchain
Abhishek jaiswal blockchainAbhishek jaiswal blockchain
Abhishek jaiswal blockchain
Abhishek Jaiswal
 
A_Survey_on_Mining_Cryptocurrencies Paper
A_Survey_on_Mining_Cryptocurrencies PaperA_Survey_on_Mining_Cryptocurrencies Paper
A_Survey_on_Mining_Cryptocurrencies Paper
allberson
 
BLOCKCHAIN PPT.pptx
BLOCKCHAIN PPT.pptxBLOCKCHAIN PPT.pptx
BLOCKCHAIN PPT.pptx
SohanaAmreen
 
Cryptocurrency-Bitcoin
Cryptocurrency-BitcoinCryptocurrency-Bitcoin
Cryptocurrency-Bitcoin
SatwikaHotwani
 
Blockchain Facts_ What Is It, How It Works, and How It Can Be Used.pdf
Blockchain Facts_ What Is It, How It Works, and How It Can Be Used.pdfBlockchain Facts_ What Is It, How It Works, and How It Can Be Used.pdf
Blockchain Facts_ What Is It, How It Works, and How It Can Be Used.pdf
MaryRozetteNuezca
 
Blockchain 101 - public, tokenized blockchains
Blockchain 101 - public, tokenized blockchainsBlockchain 101 - public, tokenized blockchains
Blockchain 101 - public, tokenized blockchains
Brett Colbert
 
Bitcoin : A fierce decentralized crypto currency - Report
Bitcoin : A fierce decentralized crypto currency - ReportBitcoin : A fierce decentralized crypto currency - Report
Bitcoin : A fierce decentralized crypto currency - Report
Shivek Khurana
 
1910990335_ppt on blockchain and its issue.ppt
1910990335_ppt on blockchain and its issue.ppt1910990335_ppt on blockchain and its issue.ppt
1910990335_ppt on blockchain and its issue.ppt
bansalvvinayak832
 
Understanding the Inner Workings of Bitcoin.pdf
Understanding the Inner Workings of Bitcoin.pdfUnderstanding the Inner Workings of Bitcoin.pdf
Understanding the Inner Workings of Bitcoin.pdf
PaulClaybrook
 
Ad

More from Jérôme Kehrli (18)

Introduction to Operating Systems
 Introduction to Operating Systems Introduction to Operating Systems
Introduction to Operating Systems
Jérôme Kehrli
 
Introduction to Modern Software Architecture
Introduction to Modern Software ArchitectureIntroduction to Modern Software Architecture
Introduction to Modern Software Architecture
Jérôme Kehrli
 
A proposed framework for Agile Roadmap Design and Maintenance
A proposed framework for Agile Roadmap Design and MaintenanceA proposed framework for Agile Roadmap Design and Maintenance
A proposed framework for Agile Roadmap Design and Maintenance
Jérôme Kehrli
 
The search for Product-Market Fit
The search for Product-Market FitThe search for Product-Market Fit
The search for Product-Market Fit
Jérôme Kehrli
 
Big data in Private Banking
Big data in Private BankingBig data in Private Banking
Big data in Private Banking
Jérôme Kehrli
 
From Product Vision to Story Map - Lean / Agile Product shaping
From Product Vision to Story Map - Lean / Agile Product shapingFrom Product Vision to Story Map - Lean / Agile Product shaping
From Product Vision to Story Map - Lean / Agile Product shaping
Jérôme Kehrli
 
Artificial Intelligence and Digital Banking - What about fraud prevention ?
Artificial Intelligence and Digital Banking - What about fraud prevention ?Artificial Intelligence and Digital Banking - What about fraud prevention ?
Artificial Intelligence and Digital Banking - What about fraud prevention ?
Jérôme Kehrli
 
Artificial Intelligence for Banking Fraud Prevention
Artificial Intelligence for Banking Fraud PreventionArtificial Intelligence for Banking Fraud Prevention
Artificial Intelligence for Banking Fraud Prevention
Jérôme Kehrli
 
Linux and Java - Understanding and Troubleshooting
Linux and Java - Understanding and TroubleshootingLinux and Java - Understanding and Troubleshooting
Linux and Java - Understanding and Troubleshooting
Jérôme Kehrli
 
Deciphering the Bengladesh bank heist
Deciphering the Bengladesh bank heistDeciphering the Bengladesh bank heist
Deciphering the Bengladesh bank heist
Jérôme Kehrli
 
Introduction to NetGuardians' Big Data Software Stack
Introduction to NetGuardians' Big Data Software StackIntroduction to NetGuardians' Big Data Software Stack
Introduction to NetGuardians' Big Data Software Stack
Jérôme Kehrli
 
Periodic Table of Agile Principles and Practices
Periodic Table of Agile Principles and PracticesPeriodic Table of Agile Principles and Practices
Periodic Table of Agile Principles and Practices
Jérôme Kehrli
 
Agility and planning : tools and processes
Agility and planning  : tools and processesAgility and planning  : tools and processes
Agility and planning : tools and processes
Jérôme Kehrli
 
Bytecode manipulation with Javassist for fun and profit
Bytecode manipulation with Javassist for fun and profitBytecode manipulation with Javassist for fun and profit
Bytecode manipulation with Javassist for fun and profit
Jérôme Kehrli
 
DevOps explained
DevOps explainedDevOps explained
DevOps explained
Jérôme Kehrli
 
Digitalization: A Challenge and An Opportunity for Banks
Digitalization: A Challenge and An Opportunity for BanksDigitalization: A Challenge and An Opportunity for Banks
Digitalization: A Challenge and An Opportunity for Banks
Jérôme Kehrli
 
Lean startup
Lean startupLean startup
Lean startup
Jérôme Kehrli
 
Blockchain 2.0
Blockchain 2.0Blockchain 2.0
Blockchain 2.0
Jérôme Kehrli
 
Introduction to Operating Systems
 Introduction to Operating Systems Introduction to Operating Systems
Introduction to Operating Systems
Jérôme Kehrli
 
Introduction to Modern Software Architecture
Introduction to Modern Software ArchitectureIntroduction to Modern Software Architecture
Introduction to Modern Software Architecture
Jérôme Kehrli
 
A proposed framework for Agile Roadmap Design and Maintenance
A proposed framework for Agile Roadmap Design and MaintenanceA proposed framework for Agile Roadmap Design and Maintenance
A proposed framework for Agile Roadmap Design and Maintenance
Jérôme Kehrli
 
The search for Product-Market Fit
The search for Product-Market FitThe search for Product-Market Fit
The search for Product-Market Fit
Jérôme Kehrli
 
Big data in Private Banking
Big data in Private BankingBig data in Private Banking
Big data in Private Banking
Jérôme Kehrli
 
From Product Vision to Story Map - Lean / Agile Product shaping
From Product Vision to Story Map - Lean / Agile Product shapingFrom Product Vision to Story Map - Lean / Agile Product shaping
From Product Vision to Story Map - Lean / Agile Product shaping
Jérôme Kehrli
 
Artificial Intelligence and Digital Banking - What about fraud prevention ?
Artificial Intelligence and Digital Banking - What about fraud prevention ?Artificial Intelligence and Digital Banking - What about fraud prevention ?
Artificial Intelligence and Digital Banking - What about fraud prevention ?
Jérôme Kehrli
 
Artificial Intelligence for Banking Fraud Prevention
Artificial Intelligence for Banking Fraud PreventionArtificial Intelligence for Banking Fraud Prevention
Artificial Intelligence for Banking Fraud Prevention
Jérôme Kehrli
 
Linux and Java - Understanding and Troubleshooting
Linux and Java - Understanding and TroubleshootingLinux and Java - Understanding and Troubleshooting
Linux and Java - Understanding and Troubleshooting
Jérôme Kehrli
 
Deciphering the Bengladesh bank heist
Deciphering the Bengladesh bank heistDeciphering the Bengladesh bank heist
Deciphering the Bengladesh bank heist
Jérôme Kehrli
 
Introduction to NetGuardians' Big Data Software Stack
Introduction to NetGuardians' Big Data Software StackIntroduction to NetGuardians' Big Data Software Stack
Introduction to NetGuardians' Big Data Software Stack
Jérôme Kehrli
 
Periodic Table of Agile Principles and Practices
Periodic Table of Agile Principles and PracticesPeriodic Table of Agile Principles and Practices
Periodic Table of Agile Principles and Practices
Jérôme Kehrli
 
Agility and planning : tools and processes
Agility and planning  : tools and processesAgility and planning  : tools and processes
Agility and planning : tools and processes
Jérôme Kehrli
 
Bytecode manipulation with Javassist for fun and profit
Bytecode manipulation with Javassist for fun and profitBytecode manipulation with Javassist for fun and profit
Bytecode manipulation with Javassist for fun and profit
Jérôme Kehrli
 
Digitalization: A Challenge and An Opportunity for Banks
Digitalization: A Challenge and An Opportunity for BanksDigitalization: A Challenge and An Opportunity for Banks
Digitalization: A Challenge and An Opportunity for Banks
Jérôme Kehrli
 

Recently uploaded (20)

IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025
Splunk
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven InsightsAndrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell
 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025
Splunk
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven InsightsAndrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell
 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 

The Blockchain - The Technology behind Bitcoin

  • 1. 1 © Jerome Kehrli @ niceideas.ch http://www.niceideas.ch/roller2/badtrash/entry/blockchain-explained-beta The Blockchain The Technology behind Bitcoin
  • 2. 2 1. What is the blockchain ?
  • 3. 3 INITIAL DEFINITION The blockchain is the technology running the bitcoin. Some Definitions WIKIPEDIA DEFINITION A blockchain is a distributed database that maintains a continuously- growing list of records called blocks secured from tampering and revision. MY DEFINITION The blockchain is a secured protocol enabling peer-to-peer exchanges on a distributed network in a secured, public and non-repudiable way.
  • 4. 4 A tiny little bit of history Architecture and principle first designed for Bitcoin A solution to make the database both secured and widely distributed Actually the main innovation of the Bitcoin Conceived in 2008 and implemented in 2009 Satoshi Nakamoto As of 2014 : “Blockchain 2.0” Evolution over the initial blockchain From simple transactions to actual Software Programs From simply a distributed transaction ledger to a globally decentralized, un- ownable, digital computer
  • 5. 5 Introduction Example Bob is an online web surfer and is looking for a suite. He wants to buy it online. Sally runs an online shop and sells clothes.
  • 6. 6 2. Problem(s) solved by the blockchain
  • 7. 7 Usual Situation (1) Recall the introduction problem This is what happens in practice
  • 15. 15 The financial system is opaque and lacks transparency and fairness. All these intermediates are no volunteers. They work for money and get paid for their services. The transaction costs money to both the buyer and the seller. There are interest rates, fees, surcharges, etc. EFTs in Europe can cost 25 euros. Credit transactions can cost several percent of the transaction. All these exchanges are error prone. Credit card informations are often stolen. Banks make mistakes. An account holder is eventually not even the actual owner of his account. The bank really owns the account. Funds can be garnished, even frozen completely. Banks and other payment processors like PayPal, Visa, and Mastercard may refuse to process payments for certain legal entities. Financial exchanges are slow. Checking and low cost wire services take days to complete. The problems with this model
  • 16. 16 A clearing house is a financial institution that provides clearing and settlement services for financial and commodities derivatives and securities transactions stands between two clearing participants / firms (banks) reduces the risk of one (or more) clearing firm failing to honor its trade settlement obligations. It nets offsetting transactions between multiple counterparties. Clearing House
  • 17. 17 Clearing House (1) Buyers and sellers use intermediaries because they may not trust the other party, but they trust that the intermediary will assure the transaction is completed faithfully. This is the fundamental role of a clearing house
  • 19. 19 When one bank sends money to another, no physical currency changes hands. Banks and settlement systems use central electronic ledgers to track assets. But such central ledgers - or clearing houses - can be slow and inefficient, often relying on faxes or manual input. That not only wastes time but racks up fees. The system is also open to hacking and fraud. These central institutions gets fees to cover such risks of course as well as many other services. The price is high It prevents, for instance, micro-payments services who are not able to support the charge asked by these central structures. The problems with Clearing Houses
  • 20. 20 Distributed Ledgers OTHER DEFINITION A blockchain is a type of distributed ledger, comprised of unchangeable, digitally recorded data in packages called blocks. A distributed ledger (also called shared ledger) is a consensus of replicated, shared, and synchronized digital data geographically spread across multiple sites, countries, and/or institutions. Every node in the decentralized system has a copy of the ledger. No centralized "official" copy exists and no user is "trusted" more than any other.
  • 21. 21 Distributed Ledger instead of Central Ledger
  • 22. 22 3. Operation of the blockchain
  • 23. 23 Blockchain overview (1) The blockchain itself is a list of blocks. These digitally recorded "blocks" of data are stored in a linear chain. Each block in the chain contains data (e.g. bitcoin transaction) and is cryptographically hashed. Each block includes the hash of the prior block in the blockchain, linking the two, ensuring all data in the overall "blockchain" has not been tampered with and remains unchanged. This has the effect of creating a chain of blocks from the genesis block to the current block. Each block is guaranteed to come after the previous block chronologically because the previous block's hash would otherwise not be known.
  • 24. 24 Blockchain overview (2) The blockchain network is a peer-to-peer network of independent nodes communicating together by message broadcasting. A node is not necessarily connected to every other node, but at least some of them.
  • 26. 26 Blockchain principle (1) The operation principle of is pretty straightforward to understand. We’ll illustrate it her on the Bitcoin blockchain. Principle is as follows : 1. A user wants to pay another user some bitcoins, he broadcasts a transaction to the network. 2. Miners add the transaction as they receive it to their current block, the one they are currently working on 3. Randomly, one of the miner may win the lottery and "mine" the block (we'll get back to that) 4. At that moment, this new "definitive" block is broadcasted to the network and added to everyone's copy of the blockchain
  • 32. 32 In order for a block to be accepted by network participants, miners must complete a proof of work which covers all of the data in the block. The proof of work is a piece of data which is difficult (costly, time-consuming) to produce but easy for others to verify and which satisfies certain requirements. Producing a proof of work can be a random process with low probability so that a lot of trial and error is required on average before a valid proof of work is generated. Bitcoin uses the Hashcash proof of work system. For a block to be valid it must hash to a value less than the current target; this means that each block indicates that work has been done generating it. Each block contains the hash of the preceding block, thus each block has a chain of blocks that together contain a large amount of work. Changing a block (which can only be done by making a new block containing the same predecessor) requires regenerating all successors and redoing the work they contain. This protects the block chain from tampering. The amount of successors is relevant when qualifying the validity of a block : at least 6 successors are required to consider a block valid Proof of Work
  • 39. 39 Blockchain structure The blockchain data structure is an ordered, back-linked list of blocks of transactions. Every block contains a hash of the previous block. This has the effect of creating a chain of blocks from the genesis block to the current block. Each block is guaranteed to come after the previous block chronologically because the previous block's hash would otherwise not be known. Each block is also computationally impractical to modify once it has been in the chain for a while because every block after it would also have to be regenerated. New transactions are constantly being processes by miners into new blocks which are added to the end of the chain and can never be changed or removed once accepted by the network.
  • 40. 40 Block Structure Each block contains, among other things : a record of some or all recent transactions, and a reference to the block that came immediately before it. It also contains an answer to a difficult-to- solve mathematical puzzle, the hash or Proof of Work.
  • 41. 41 Mining In the Bitcoin world, transactions are broadcast to the network by the sender, and all peers trying to solve blocks collect the transaction records and add them to the block they are working to solve. This is called Mining. Mining is the process of adding transaction records to Bitcoin's public ledger of past transactions. This ledger of past transactions is called the block chain as it is a chain of blocks. Mining is intentionally designed to be resource-intensive and difficult so that the number of blocks found each day by miners remains steady. Individual blocks must contain a proof of work to be considered valid. The primary purpose of mining is to allow Bitcoin nodes to reach a secure, tamper-resistant consensus.
  • 50. 50 The difficulty is the measure of how difficult it is to find a new block compared to the easiest it can ever be. It is recalculated every 2016 blocks to a value such that the previous 2016 blocks would have been generated in exactly two weeks had everyone been mining at this difficulty. This will yield, on average, one block every ten minutes. Difficulty Adjustment
  • 59. 59 Mining is also the mechanism used to introduce Bitcoins into the system: Miners are paid any transaction fees as well as a "subsidy" of newly created coins. These both serves the purpose of disseminating new coins in a decentralized manner as well as motivating people to provide security for the system. It gives miners incentive to put their computation power at the disposal of the blockchain network. Because there is a reward of brand new bitcoins for solving each block, every block also contains a record of which Bitcoin addresses or scripts are entitled to receive the reward. This record is known as a generation transaction (or a coinbase transaction) and is always the first transaction appearing in every block. Miner retribution
  • 64. 64 In the specific case of the bitcoin, Satoshi had very soon the idea of limiting the bitcoin supply. In a centralized economy, currency is issued by a central bank at a rate that is supposed to match the growth of the amount of goods that are exchanged so that these goods can be traded with stable prices. The monetary base is controlled by this central bank. In the United States, the Fed increases the monetary base by issuing currency, increasing the amount banks have on reserve, and more recently, printing money electronically in a process called Quantitative Easing. In a fully decentralized monetary system, there is no central authority that regulates the monetary base. Instead, currency is created by the nodes of a peer-to-peer network. The Bitcoin generation algorithm defines, in advance, how currency will be created and at what rate. Any currency that is generated by a malicious user that does not follow the rules will be rejected by the network and thus is worthless. Bitcoins are created each time a user discovers a new block. The rate of block creation is adjusted every 2016 blocks to aim for a constant two week adjustment period (equivalent to 6 per hour.) The number of bitcoins generated per block is set to decrease geometrically, with a 50% reduction every 210,000 blocks, or approximately four years. The result is that the number of bitcoins in existence is not expected to exceed 21 million. Speculated justifications for the unintuitive value "21 million" are that it matches a 4-year reward halving schedule; or the ultimate total number of bitcoins that will be mined is close to the maximum capacity of a 64-bit floating point number. Bitcoin limited supply
  • 66. 66 A wallet is basically the Bitcoin equivalent of a bank account. It allows you to receive bitcoins, store them, and then send them to others. The name "Bitcoin wallet" is a bit of a misnomer. Bitcoin wallets don't hold actual Bitcoins, those are essentially stored on the blockchain. Instead, Bitcoin wallets hold the private keys that give users the right to use those coins. Each Bitcoin wallet comes with at least two keys : one public, and one private. A Bitcoin address, or simply address, is an identifier of 26-35 alphanumeric characters, beginning with the number 1 or 3, that represents a possible destination for a bitcoin payment. Addresses can be generated at no cost by any user of Bitcoin. Bitcoin Wallet Cryptography
  • 71. 71 A Merkle Tree is a tree constructed by hashing paired data (the leaves), then pairing and hashing the results until a single hash remains, the merkle root. The construction of the Merke tree is such that if any single leaf transaction is changed, all hashes along the branch would be changed and ultimately the merkle root as well. This is a key property ensuring security of the blockchain. Merkle trees in bitcoin use a double SHA-256, the SHA-256 hash of the SHA- 256 hash of something. Merkle Trees
  • 72. 72 Merkle Tree This procedure repeats recursively until we reach a row consisting of just a single double-hash. This is the Merkle root of the tree. First from the top row of the tree with the ordered double-SHA- 256 hashes of the byte streams of the transactions in the block. Then the row below it consists of half that number of hashes. Each entry is the double-SHA- 256 of the 64-byte concatenation of the corresponding two hashes below it in the tree.
  • 73. 73 Replication (1) Both new transactions and newly mined blocked are broadcasted to the peer-to- peer network using the Flood Protocol.
  • 79. 79 It's possible for the blockchain to have temporary splits for instance, if two miners arrive at two different valid solutions for the same block at the same time, unbeknownst to one another. The peer-to-peer network is designed to resolve these splits within a short period of time, so that eventually only one branch of the chain survives. The client accepts the longest chain of blocks as valid. The "length" of the entire block chain refers to the chain with the most combined difficulty, not the one with the most blocks. This prevents someone from forking the chain and creating a large number of low- difficulty blocks, and having it accepted by the network as "longest". Orphaned, Extinct and Staled Blocks
  • 86. 86 The Blockchain 2.0 is an evolution of the blockchain protocol enabling not only to exchange transaction but rather code and programs in the form of Smart Contracts Now developers are allowed to build programs and API's on the Blockchain Protocol. This relatively new concept involves the development of programs that can be entrusted with money. Smart contracts are programs that encode certain conditions and outcomes. By developing ready to use programs that function on predetermined conditions between the supplier and the client, smart programs ensure a secure escrow service in real time at near zero marginal cost Apart from Financial transactions, smart contracts makes the blockchain technology entering a whole lot of different industry. For instance in the Legal System, companies like Empowered Law use the public distributed ledger of transactions that makes up the Block Chain to provide Multi- Signature account services for asset protection, estate planning, dispute resolution, leasing and corporate governance.
  • 91. 91 The Blockchain 2.0 and its applications - “From Bitcoin Transaction to Smart Contracts” - will be the topic of a next article on my blog and a future presentation