SlideShare uma empresa Scribd logo
1 de 62
Baixar para ler offline
blockchain basics
November 28, 2018
a jargon-free introduction to bitcoin blockchain
our	goal	today
1. What’s	in	a	wallet?	
2. Where	do	bitcoins	come	from?	
3. Step-by-step	examination	of	a	crypto- transaction
PART	1:	Wallets
What’s	in	a	wallet?
What’s	in	a	wallet?	
‱ Your	private	key
‱ One	of	more	public	key(s)
CRYPTO-WALLETS	DO	NOT	CONTAIN	COINS
CRYPTO-CURRENCY	IS	NOT	STORED	ANYWHERE
ONLY	YOUR	CLAIM	ON	THE	CURRENCY	IS	STORED	ON	BLOCKCHAIN
Types	of	wallets
Based	on	where	your	keys	are	stored,	there	are	a	few	different	types	of	
wallets:
‱ Desktop
‱ Mobile	
‱ Web
‱ Hardware
‱ Paper
Desktop	Wallets
‱ Electrum	(intimidating	UI,	secure,	advanced	features	like	address	tagging,	
fee	adjustments,	wallet	encryption,	signed	messages,	SPV	or	API	option)	
‱ Exodus	(modern	UI,	excellent	starter	wallet,	SPV	wallet,	altcoin	support)
‱ Bitcoin	Code	(full	node	wallet,	independent	verification)
‱ Copay	(multi-signature,	extra	security	against	theft,	good	option	if	you	can’t	
afford	a	hardware	wallet)
‱ Armory	(secure,	features	a	variety	of	encryption	and	cold-storage	options)
‱ Jaxx (easy	to	use,	excellent	starter	wallet,	altcoin	support)
Mobile	Wallets
‱ Electrum	(bitcoin	only,	watch-only	option)
‱ Mycelium	(tried	and	tested	security,	>100,000	users,	iOS	and	
Android,	linked	debit-card	support)
‱ Mobi (support	for	over	100	fiat	currencies,	instant	cross-border	
payments,	bitcoin	only)
‱ Coinbase (>8M	users,	multisig support,	intuitive	UI,	simple	to	setup	
and	use)
‱ Blockchain.info (14M	users,	minimalist	design	and	options)
Web	Wallets
‱ Coinbase
‱ Green	Adress
‱ BitGo
‱ Xapo
‱ Copay
Hardware	Wallets
‱ Ledger	Nano	S	
‱ Trezor
‱ Keepkey
● Simply a public key and private
key printed together
● https://walletgenerator.net/
Paper	Wallets
Hands-on	Lab
Setting	up	a	wallet	(or	two)
Exodus.io Jaxx.io
Part	2:	
Where	do	bitcoins	come	from?
Where	do	bitcoins	come	from?	
Fiat Currency Crypto-currency
Controlled by Central Authority (Governments) No Central Authority
Printed when Government decides to print more Miners (human) use special software to solve math
problems are issued new bitcoins in exchange
The special software is called Miner (software)
This special software can be run on specialized hardware
to speed up mining and generate more bitcoins.
This specialized hardware is called Miner (hardware)
Mining	in	early	days
● Math	problems	were	simple	
enough
● Anyone	with	a	computer	and	
miner	(software)	could	mine	
bitcoins
● Bitcoins	mined	at	this	time	
are	sometimes	referred	to	as	
‘CPU-mined	bitcoins’
Mining	in	early	years
● Gamers	figured	out	that	
mining	with	GPUs	was	
faster
● GPU	mining	took-off
● But,	GPUs	consumed	more	
electricity	and	produced	
more	heat
Mining	in	mid	years
‱ Companies	started	building	
Application-Specific	Integrated	
Circuit	(ASIC)	chips	to	perform	
mining	operations
‱ ASIC	hardware	is	faster	and	
more	energy	efficient	than	GPUs
Mining	today
● Contribute	your	hardware	to	
solving	math	problems	in	
concert	with	others
● Purchase	into	a	specialized	data	
center specifically	designed	for	
mining
● Share	profits	in	proportion	to	
your	contribution
Mining	Pool
Why	are	miners	rewarded?	
Miners	are	required	to	validate	bitcoin	transactions	on	the	network,	
thereby	providing	a	critical	service	to	the	network.
If	51%	of	the	network	approved	the	validity	of	a	transaction,	it	is	
cleared	(added	to	the	blockchain)
Miners	provide	valuable	services
‱ Book-keeping:	The	bitcoin	miner	client	downloads	and	syncs	in	real	
time	the	entire	blockchain	of	the	bitcoin	network
‱ Network	guardians:	Miners	safeguard	the	network	against	hacks	
and	validate	each	transaction
‱ Settlement	and	Clearing:	Blocks	validated	by	miners	are	added	to	
the	blockchain	without	dependence	on	a	trusted	3rd	party
‱ Creation	of	new	bitcoins: Miners	are	rewarded	with	bitcoins	for	
contributing	processing	power	and	keeping	the	network	safe
Mining	Demo
Part	3:	Under	the	hood	
step-by-step	examination	of	a	bitcoin	transaction
Hash	Functions
● A	function	that	takes	an	input	(of	any	size)	and	converts	into	an	
output	(of	fixed	size)
● It’s	a	deterministic	function:	The	output	will	always	be	the	same	
for	a	given	input
Cryptographic	Hash	Functions
● The	qualifier	‘Cryptographic’	implies	that	the	hash	function	
○ is	computationally	efficient	- apply	transformation	quickly,
○ is	collision	resistant	- hard	to	find	2	inputs	that	result	in	the	
same	output
○ hides	information	- hard	to	infer	the	input	by	examining	the	
output
○ looks	random	- well-distributed	output	- should	look	random
● Sometimes	referred	to	as	a	mathematical	meat	grinder
● Examples	include	MD5	(Message	Digest	5),	SHA-256	(Secure	HAsh
256)
● Applications	include	- Digital	Signatures,	Cryptocurrencies
Digital	Signatures
‱ Digital	signature	is	a	way	of	combining	a	public	sequence	of	numbers	
with	a	message
‱ Examples	include	RSA,	DSS	
‱ Each	Signature	includes	2	keys:	
‱ signing	key	(sk)	or	private	key,	and
‱ verification	key	(vk)	or	public	key
‱ It	is	hard	to	come	up	with	the	signing	key	if	you	have	the	verification	
key
https://exonum.com/blog/09-27-17-digital-
signature/
What	is	a	transaction?	
Transaction	is	a	digitally	signed	declaration	by	one	party	of	it’s	
intent	to	transfer	some	bitcoins	they	posses to	another	party
Bitcoin	P2P	Network
Transaction	Workflow	 ● Everybody	can	see	the	ledger
● This	is	what	a	network	looks	like	except...
BTC LEDGER (State of the Network / Account of all Coins)
Ashley 10
Berk 12
David 13
Emre 50
Karen 26
Marie-Louise 70
Nani 123
Transaction	Workflow	 ● Everybody	can	see	the	ledger
● No	one	knows	your	name
● Your	identity	is	represented	by	your	
public	key	/	verification	key
● This	is	what	a	network	looks	like,	
except...
BTC LEDGER (State of the Network / Account of all Coins)
MIIBOQIBAAJAT+qwrlMhJOkn3VSQQK... 10
FsPkKavfDcE19SFZnuJ4HHA0XMn3xD... 12
TtWttB/pfSh5FT/Wr6B3bRoM7nzWpeq... 13
AiEAnnIGwnywSjvpsecRrp9RTpVqgirn... 50
DesPyX5YO5eXSieI8cV5xs+nDsz6KwIh... 26
WdqKfiE5+YcBAiBP0aaBTe8xk5TNW0h
. 70
wi4V/2ZlZnl6kn+QgtKx+hQC8ZWKvBcb... 123
Transaction	Workflow	 ● Everybody	can	see	the	ledger
● No	one	knows	your	name
● Your	identity	is	represented	by	your	
public	key	/	verification	key
● No	one	knows	who	you	are	unless	they	
transact	with	you	in	person
Governments	and	Financial	Institutions	do	not	
like	this.	
BTC LEDGER (State of the Network / Account of all Coins)
MIIBOQIBAAJAT+qwrlMhJOkn3VSQQK... 10
FsPkKavfDcE19SFZnuJ4HHA0XMn3xD... 12
TtWttB/pfSh5FT/Wr6B3bRoM7nzWpeq... 13
AiEAnnIGwnywSjvpsecRrp9RTpVqgirn... 50
DesPyX5YO5eXSieI8cV5xs+nDsz6KwIh... 26
WdqKfiE5+YcBAiBP0aaBTe8xk5TNW0h
. 70
wi4V/2ZlZnl6kn+QgtKx+hQC8ZWKvBcb... 123
Transaction	Workflow	 Node	with	public	key						,	digitally	signs	a	
declaration	announcing	to	the	network,	it’s	
intent	to	transfer	10	bitcoins	they	possess to	
node	with	public	key						.
Network’s	job	is	to	verify	that	node	with	public	
key					,	does	possess	10	or	more	bitcoins.
BTC LEDGER (State of the Network / Account of all Coins)
MIIBOQIBAAJAT+qwrlMhJOkn3VSQQK... 10
FsPkKavfDcE19SFZnuJ4HHA0XMn3xD... 12
TtWttB/pfSh5FT/Wr6B3bRoM7nzWpeq... 13
AiEAnnIGwnywSjvpsecRrp9RTpVqgirn... 50
DesPyX5YO5eXSieI8cV5xs+nDsz6KwIh... 26
WdqKfiE5+YcBAiBP0aaBTe8xk5TNW0h
. 70
wi4V/2ZlZnl6kn+QgtKx+hQC8ZWKvBcb... 123
10
Transaction	Workflow	 At	any	given	time,	there	are	multiple	
declarations	of	transactions	being	proposed	to	
the	network.	
Several	of	these	proposed	transactions	are	
combined	to	form	a	Merkle	Tree.
BTC LEDGER (State of the Network / Account of all Coins)
MIIBOQIBAAJAT+qwrlMhJOkn3VSQQK... 10
FsPkKavfDcE19SFZnuJ4HHA0XMn3xD... 12
TtWttB/pfSh5FT/Wr6B3bRoM7nzWpeq... 13
AiEAnnIGwnywSjvpsecRrp9RTpVqgirn... 50
DesPyX5YO5eXSieI8cV5xs+nDsz6KwIh... 26
WdqKfiE5+YcBAiBP0aaBTe8xk5TNW0h
. 70
wi4V/2ZlZnl6kn+QgtKx+hQC8ZWKvBcb... 123
10
Merkle Tree
https://hackernoon.com/merkle-trees-181cb4bc30b4
10
Using	a	Merkle tree	allows	for	a	quick	and	simple	test	of	whether	a	specific	
transaction	is	included	in	the	set	or	not.
https://hackernoon.com/merkle-trees-181cb4bc30b4
Why	hash	transactions?
‱ Reduce	the	amount	of	data	that	needs	to	be	downloaded	by	a	node	
for	verification	purposes
‱ Validation	proofs	are	computationally	easy	and	fast
Why	Merkle tree?	Why	not	hash	all	transactions	
at	once?
‱ One	branch	can	be	downloaded	at	a	time
‱ Integrity	of	each	branch	can	be	immediately	verified	even	if	the	rest	
of	the	tree	is	not	downloaded	yet
‱ If	a	small	block	file	is	damaged,	it	can	be	individually	downloaded	
without	having	to	download	all	the	blocks
‱ Merkle tree	can	reside	locally	or	on	a	distributed	system
Transaction	Workflow	 Merkle	tree	is	created	from	a	set	of	proposed	
transactions.		
Transaction	from						to						is	included.	
Merkle	Root	summarizing	all	the	transactions	is	
created	and	stored	in	the	block	header.	
BTC LEDGER (State of the Network / Account of all Coins)
MIIBOQIBAAJAT+qwrlMhJOkn3VSQQK... 10
FsPkKavfDcE19SFZnuJ4HHA0XMn3xD... 12
TtWttB/pfSh5FT/Wr6B3bRoM7nzWpeq... 13
AiEAnnIGwnywSjvpsecRrp9RTpVqgirn... 50
DesPyX5YO5eXSieI8cV5xs+nDsz6KwIh... 26
WdqKfiE5+YcBAiBP0aaBTe8xk5TNW0h
. 70
wi4V/2ZlZnl6kn+QgtKx+hQC8ZWKvBcb... 123
10
What’s	in	a	block?
● List of Transactions
● Merkle Root
● Timestamp
● Difficulty Target
● Nonce
● Hash of previous block
Difficulty	Target
● Difficulty target is a number that regulates how long it takes for miners to
add new blocks to transactions to the blockchain
● The difficulty target adjusts every 2016 blocks (roughly 2 weeks)
Why	is	Difficulty	Target	important?
● It	ensures	that	blocks	of	transactions	are	added	to	the	blockchain	at	regular	
intervals,	even	as	more	miners	join	the	network
1. Difficulty adjusts every 2016 blocks. Let’s assume it takes 2 weeks
(20160 minutes) to add 2016 blocks. This means that each block is
expected to be added in 10 min.
TExpected = 10
2. Let’s say more miners joined the network and it took miners, an average
of 9 min per block.
TActual = 9
3. Calculate (TExpected /TActual) = 1.1
4. New Difficulty (DNEW) = DCURRENT X 1.1
Difficulty	Target	Calculation
How	does	Difficulty	control	time	between	
blocks?
Let’s play a simple math game.
Assumptions:
● You are given a range of numbers 1-100 where 100 is the RANGEMAX
● You randomly generate a number between 1 and 100 every minute
Objective:
● Generate a number below my TARGET
How	does	Difficulty	control	time	between	
blocks?
TARGET = 50
How long will it take (on average) for you to find a number below my TARGET?
How	does	Difficulty	control	time	between	
blocks?
TARGET = 20
How long will it take (on average) for you to find a number below my TARGET?
How	does	Difficulty	control	time	between	
blocks?
TARGET = 10
How long will it take (on average) for you to find a number below my TARGET?
How	does	Difficulty	control	time	between	
blocks?
The lower the TARGET, the longer it takes for us reach our objective
TARGET Time to find reach objective
50 2 min
20 5 min
10 10 min
If instead of providing you the TARGET, I provided you ANOTHER_NUMBER by which
to divide the RANGEMAX , we would get the the same result
This	ANOTHER_NUMBER is	called	DIFFICULTY_TARGET
ANOTHER_NUMBER TARGET
(RANGEMAX/ANOTHER_NUMBER)
Time to reach objective
2 50 2 min
5 20 5 min
10 10 10 min
How	does	Difficulty	control	time	between	
blocks?
● Our assumptions from previous activity are ridiculous for real-world
implementations
● Miners are able to generate thousands of numbers (hash values) per minute
as opposed to our measly 1 per minute
● To make things worse, there are many miners working on the problem
concurrently
● To make DIFFICULTY_TARGET work, MAX_RANGE needs to be big
● Real world MAX_RANGE looks more like:
8972345609248750982347034985702348957202938547029438750928349847
Real	World	Numbers
● Real world DIFFICULTY_TARGET looks something like this: 13498.928322
● Since MAX_RANGE is a big number, we use hexadecimal system to
represent numbers as opposed to decimal. In reality, MAX_RANGE range
looks more like this:
000000000003ba27aa200b1cecaad478d2b00432346c3f1f3986da1afd33e506
Real	World	Numbers
● Difficulty targets control the time it takes to add a block
● Miners are tasked with finding a hash lower than TARGET, as calculated
based upon the MAX_RANGE and DIFFICULTY_TARGET
● Hashes are just numbers represented in Hexadecimal
Summarizing	Difficulty	Targets
What’s	in	a	block?
● List of Transactions
● Merkle Root
● Timestamp
● Difficulty Target
● Nonce
● Hash of previous block
NONCE	(number	used	once)
Nonce	is	a	random	integer	between	0	and	4,294,967,296
How	is	a	block	made?	
Hash of the previous block
(publicly known)
+
Current transactions
+
Nonce
(randomly selected)
HASH IT
Miners are expected to
get a valid hash for
their candidate block
such that the hash of
their block headers is
below the TARGET
Revisiting	Nonce
‱ Nonce is a random integer between 0 and 4,294,967,296
‱ Miners have to ‘guess’ the nonce when they’re trying to get the hash of
their block headers below a TARGET
‱ Typically they do this brute force by incrementing the nonce until they get
a valid hash
When	a	miner	succeeds	in	guessing	the	nonce

