SlideShare a Scribd company logo
1 of 60
Download to read offline
Blockchains:
a New Platform for
Semantically Enabled
Transactions
Prof. John Domingue
Director, Knowledge Media Institute,
the Open University, UK
President STI International
http://kmi.open.ac.uk/
Caveat
• Semantic Web
• Semantic Web Services
• Blockchains
MOTIVATION
Our Position in the SW World
WEB IS A PLATFORM
E-commerce
Search	Engine Social
Web	Portal Travel Online	Services
Cloud	computing
$28.83
$15.84
$12.29
$10.56
$17.93
$74.98
$107
$9.22
$6.77
$8.59
$6.3
$6.67
$5.37
$4.97
$3.63
$2.99
$3.1
$1.5
$1.40
$0.9
$2.22
Blockchain <-> SWS Relationship (1/2)
• Blockchains
implement trust
• New (transaction)
platform
Blockchain <-> SWS Relationship (2/2)
• Simple concept with complex
implementation
• Re-use important
• Identification important
• No inbuilt search
• Interoperates with plethora of systems
• Implements legal, financial and asset based
transactions
BLOCKCHAINS IMPACT
Blockchain
10
World	Economic	Forum	Survey	Projects	
Blockchain	‘Tipping	Point’	by	2023
Santander:	Blockchain Tech	Can	Save	Banks	
$20	Billion	a	Year
IBM: Device Democracy
http://www-935.ibm.com/services/multimedia/GBE03620USEN.pdf
Distributed Autonomous Organisations
BLOCKCHAIN ELEMENTS
What is a blockchain?
A	blockchain is	a	
permissionless
distributed	database,	
based	on	the	bitcoin	
protocol	that	
maintains	a	
continuously	growing	
list	of	transactional	
data	records	hardened	
against	tampering	and	
revision,	even	by	
operators	of	the	data	
store's	nodes.	
The	initial	and	most	
widely	known	
application	of	the	
blockchain technology	
is	the	public	ledger	of	
transactions	for	bitcoin	
and	the	inspiration	of	
similar	distributed	
ledgers	known	as	
altchains.
Each	blockchain record	
is	enforced	
cryptographically	and	
hosted	on	machines	
working	as	a	data	store
Source:	Wikipedia
Cryptographic Hash Function
https://en.wikipedia.org/wiki/Cryptographic_hash_function
Blockchain is a Linked List (1/2)
A	blockchain	can	be	thought	of	as	a	linked	list	of	transactions	
that	is	built	with	hash	pointers	instead	of	pointers
Source:	Bitcoin	 and	Cryptocurrency	 Technologies	- Arvind	Narayanan,	Joseph	Bonneau,	 Edward	Felten,	Andrew	Miller,	 Steven	Goldfeder
Blockchain is a Linked List (2/2)
A	blockchain actually	contains	
two	different	hash	structures.	
The	first	is	a	hash	chain	of	
blocks	that	links	the	different	
blocks	to	one	another.	
The	second	is	internal	to	each	
block	and	is	a	Merkle Tree	of	
transactions	within	the	
blocks.	
This allows	for	efficiently	
verifiable	proofs	that	a	
transaction	was	included	in	a	
block.
Ethereum Blockchain Platform
Ethereum is	a	cryptocurrency	platform	and	Turing-complete	programming	
framework	intended	to	allow	a	network	of	peers	to	administer	their	own	
stateful user-created	smart	contracts	in	the	absence	of	central	authority.
It	features	a	blockchain-based	virtual	machine	that	securely	records	and	
incentivizes	the	validation	of	transactions,	i.e.	code	executions,	made	
through	a	cryptocurrency	called	ether.
Ethereum takes	the	primary	developments	used	by	BitTorrent and	Bitcoin,	
the	peer	to	peer	network	and	the	blockchain,	and	generalizes	them	in	order	
to	allow	developers	to	use	these	technologies	for	any	purpose.
Source:	Wikipedia
Ethereum Blockchain Platform
Ethereum Blockchain Platform
Ethereum is	a	100%	open	source	software	platform	to	build	distributed,	
decentralized	applications
Ethereum is	100%	peer	to	peer,	censorship-proof	and	corruption-proof.
Ethereum	can	be	used	to	build	anything:	Asset	issuance,	crowdfunding,	
domain	registration,	title	registration,predictionmarkets,	internet	of	things,	
voting,	educational	certificate	issuing	systems,	hundreds	of	applications
Source:	Ethereum slides	- Stephan	Tual and	Ethereum in	40	minites by	Vitalik Buterin
Ethereum Virtual Machine
Sources:	Ethereum Development	Tutorial
The	Ethereum Virtual	Machine	can	be	thought	of	as	a	large	decentralized	computer	
containing	millions	of	objects,	called	"accounts",	which	have	the	ability	to	maintain	
an	internal	database,	execute	code	and	talk	to	each	other.
There	are	2	types	of	Accounts:
Externally	owned	account	(EOA):	
an	account	controlled	by	a	private	
key	that	has	the	ability	to	send	
ether	and	messages	from	it.	
‘Smart’	Contract:	an	account	
that	has	its	own	code,	and	is	
controlled	by	code.
Any	user	can	trigger	an	action	by	sending	a	transaction	from	an	EOA,	setting	
Ethereum's wheels	in	motion.	
If	the	destination	of	the	transaction	
is	another	EOA,	then	the	transaction	
may	transfer	some	ether	but	
otherwise	does	nothing
However,	if	the	destination	is	a	
‘Smart’	Contract,	then	the	
contract	in	turn	activates,	and	
automatically	runs	its	code.
What are Ethereum Contracts?
‘Smart’	contracts	are	computer	protocols	that	facilitate,	verify,	or	enforce	the	
negotiation	or	performance	of	a	contract.	
‘Smart’	contracts	can	be	partially	or	fully	self-executing,	self-enforcing,	or	both.	
Smart	contracts	in	Ethereum have	the	ability	to	read/write	to	their	own	
internal	storage,	read	the	storage	of	the	received	message,	and	send	
messages	to	other	contracts,	triggering	their	execution	in	turn
Sources:	Wikipedia	and	Ethereum Development	 Tutorial	and	Ethereum - Introduction	 to	Smart	Contracts
Contracts in Ethereum
Maintain	a	data	store	
representing	
something	which	is	
useful	to	either	other	
contracts	or	to	the	
outside	world
Serve	as	a	sort	of	
externally	owned	
account	with	a	more	
complicated	access	
policy
Manage	an	ongoing	
contract	or	
relationship	between	
multiple	users
Provide	functions	to	
other	contracts;	
essentially	serving	as	
a	software	library.
Contracts	in	Ethereum generally	serve	4	purposes:
source:	 Richard	 Gendal	Brown	 “A	Simple	Model	for	Smart	Contracts”	
http://gendal.me/2015/02/10/a-simple-model-for-smart-contracts/
DApps
Source:	Ethereum - Stephan	Tual
A	Đapp is	a	decentralised application	which	serves	some	
specific	purpose	 to	its	users,	but	which	has	the	important	
property	that	the	application	itself	does	not	depend	on	
any	specific	party	existing.	
Rather	than	serving	as	a	front-end	for	selling	or	providing	
a	specific	party's	services,	a	Đapp is	a	tool	for	people	and	
organizations	on	different	sides	of	an	interaction	use	to	
come	together	without	any	centralized	intermediary.
A	Dapp consists	of	two	parts:	a	frontend,	 written	in	
HTML	or	QML,	and	a	backend	(think	of	it	as	the	
‘database’	for	your	frontend).
DBrowsers
It	is	an	end	user	interface	onto	
the	Ethereum blockchain.
A	DBrowser is	how	users	will	find	
and	interact	with	DApps
‘Mist’	is	the	name	of	the	
Ethereum DBrowser.
Characteristics of Blockchain DApps
• Shared database
• Multiple writers
• Absence of trust
• Disintermediation
• Transaction interaction
• Set rules
• Validators
• Asset backing
http://www.multichain.com/blog/2015/11/avoiding-pointless-blockchain-project/
HIGHER EDUCATIONAL
EXAMPLE
Demos	of	movies	available	at:	http://blockchain.open.ac.uk/
Course	Contract
Functions:
Storage:
enrol
unenrol
getStudents
studentsPaid[address=0.6,	address=0….	]
students	[address,	address,	address]
Course	Administration	ViewStudent	View
Enrol	for	6	ETH!
your	Ethereum
address
password	to	private	
key
Signing	this	transaction	will	 transfer	6	
ETH	+	gas	from	your	account.	Estimated	
gas	cost	is	0.02	ETH.	Maximum	gas	cost	is	
set	to	0.05	ETH
Enrol
Student	Enrolment	Page
Signed	
TX
Unenrol Student
Admin	Ethereum address
Admin	password	to	private	key
Signing	this	transaction	will	 transfer	6	
ETH	+	gas	from	course	admin	account.	
Estimated	gas	cost	is	0.02	ETH.	Maximum	
gas	cost	is	set	to	0.05	ETH
Unenrol
Course	Admin	Page
Signed	
TX
Student	List
(Listing	students	is	 a	free	transaction)
Course	Enrolment	Page
Signed	
TX
Student	
Address	
Array
unenrolStudent	Account	11
Student	Account	23
Student	Account	45
Student	Account	67
Student	Account	89
unenrol
unenrol
unenrol
unenrol
Student	Account	67
Course Smart Contract
Jane	enrols	on	an	OpenLearn Course
Higher Education Disaggregation
BLOCKCHAINS, SERVICES
AND SEMANTICS
Services -> Smart Contracts
Web	service
Operation	1
Operation	2
Operation	N
input
input
input
output
output
output
.
..
Services -> Smart Contracts
Web	service
Operation	1
Operation	2
Operation	N
input
input
input
output
output
output
.
..
Services -> Smart Contracts
Web	service
Operation	1
Operation	2
Operation	N
.
..
Services -> Smart Contracts
Web	service
Operation	1
Operation	2
Operation	N
.
..
Services -> Smart Contracts
Web	service
Operation	1
Operation	2
Operation	N
.
..
Services -> Smart Contracts
Smart	Contract
.
..
Transaction	1
Transaction	2
Transaction	N
Services -> Smart Contracts
Distributed	Autonomous
Organisation
.
..
Transaction	1
Transaction	2
Transaction	N
• From
• To
• Value
• Gas
• Gas Price
• Data
• Nonce
web3.eth.sendTransaction(transactionObject[,	callback])
Transaction Creation Object
• Block Hash
• Block Number
• Transaction Hash
• Transaction Index
• From
• To
• Cumulative Gas Used
• Gas Used
• Contract Address
• Logs
Transaction Receipt Object
web3.eth.getTransactionReceipt(hashString [,	callback])
Minimal Service Model
http://iserve.kmi.open.ac.uk/
http://linked-usdl.org/
http://linked-usdl.org/
BLONDiE Ontology
Matthew	English https://github.com/EIS-Bonn/BLONDiE/
Transaction
• From
• To
• Input
– Value
– Data
• Cost
– Currency
– Price
• Block information
• Contract
• Condition
– Financial condition
– Non financial condition
• Effect
– Financial effect
– Non financial effect
• History
Smart Contract
• Transactions
• Condition
– Financial condition
– Non financial condition
• Effect
– Financial effect
– Non financial effect
SUMMARY
Related events
New	York,	USA,	July	6-9	2016
Summary (1/2)
• Blockchain attracting a lot of commercial
and community interest
– Trusted mediator for legal and financial
transactions
– IoT platform
– Disaggregation and disintermediation
– Leaderless Distributed Autonomous
Organisations
Summary (2/2)
• Small subset of the SW/LoD community
focused on processes/services/APIs
• Lot to offer
– Identification
– Search
– Re-use
– Interoperability
– Automation
• Machine <-> machine communication in a
human populated world
Acknowledgements
• KMi@OU Implementation Team
– Michelle Bachler
– Kevin Quick
• Discussants
– Sören Auer, Fraunhofer
– Adi Ben-Ari, Applied Blockchain
– Carla Casilli, Mozilla Open Badges
– Marc Eisenstadt, OU
– Matthew English, Fraunhofer
– Denis Gillet, EPFL
– Hugh Halford-Thompson, Blockchain Tech Ltd
– William Knottenbelt, Imperial College
– Konstantin Kudryavtsev, Ethcore
– Gary McKay, APII
– Rebecca Migirov, Consensys
– Titi Roman, Sintef
– Philipp Schmidt, MIT Media Lab
– Mike Sharples, OU
– Elena Simperl, University of Southampton
– Ashley Taylor, Consensys
– Sergej Zerr, University of Southampton
• Graphics
– Harriett Cornish, OU
blockchain.open.ac.uk

