SlideShare una empresa de Scribd logo
1 de 47
Descargar para leer sin conexión
INTRODUCTION TO
ETHEREUM ECOSYSTEM
&
SMART CONTRACTS
NPD Meet @ Divum Corporate Services Pvt Ltd.
Jitendra Kumar.Balla & Vaideeswaran sethuraman
AGENDA
1. What is a
Blockchain?
2. Ethereum 3. Ethereum SMART
Contracts
CENTRALIZED
Issues:
Single point failure
Scaling
Inefficiency
All activities are managed by one
person/Organization
DECENTRALIZED
Solves:
Single point failure
Scaling
Inefficiency
Security and Transparency
Transaction time
INTRODUCTION TO
BLOCKCHAIN
BLOCKCHAIN
A blockchain allows for trustless transactions between
multiple parties. Or, more importantly, it allows transactions
without trust of a third party intermediary!
Decentralized system for an exchange a value/asserts
○ Distributed ledger
○ Immutability
○ Consensus
○ Security
LET’S START WITH A TRANSACTION
THAT OCCURS BETWEEN ACCOUNTS
Transaction #200
Account A Account B
E.g. Send 2 tokens
An example transaction could be:
Account A will send 1 tokens to Account B
A LEDGER IS A LIST OF TRANSACTIONS
(GROUPED INTO BLOCKS)
LEDGER
Block #100
Last Block: #99 (H)
Timestamp: TM,
Transaction #399
Transaction #400
Transaction #401
Block #97
Block #98
Block #99
Blocks
contain an
indeterminate
number of
transactions
BLOCKS ARE CHAINED TOGETHER
LEDGER
Block #100
Last Block: #99
Transaction #399
Transaction #400
Block #97 Block #98 Block #99
Blocks are
generated on a
time interval
(e.g. every 5
minutes)
The ledger is a chain of blocks! Each block is created
with a pointer to the previous block creating a
blockchain!
LEDGER
Distributed ledger = Distributed database
BLOCKCHAIN
Decentralized system for an exchange a value/asserts
○ Distributed ledger
○ Immutability
○ Consensus
○ Security
BLOCKCHAIN
Decentralized system for an exchange a value/asserts
○ Distributed ledger
○ Immutability
○ Consensus
○ Security
CONSENSUS
Consensus = Protocol by which peers agree on state of ledger
○ Ensure all peers in the network has exactly the same copy of
ledger
○ Fraudulent transactions kept out of the ledger
○ Guarantees to record transactions in chronological order
BLOCKCHAIN
Decentralized system for an exchange a value/asserts
○ Distributed ledger
○ Immutability
○ Consensus
○ Security
SECURITY
Wow!!, thats cool stuff
Bitcoin:
- Transfer money
- Fast transactions
- Less fee
- Transparent
Wow!!, thats cool stuff
Bitcoin:
- Transfer money
- Fast transactions
- Less fee
- Transparent
Great Technology:
- Launch my sub currency
- ICO (Crowdfunding)
- Managing digital assets
- Local laws
INTRODUCTION TO
ETHEREUM
ETHEREUM
Ethereum is an open blockchain platform that lets anyone
build and use decentralized applications that run on
blockchain technology.
Ethereum is world of computers
HOW DOES ETHEREUM WORK?
○ Ethereum’s basic unit is the account
○ State of every account
○ The Ethereum blockchain tracks the state of every account,
and all state transitions on the Ethereum blockchain are
transfers of value and information between accounts.
ETHEREUM ACCOUNTS:
There are two types of accounts:
○ Externally Owned Accounts (EOAs)
○ Contract Accounts, which are controlled by their
contract code and can only be “activated” by an EOA
ETHEREUM ACCOUNTS: Elliptic Curve
Digital Signature
Algorithm (ECDSA)
ETHEREUM ACCOUNTS:
○ Has an ether balance
○ Can send transactions (ether transfer or trigger
contract code), EOA
○ Bytecode
○ Nonce
SMART CONTRACTS
ETHER, EVM, GAS
ETHER
Ethereum value token is called Ether
Denominations:
Unit Wei Value Wei
wei 1 wei 1
Kwei (babbage) 1e3 wei 1,000
Mwei (lovelace) 1e6 wei 1,000,000
Gwei (shannon) 1e9 wei 1,000,000,000
microether (szabo) 1e12 wei 1,000,000,000,000
milliether (finney) 1e15 wei 1,000,000,000,000,000
ether 1e18 wei 1,000,000,000,000,000,000
ETHER SUPPLY
○ 48 days presale (July 2014): $ 60 M
○ 12M created to fund development
○ 5 Eth will created as rewarded for every block
○ 2-3 eths for non winning miners
○ Contract execution user pays Ether’s
ETHEREUM VIRTUAL MACHINE
○ Ethereum is “Turing complete”.
○ EVM will load bytecode and execute instructions
○ Every node will run eth client
GAS
○ Gas is the metering unit for use of the World Computer
○ Each operation in the EVM consumes gas
○ totalEstGas = startgas * gasprice
Transactions
0x60 0x01 0x60
0x02 0x01
Operation Name Gas Cost Remark
step 1 default amount per execution cycle
stop 0 free
suicide 0 free
sha3 20
sload 20 get from permanent storage
sstore 100 put into permanent storage
balance 20
create 100 contract creation
call 20 initiating a read-only call
memory 1 every additional word when expanding memory
txdata 5 every byte of data or code for a transaction
transaction 500 base fee transaction
contract creation 53000 changed in homestead from 21000
ETHEREUM TRANSACTIONS:
BITCOIN
● Transactions based
● Block creation ~10mins
● Less number of transactions
● Require high computation power
● Not stopping big miners
● Limited transaction based bitcoin
signature(128)
● Limited functions
● Peers can block list transaction
● SHA2 not so secure
● SHA256 is not ASIC resistance
● Account based
● Block creation ~12sec
● Mining algorithm based on
memory usage (Gas)
● Can decouple components
● Rich programing language for
contracts (Solidity)
● Uses SHA3
● Customize protocol based on local
law
● EthHash is ASIC resistance
ETHEREUM
INTRODUCTION TO
ETHEREUM DAPPS
○ Ethereum Client’s
○ Installation of Geth
○ Geth commands
○ Web3JS Apis
○ Solidity
○ Smart contracts
○ Deploying smart contracts
ETHEREUM CLIENTS
eth pyethapp geth ethereumjs-lib
3rd Party Impl
ethereumj ruby-ethereum ethereumjs-lib parity
SOLIDITY
SOLIDITY
Solidity is the most popular programming language
used to write smart contracts to run on the Ethereum
blockchain.
It is a high level language which when compiled gets
converted to EVM bytecode.
This is very similar to the world of Java where there are
JVM languages like Scala, Groovy, Clojure, JRuby etc.
SOLIDITY INTEGRATION TOOLS
IDE’s
- Remix
- IntelliJ IDEA plugin
- Visual Studio Extension
- Etheratom
- Solium
- Emacs Solidity
- Package for SublimeText — Solidity language syntax
SOLIDITY INTEGRATION TOOLS
Solidity Tools
- Dapp
Build tool, package manager, and deployment assistant
for Solidity.
- Solidity REPL
Instant command-line solidity console.
- solgraph
- Doxity
STRUCTURE OF A CONTRACT
- Types
- Operators
- Functions
- Function Modifiers
- Events
- Enum Types
- Types
Booleans
Integers
Address
String
Enums
- Function Types
public, private, internal, external
- Function Modifiers
STRUCTURE OF A CONTRACT
- Types
Booleans
Integers
Address
String
Enums
- Function Types
Public, private, internal
- Function Modifiers
STRUCTURE OF A CONTRACT
TRUFFLE/EMBARK
We have frameworks for web application development
such as Ruby on Rails, Python/Django etc, Truffle and
Embark are the two most popular frameworks used to
develop Dapps.
They abstract away lot of the complexities of compiling
and deploying your contract on the blockchain.
LET’S CODE….
Building Apps with Ethereum Smart Contract