‱ They	can	send	the	block	to	the	network
‱ The	network	can	easily	verify	if	the	nonce	is	correct
‱ Once	majority	of	the	network	agrees,	everyone	will	add	the	new	
block	to	their	blockchains
‱ Miner	will	pick	up	the	block	reward	for	their	efforts
It’s	essentially	a	guessing	game
In	some	ways,	the	miner	to	guess	the	right	nonce	is	just	lucky	
to	be	the	first	to	find	the	nonce.
Once	a	nonce	is	found,	it	can	be	easily	verified.	
The	miner	can	therefore,	easily	‘prove’ that	they	have	
performed	the	‘work’ to	find	the	correct	nonce.
Proof-of-Work
● Has	been	in	use	for	many	years	prior	to	bitcoin
● Applications	include:	Denial	of	Service	attack	prevention,	
SPAM	prevention
Transaction	Workflow	 Transaction,	once	verified,	will	change	the	
ledger	state	to	below.	
BTC LEDGER (State of the Network / Account of all Coins)
MIIBOQIBAAJAT+qwrlMhJOkn3VSQQK... 10
FsPkKavfDcE19SFZnuJ4HHA0XMn3xD... 22
TtWttB/pfSh5FT/Wr6B3bRoM7nzWpeq... 13
AiEAnnIGwnywSjvpsecRrp9RTpVqgirn... 50
DesPyX5YO5eXSieI8cV5xs+nDsz6KwIh... 26
WdqKfiE5+YcBAiBP0aaBTe8xk5TNW0h
. 70
wi4V/2ZlZnl6kn+QgtKx+hQC8ZWKvBcb... 113
10
Blockchain	is	a	chain	of	blocks
What	is	a	blockchain?
‱ is	a	chain	of	digital	signatures	that	reflect	each	bitcoin’s	path	through	
the	bitcoin	network
‱ is	a	chain	of	blocks
‱ is	a	database
‱ is	a	distributed	database
‱ is	a	distributed	ledger
‱ is	an	immutable	distributed	ledger
Thank you