More Related Content

What's hot

1st workshop on linked data and distributed ledgers introduction v 1.0
1st workshop on linked data and distributed ledgers introduction v 1.01st workshop on linked data and distributed ledgers introduction v 1.0
1st workshop on linked data and distributed ledgers introduction v 1.0John Domingue
 
Blockchain and Open Education
Blockchain and Open EducationBlockchain and Open Education
Blockchain and Open EducationCarmen Holotescu
 
How Blockchains Are Transforming Adult Education
How Blockchains Are Transforming Adult EducationHow Blockchains Are Transforming Adult Education
How Blockchains Are Transforming Adult EducationJohn Domingue
 
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...eraser Juan José Calderón
 
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July..."The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...Sherry Jones
 
The Future of Semantics on the Web
The Future of Semantics on the WebThe Future of Semantics on the Web
The Future of Semantics on the WebJohn Domingue
 
Semantic blockchain
Semantic blockchainSemantic blockchain
Semantic blockchainBen Gardner
 
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...eMadrid network
 
Blockchain and Decentralized Systems
Blockchain and Decentralized SystemsBlockchain and Decentralized Systems
Blockchain and Decentralized SystemsSvetlin Nakov
 
List of best Open Source Blockchain platforms
List of best Open Source Blockchain platformsList of best Open Source Blockchain platforms
List of best Open Source Blockchain platformsBlockchain Council
 