Más contenido relacionado

La actualidad más candente (20)

Ethereum
EthereumEthereum
Ethereum
 
Smart contract
Smart contractSmart contract
Smart contract
 
Ethereum 2.0
Ethereum 2.0Ethereum 2.0
Ethereum 2.0
 
All About Ethereum
All About EthereumAll About Ethereum
All About Ethereum
 
Introduction to Blockchain
Introduction to BlockchainIntroduction to Blockchain
Introduction to Blockchain
 
Bitcoin, Ethereum, Smart Contract & Blockchain
Bitcoin, Ethereum, Smart Contract & BlockchainBitcoin, Ethereum, Smart Contract & Blockchain
Bitcoin, Ethereum, Smart Contract & Blockchain
 
Overview of Blockchain Consensus Mechanisms
Overview of Blockchain Consensus MechanismsOverview of Blockchain Consensus Mechanisms
Overview of Blockchain Consensus Mechanisms
 
How does blockchain work
How does blockchain workHow does blockchain work
How does blockchain work
 
Blockchain basics
Blockchain basicsBlockchain basics
Blockchain basics
 
Blockchain technology.pptx
 Blockchain technology.pptx Blockchain technology.pptx
Blockchain technology.pptx
 
Blockchain
BlockchainBlockchain
Blockchain
 