Mais conteĂșdo relacionado

Mais procurados

Bitcoin powerpoint
Bitcoin powerpointBitcoin powerpoint
Bitcoin powerpoint
dcarro11
 

Mais procurados (20)

Binance Cryptocurrency Trading Guide
Binance Cryptocurrency Trading GuideBinance Cryptocurrency Trading Guide
Binance Cryptocurrency Trading Guide
 
Bitcoin 101 - mBTC.ph
Bitcoin 101 - mBTC.phBitcoin 101 - mBTC.ph
Bitcoin 101 - mBTC.ph
 
Bitcoin - the basics
Bitcoin - the basicsBitcoin - the basics
Bitcoin - the basics
 
Bitcoin
BitcoinBitcoin
Bitcoin
 
Blockchain: life of a blockchain transaction
Blockchain: life of a blockchain transactionBlockchain: life of a blockchain transaction
Blockchain: life of a blockchain transaction
 
Bitcoin Breakthrough Training Guide.
Bitcoin Breakthrough Training Guide.Bitcoin Breakthrough Training Guide.
Bitcoin Breakthrough Training Guide.
 
Cryptocurrencies - A Serious Introduction
Cryptocurrencies - A Serious IntroductionCryptocurrencies - A Serious Introduction
Cryptocurrencies - A Serious Introduction
 
