SlideShare a Scribd company logo
1 of 26
Download to read offline
o p s i @ o e c d . o r go e c d - o p s i . o r g @ O P S I g o v
Blockchain and its Use in the Public
Sector
June 20, 2018
Blockchain in the Public Sector
OPSI is a forum for shared lessons and insights into the practice of innovation in government. Since 2014, it has
worked to meet the needs governments around the world, providing a
collective resource to identify, collect and analyse new ways of designing and delivering public policies and
services.
UNCOVERING WHAT IS NEXT
Identifying new practices at the leading edge of government,
connecting those engaging in new ways of thinking and acting,
and considering what these new approaches mean for the
public sector.
1
23
TURNING THE NEW INTO NORMAL
Studying innovation in different public
sector contexts and investigating potential
frameworks and methods to unleash
creativity and innovation and ways to
connect them with the day-to-day work of
public servants.
PROVIDING TRUSTED ADVICE TO FOSTER
INNOVATION
Sharing guidance and resources about the ways in
which governments can support innovation to obtain
better outcomes for their people.
Blockchains Unchained Guide
Many public servants have come to OPSI about how blockchain fits
within government.
Because of blockchain’s complexity and its association with Bitcoin,
it can be confusing to look past the hype and understand the
potential uses and implications it can have in the public sector.
To help address this, OPSI created the Blockchains Unchained
(http://oe.cd/blockchain) guide to:
• Explain simply what blockchain is and isn’t
• Make the case for public servants to build knowledge and
capacity around blockchain
• Make sense of blockchain’s potential impacts in government
• Explore existing public sector use of blockchain
Blockchain in the Public Sector
Blockchain Basics
Blockchain in the Public Sector
It is common to share documents in
e-mails among colleagues and peers,
resulting in repeated duplication of
the document. The duplication can
be theoretically never-ending.
It is possible that one could be
amended and tampered with
independently of all others. As
amended copies duplicate, the
history of changes becomes
ambiguous: which document
becomes the correct one? Which
one can be relied upon to ‘state the
truth’?
COMMUNITIES OF
PRACTICE
BANK
Types of Problems Blockchain Can Solve
Two analogies…
E-MAIL
Digital payments been become a
part of daily life. We expect a bank
to act as a trusted third-party to
verify that user identities are
known, that the sender has the
necessary funds, and the funds are
transferred to the correct person.
The central ledger held by the bank
becomes a single point of failure
(e.g., target for hacking). The
potential exists for accessing and
altering the data without a trace.
Blockchains Unchained Guide
The basic and inter-related goals of blockchain are to:
• Reduce or eliminate the need for a central authority (e.g.,
banks, government)
• Eliminate central points of failure
• Enable trust among people who don’t know each other to
directly conduct transactions
To achieve this, instead of an authority running a central database,
every user can have a copy of the full database and can see every
transaction that has ever taken place. This is a distributed ledger.
Key term: Distributed Ledger
A List of transactions that are spread across many users (not central)
Key term: Node
Another word for a user on a blockchain network running blockchain
software and holding a copy of the ledger
Centralized vs. Distributed
Source: Baran, Paul, 1964, “On Distributed Communications: Introduction to Distributed Communications Networks”, United
States Air Force Project Rand
Validating Transactions
Ok, so everyone can have a copy of the ledger and see all of
the transactions. But how can they be sure these transactions
are valid?
• To submit a transaction, a user must digitally sign it using a
“cryptographic key”.
• When a user submits a transaction, it propagates throughout the
network in seconds or minutes. Every node checks to ensure the
transaction is feasible and was properly signed. If yes, they
continue to propagate, if not, they discard the transaction.
• If more than 50% agree that is it valid, it is considered a valid
transaction.
• But… these are not part of the blockchain yet.
Key term: Cryptographic Key
Old decryption technology. All users have a “public key” and a linked
“private key”. The public key is widely known. The private key must
never be shared. A user signs their transactions with the private key,
and then all users can verify that it was truly the right person by
checking it against their public key.
Mining Transactions
After transactions are validated, they wait in a queue until they are
“mined” by a “mining node”.
• A mining node will validate a set of transactions from the
queue and group them into a “block”.
• The mining node then publishes the block to the chain and
begins to broadcast the new block across the network.
• The mining node discards any invalid transactions
Although this is complex, it is all done automatically with blockchain
software.
Key term: Mining
The act of again validating a group of transactions from the queue and
publishing them as new block to a chain. The agreed-upon “consensus
model” (a very complicated concept to be explained shortly) for the
blockchain determines who can do this. Sometimes it’s competitive.
Sometimes it’s based on user permissions.
“Immutability”
In addition to they key principles of:
1. Distributed: everyone holding a copy of the ledger and these
copies are automatically synchronised
2. Shared: all transactions being transparent to everyone
There is a key third principle: Immutability
Key term: Immutability
Once data has been written to a Blockchain, no one, not even a system
administrator, can change it. This helps to ensure trustworthiness.
Immutability is a result of how blockchain technology is designed.
How Blockchains are Designed
A “blockchain” is literally a chain of blocks
• As discussed, each block contains a group of validated
transactions.
• These blocks are added one-by-one to the chain in a linear,
chronological manner.
• Critically, every block is inextricably linked to the previous
blockchain using a process called “hashing”.
• Each block’s contents are “hashed”, and each block gets a
unique “hash code”, which links blocks together
Key term: Hashing
An encryption function that converts any input (text, image, etc.) into a
fixed-length code. The same input will always result in the same code.
However, even the most minor change will entirely change the code.
Linking of Blocks
If anyone tried to alter even the smallest piece of a transaction, it
would completely change the hash code for the transaction and the
block. This would cause cascading effects for all of the connected
blocks.
This would immediately be noticed by the nodes and discarded.
Difference Between Blockchain and Bitcoin
One of the biggest challenges for blockchain is that it is conflated
with Bitcoin.
• Blockchain was born with Bitcoin and remains the largest
blockchain platform
• However, hundreds or thousands of other platforms now
exist
• The underlying technology has uses and implications that go
far beyond Bitcoin or cryptocurrencies in general
Some platforms have developed innovative new features. Most
notably, “smart contracts”
Key term: Smart Contracts
Self-executing contracts where the terms are written directly in
software code on the blockchain.
Each smart contract is an automated “if/then” scenario that executed
when a specific trigger occurs.
Public versus Private Blockchains
Blockchain ledgers can be public (“permissionless”), or private
(“permissioned”). The distinction between the two is much like the
internet versus an intranet.
• Permissionless ledgers (e.g., Bitcoin) allow anyone to make
transactions and to hold identical copies of the full ledger.
• Permissioned ledgers limit contributions to a limited set of
users who have been given permission. Access to view
records can be restricted or public, depending on the settings
of the ledger. In fact, many different aspects of the
blockchain can be customized to meet different needs. These
are likely to be the most useful for public sector use.
The types of “consensus models”, which are the rules that
determine who has the right to publish the next block, vary
depending on type of blockchain at hand.
Consensus Models
There are a growing number of consensus models that determine
which node has the right to publish the next block. The two below
are examples.
Proof of Work – Always for permissionless ledgers (e.g., Bitcoin)
• Since no trust exists, in order to keep one or a few users from
taking control, a complicated process exists to help even the
playing field.
• Each user competes to solve a puzzle that is intentionally
resource intensive (e.g., processing power, and by extension,
electricity) to solve.
• The winner publishes the next block and earns financial reward.
Proof of Authority – Usually for permissioned ledgers
• User identities must be known and verified.
• Ability to publish new blocks is dictated by user permissions (not
unlike a traditional database).
• No issues related to processing power or electricity.
Blockchain in the Public Sector
Blockchain in the
Public Sector
Blockchain in the Public Sector
One year ago: 117 Initiatives in 26 Countries
Source: Deloitte analysis in conjunction with the Fletcher School at Tufts University
(March 2017)
Blockchain in the Public Sector
Now: 202 Blockchain Initiatives in 45 Countries
Source: OECD analysis of data collected by The Illinois Blockchain Initiative (March 2018)
Blockchain in the Public Sector
Potential Use Cases
Use Case Description
Identity Establishing and maintaining identities for citizens and residents (birth
certificates, marriage licenses, visas, death records).
Personal records Interoperable health records, insurance records, etc.
Land title registry Details and historic records related to real estate and property transactions.
Supply chain management, inventorying Tracking an asset from its creation, transportation, purchase, and
inventorying.
Benefits, entitlements, and aid Social security, medical benefits payments, domestic and international aid.
Anticipatory/automated payments could be automated through Smart
Contracts.
Contract and vendor management Tracking and paying vendors, managing purchase commitments and
transactions, and monitoring schedule performance. Can allow for perfect
transparency of government expenditures.
Voting Enabling new methods of digital voting, ensuring eligibility, accurate
counting, and auditing (e.g., to avoid ballot-rigging).
Streamlining interagency processes Blockchains and smart contracts can automate transaction handling and
improve information sharing – allows each agency to better focus on their
own mission and tech without as much need to consider others tech.
Blockchain in the Public Sector
Top 10 types of projects
Rank Types of projects (count)*
1 Strategy/Research (42)
2 Identity (Credentials/Licenses/Attestations) (25)
3 Personal Records (Health, Financial, etc.) (25)
4 Economic Development (24)
5 Financial Services/Market Infrastructure (20)
6 Land Title Registry (19)
7 Digital Currency (Central Bank Issued) (18)
8 Benefits/Entitlements (13)
9 Compliance/Reporting (12)
10 Research/Standards (12)
Source: OECD analysis of data collected by The Illinois Blockchain Initiative (March 2018)
*Initiatives may be tagged with more than one type of project.
Blockchain in the Public Sector
Cross-sector communities (public,
private, civil society) learning about
blockchain together and exploring
the use and implications of
Blockchains in government.
For example, the U.S. Emerging
Citizen Technology Office (ECTO)
has been created to provide a
common guidance and vision for
emerging tech in the U.S.
government and to share ideas and
connect innovators. Bring in insights
from other sectors.
COMMUNITIES OF
PRACTICE
PUBLIC-PRIVATE
PARTNERSHIPS (PPPs)
Communities of Practice &Public-Private Partnerships
Two of the fastest growing best practices
COMMUNITIES OF
PRACTICE
Efforts to bring public agencies and
private firms together in developing
and implementing Blockchain
systems. Often, private firms assist
government agencies with the
technological aspect of the work.
For example, the ID2020 initiative
(UN agencies, companies such as
Microsoft Accenture) seeks to
provide formal identities to the 1.1
billion individuals who lack one,
including millions of refugees.
Blockchain in the Public Sector
Example 1: Vehicle Wallet (Denmark)
Problem:
During a car’s lifecycle it undergoes various phases and activities (tests, repair, loan, insurance and changes in
ownership). When a car is sold from one person to another, there can be a lack of information from either the buyer or
seller. On the seller’s side, the car could have undergone an undesirable re-build or even be stolen. On the buyer’s side,
the buyer could never re-register the car, which could result in continuous taxes for the original seller.
Solution:
Vehicle Wallet is a partnership between payment service provider and the Danish Tax Administration. It is a supply
chain management tool where data concerning the car is saved in one distributed ledger and creates one agreed and
shared record of the vehicle history as it is transferred across the supply chain. This reduces risks for buyers and sellers,
and helps ensure Denmark receives all proper taxes.
Blockchain in the Public Sector
Example 2: BenBen (Ghana)
Problem:
For land property, Ghana lacked a systemic way to determining the legal existence of parcels and to track land
ownership titles. This prevented authorities and property owners from having clear certainty and visibility over what
belongs to whom, resulting in regular disputes. In addition, because previous processes were on paper, it could take
over a year to register the sale/purchase of a property, which was a fraud risk for both sellers and buyers.
Solution:
BenBen provides an Ethereum-run digital register system of all land registries across Ghana. It is able to certify land
information through the cross-cutting of satellite imagery and on-the-ground verifications, working hand-in-hand with
local stakeholders in the land market. It aggregates all the information such that financial institutions and the Lands
Commission have real-time access to the data. Property transaction times have been reduced by 75% and court
disputes have been reduced.
Blockchain in the Public Sector
Example 2: Project Ubin (Singapore)
Problem:
The Monetary Authority of Singapore (MAS) conducted a study that found that Inter-bank payments within Singapore
and cross-border financial transactions were inefficient and slow.
Solution:
MAS partnered with R3– a consortium of banks and regulators to create a prototype for a Blockchain-based digital
Singaporean dollar to facilitate digital transactions. This would allow for incorruptibility of records through a
decentralised trust system, but also 24 hour processing with no centralised – i.e. human-based – checks required. The
partnership has successfully developed software prototypes of three different models for decentralised inter-bank
payment that are now being explored. MAS has published the source code as open source software on GitHub.
Blockchain in the Public Sector
Challenges & Limitations
Blockchain is not a cure-all
0 1
IMMUTABILITY
A Blockchain is an add-only list. Once data is
added, it can’t be removed. Perhaps not a good fit
when updating/deleting data is a regular
occurrence.
02
DATA STORAGE
Databases are often used to store large amounts of
data (images, docs, apps, etc.). However,
Blockchain is designed for small pockets of data. If
data storage is needed, Blockchain may not be a
good fit, or a hybrid solution may ne needed.
0 3
TALKING ABOUT BLOCKCHAIN
The act of explaining blockchain to public officials
and civil servants is difficult. De-linking blockchain
from Bitcoin and discussing how it can improve
efficiency and strengthen mission effectiveness can
help.
0 4
COSTS
Higher short-term costs associated with a still-emerging
technology prevent its widespread use. Blockchain-as-a-
service products are starting to be offered that can allow
for experimentation.
05
BLOCKERS
People often flag issues such as energy consumption and
scalability as Blockchain blockers. However, many of
these are irrelevant to government Blockchain
implementations (i.e., only apply to Proof of Work
consensus on permissionless/pubic blockchains).
0 6
CODING & GOVERNANCE MODELS
Blockchains are known for eliminating the need for central
authority, but this is not entirely true. They must be coded and
governed by those entrusted with key roles. Governments
must build a technical knowledge base to ensure these
decisions are made well (even if the actual coding is
outsourced).
o p s i @ o e c d . o r go e c d - o p s i . o r g @ O P S I g o v
Join our newsletter at http://tiny.cc/opsinewsletter

More Related Content

What's hot

Blockchain Introduction Presentation
Blockchain Introduction PresentationBlockchain Introduction Presentation
Blockchain Introduction PresentationAmr Alaa Yassen
 
Basics of Blockchain Technology
Basics of Blockchain TechnologyBasics of Blockchain Technology
Basics of Blockchain TechnologyNasir Bhutta
 
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 and Its Application in Libraries
Blockchain Technology and Its Application in LibrariesBlockchain Technology and Its Application in Libraries
Blockchain Technology and Its Application in LibrariesNabi Hasan
 
Blockchain
BlockchainBlockchain
BlockchainSai Nath
 
Blockchain Study(1) - What is Blockchain?
Blockchain Study(1) - What is Blockchain?Blockchain Study(1) - What is Blockchain?
Blockchain Study(1) - What is Blockchain?Fermat Jade
 
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 In Government - How The Technology Can Transform Government Services
Blockchain In Government - How The Technology Can Transform Government ServicesBlockchain In Government - How The Technology Can Transform Government Services
Blockchain In Government - How The Technology Can Transform Government ServicesSunil Jagani
 
Blockchain: The New Technology and Its Applications for Libraries
Blockchain: The New Technology and Its Applications for LibrariesBlockchain: The New Technology and Its Applications for Libraries
Blockchain: The New Technology and Its Applications for LibrariesBohyun Kim
 
Blockchain Presentation
Blockchain PresentationBlockchain Presentation
Blockchain PresentationZied GUESMI
 
Blockchain Fundamentals - Top Rated for Beginners
Blockchain Fundamentals - Top Rated for Beginners Blockchain Fundamentals - Top Rated for Beginners
Blockchain Fundamentals - Top Rated for Beginners 101 Blockchains
 
Ppt on blockchain technology
Ppt on blockchain technologyPpt on blockchain technology
Ppt on blockchain technologyRATAN AGARWALA
 
Consensus Algorithms: An Introduction & Analysis
Consensus Algorithms: An Introduction & AnalysisConsensus Algorithms: An Introduction & Analysis
Consensus Algorithms: An Introduction & AnalysisZak Cole
 
Introduction to Blockchain
Introduction to BlockchainIntroduction to Blockchain
Introduction to BlockchainJordan Harris
 
Blockchain, working [blockchain vs bitcoin] pros and cons
Blockchain, working [blockchain vs bitcoin] pros and consBlockchain, working [blockchain vs bitcoin] pros and cons
Blockchain, working [blockchain vs bitcoin] pros and consJerin Sebastian
 

What's hot (20)

Blockchain Introduction Presentation
Blockchain Introduction PresentationBlockchain Introduction Presentation
Blockchain Introduction Presentation
 
Basics of Blockchain Technology
Basics of Blockchain TechnologyBasics of Blockchain Technology
Basics of Blockchain Technology
 
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...
 
The blockchain technology
The blockchain technologyThe blockchain technology
The blockchain technology
 
Blockchain Technology and Its Application in Libraries
Blockchain Technology and Its Application in LibrariesBlockchain Technology and Its Application in Libraries
Blockchain Technology and Its Application in Libraries
 
Understanding Blockchain
Understanding BlockchainUnderstanding Blockchain
Understanding Blockchain
 
Introduction to Blockchain
Introduction to BlockchainIntroduction to Blockchain
Introduction to Blockchain
 
Blockchain
BlockchainBlockchain
Blockchain
 
Blockchain Study(1) - What is Blockchain?
Blockchain Study(1) - What is Blockchain?Blockchain Study(1) - What is Blockchain?
Blockchain Study(1) - What is Blockchain?
 
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...
 
Blockchain In Government - How The Technology Can Transform Government Services
Blockchain In Government - How The Technology Can Transform Government ServicesBlockchain In Government - How The Technology Can Transform Government Services
Blockchain In Government - How The Technology Can Transform Government Services
 
Blockchain: The New Technology and Its Applications for Libraries
Blockchain: The New Technology and Its Applications for LibrariesBlockchain: The New Technology and Its Applications for Libraries
Blockchain: The New Technology and Its Applications for Libraries
 
Blockchain Presentation
Blockchain PresentationBlockchain Presentation
Blockchain Presentation
 
Blockchain Fundamentals - Top Rated for Beginners
Blockchain Fundamentals - Top Rated for Beginners Blockchain Fundamentals - Top Rated for Beginners
Blockchain Fundamentals - Top Rated for Beginners
 
Ppt on blockchain technology
Ppt on blockchain technologyPpt on blockchain technology
Ppt on blockchain technology
 
Consensus Algorithms: An Introduction & Analysis
Consensus Algorithms: An Introduction & AnalysisConsensus Algorithms: An Introduction & Analysis
Consensus Algorithms: An Introduction & Analysis
 
Introduction to Blockchain
Introduction to BlockchainIntroduction to Blockchain
Introduction to Blockchain
 
Blockchain and Banking
Blockchain and BankingBlockchain and Banking
Blockchain and Banking
 
Blockchain, working [blockchain vs bitcoin] pros and cons
Blockchain, working [blockchain vs bitcoin] pros and consBlockchain, working [blockchain vs bitcoin] pros and cons
Blockchain, working [blockchain vs bitcoin] pros and cons
 
Blockchain
BlockchainBlockchain
Blockchain
 

Similar to Blockchain and its Use in the Public Sector - OECD

Blockchain technology.pptx
 Blockchain technology.pptx Blockchain technology.pptx
Blockchain technology.pptxARNAV PATEL
 
BASIC INTRODUCTION TO BLOCKCHAIN - JOEL SUMANTH RAJ.pdf
BASIC INTRODUCTION TO BLOCKCHAIN  - JOEL SUMANTH RAJ.pdfBASIC INTRODUCTION TO BLOCKCHAIN  - JOEL SUMANTH RAJ.pdf
BASIC INTRODUCTION TO BLOCKCHAIN - JOEL SUMANTH RAJ.pdfJOELCONTACTS
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain TechnologyNimmy Solomon
 
Blockchain : A Catalyst for New Approaches in Insurance
Blockchain : A Catalyst for New Approaches in Insurance Blockchain : A Catalyst for New Approaches in Insurance
Blockchain : A Catalyst for New Approaches in Insurance VIJAY MUTHU
 
BLOCKCHAIN KPR.pptx
BLOCKCHAIN KPR.pptxBLOCKCHAIN KPR.pptx
BLOCKCHAIN KPR.pptxRajivmenan
 
Blockchain basics
Blockchain basicsBlockchain basics
Blockchain basicsRomit Bose
 
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 GCCZeyad T. Al Mudhaf
 
12 Myths about Blockchain Technology
12 Myths about Blockchain Technology12 Myths about Blockchain Technology
12 Myths about Blockchain TechnologyAhmed Banafa
 
Top Blockchain Trends You Must Check This Year
Top Blockchain Trends You Must Check This YearTop Blockchain Trends You Must Check This Year
Top Blockchain Trends You Must Check This YearInnvonixTechSolution
 
Blockchain- The Quiet Disruptor - A Guide and a primer to launch Blockchain &...
Blockchain- The Quiet Disruptor - A Guide and a primer to launch Blockchain &...Blockchain- The Quiet Disruptor - A Guide and a primer to launch Blockchain &...
Blockchain- The Quiet Disruptor - A Guide and a primer to launch Blockchain &...JP Batra
 
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...AlAtfat
 
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...AlAtfat
 
Blockchain powering the internet of value
Blockchain powering the internet of value  Blockchain powering the internet of value
Blockchain powering the internet of value Diego Alberto Tamayo
 
Blockchain for ePedigree - Whitepaper
Blockchain for ePedigree - Whitepaper Blockchain for ePedigree - Whitepaper
Blockchain for ePedigree - Whitepaper Mike Nejad
 
Blockchain-comparisons
Blockchain-comparisonsBlockchain-comparisons
Blockchain-comparisonsSteve Hodgkiss
 
Blockchain Technology Explained
Blockchain Technology ExplainedBlockchain Technology Explained
Blockchain Technology ExplainedMdSaifulIslam289
 
Blockchain Technology ppt project.pptx
Blockchain Technology ppt project.pptxBlockchain Technology ppt project.pptx
Blockchain Technology ppt project.pptxSahilBansal648873
 
Introduction to blockchain & cryptocurrencies
Introduction to blockchain & cryptocurrenciesIntroduction to blockchain & cryptocurrencies
Introduction to blockchain & cryptocurrenciesAurobindo Nayak
 

Similar to Blockchain and its Use in the Public Sector - OECD (20)

Blockchain technology.pptx
 Blockchain technology.pptx Blockchain technology.pptx
Blockchain technology.pptx
 
BASIC INTRODUCTION TO BLOCKCHAIN - JOEL SUMANTH RAJ.pdf
BASIC INTRODUCTION TO BLOCKCHAIN  - JOEL SUMANTH RAJ.pdfBASIC INTRODUCTION TO BLOCKCHAIN  - JOEL SUMANTH RAJ.pdf
BASIC INTRODUCTION TO BLOCKCHAIN - JOEL SUMANTH RAJ.pdf
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain Technology
 
Blockchain : A Catalyst for New Approaches in Insurance
Blockchain : A Catalyst for New Approaches in Insurance Blockchain : A Catalyst for New Approaches in Insurance
Blockchain : A Catalyst for New Approaches in Insurance
 
BLOCKCHAIN KPR.pptx
BLOCKCHAIN KPR.pptxBLOCKCHAIN KPR.pptx
BLOCKCHAIN KPR.pptx
 
Technical seminar blockchain.pptx
Technical seminar blockchain.pptxTechnical seminar blockchain.pptx
Technical seminar blockchain.pptx
 
Blockchain basics
Blockchain basicsBlockchain basics
Blockchain basics
 
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
 
12 Myths about Blockchain Technology
12 Myths about Blockchain Technology12 Myths about Blockchain Technology
12 Myths about Blockchain Technology
 
Top Blockchain Trends You Must Check This Year
Top Blockchain Trends You Must Check This YearTop Blockchain Trends You Must Check This Year
Top Blockchain Trends You Must Check This Year
 
Blockchain- The Quiet Disruptor - A Guide and a primer to launch Blockchain &...
Blockchain- The Quiet Disruptor - A Guide and a primer to launch Blockchain &...Blockchain- The Quiet Disruptor - A Guide and a primer to launch Blockchain &...
Blockchain- The Quiet Disruptor - A Guide and a primer to launch Blockchain &...
 
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...
 
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...
Blockchain-Based Internet of Things: Review, Current Trends, Applications, an...
 
Blockchain powering the internet of value
Blockchain powering the internet of value  Blockchain powering the internet of value
Blockchain powering the internet of value
 
Blockchain for ePedigree - Whitepaper
Blockchain for ePedigree - Whitepaper Blockchain for ePedigree - Whitepaper
Blockchain for ePedigree - Whitepaper
 
Blockchain-comparisons
Blockchain-comparisonsBlockchain-comparisons
Blockchain-comparisons
 
Blockchain Technology Explained
Blockchain Technology ExplainedBlockchain Technology Explained
Blockchain Technology Explained
 
Blockchain Technology ppt project.pptx
Blockchain Technology ppt project.pptxBlockchain Technology ppt project.pptx
Blockchain Technology ppt project.pptx
 
Blochchain Technology
Blochchain TechnologyBlochchain Technology
Blochchain Technology
 
Introduction to blockchain & cryptocurrencies
Introduction to blockchain & cryptocurrenciesIntroduction to blockchain & cryptocurrencies
Introduction to blockchain & cryptocurrencies
 

More from OECD Governance

Public Integrity Indicators Slides
Public Integrity Indicators SlidesPublic Integrity Indicators Slides
Public Integrity Indicators SlidesOECD Governance
 
Summary of the OECD expert meeting: Construction Risk Management in Infrastru...
Summary of the OECD expert meeting: Construction Risk Management in Infrastru...Summary of the OECD expert meeting: Construction Risk Management in Infrastru...
Summary of the OECD expert meeting: Construction Risk Management in Infrastru...OECD Governance
 
Using AI led assurance to deliver projects on time and on budget - D. Amratia...
Using AI led assurance to deliver projects on time and on budget - D. Amratia...Using AI led assurance to deliver projects on time and on budget - D. Amratia...
Using AI led assurance to deliver projects on time and on budget - D. Amratia...OECD Governance
 
ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm (SE)
 ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm (SE) ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm (SE)
ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm (SE)OECD Governance
 
Building Client Capability to Deliver Megaprojects - J. Denicol, professor at...
Building Client Capability to Deliver Megaprojects - J. Denicol, professor at...Building Client Capability to Deliver Megaprojects - J. Denicol, professor at...
Building Client Capability to Deliver Megaprojects - J. Denicol, professor at...OECD Governance
 
Procurement strategy in major infrastructure: The AS-IS and STEPS - D. Makovš...
Procurement strategy in major infrastructure: The AS-IS and STEPS - D. Makovš...Procurement strategy in major infrastructure: The AS-IS and STEPS - D. Makovš...
Procurement strategy in major infrastructure: The AS-IS and STEPS - D. Makovš...OECD Governance
 
Procurement of major infrastructure projects 2017-22 - B. Hasselgren, Senior ...
Procurement of major infrastructure projects 2017-22 - B. Hasselgren, Senior ...Procurement of major infrastructure projects 2017-22 - B. Hasselgren, Senior ...
Procurement of major infrastructure projects 2017-22 - B. Hasselgren, Senior ...OECD Governance
 
ECI Dutch Experience - A. Chao, Partner, Bird&Bird & J. de Koning, Head of Co...
ECI Dutch Experience - A. Chao, Partner, Bird&Bird & J. de Koning, Head of Co...ECI Dutch Experience - A. Chao, Partner, Bird&Bird & J. de Koning, Head of Co...
ECI Dutch Experience - A. Chao, Partner, Bird&Bird & J. de Koning, Head of Co...OECD Governance
 
ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm
ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, StockholmECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm
ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, StockholmOECD Governance
 
EPEC's perception of market developments - E. Farquharson, Principal Adviser,...
EPEC's perception of market developments - E. Farquharson, Principal Adviser,...EPEC's perception of market developments - E. Farquharson, Principal Adviser,...
EPEC's perception of market developments - E. Farquharson, Principal Adviser,...OECD Governance
 
Geographical scope of the lines in Design and Build - B.Dupuis, Executive Dir...
Geographical scope of the lines in Design and Build - B.Dupuis, Executive Dir...Geographical scope of the lines in Design and Build - B.Dupuis, Executive Dir...
Geographical scope of the lines in Design and Build - B.Dupuis, Executive Dir...OECD Governance
 
Executive Agency of the Dutch Ministry of Infrastructure and Water Management...
Executive Agency of the Dutch Ministry of Infrastructure and Water Management...Executive Agency of the Dutch Ministry of Infrastructure and Water Management...
Executive Agency of the Dutch Ministry of Infrastructure and Water Management...OECD Governance
 
Presentation of OECD Government at a Glance 2023
Presentation of OECD Government at a Glance 2023Presentation of OECD Government at a Glance 2023
Presentation of OECD Government at a Glance 2023OECD Governance
 
The Protection and Promotion of Civic Space: Strengthening Alignment with Int...
The Protection and Promotion of Civic Space: Strengthening Alignment with Int...The Protection and Promotion of Civic Space: Strengthening Alignment with Int...
The Protection and Promotion of Civic Space: Strengthening Alignment with Int...OECD Governance
 
Digital Government Review Türkiye - Assessment and Recommendations
Digital Government Review Türkiye - Assessment and RecommendationsDigital Government Review Türkiye - Assessment and Recommendations
Digital Government Review Türkiye - Assessment and RecommendationsOECD Governance
 
Buliding-Financial-Resilience-to climate-Impacts.pdf
Buliding-Financial-Resilience-to climate-Impacts.pdfBuliding-Financial-Resilience-to climate-Impacts.pdf
Buliding-Financial-Resilience-to climate-Impacts.pdfOECD Governance
 
Session-7-OECD-Strengthening-climate.pptx
Session-7-OECD-Strengthening-climate.pptxSession-7-OECD-Strengthening-climate.pptx
Session-7-OECD-Strengthening-climate.pptxOECD Governance
 
Session-6-Building-Financial-Resilience.pptx
Session-6-Building-Financial-Resilience.pptxSession-6-Building-Financial-Resilience.pptx
Session-6-Building-Financial-Resilience.pptxOECD Governance
 
Session-5-Assurance-on-sustainability-Peter-Welch.pptx
Session-5-Assurance-on-sustainability-Peter-Welch.pptxSession-5-Assurance-on-sustainability-Peter-Welch.pptx
Session-5-Assurance-on-sustainability-Peter-Welch.pptxOECD Governance
 
Session-4-Sovereign-green-bonds-Fatos-Koc.pptx
Session-4-Sovereign-green-bonds-Fatos-Koc.pptxSession-4-Sovereign-green-bonds-Fatos-Koc.pptx
Session-4-Sovereign-green-bonds-Fatos-Koc.pptxOECD Governance
 

More from OECD Governance (20)

Public Integrity Indicators Slides
Public Integrity Indicators SlidesPublic Integrity Indicators Slides
Public Integrity Indicators Slides
 
Summary of the OECD expert meeting: Construction Risk Management in Infrastru...
Summary of the OECD expert meeting: Construction Risk Management in Infrastru...Summary of the OECD expert meeting: Construction Risk Management in Infrastru...
Summary of the OECD expert meeting: Construction Risk Management in Infrastru...
 
Using AI led assurance to deliver projects on time and on budget - D. Amratia...
Using AI led assurance to deliver projects on time and on budget - D. Amratia...Using AI led assurance to deliver projects on time and on budget - D. Amratia...
Using AI led assurance to deliver projects on time and on budget - D. Amratia...
 
ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm (SE)
 ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm (SE) ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm (SE)
ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm (SE)
 
Building Client Capability to Deliver Megaprojects - J. Denicol, professor at...
Building Client Capability to Deliver Megaprojects - J. Denicol, professor at...Building Client Capability to Deliver Megaprojects - J. Denicol, professor at...
Building Client Capability to Deliver Megaprojects - J. Denicol, professor at...
 
Procurement strategy in major infrastructure: The AS-IS and STEPS - D. Makovš...
Procurement strategy in major infrastructure: The AS-IS and STEPS - D. Makovš...Procurement strategy in major infrastructure: The AS-IS and STEPS - D. Makovš...
Procurement strategy in major infrastructure: The AS-IS and STEPS - D. Makovš...
 
Procurement of major infrastructure projects 2017-22 - B. Hasselgren, Senior ...
Procurement of major infrastructure projects 2017-22 - B. Hasselgren, Senior ...Procurement of major infrastructure projects 2017-22 - B. Hasselgren, Senior ...
Procurement of major infrastructure projects 2017-22 - B. Hasselgren, Senior ...
 
ECI Dutch Experience - A. Chao, Partner, Bird&Bird & J. de Koning, Head of Co...
ECI Dutch Experience - A. Chao, Partner, Bird&Bird & J. de Koning, Head of Co...ECI Dutch Experience - A. Chao, Partner, Bird&Bird & J. de Koning, Head of Co...
ECI Dutch Experience - A. Chao, Partner, Bird&Bird & J. de Koning, Head of Co...
 
ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm
ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, StockholmECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm
ECI in Sweden - A. Kadefors, KTH Royal Institute of Technology, Stockholm
 
EPEC's perception of market developments - E. Farquharson, Principal Adviser,...
EPEC's perception of market developments - E. Farquharson, Principal Adviser,...EPEC's perception of market developments - E. Farquharson, Principal Adviser,...
EPEC's perception of market developments - E. Farquharson, Principal Adviser,...
 
Geographical scope of the lines in Design and Build - B.Dupuis, Executive Dir...
Geographical scope of the lines in Design and Build - B.Dupuis, Executive Dir...Geographical scope of the lines in Design and Build - B.Dupuis, Executive Dir...
Geographical scope of the lines in Design and Build - B.Dupuis, Executive Dir...
 
Executive Agency of the Dutch Ministry of Infrastructure and Water Management...
Executive Agency of the Dutch Ministry of Infrastructure and Water Management...Executive Agency of the Dutch Ministry of Infrastructure and Water Management...
Executive Agency of the Dutch Ministry of Infrastructure and Water Management...
 
Presentation of OECD Government at a Glance 2023
Presentation of OECD Government at a Glance 2023Presentation of OECD Government at a Glance 2023
Presentation of OECD Government at a Glance 2023
 
The Protection and Promotion of Civic Space: Strengthening Alignment with Int...
The Protection and Promotion of Civic Space: Strengthening Alignment with Int...The Protection and Promotion of Civic Space: Strengthening Alignment with Int...
The Protection and Promotion of Civic Space: Strengthening Alignment with Int...
 
Digital Government Review Türkiye - Assessment and Recommendations
Digital Government Review Türkiye - Assessment and RecommendationsDigital Government Review Türkiye - Assessment and Recommendations
Digital Government Review Türkiye - Assessment and Recommendations
 
Buliding-Financial-Resilience-to climate-Impacts.pdf
Buliding-Financial-Resilience-to climate-Impacts.pdfBuliding-Financial-Resilience-to climate-Impacts.pdf
Buliding-Financial-Resilience-to climate-Impacts.pdf
 
Session-7-OECD-Strengthening-climate.pptx
Session-7-OECD-Strengthening-climate.pptxSession-7-OECD-Strengthening-climate.pptx
Session-7-OECD-Strengthening-climate.pptx
 
Session-6-Building-Financial-Resilience.pptx
Session-6-Building-Financial-Resilience.pptxSession-6-Building-Financial-Resilience.pptx
Session-6-Building-Financial-Resilience.pptx
 
Session-5-Assurance-on-sustainability-Peter-Welch.pptx
Session-5-Assurance-on-sustainability-Peter-Welch.pptxSession-5-Assurance-on-sustainability-Peter-Welch.pptx
Session-5-Assurance-on-sustainability-Peter-Welch.pptx
 
Session-4-Sovereign-green-bonds-Fatos-Koc.pptx
Session-4-Sovereign-green-bonds-Fatos-Koc.pptxSession-4-Sovereign-green-bonds-Fatos-Koc.pptx
Session-4-Sovereign-green-bonds-Fatos-Koc.pptx
 

Recently uploaded

Building the Commons: Community Archiving & Decentralized Storage
Building the Commons: Community Archiving & Decentralized StorageBuilding the Commons: Community Archiving & Decentralized Storage
Building the Commons: Community Archiving & Decentralized StorageTechSoup
 
2024: The FAR, Federal Acquisition Regulations - Part 28
2024: The FAR, Federal Acquisition Regulations - Part 282024: The FAR, Federal Acquisition Regulations - Part 28
2024: The FAR, Federal Acquisition Regulations - Part 28JSchaus & Associates
 
(办)McGill毕业证怎么查学位证书
(办)McGill毕业证怎么查学位证书(办)McGill毕业证怎么查学位证书
(办)McGill毕业证怎么查学位证书mbetknu
 
Powering Britain: Can we decarbonise electricity without disadvantaging poore...
Powering Britain: Can we decarbonise electricity without disadvantaging poore...Powering Britain: Can we decarbonise electricity without disadvantaging poore...
Powering Britain: Can we decarbonise electricity without disadvantaging poore...ResolutionFoundation
 
(怎样办)Sherbrooke毕业证本科/硕士学位证书
(怎样办)Sherbrooke毕业证本科/硕士学位证书(怎样办)Sherbrooke毕业证本科/硕士学位证书
(怎样办)Sherbrooke毕业证本科/硕士学位证书mbetknu
 
Call Girl Benson Town - Phone No 7001305949 For Ultimate Sexual Urges
Call Girl Benson Town - Phone No 7001305949 For Ultimate Sexual UrgesCall Girl Benson Town - Phone No 7001305949 For Ultimate Sexual Urges
Call Girl Benson Town - Phone No 7001305949 For Ultimate Sexual Urgesnarwatsonia7
 
No.1 Call Girls in Basavanagudi ! 7001305949 ₹2999 Only and Free Hotel Delive...
No.1 Call Girls in Basavanagudi ! 7001305949 ₹2999 Only and Free Hotel Delive...No.1 Call Girls in Basavanagudi ! 7001305949 ₹2999 Only and Free Hotel Delive...
No.1 Call Girls in Basavanagudi ! 7001305949 ₹2999 Only and Free Hotel Delive...narwatsonia7
 
Take action for a healthier planet and brighter future.
Take action for a healthier planet and brighter future.Take action for a healthier planet and brighter future.
Take action for a healthier planet and brighter future.Christina Parmionova
 
Call Girls Rohini Delhi reach out to us at ☎ 9711199012
Call Girls Rohini Delhi reach out to us at ☎ 9711199012Call Girls Rohini Delhi reach out to us at ☎ 9711199012
Call Girls Rohini Delhi reach out to us at ☎ 9711199012rehmti665
 
history of 1935 philippine constitution.pptx
history of 1935 philippine constitution.pptxhistory of 1935 philippine constitution.pptx
history of 1935 philippine constitution.pptxhellokittymaearciaga
 
VIP Greater Noida Call Girls 9711199012 Escorts Service Noida Extension,Ms
VIP Greater Noida Call Girls 9711199012 Escorts Service Noida Extension,MsVIP Greater Noida Call Girls 9711199012 Escorts Service Noida Extension,Ms
VIP Greater Noida Call Girls 9711199012 Escorts Service Noida Extension,Msankitnayak356677
 
productionpost-productiondiary-240320114322-5004daf6.pptx
productionpost-productiondiary-240320114322-5004daf6.pptxproductionpost-productiondiary-240320114322-5004daf6.pptx
productionpost-productiondiary-240320114322-5004daf6.pptxHenryBriggs2
 
High Class Call Girls Bangalore Komal 7001305949 Independent Escort Service B...
High Class Call Girls Bangalore Komal 7001305949 Independent Escort Service B...High Class Call Girls Bangalore Komal 7001305949 Independent Escort Service B...
High Class Call Girls Bangalore Komal 7001305949 Independent Escort Service B...narwatsonia7
 
Jewish Efforts to Influence American Immigration Policy in the Years Before t...
Jewish Efforts to Influence American Immigration Policy in the Years Before t...Jewish Efforts to Influence American Immigration Policy in the Years Before t...
Jewish Efforts to Influence American Immigration Policy in the Years Before t...yalehistoricalreview
 
Greater Noida Call Girls 9711199012 WhatsApp No 24x7 Vip Escorts in Greater N...
Greater Noida Call Girls 9711199012 WhatsApp No 24x7 Vip Escorts in Greater N...Greater Noida Call Girls 9711199012 WhatsApp No 24x7 Vip Escorts in Greater N...
Greater Noida Call Girls 9711199012 WhatsApp No 24x7 Vip Escorts in Greater N...ankitnayak356677
 
Panet vs.Plastics - Earth Day 2024 - 22 APRIL
Panet vs.Plastics - Earth Day 2024 - 22 APRILPanet vs.Plastics - Earth Day 2024 - 22 APRIL
Panet vs.Plastics - Earth Day 2024 - 22 APRILChristina Parmionova
 
YHR Fall 2023 Issue (Joseph Manning Interview) (2).pdf
YHR Fall 2023 Issue (Joseph Manning Interview) (2).pdfYHR Fall 2023 Issue (Joseph Manning Interview) (2).pdf
YHR Fall 2023 Issue (Joseph Manning Interview) (2).pdfyalehistoricalreview
 
(多少钱)Dal毕业证国外本科学位证
(多少钱)Dal毕业证国外本科学位证(多少钱)Dal毕业证国外本科学位证
(多少钱)Dal毕业证国外本科学位证mbetknu
 
(官方原版办理)BU毕业证国外大学毕业证样本
(官方原版办理)BU毕业证国外大学毕业证样本(官方原版办理)BU毕业证国外大学毕业证样本
(官方原版办理)BU毕业证国外大学毕业证样本mbetknu
 

Recently uploaded (20)

Building the Commons: Community Archiving & Decentralized Storage
Building the Commons: Community Archiving & Decentralized StorageBuilding the Commons: Community Archiving & Decentralized Storage
Building the Commons: Community Archiving & Decentralized Storage
 
2024: The FAR, Federal Acquisition Regulations - Part 28
2024: The FAR, Federal Acquisition Regulations - Part 282024: The FAR, Federal Acquisition Regulations - Part 28
2024: The FAR, Federal Acquisition Regulations - Part 28
 
(办)McGill毕业证怎么查学位证书
(办)McGill毕业证怎么查学位证书(办)McGill毕业证怎么查学位证书
(办)McGill毕业证怎么查学位证书
 
Powering Britain: Can we decarbonise electricity without disadvantaging poore...
Powering Britain: Can we decarbonise electricity without disadvantaging poore...Powering Britain: Can we decarbonise electricity without disadvantaging poore...
Powering Britain: Can we decarbonise electricity without disadvantaging poore...
 
(怎样办)Sherbrooke毕业证本科/硕士学位证书
(怎样办)Sherbrooke毕业证本科/硕士学位证书(怎样办)Sherbrooke毕业证本科/硕士学位证书
(怎样办)Sherbrooke毕业证本科/硕士学位证书
 
Call Girl Benson Town - Phone No 7001305949 For Ultimate Sexual Urges
Call Girl Benson Town - Phone No 7001305949 For Ultimate Sexual UrgesCall Girl Benson Town - Phone No 7001305949 For Ultimate Sexual Urges
Call Girl Benson Town - Phone No 7001305949 For Ultimate Sexual Urges
 
No.1 Call Girls in Basavanagudi ! 7001305949 ₹2999 Only and Free Hotel Delive...
No.1 Call Girls in Basavanagudi ! 7001305949 ₹2999 Only and Free Hotel Delive...No.1 Call Girls in Basavanagudi ! 7001305949 ₹2999 Only and Free Hotel Delive...
No.1 Call Girls in Basavanagudi ! 7001305949 ₹2999 Only and Free Hotel Delive...
 
The Federal Budget and Health Care Policy
The Federal Budget and Health Care PolicyThe Federal Budget and Health Care Policy
The Federal Budget and Health Care Policy
 
Take action for a healthier planet and brighter future.
Take action for a healthier planet and brighter future.Take action for a healthier planet and brighter future.
Take action for a healthier planet and brighter future.
 
Call Girls Rohini Delhi reach out to us at ☎ 9711199012
Call Girls Rohini Delhi reach out to us at ☎ 9711199012Call Girls Rohini Delhi reach out to us at ☎ 9711199012
Call Girls Rohini Delhi reach out to us at ☎ 9711199012
 
history of 1935 philippine constitution.pptx
history of 1935 philippine constitution.pptxhistory of 1935 philippine constitution.pptx
history of 1935 philippine constitution.pptx
 
VIP Greater Noida Call Girls 9711199012 Escorts Service Noida Extension,Ms
VIP Greater Noida Call Girls 9711199012 Escorts Service Noida Extension,MsVIP Greater Noida Call Girls 9711199012 Escorts Service Noida Extension,Ms
VIP Greater Noida Call Girls 9711199012 Escorts Service Noida Extension,Ms
 
productionpost-productiondiary-240320114322-5004daf6.pptx
productionpost-productiondiary-240320114322-5004daf6.pptxproductionpost-productiondiary-240320114322-5004daf6.pptx
productionpost-productiondiary-240320114322-5004daf6.pptx
 
High Class Call Girls Bangalore Komal 7001305949 Independent Escort Service B...
High Class Call Girls Bangalore Komal 7001305949 Independent Escort Service B...High Class Call Girls Bangalore Komal 7001305949 Independent Escort Service B...
High Class Call Girls Bangalore Komal 7001305949 Independent Escort Service B...
 
Jewish Efforts to Influence American Immigration Policy in the Years Before t...
Jewish Efforts to Influence American Immigration Policy in the Years Before t...Jewish Efforts to Influence American Immigration Policy in the Years Before t...
Jewish Efforts to Influence American Immigration Policy in the Years Before t...
 
Greater Noida Call Girls 9711199012 WhatsApp No 24x7 Vip Escorts in Greater N...
Greater Noida Call Girls 9711199012 WhatsApp No 24x7 Vip Escorts in Greater N...Greater Noida Call Girls 9711199012 WhatsApp No 24x7 Vip Escorts in Greater N...
Greater Noida Call Girls 9711199012 WhatsApp No 24x7 Vip Escorts in Greater N...
 
Panet vs.Plastics - Earth Day 2024 - 22 APRIL
Panet vs.Plastics - Earth Day 2024 - 22 APRILPanet vs.Plastics - Earth Day 2024 - 22 APRIL
Panet vs.Plastics - Earth Day 2024 - 22 APRIL
 
YHR Fall 2023 Issue (Joseph Manning Interview) (2).pdf
YHR Fall 2023 Issue (Joseph Manning Interview) (2).pdfYHR Fall 2023 Issue (Joseph Manning Interview) (2).pdf
YHR Fall 2023 Issue (Joseph Manning Interview) (2).pdf
 
(多少钱)Dal毕业证国外本科学位证
(多少钱)Dal毕业证国外本科学位证(多少钱)Dal毕业证国外本科学位证
(多少钱)Dal毕业证国外本科学位证
 
(官方原版办理)BU毕业证国外大学毕业证样本
(官方原版办理)BU毕业证国外大学毕业证样本(官方原版办理)BU毕业证国外大学毕业证样本
(官方原版办理)BU毕业证国外大学毕业证样本
 

Blockchain and its Use in the Public Sector - OECD

  • 1. o p s i @ o e c d . o r go e c d - o p s i . o r g @ O P S I g o v Blockchain and its Use in the Public Sector June 20, 2018
  • 2. Blockchain in the Public Sector OPSI is a forum for shared lessons and insights into the practice of innovation in government. Since 2014, it has worked to meet the needs governments around the world, providing a collective resource to identify, collect and analyse new ways of designing and delivering public policies and services. UNCOVERING WHAT IS NEXT Identifying new practices at the leading edge of government, connecting those engaging in new ways of thinking and acting, and considering what these new approaches mean for the public sector. 1 23 TURNING THE NEW INTO NORMAL Studying innovation in different public sector contexts and investigating potential frameworks and methods to unleash creativity and innovation and ways to connect them with the day-to-day work of public servants. PROVIDING TRUSTED ADVICE TO FOSTER INNOVATION Sharing guidance and resources about the ways in which governments can support innovation to obtain better outcomes for their people.
  • 3. Blockchains Unchained Guide Many public servants have come to OPSI about how blockchain fits within government. Because of blockchain’s complexity and its association with Bitcoin, it can be confusing to look past the hype and understand the potential uses and implications it can have in the public sector. To help address this, OPSI created the Blockchains Unchained (http://oe.cd/blockchain) guide to: • Explain simply what blockchain is and isn’t • Make the case for public servants to build knowledge and capacity around blockchain • Make sense of blockchain’s potential impacts in government • Explore existing public sector use of blockchain
  • 4. Blockchain in the Public Sector Blockchain Basics
  • 5. Blockchain in the Public Sector It is common to share documents in e-mails among colleagues and peers, resulting in repeated duplication of the document. The duplication can be theoretically never-ending. It is possible that one could be amended and tampered with independently of all others. As amended copies duplicate, the history of changes becomes ambiguous: which document becomes the correct one? Which one can be relied upon to ‘state the truth’? COMMUNITIES OF PRACTICE BANK Types of Problems Blockchain Can Solve Two analogies… E-MAIL Digital payments been become a part of daily life. We expect a bank to act as a trusted third-party to verify that user identities are known, that the sender has the necessary funds, and the funds are transferred to the correct person. The central ledger held by the bank becomes a single point of failure (e.g., target for hacking). The potential exists for accessing and altering the data without a trace.
  • 6. Blockchains Unchained Guide The basic and inter-related goals of blockchain are to: • Reduce or eliminate the need for a central authority (e.g., banks, government) • Eliminate central points of failure • Enable trust among people who don’t know each other to directly conduct transactions To achieve this, instead of an authority running a central database, every user can have a copy of the full database and can see every transaction that has ever taken place. This is a distributed ledger. Key term: Distributed Ledger A List of transactions that are spread across many users (not central) Key term: Node Another word for a user on a blockchain network running blockchain software and holding a copy of the ledger
  • 7. Centralized vs. Distributed Source: Baran, Paul, 1964, “On Distributed Communications: Introduction to Distributed Communications Networks”, United States Air Force Project Rand
  • 8. Validating Transactions Ok, so everyone can have a copy of the ledger and see all of the transactions. But how can they be sure these transactions are valid? • To submit a transaction, a user must digitally sign it using a “cryptographic key”. • When a user submits a transaction, it propagates throughout the network in seconds or minutes. Every node checks to ensure the transaction is feasible and was properly signed. If yes, they continue to propagate, if not, they discard the transaction. • If more than 50% agree that is it valid, it is considered a valid transaction. • But… these are not part of the blockchain yet. Key term: Cryptographic Key Old decryption technology. All users have a “public key” and a linked “private key”. The public key is widely known. The private key must never be shared. A user signs their transactions with the private key, and then all users can verify that it was truly the right person by checking it against their public key.
  • 9. Mining Transactions After transactions are validated, they wait in a queue until they are “mined” by a “mining node”. • A mining node will validate a set of transactions from the queue and group them into a “block”. • The mining node then publishes the block to the chain and begins to broadcast the new block across the network. • The mining node discards any invalid transactions Although this is complex, it is all done automatically with blockchain software. Key term: Mining The act of again validating a group of transactions from the queue and publishing them as new block to a chain. The agreed-upon “consensus model” (a very complicated concept to be explained shortly) for the blockchain determines who can do this. Sometimes it’s competitive. Sometimes it’s based on user permissions.
  • 10. “Immutability” In addition to they key principles of: 1. Distributed: everyone holding a copy of the ledger and these copies are automatically synchronised 2. Shared: all transactions being transparent to everyone There is a key third principle: Immutability Key term: Immutability Once data has been written to a Blockchain, no one, not even a system administrator, can change it. This helps to ensure trustworthiness. Immutability is a result of how blockchain technology is designed.
  • 11. How Blockchains are Designed A “blockchain” is literally a chain of blocks • As discussed, each block contains a group of validated transactions. • These blocks are added one-by-one to the chain in a linear, chronological manner. • Critically, every block is inextricably linked to the previous blockchain using a process called “hashing”. • Each block’s contents are “hashed”, and each block gets a unique “hash code”, which links blocks together Key term: Hashing An encryption function that converts any input (text, image, etc.) into a fixed-length code. The same input will always result in the same code. However, even the most minor change will entirely change the code.
  • 12. Linking of Blocks If anyone tried to alter even the smallest piece of a transaction, it would completely change the hash code for the transaction and the block. This would cause cascading effects for all of the connected blocks. This would immediately be noticed by the nodes and discarded.
  • 13. Difference Between Blockchain and Bitcoin One of the biggest challenges for blockchain is that it is conflated with Bitcoin. • Blockchain was born with Bitcoin and remains the largest blockchain platform • However, hundreds or thousands of other platforms now exist • The underlying technology has uses and implications that go far beyond Bitcoin or cryptocurrencies in general Some platforms have developed innovative new features. Most notably, “smart contracts” Key term: Smart Contracts Self-executing contracts where the terms are written directly in software code on the blockchain. Each smart contract is an automated “if/then” scenario that executed when a specific trigger occurs.
  • 14. Public versus Private Blockchains Blockchain ledgers can be public (“permissionless”), or private (“permissioned”). The distinction between the two is much like the internet versus an intranet. • Permissionless ledgers (e.g., Bitcoin) allow anyone to make transactions and to hold identical copies of the full ledger. • Permissioned ledgers limit contributions to a limited set of users who have been given permission. Access to view records can be restricted or public, depending on the settings of the ledger. In fact, many different aspects of the blockchain can be customized to meet different needs. These are likely to be the most useful for public sector use. The types of “consensus models”, which are the rules that determine who has the right to publish the next block, vary depending on type of blockchain at hand.
  • 15. Consensus Models There are a growing number of consensus models that determine which node has the right to publish the next block. The two below are examples. Proof of Work – Always for permissionless ledgers (e.g., Bitcoin) • Since no trust exists, in order to keep one or a few users from taking control, a complicated process exists to help even the playing field. • Each user competes to solve a puzzle that is intentionally resource intensive (e.g., processing power, and by extension, electricity) to solve. • The winner publishes the next block and earns financial reward. Proof of Authority – Usually for permissioned ledgers • User identities must be known and verified. • Ability to publish new blocks is dictated by user permissions (not unlike a traditional database). • No issues related to processing power or electricity.
  • 16. Blockchain in the Public Sector Blockchain in the Public Sector
  • 17. Blockchain in the Public Sector One year ago: 117 Initiatives in 26 Countries Source: Deloitte analysis in conjunction with the Fletcher School at Tufts University (March 2017)
  • 18. Blockchain in the Public Sector Now: 202 Blockchain Initiatives in 45 Countries Source: OECD analysis of data collected by The Illinois Blockchain Initiative (March 2018)
  • 19. Blockchain in the Public Sector Potential Use Cases Use Case Description Identity Establishing and maintaining identities for citizens and residents (birth certificates, marriage licenses, visas, death records). Personal records Interoperable health records, insurance records, etc. Land title registry Details and historic records related to real estate and property transactions. Supply chain management, inventorying Tracking an asset from its creation, transportation, purchase, and inventorying. Benefits, entitlements, and aid Social security, medical benefits payments, domestic and international aid. Anticipatory/automated payments could be automated through Smart Contracts. Contract and vendor management Tracking and paying vendors, managing purchase commitments and transactions, and monitoring schedule performance. Can allow for perfect transparency of government expenditures. Voting Enabling new methods of digital voting, ensuring eligibility, accurate counting, and auditing (e.g., to avoid ballot-rigging). Streamlining interagency processes Blockchains and smart contracts can automate transaction handling and improve information sharing – allows each agency to better focus on their own mission and tech without as much need to consider others tech.
  • 20. Blockchain in the Public Sector Top 10 types of projects Rank Types of projects (count)* 1 Strategy/Research (42) 2 Identity (Credentials/Licenses/Attestations) (25) 3 Personal Records (Health, Financial, etc.) (25) 4 Economic Development (24) 5 Financial Services/Market Infrastructure (20) 6 Land Title Registry (19) 7 Digital Currency (Central Bank Issued) (18) 8 Benefits/Entitlements (13) 9 Compliance/Reporting (12) 10 Research/Standards (12) Source: OECD analysis of data collected by The Illinois Blockchain Initiative (March 2018) *Initiatives may be tagged with more than one type of project.
  • 21. Blockchain in the Public Sector Cross-sector communities (public, private, civil society) learning about blockchain together and exploring the use and implications of Blockchains in government. For example, the U.S. Emerging Citizen Technology Office (ECTO) has been created to provide a common guidance and vision for emerging tech in the U.S. government and to share ideas and connect innovators. Bring in insights from other sectors. COMMUNITIES OF PRACTICE PUBLIC-PRIVATE PARTNERSHIPS (PPPs) Communities of Practice &Public-Private Partnerships Two of the fastest growing best practices COMMUNITIES OF PRACTICE Efforts to bring public agencies and private firms together in developing and implementing Blockchain systems. Often, private firms assist government agencies with the technological aspect of the work. For example, the ID2020 initiative (UN agencies, companies such as Microsoft Accenture) seeks to provide formal identities to the 1.1 billion individuals who lack one, including millions of refugees.
  • 22. Blockchain in the Public Sector Example 1: Vehicle Wallet (Denmark) Problem: During a car’s lifecycle it undergoes various phases and activities (tests, repair, loan, insurance and changes in ownership). When a car is sold from one person to another, there can be a lack of information from either the buyer or seller. On the seller’s side, the car could have undergone an undesirable re-build or even be stolen. On the buyer’s side, the buyer could never re-register the car, which could result in continuous taxes for the original seller. Solution: Vehicle Wallet is a partnership between payment service provider and the Danish Tax Administration. It is a supply chain management tool where data concerning the car is saved in one distributed ledger and creates one agreed and shared record of the vehicle history as it is transferred across the supply chain. This reduces risks for buyers and sellers, and helps ensure Denmark receives all proper taxes.
  • 23. Blockchain in the Public Sector Example 2: BenBen (Ghana) Problem: For land property, Ghana lacked a systemic way to determining the legal existence of parcels and to track land ownership titles. This prevented authorities and property owners from having clear certainty and visibility over what belongs to whom, resulting in regular disputes. In addition, because previous processes were on paper, it could take over a year to register the sale/purchase of a property, which was a fraud risk for both sellers and buyers. Solution: BenBen provides an Ethereum-run digital register system of all land registries across Ghana. It is able to certify land information through the cross-cutting of satellite imagery and on-the-ground verifications, working hand-in-hand with local stakeholders in the land market. It aggregates all the information such that financial institutions and the Lands Commission have real-time access to the data. Property transaction times have been reduced by 75% and court disputes have been reduced.
  • 24. Blockchain in the Public Sector Example 2: Project Ubin (Singapore) Problem: The Monetary Authority of Singapore (MAS) conducted a study that found that Inter-bank payments within Singapore and cross-border financial transactions were inefficient and slow. Solution: MAS partnered with R3– a consortium of banks and regulators to create a prototype for a Blockchain-based digital Singaporean dollar to facilitate digital transactions. This would allow for incorruptibility of records through a decentralised trust system, but also 24 hour processing with no centralised – i.e. human-based – checks required. The partnership has successfully developed software prototypes of three different models for decentralised inter-bank payment that are now being explored. MAS has published the source code as open source software on GitHub.
  • 25. Blockchain in the Public Sector Challenges & Limitations Blockchain is not a cure-all 0 1 IMMUTABILITY A Blockchain is an add-only list. Once data is added, it can’t be removed. Perhaps not a good fit when updating/deleting data is a regular occurrence. 02 DATA STORAGE Databases are often used to store large amounts of data (images, docs, apps, etc.). However, Blockchain is designed for small pockets of data. If data storage is needed, Blockchain may not be a good fit, or a hybrid solution may ne needed. 0 3 TALKING ABOUT BLOCKCHAIN The act of explaining blockchain to public officials and civil servants is difficult. De-linking blockchain from Bitcoin and discussing how it can improve efficiency and strengthen mission effectiveness can help. 0 4 COSTS Higher short-term costs associated with a still-emerging technology prevent its widespread use. Blockchain-as-a- service products are starting to be offered that can allow for experimentation. 05 BLOCKERS People often flag issues such as energy consumption and scalability as Blockchain blockers. However, many of these are irrelevant to government Blockchain implementations (i.e., only apply to Proof of Work consensus on permissionless/pubic blockchains). 0 6 CODING & GOVERNANCE MODELS Blockchains are known for eliminating the need for central authority, but this is not entirely true. They must be coded and governed by those entrusted with key roles. Governments must build a technical knowledge base to ensure these decisions are made well (even if the actual coding is outsourced).
  • 26. o p s i @ o e c d . o r go e c d - o p s i . o r g @ O P S I g o v Join our newsletter at http://tiny.cc/opsinewsletter