Blockchain concepts
Blockchain conceptsBlockchain concepts
Blockchain concepts
 
An Overview of Stablecoin
An Overview of StablecoinAn Overview of Stablecoin
An Overview of Stablecoin
 
Ethereum
EthereumEthereum
Ethereum
 
Crypto 101
Crypto 101Crypto 101
Crypto 101
 
Blockchain consensus algorithms
Blockchain consensus algorithmsBlockchain consensus algorithms
Blockchain consensus algorithms
 
Ethereum-Cryptocurrency (All about Ethereum)
Ethereum-Cryptocurrency (All about Ethereum) Ethereum-Cryptocurrency (All about Ethereum)
Ethereum-Cryptocurrency (All about Ethereum)
 
BLOCKCHAIN
BLOCKCHAINBLOCKCHAIN
BLOCKCHAIN
 
Bitcoin Final Year Seminar Report
Bitcoin Final Year Seminar ReportBitcoin Final Year Seminar Report
Bitcoin Final Year Seminar Report
 
Ethereum
EthereumEthereum
Ethereum
 

Similar a Building Apps with Ethereum Smart Contract

Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018
Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018
Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018Codemotion
 
Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018
Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018
Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018Codemotion
 
Blockchain, smart contracts - introduction
Blockchain, smart contracts - introductionBlockchain, smart contracts - introduction
Blockchain, smart contracts - introductionLukasz Jarmulowicz
 
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...Stefano Maestri - Blockchain and smart contracts, what they are and why you s...
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...Codemotion
 
Smart contracts in Solidity
Smart contracts in SoliditySmart contracts in Solidity
Smart contracts in SolidityFelix Crisan
 
Blockchain & decentralized finance (defi) | How blockchain technology is coup...
Blockchain & decentralized finance (defi) | How blockchain technology is coup...Blockchain & decentralized finance (defi) | How blockchain technology is coup...
Blockchain & decentralized finance (defi) | How blockchain technology is coup...Nidhi choraria
 
Introduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptxIntroduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptxGene Leybzon
 
Ethereum in a nutshell
Ethereum in a nutshellEthereum in a nutshell
Ethereum in a nutshellDaniel Chan
 
Ethereum Block Chain
Ethereum Block ChainEthereum Block Chain
Ethereum Block ChainSanatPandoh
 
Block chain - Smart contacts.pptx
Block chain - Smart contacts.pptxBlock chain - Smart contacts.pptx
Block chain - Smart contacts.pptxshraddhaphirke1
 
Blockchain Basics
Blockchain BasicsBlockchain Basics
Blockchain BasicsAli Ayyash
 
Fluent destry saul
Fluent destry saulFluent destry saul
Fluent destry saulDestry Saul
 
Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)Tomoaki Sato
 
Distributed Ledgers, Blockchains, and Smart Contracts
Distributed Ledgers, Blockchains, and Smart ContractsDistributed Ledgers, Blockchains, and Smart Contracts
Distributed Ledgers, Blockchains, and Smart ContractsDusan Andric
 
Introduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractIntroduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractThanh Nguyen
 

Similar a Building Apps with Ethereum Smart Contract (20)

Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018
Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018
Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018
 
Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018
Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018
Jerome de Tychey - Building Web3.0 with Ethereum - Codemotion Berlin 2018
 
Blockchain for Notaries
Blockchain for NotariesBlockchain for Notaries
Blockchain for Notaries
 
Blockchain, smart contracts - introduction
Blockchain, smart contracts - introductionBlockchain, smart contracts - introduction
Blockchain, smart contracts - introduction
 
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...Stefano Maestri - Blockchain and smart contracts, what they are and why you s...
Stefano Maestri - Blockchain and smart contracts, what they are and why you s...
 
Smart contracts in Solidity
Smart contracts in SoliditySmart contracts in Solidity
Smart contracts in Solidity
 
Blockchain & decentralized finance (defi) | How blockchain technology is coup...
Blockchain & decentralized finance (defi) | How blockchain technology is coup...Blockchain & decentralized finance (defi) | How blockchain technology is coup...
Blockchain & decentralized finance (defi) | How blockchain technology is coup...
 
Introduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptxIntroduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptx
 
Ethereum in a nutshell
Ethereum in a nutshellEthereum in a nutshell
Ethereum in a nutshell
 
Ethereum bxl
Ethereum bxlEthereum bxl
Ethereum bxl
 