Blockchain and ICO from a Developer’s Standpoint - Zymo.io
Blockchain and ICO from a Developer’s Standpoint - Zymo.ioBlockchain and ICO from a Developer’s Standpoint - Zymo.io
Blockchain and ICO from a Developer’s Standpoint - Zymo.io
 
Bitcoin All The Way
Bitcoin All The WayBitcoin All The Way
Bitcoin All The Way
 
Step By Step Binance Guide
Step By Step Binance GuideStep By Step Binance Guide
Step By Step Binance Guide
 
Introduction to bitcoin
Introduction to bitcoinIntroduction to bitcoin
Introduction to bitcoin
 
Bit coin, Know About Bit Coins
Bit coin, Know About Bit CoinsBit coin, Know About Bit Coins
Bit coin, Know About Bit Coins
 
How to easily make a litecoin paper wallet in less than a minute
How to easily make a litecoin paper wallet in less than a minuteHow to easily make a litecoin paper wallet in less than a minute
How to easily make a litecoin paper wallet in less than a minute
 
How To Invest In Cryptocurrency?
How To Invest In Cryptocurrency?How To Invest In Cryptocurrency?
How To Invest In Cryptocurrency?
 
How to trade cryptocurrency
How to trade cryptocurrency How to trade cryptocurrency
How to trade cryptocurrency
 
