SlideShare a Scribd company logo
1 of 44
Download to read offline
Link dos slides:
bit.ly/saber2019-blockchain
1998
2008
2009
Nick Szabo apresenta “bit gold”
como mecanismo para uma
moeda digital descentralizada
Satoshi Nakamoto publica o
paper Bitcoin: A Peer-to-Peer
Electronic Cash System
O Bloco #0 do
Bitcoin é minerado
2013
Vitalik Buterin publica o paper
A Next Generation Smart
Contract and Decentralized
Application Platform
2015
O Bloco #0 do
Ethereum é minerado
2015 - 2017
Altcoins, ICOs,
Dapps, DAOs
•
•
•
•
•
•
•
•
•
•
•
13UnbwxTGnaNxw13Z6eef7a1tPkiBTeuG6
Aline Bob
TRANSACTION 0x4b1a0
Address:
3KAuEYkuJQw1Ad2GzWjfC7V5XoL2fCqjGN
Size:
200 BYTES
Lock time:
Block: 431547
Received:
2017-10-22 12:29:30
•
–
–
–
•
•
•
Dado + Nonce = Hash Hash na base 10 É menor que 1000?
‘Hi There’ 0 a23042b2e 178917215 não
‘Hi There’ 1 cbc1491 29589283 não
‘Hi There’ 2 0ca24258 94869869 não
‘Hi There’ 3 d9eed91 13938166 não
‘Hi There’ 4 1488baec 419386918 não
‘Hi There’ 5 0077bbb 100 sim
TRANSACTION 0x4b1a0
Address:
3KAuEYkuJQw1Ad2GzWjfC7V5XoL2fCqjGN
Size:
200 BYTES
Lock time:
Block: 431547
Received:
2017-10-22 12:29:30
TRANSACTION 0x4b1a0
Address:
3KAuEYkuJQw1Ad2GzWjfC7V5XoL2fCqjGN
Size:
200 BYTES
Lock time:
Block: 431547
Received:
2017-10-22 12:29:30
•
•
Simple Tokenpragma solidity ^0.5.12;
contract MyToken {
mapping (address => uint256) public balanceOf;
string public name;
string public symbol;
uint8 public decimals;
function MyToken(uint256 initialSupply, string memory name, string memory symbol, uint8 decimalUnits) {
balanceOf[msg.sender] = initialSupply;
name = name;
symbol = symbol;
decimals = decimalUnits;
}
function transfer(address _to, uint256 _value) {
if (balanceOf[msg.sender] < _value || balanceOf[_to] + _value < balanceOf[_to]) revert();
balanceOf[msg.sender] -= _value;
balanceOf[_to] += _value;
}
...
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
goo.gl/q6rhzf
https://goo.gl/2uRrh3
https://goo.gl/4EBmM1
goo.gl/4nSYRC
https://www.meetup.com/pt-BR/Blockchain-Curitiba/
Link dos slides:
bit.ly/saber2019-blockchain
Blockchain, como esse negócio funciona? - SABER 2019

More Related Content

What's hot

What's hot (20)

Bitcoin - the Basics
Bitcoin - the BasicsBitcoin - the Basics
Bitcoin - the Basics
 
Mining with Coinomia Review
Mining with Coinomia ReviewMining with Coinomia Review
Mining with Coinomia Review
 
Gb cloud mining Binary Plan
Gb cloud mining Binary PlanGb cloud mining Binary Plan
Gb cloud mining Binary Plan
 
Cryptocurrency for Dummies
Cryptocurrency for DummiesCryptocurrency for Dummies
Cryptocurrency for Dummies
 
The Future of Bitcoin - State of Digital Money 2015 conference
The Future of Bitcoin - State of Digital Money 2015 conferenceThe Future of Bitcoin - State of Digital Money 2015 conference
The Future of Bitcoin - State of Digital Money 2015 conference
 
IOTA Presentation - BlockchainHub Graz Meetup #5
IOTA Presentation - BlockchainHub Graz Meetup #5 IOTA Presentation - BlockchainHub Graz Meetup #5
IOTA Presentation - BlockchainHub Graz Meetup #5
 
The State of ICO (June 2018)
The State of ICO (June 2018)The State of ICO (June 2018)
The State of ICO (June 2018)
 
My bit coin ppt
My bit coin pptMy bit coin ppt
My bit coin ppt
 
BitCoin explained
BitCoin explainedBitCoin explained
BitCoin explained
 
The Next Frontier of Bitcoin
The Next Frontier of BitcoinThe Next Frontier of Bitcoin
The Next Frontier of Bitcoin
 
Bitcoins
BitcoinsBitcoins
Bitcoins
 
basics to blockchain
basics to blockchainbasics to blockchain
basics to blockchain
 
Cryptocurrency
Cryptocurrency  Cryptocurrency
Cryptocurrency
 
Blockchain Investing 2018
Blockchain Investing 2018Blockchain Investing 2018
Blockchain Investing 2018
 
BLOCKCHAIN ,BITCOIN & CRYPTOCURRENCIES WORLD : MECHANICS AND CYBER CRIME
BLOCKCHAIN ,BITCOIN & CRYPTOCURRENCIES WORLD : MECHANICS AND CYBER CRIMEBLOCKCHAIN ,BITCOIN & CRYPTOCURRENCIES WORLD : MECHANICS AND CYBER CRIME
BLOCKCHAIN ,BITCOIN & CRYPTOCURRENCIES WORLD : MECHANICS AND CYBER CRIME
 
Cryptocurrency_slide
Cryptocurrency_slideCryptocurrency_slide
Cryptocurrency_slide
 
Bitcoin, the Blockchain, and our Decentralized Future | Presentation for Geor...
Bitcoin, the Blockchain, and our Decentralized Future | Presentation for Geor...Bitcoin, the Blockchain, and our Decentralized Future | Presentation for Geor...
Bitcoin, the Blockchain, and our Decentralized Future | Presentation for Geor...
 
Bitcoin 101 - mBTC.ph
Bitcoin 101 - mBTC.phBitcoin 101 - mBTC.ph
Bitcoin 101 - mBTC.ph
 
Bitcoins
BitcoinsBitcoins
Bitcoins
 
Programmable consumer protection and scalabiity
Programmable consumer protection and scalabiityProgrammable consumer protection and scalabiity
Programmable consumer protection and scalabiity
 

Similar to Blockchain, como esse negócio funciona? - SABER 2019

Bitcoin digital cash basics svcc 2017 10 001 publish
Bitcoin digital cash basics svcc 2017 10 001 publishBitcoin digital cash basics svcc 2017 10 001 publish
Bitcoin digital cash basics svcc 2017 10 001 publish
donn_lee
 
Think bitcoin workshop slideshare
Think bitcoin workshop slideshareThink bitcoin workshop slideshare
Think bitcoin workshop slideshare
thinkbitcoin
 

Similar to Blockchain, como esse negócio funciona? - SABER 2019 (20)

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
BitcoinBitcoin
Bitcoin
 
R&B: When Ruby Met Bitcoin
R&B: When Ruby Met BitcoinR&B: When Ruby Met Bitcoin
R&B: When Ruby Met Bitcoin
 
The Bitcoin blockchain (en)
The Bitcoin blockchain (en)The Bitcoin blockchain (en)
The Bitcoin blockchain (en)
 
Bitcoin price today BTC to USD market cap.pdf
Bitcoin price today BTC to USD market cap.pdfBitcoin price today BTC to USD market cap.pdf
Bitcoin price today BTC to USD market cap.pdf
 
Bitcoin digital cash basics svcc 2017 10 001 publish
Bitcoin digital cash basics svcc 2017 10 001 publishBitcoin digital cash basics svcc 2017 10 001 publish
Bitcoin digital cash basics svcc 2017 10 001 publish
 
Meetup #15 - 2023-08-10
Meetup #15 - 2023-08-10Meetup #15 - 2023-08-10
Meetup #15 - 2023-08-10
 
What is Bitcoin & Dark Markets History
What is Bitcoin & Dark Markets HistoryWhat is Bitcoin & Dark Markets History
What is Bitcoin & Dark Markets History
 
Smart Contracts - The Blockchain Beyond Bitcoin
Smart Contracts - The Blockchain Beyond BitcoinSmart Contracts - The Blockchain Beyond Bitcoin
Smart Contracts - The Blockchain Beyond Bitcoin
 
Introduction to blockchain 2018
Introduction to blockchain 2018Introduction to blockchain 2018
Introduction to blockchain 2018
 
Bitcoin & Ethereum Address
Bitcoin & Ethereum AddressBitcoin & Ethereum Address
Bitcoin & Ethereum Address
 
The Evolution of e-Money (DeepSec)
The Evolution of e-Money (DeepSec)The Evolution of e-Money (DeepSec)
The Evolution of e-Money (DeepSec)
 
About Bitcoin, Blockchain, and the DLT Chimera
About Bitcoin, Blockchain, and the DLT ChimeraAbout Bitcoin, Blockchain, and the DLT Chimera
About Bitcoin, Blockchain, and the DLT Chimera
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain Technology
 
Blockchain Technology
Blockchain TechnologyBlockchain Technology
Blockchain Technology
 
Bitcoin & Blockchain
Bitcoin & Blockchain Bitcoin & Blockchain
Bitcoin & Blockchain
 
Think bitcoin workshop slideshare
Think bitcoin workshop slideshareThink bitcoin workshop slideshare
Think bitcoin workshop slideshare
 
20170620 MEETUP intro to blockchain and smart contracts (1)
20170620 MEETUP intro to blockchain and smart contracts (1)20170620 MEETUP intro to blockchain and smart contracts (1)
20170620 MEETUP intro to blockchain and smart contracts (1)
 
Bit coin basics 101
Bit coin basics 101Bit coin basics 101
Bit coin basics 101
 
Blockchain & crypto
Blockchain & cryptoBlockchain & crypto
Blockchain & crypto
 

Recently uploaded

TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Modernizing Legacy Systems Using Ballerina
Modernizing Legacy Systems Using BallerinaModernizing Legacy Systems Using Ballerina
Modernizing Legacy Systems Using Ballerina
 
Quantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation ComputingQuantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation Computing
 
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
API Governance and Monetization - The evolution of API governance
API Governance and Monetization -  The evolution of API governanceAPI Governance and Monetization -  The evolution of API governance
API Governance and Monetization - The evolution of API governance
 
JavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate GuideJavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate Guide
 
Choreo: Empowering the Future of Enterprise Software Engineering
Choreo: Empowering the Future of Enterprise Software EngineeringChoreo: Empowering the Future of Enterprise Software Engineering
Choreo: Empowering the Future of Enterprise Software Engineering
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
WSO2 Micro Integrator for Enterprise Integration in a Decentralized, Microser...
WSO2 Micro Integrator for Enterprise Integration in a Decentralized, Microser...WSO2 Micro Integrator for Enterprise Integration in a Decentralized, Microser...
WSO2 Micro Integrator for Enterprise Integration in a Decentralized, Microser...
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
 
Simplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxSimplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptx
 
Decarbonising Commercial Real Estate: The Role of Operational Performance
Decarbonising Commercial Real Estate: The Role of Operational PerformanceDecarbonising Commercial Real Estate: The Role of Operational Performance
Decarbonising Commercial Real Estate: The Role of Operational Performance
 

Blockchain, como esse negócio funciona? - SABER 2019