Ethereum Block Chain
Ethereum Block ChainEthereum Block Chain
Ethereum Block Chain
 
Block chain - Smart contacts.pptx
Block chain - Smart contacts.pptxBlock chain - Smart contacts.pptx
Block chain - Smart contacts.pptx
 
Chapter 3.pptx
Chapter 3.pptxChapter 3.pptx
Chapter 3.pptx
 
What is ethereum
What is ethereumWhat is ethereum
What is ethereum
 
Blockchain Basics
Blockchain BasicsBlockchain Basics
Blockchain Basics
 
Fluent destry saul
Fluent destry saulFluent destry saul
Fluent destry saul
 
Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)
 
Distributed Ledgers, Blockchains, and Smart Contracts
Distributed Ledgers, Blockchains, and Smart ContractsDistributed Ledgers, Blockchains, and Smart Contracts
Distributed Ledgers, Blockchains, and Smart Contracts
 
Introduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractIntroduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart Contract
 
How to design, code, deploy and execute a smart contract
How to design, code, deploy and execute a smart contractHow to design, code, deploy and execute a smart contract
How to design, code, deploy and execute a smart contract
 

Último

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 RobisonAnna Loughnan Colquhoun
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
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 AutomationSafe Software
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
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 2024Rafal Los
 
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 DevelopmentsTrustArc
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
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 MenDelhi Call girls
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
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 productivityPrincipled Technologies
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 

Último (20)

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 Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
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
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
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
 
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
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
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
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
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
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 