Bitcoin powerpoint
Bitcoin powerpointBitcoin powerpoint
Bitcoin powerpoint
 
#2 Case study Tachyon & ICOVO App by Yoshikazu Nishimura, ICOVO's CTO
#2 Case study Tachyon & ICOVO App by Yoshikazu Nishimura, ICOVO's CTO#2 Case study Tachyon & ICOVO App by Yoshikazu Nishimura, ICOVO's CTO
#2 Case study Tachyon & ICOVO App by Yoshikazu Nishimura, ICOVO's CTO
 
Bitcoin p2p money
Bitcoin p2p moneyBitcoin p2p money
Bitcoin p2p money
 
Quick Understanding of Bitcoin/Cryptocurrency.
Quick Understanding of Bitcoin/Cryptocurrency.Quick Understanding of Bitcoin/Cryptocurrency.
Quick Understanding of Bitcoin/Cryptocurrency.
 
What is Bitcoin Currency
What is Bitcoin CurrencyWhat is Bitcoin Currency
What is Bitcoin Currency
 

Semelhante a Blockchain Basics

Blockchain Technology: A Technical Introduction to Non-Technical People
Blockchain Technology: A Technical Introduction to Non-Technical PeopleBlockchain Technology: A Technical Introduction to Non-Technical People
Blockchain Technology: A Technical Introduction to Non-Technical People
MecklerMedia
 