Introduction to Blockchain and Decentralized Apps
Introduction to Blockchain and Decentralized AppsIntroduction to Blockchain and Decentralized Apps
Introduction to Blockchain and Decentralized AppsCisco DevNet
 
Introduction to blockchain and crypto currencies
Introduction to blockchain and crypto currenciesIntroduction to blockchain and crypto currencies
Introduction to blockchain and crypto currenciesRohas Nagpal
 
Blockchain Primer - Founder Collective - December 2017
Blockchain Primer - Founder Collective - December 2017Blockchain Primer - Founder Collective - December 2017
Blockchain Primer - Founder Collective - December 2017Parul Singh
 
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...Edureka!
 
X ange uni_-_cryptos_-_bj_-_04072017
X ange uni_-_cryptos_-_bj_-_04072017X ange uni_-_cryptos_-_bj_-_04072017
X ange uni_-_cryptos_-_bj_-_04072017meulle
 
The Basic Theories of Blockchain
The Basic Theories of BlockchainThe Basic Theories of Blockchain
The Basic Theories of BlockchainSota Watanabe
 
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...eraser Juan José Calderón
 
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...Edureka!
 

What's hot (20)

1st workshop on linked data and distributed ledgers introduction v 1.0
1st workshop on linked data and distributed ledgers introduction v 1.01st workshop on linked data and distributed ledgers introduction v 1.0
1st workshop on linked data and distributed ledgers introduction v 1.0
 