Building Apps with Ethereum Smart Contract

  • 1.
  • 2. INTRODUCTION TO ETHEREUM ECOSYSTEM & SMART CONTRACTS NPD Meet @ Divum Corporate Services Pvt Ltd. Jitendra Kumar.Balla & Vaideeswaran sethuraman
  • 3. AGENDA 1. What is a Blockchain? 2. Ethereum 3. Ethereum SMART Contracts
  • 4. CENTRALIZED Issues: Single point failure Scaling Inefficiency All activities are managed by one person/Organization
  • 7. BLOCKCHAIN A blockchain allows for trustless transactions between multiple parties. Or, more importantly, it allows transactions without trust of a third party intermediary! Decentralized system for an exchange a value/asserts ○ Distributed ledger ○ Immutability ○ Consensus ○ Security
  • 8. LET’S START WITH A TRANSACTION THAT OCCURS BETWEEN ACCOUNTS Transaction #200 Account A Account B E.g. Send 2 tokens An example transaction could be: Account A will send 1 tokens to Account B
  • 9. A LEDGER IS A LIST OF TRANSACTIONS (GROUPED INTO BLOCKS) LEDGER Block #100 Last Block: #99 (H) Timestamp: TM, Transaction #399 Transaction #400 Transaction #401 Block #97 Block #98 Block #99 Blocks contain an indeterminate number of transactions
  • 10. BLOCKS ARE CHAINED TOGETHER LEDGER Block #100 Last Block: #99 Transaction #399 Transaction #400 Block #97 Block #98 Block #99 Blocks are generated on a time interval (e.g. every 5 minutes) The ledger is a chain of blocks! Each block is created with a pointer to the previous block creating a blockchain!
  • 11. LEDGER Distributed ledger = Distributed database
  • 12. BLOCKCHAIN Decentralized system for an exchange a value/asserts ○ Distributed ledger ○ Immutability ○ Consensus ○ Security
  • 13. BLOCKCHAIN Decentralized system for an exchange a value/asserts ○ Distributed ledger ○ Immutability ○ Consensus ○ Security
  • 14. CONSENSUS Consensus = Protocol by which peers agree on state of ledger ○ Ensure all peers in the network has exactly the same copy of ledger ○ Fraudulent transactions kept out of the ledger ○ Guarantees to record transactions in chronological order
  • 15. BLOCKCHAIN Decentralized system for an exchange a value/asserts ○ Distributed ledger ○ Immutability ○ Consensus ○ Security
  • 17.
  • 18. Wow!!, thats cool stuff Bitcoin: - Transfer money - Fast transactions - Less fee - Transparent
  • 19. Wow!!, thats cool stuff Bitcoin: - Transfer money - Fast transactions - Less fee - Transparent Great Technology: - Launch my sub currency - ICO (Crowdfunding) - Managing digital assets - Local laws
  • 21. ETHEREUM Ethereum is an open blockchain platform that lets anyone build and use decentralized applications that run on blockchain technology. Ethereum is world of computers
  • 22. HOW DOES ETHEREUM WORK? ○ Ethereum’s basic unit is the account ○ State of every account ○ The Ethereum blockchain tracks the state of every account, and all state transitions on the Ethereum blockchain are transfers of value and information between accounts.
  • 23. ETHEREUM ACCOUNTS: There are two types of accounts: ○ Externally Owned Accounts (EOAs) ○ Contract Accounts, which are controlled by their contract code and can only be “activated” by an EOA
  • 24. ETHEREUM ACCOUNTS: Elliptic Curve Digital Signature Algorithm (ECDSA)
  • 25. ETHEREUM ACCOUNTS: ○ Has an ether balance ○ Can send transactions (ether transfer or trigger contract code), EOA ○ Bytecode ○ Nonce
  • 28. ETHER Ethereum value token is called Ether Denominations: Unit Wei Value Wei wei 1 wei 1 Kwei (babbage) 1e3 wei 1,000 Mwei (lovelace) 1e6 wei 1,000,000 Gwei (shannon) 1e9 wei 1,000,000,000 microether (szabo) 1e12 wei 1,000,000,000,000 milliether (finney) 1e15 wei 1,000,000,000,000,000 ether 1e18 wei 1,000,000,000,000,000,000
  • 29. ETHER SUPPLY ○ 48 days presale (July 2014): $ 60 M ○ 12M created to fund development ○ 5 Eth will created as rewarded for every block ○ 2-3 eths for non winning miners ○ Contract execution user pays Ether’s
  • 30. ETHEREUM VIRTUAL MACHINE ○ Ethereum is “Turing complete”. ○ EVM will load bytecode and execute instructions ○ Every node will run eth client
  • 31. GAS ○ Gas is the metering unit for use of the World Computer ○ Each operation in the EVM consumes gas ○ totalEstGas = startgas * gasprice Transactions 0x60 0x01 0x60 0x02 0x01
  • 32. Operation Name Gas Cost Remark step 1 default amount per execution cycle stop 0 free suicide 0 free sha3 20 sload 20 get from permanent storage sstore 100 put into permanent storage balance 20 create 100 contract creation call 20 initiating a read-only call memory 1 every additional word when expanding memory txdata 5 every byte of data or code for a transaction transaction 500 base fee transaction contract creation 53000 changed in homestead from 21000
  • 34. BITCOIN ● Transactions based ● Block creation ~10mins ● Less number of transactions ● Require high computation power ● Not stopping big miners ● Limited transaction based bitcoin signature(128) ● Limited functions ● Peers can block list transaction ● SHA2 not so secure ● SHA256 is not ASIC resistance ● Account based ● Block creation ~12sec ● Mining algorithm based on memory usage (Gas) ● Can decouple components ● Rich programing language for contracts (Solidity) ● Uses SHA3 ● Customize protocol based on local law ● EthHash is ASIC resistance ETHEREUM
  • 36. ○ Ethereum Client’s ○ Installation of Geth ○ Geth commands ○ Web3JS Apis ○ Solidity ○ Smart contracts ○ Deploying smart contracts
  • 37. ETHEREUM CLIENTS eth pyethapp geth ethereumjs-lib 3rd Party Impl ethereumj ruby-ethereum ethereumjs-lib parity
  • 39. SOLIDITY Solidity is the most popular programming language used to write smart contracts to run on the Ethereum blockchain. It is a high level language which when compiled gets converted to EVM bytecode. This is very similar to the world of Java where there are JVM languages like Scala, Groovy, Clojure, JRuby etc.
  • 40. SOLIDITY INTEGRATION TOOLS IDE’s - Remix - IntelliJ IDEA plugin - Visual Studio Extension - Etheratom - Solium - Emacs Solidity - Package for SublimeText — Solidity language syntax
  • 41. SOLIDITY INTEGRATION TOOLS Solidity Tools - Dapp Build tool, package manager, and deployment assistant for Solidity. - Solidity REPL Instant command-line solidity console. - solgraph - Doxity
  • 42. STRUCTURE OF A CONTRACT - Types - Operators - Functions - Function Modifiers - Events - Enum Types
  • 43. - Types Booleans Integers Address String Enums - Function Types public, private, internal, external - Function Modifiers STRUCTURE OF A CONTRACT
  • 44. - Types Booleans Integers Address String Enums - Function Types Public, private, internal - Function Modifiers STRUCTURE OF A CONTRACT
  • 45. TRUFFLE/EMBARK We have frameworks for web application development such as Ruby on Rails, Python/Django etc, Truffle and Embark are the two most popular frameworks used to develop Dapps. They abstract away lot of the complexities of compiling and deploying your contract on the blockchain.