Semelhante a Blockchain Basics (20)

Some Basic Points About Cryptocurrency​
 Some Basic Points About Cryptocurrency​ Some Basic Points About Cryptocurrency​
Some Basic Points About Cryptocurrency​
 
What are Blockchain & Tokens and are they useful ?
What are Blockchain & Tokens and are they useful ?What are Blockchain & Tokens and are they useful ?
What are Blockchain & Tokens and are they useful ?
 
Bitcoin story of programable currency
Bitcoin story of programable currencyBitcoin story of programable currency
Bitcoin story of programable currency
 
Bitcoin The cryptographic currency. Talk at BCBOMO6
Bitcoin The cryptographic currency. Talk at BCBOMO6Bitcoin The cryptographic currency. Talk at BCBOMO6
Bitcoin The cryptographic currency. Talk at BCBOMO6
 
Trading-CryptoCurrency-Advanced-Trading-Strategies.pdf
Trading-CryptoCurrency-Advanced-Trading-Strategies.pdfTrading-CryptoCurrency-Advanced-Trading-Strategies.pdf
Trading-CryptoCurrency-Advanced-Trading-Strategies.pdf
 
Trading-CryptoCurrency-Advanced-Trading-Strategies.pdf
Trading-CryptoCurrency-Advanced-Trading-Strategies.pdfTrading-CryptoCurrency-Advanced-Trading-Strategies.pdf
Trading-CryptoCurrency-Advanced-Trading-Strategies.pdf
 