Blockchain and Open Education
Blockchain and Open EducationBlockchain and Open Education
Blockchain and Open Education
 
How Blockchains Are Transforming Adult Education
How Blockchains Are Transforming Adult EducationHow Blockchains Are Transforming Adult Education
How Blockchains Are Transforming Adult Education
 
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...
The Blockchain and Kudos: A Distributed System for Educational Record, Reputa...
 
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July..."The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...
"The Blockchain Effect on the Future of the Humanities" by Sherry Jones (July...
 
Blockchain in Education
Blockchain in EducationBlockchain in Education
Blockchain in Education
 
The Future of Semantics on the Web
The Future of Semantics on the WebThe Future of Semantics on the Web
The Future of Semantics on the Web
 
Semantic blockchain
Semantic blockchainSemantic blockchain
Semantic blockchain
 
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...
VII Jornadas eMadrid "Education in exponential times". "Blockchains and their...
 
Blockchain and Decentralized Systems
Blockchain and Decentralized SystemsBlockchain and Decentralized Systems
Blockchain and Decentralized Systems
 
List of best Open Source Blockchain platforms
List of best Open Source Blockchain platformsList of best Open Source Blockchain platforms
List of best Open Source Blockchain platforms
 
Introduction to Blockchain and Decentralized Apps
Introduction to Blockchain and Decentralized AppsIntroduction to Blockchain and Decentralized Apps
Introduction to Blockchain and Decentralized Apps
 
Introduction to blockchain and crypto currencies
Introduction to blockchain and crypto currenciesIntroduction to blockchain and crypto currencies
Introduction to blockchain and crypto currencies
 
Blockchain Primer - Founder Collective - December 2017
Blockchain Primer - Founder Collective - December 2017Blockchain Primer - Founder Collective - December 2017
Blockchain Primer - Founder Collective - December 2017
 
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...
Blockchain Developer | How to Become a Blockchain Developer? | Blockchain Tra...
 
Understanding Blockchain
Understanding BlockchainUnderstanding Blockchain
Understanding Blockchain
 
X ange uni_-_cryptos_-_bj_-_04072017
X ange uni_-_cryptos_-_bj_-_04072017X ange uni_-_cryptos_-_bj_-_04072017
X ange uni_-_cryptos_-_bj_-_04072017
 
The Basic Theories of Blockchain
The Basic Theories of BlockchainThe Basic Theories of Blockchain
The Basic Theories of Blockchain
 
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...
Connecting Bitcoin Blockchain with Digital Learning Chain Structure in Educat...
 
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...
BlockChain Tutorial | Getting Started With BlockChain | BlockChain Certificat...
 

Similar to Blockchains a new platform for semantically enabled transactions public

Public, private and hybrid blockchains: what makes sense where
Public, private and hybrid blockchains: what makes sense wherePublic, private and hybrid blockchains: what makes sense where
Public, private and hybrid blockchains: what makes sense whereEY
 
Blockchain for Business
Blockchain for BusinessBlockchain for Business
Blockchain for BusinessFloyd DCosta
 
Blockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and ApplicationsBlockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and ApplicationsIngo Weber
 
Utility Applications for Blockchain
Utility Applications for BlockchainUtility Applications for Blockchain
Utility Applications for BlockchainJosh Gould
 
Blockchain: No Thunder No Wonder
Blockchain: No Thunder No Wonder  Blockchain: No Thunder No Wonder
Blockchain: No Thunder No Wonder Ali Al-Sherbaz
 
How to Create Blockchain Products by Slice.Market CTO
How to Create Blockchain Products by Slice.Market CTOHow to Create Blockchain Products by Slice.Market CTO
How to Create Blockchain Products by Slice.Market CTOProduct School
 
Cryotocurrency & blockchain
Cryotocurrency & blockchainCryotocurrency & blockchain
Cryotocurrency & blockchainAmr Salah
 
Blockchain in Banking - Application in Conventional and Islamic Banking
Blockchain in Banking - Application in Conventional and Islamic BankingBlockchain in Banking - Application in Conventional and Islamic Banking
Blockchain in Banking - Application in Conventional and Islamic BankingCris TRAN
 
Blockchain 101: An Introduction to the Blockchain Ecosystem
Blockchain 101: An Introduction to the Blockchain EcosystemBlockchain 101: An Introduction to the Blockchain Ecosystem
Blockchain 101: An Introduction to the Blockchain EcosystemPureStake
 
Understanding The Polygon Blockchain In Canada: Transforming Canada’s Blockch...
Understanding The Polygon Blockchain In Canada: Transforming Canada’s Blockch...Understanding The Polygon Blockchain In Canada: Transforming Canada’s Blockch...
Understanding The Polygon Blockchain In Canada: Transforming Canada’s Blockch...Crypto in California
 
Gatechain Testnet October 2019
Gatechain Testnet October 2019Gatechain Testnet October 2019
Gatechain Testnet October 2019Gate Technology
 
Overview of blockchain technology and architecture
Overview of blockchain technology and   architectureOverview of blockchain technology and   architecture
Overview of blockchain technology and architectureEY
 
Blockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_FinalBlockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_FinalDavid Lee Kuo Chuen 李国权
 
Embedding the Use of Blockchain in Smart Government to Increase Transparency ...
Embedding the Use of Blockchain in Smart Government to Increase Transparency ...Embedding the Use of Blockchain in Smart Government to Increase Transparency ...
Embedding the Use of Blockchain in Smart Government to Increase Transparency ...Cris TRAN
 
Blockchain for Digital Transformation in Banking
Blockchain for Digital Transformation in Banking Blockchain for Digital Transformation in Banking
Blockchain for Digital Transformation in Banking Floyd DCosta
 
blockchain. Intro to blockchain, about, how its implemented
blockchain. Intro to blockchain, about, how its implementedblockchain. Intro to blockchain, about, how its implemented
blockchain. Intro to blockchain, about, how its implementedAaAa163741
 
[db tech showcase Tokyo 2018] #dbts2018 #B23 『Python, Oracle Cloud, Blockchai...
[db tech showcase Tokyo 2018] #dbts2018 #B23 『Python, Oracle Cloud, Blockchai...[db tech showcase Tokyo 2018] #dbts2018 #B23 『Python, Oracle Cloud, Blockchai...
[db tech showcase Tokyo 2018] #dbts2018 #B23 『Python, Oracle Cloud, Blockchai...Insight Technology, Inc.
 

Similar to Blockchains a new platform for semantically enabled transactions public (20)

Public, private and hybrid blockchains: what makes sense where
Public, private and hybrid blockchains: what makes sense wherePublic, private and hybrid blockchains: what makes sense where
Public, private and hybrid blockchains: what makes sense where
 
Company presentation
Company presentationCompany presentation
Company presentation
 
Blockchain for Business
Blockchain for BusinessBlockchain for Business
Blockchain for Business
 
Blockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and ApplicationsBlockchain and BPM - Reflections on Four Years of Research and Applications
Blockchain and BPM - Reflections on Four Years of Research and Applications
 
Utility Applications for Blockchain
Utility Applications for BlockchainUtility Applications for Blockchain
Utility Applications for Blockchain
 
Blockchain: No Thunder No Wonder
Blockchain: No Thunder No Wonder  Blockchain: No Thunder No Wonder
Blockchain: No Thunder No Wonder
 
How to Create Blockchain Products by Slice.Market CTO
How to Create Blockchain Products by Slice.Market CTOHow to Create Blockchain Products by Slice.Market CTO
How to Create Blockchain Products by Slice.Market CTO
 
Cryotocurrency & blockchain
Cryotocurrency & blockchainCryotocurrency & blockchain
Cryotocurrency & blockchain
 
Blockchain Brochure
Blockchain Brochure Blockchain Brochure
Blockchain Brochure
 
Blockchain in Banking - Application in Conventional and Islamic Banking
Blockchain in Banking - Application in Conventional and Islamic BankingBlockchain in Banking - Application in Conventional and Islamic Banking
Blockchain in Banking - Application in Conventional and Islamic Banking
 
Blockchain 101: An Introduction to the Blockchain Ecosystem
Blockchain 101: An Introduction to the Blockchain EcosystemBlockchain 101: An Introduction to the Blockchain Ecosystem
Blockchain 101: An Introduction to the Blockchain Ecosystem
 
Blockchain and Competition – MULLIGAN – June 2018 OECD discussion
Blockchain and Competition – MULLIGAN – June 2018 OECD discussionBlockchain and Competition – MULLIGAN – June 2018 OECD discussion
Blockchain and Competition – MULLIGAN – June 2018 OECD discussion
 
Understanding The Polygon Blockchain In Canada: Transforming Canada’s Blockch...
Understanding The Polygon Blockchain In Canada: Transforming Canada’s Blockch...Understanding The Polygon Blockchain In Canada: Transforming Canada’s Blockch...
Understanding The Polygon Blockchain In Canada: Transforming Canada’s Blockch...
 
Gatechain Testnet October 2019
Gatechain Testnet October 2019Gatechain Testnet October 2019
Gatechain Testnet October 2019
 
Overview of blockchain technology and architecture
Overview of blockchain technology and   architectureOverview of blockchain technology and   architecture
Overview of blockchain technology and architecture
 
Blockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_FinalBlockchain As An Enabler_16 July 2016_David Lee_Final
Blockchain As An Enabler_16 July 2016_David Lee_Final
 
Embedding the Use of Blockchain in Smart Government to Increase Transparency ...
Embedding the Use of Blockchain in Smart Government to Increase Transparency ...Embedding the Use of Blockchain in Smart Government to Increase Transparency ...
Embedding the Use of Blockchain in Smart Government to Increase Transparency ...
 
Blockchain for Digital Transformation in Banking
Blockchain for Digital Transformation in Banking Blockchain for Digital Transformation in Banking
Blockchain for Digital Transformation in Banking
 
blockchain. Intro to blockchain, about, how its implemented
blockchain. Intro to blockchain, about, how its implementedblockchain. Intro to blockchain, about, how its implemented
blockchain. Intro to blockchain, about, how its implemented
 
[db tech showcase Tokyo 2018] #dbts2018 #B23 『Python, Oracle Cloud, Blockchai...
[db tech showcase Tokyo 2018] #dbts2018 #B23 『Python, Oracle Cloud, Blockchai...[db tech showcase Tokyo 2018] #dbts2018 #B23 『Python, Oracle Cloud, Blockchai...
[db tech showcase Tokyo 2018] #dbts2018 #B23 『Python, Oracle Cloud, Blockchai...
 

More from John Domingue

Transforming Education through FORGE
Transforming Education through FORGETransforming Education through FORGE
Transforming Education through FORGEJohn Domingue
 
Developing rich interactive eBooks to teach linked open data to professionals...
Developing rich interactive eBooks to teach linked open data to professionals...Developing rich interactive eBooks to teach linked open data to professionals...
Developing rich interactive eBooks to teach linked open data to professionals...John Domingue
 
Linked services: Connecting services to the Web of Data
Linked services: Connecting services to the Web of DataLinked services: Connecting services to the Web of Data
Linked services: Connecting services to the Web of DataJohn Domingue
 
Beyond sparql linked data, software, services and applications. Keynote at D...
Beyond sparql  linked data, software, services and applications. Keynote at D...Beyond sparql  linked data, software, services and applications. Keynote at D...
Beyond sparql linked data, software, services and applications. Keynote at D...John Domingue
 
Linked services for the Web of Data
Linked services for the Web of DataLinked services for the Web of Data
Linked services for the Web of DataJohn Domingue
 
Linking Services and Linked Data: Keynote for AIMSA 2012
Linking Services and Linked Data: Keynote for AIMSA 2012Linking Services and Linked Data: Keynote for AIMSA 2012
Linking Services and Linked Data: Keynote for AIMSA 2012John Domingue
 
Inaugural Lecture on Future Internet
Inaugural Lecture on Future InternetInaugural Lecture on Future Internet
Inaugural Lecture on Future InternetJohn Domingue
 
Soa4 all technical achievements final
Soa4 all technical achievements finalSoa4 all technical achievements final
Soa4 all technical achievements finalJohn Domingue
 
Super ontology stack_review_m36_051
Super ontology stack_review_m36_051Super ontology stack_review_m36_051
Super ontology stack_review_m36_051John Domingue
 
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...John Domingue
 

More from John Domingue (11)

Transforming Education through FORGE
Transforming Education through FORGETransforming Education through FORGE
Transforming Education through FORGE
 
FIRE in a Book
FIRE in a BookFIRE in a Book
FIRE in a Book
 
Developing rich interactive eBooks to teach linked open data to professionals...
Developing rich interactive eBooks to teach linked open data to professionals...Developing rich interactive eBooks to teach linked open data to professionals...
Developing rich interactive eBooks to teach linked open data to professionals...
 
Linked services: Connecting services to the Web of Data
Linked services: Connecting services to the Web of DataLinked services: Connecting services to the Web of Data
Linked services: Connecting services to the Web of Data
 
Beyond sparql linked data, software, services and applications. Keynote at D...
Beyond sparql  linked data, software, services and applications. Keynote at D...Beyond sparql  linked data, software, services and applications. Keynote at D...
Beyond sparql linked data, software, services and applications. Keynote at D...
 
Linked services for the Web of Data
Linked services for the Web of DataLinked services for the Web of Data
Linked services for the Web of Data
 
Linking Services and Linked Data: Keynote for AIMSA 2012
Linking Services and Linked Data: Keynote for AIMSA 2012Linking Services and Linked Data: Keynote for AIMSA 2012
Linking Services and Linked Data: Keynote for AIMSA 2012
 
Inaugural Lecture on Future Internet
Inaugural Lecture on Future InternetInaugural Lecture on Future Internet
Inaugural Lecture on Future Internet
 
Soa4 all technical achievements final
Soa4 all technical achievements finalSoa4 all technical achievements final
Soa4 all technical achievements final
 
Super ontology stack_review_m36_051
Super ontology stack_review_m36_051Super ontology stack_review_m36_051
Super ontology stack_review_m36_051
 
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...
ESWC 2012 Dinner Keynote: Improving the Impact and Takeup of Semantic Web Res...
 

Recently uploaded

IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119APNIC
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书rnrncn29
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predieusebiomeyer
 
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书rnrncn29
 
TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxAndrieCagasanAkio
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxMario
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxDyna Gilbert
 
ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxNIMMANAGANTI RAMAKRISHNA
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa494f574xmv
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxmibuzondetrabajo
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书zdzoqco
 

Recently uploaded (11)

IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predi
 
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
 
TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptx
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptx
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptx
 
ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptx
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptx
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
 

Blockchains a new platform for semantically enabled transactions public