Bitcoin 101 & the state of the industry
Bitcoin 101 & the state of the industryBitcoin 101 & the state of the industry
Bitcoin 101 & the state of the industry
 
How does the division of Bitcoins work_.pptx
How does the division of Bitcoins work_.pptxHow does the division of Bitcoins work_.pptx
How does the division of Bitcoins work_.pptx
 
[Workshop] Getting Started with Cryptos, NFTs & Web 3.0 for Absolute Beginners
[Workshop] Getting Started with Cryptos, NFTs & Web 3.0 for Absolute Beginners[Workshop] Getting Started with Cryptos, NFTs & Web 3.0 for Absolute Beginners
[Workshop] Getting Started with Cryptos, NFTs & Web 3.0 for Absolute Beginners
 
Bitcoin meetup @Santiago de Chile
Bitcoin meetup @Santiago de ChileBitcoin meetup @Santiago de Chile
Bitcoin meetup @Santiago de Chile
 
Cryptocurrency
CryptocurrencyCryptocurrency
Cryptocurrency
 
Cryptocurrency: Guide for the beginner
Cryptocurrency: Guide for the beginnerCryptocurrency: Guide for the beginner
Cryptocurrency: Guide for the beginner
 
Cryptocurrency: Guide for the beginner
Cryptocurrency: Guide for the beginnerCryptocurrency: Guide for the beginner
Cryptocurrency: Guide for the beginner
 
What is cryptocurrency everything you need to know - ultimate guide
What is cryptocurrency  everything you need to know - ultimate guideWhat is cryptocurrency  everything you need to know - ultimate guide
What is cryptocurrency everything you need to know - ultimate guide
 
Cryptocurrency_Seminar.pptx
Cryptocurrency_Seminar.pptxCryptocurrency_Seminar.pptx
Cryptocurrency_Seminar.pptx
 
Blockchain Technology: A Technical Introduction to Non-Technical People
Blockchain Technology: A Technical Introduction to Non-Technical PeopleBlockchain Technology: A Technical Introduction to Non-Technical People
Blockchain Technology: A Technical Introduction to Non-Technical People
 
Bitcoin: Not just a currency but an IoT facilitator
Bitcoin: Not just a currency but an IoT facilitatorBitcoin: Not just a currency but an IoT facilitator
Bitcoin: Not just a currency but an IoT facilitator
 
Cryptocurrency
CryptocurrencyCryptocurrency
Cryptocurrency
 
Blockchain Đąechnology - Introduction
Blockchain Đąechnology - IntroductionBlockchain Đąechnology - Introduction
Blockchain Đąechnology - Introduction
 
Cryptocurrency secrets
Cryptocurrency secretsCryptocurrency secrets
Cryptocurrency secrets
 

Último

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Último (20)

08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

Blockchain Basics