Training
nuuneoi
Agenda
• Introduction to Blockchain
• Introduction to Smart Contract Platform
• Smart Contract 101
• Coding with Solidity
• Deploy to Ethereum Network
• Work with Ethereum’s Smart Contract though web3
• Extras
Introduction to
Blockchain
nuuneoi
What is Blockchain? (Speedy Version)
“The Decentralized Database”
What is Blockchain? (Speedy Version)
“The Decentralized Database”
What is Blockchain? (Speedy Version)
“The Decentralized Database”
What is Blockchain? (Speedy Version)
“The Decentralized Database”
What is Blockchain? (Speedy Version)
“The Decentralized Database”
What is Blockchain? (Speedy Version)
“The Decentralized Database”
Introduction to
Smart Contract Platform
nuuneoi
What is Smart Contract Platform?
• Since Blockchain is the decentralized database. How about we let it keep the
“executable code” inside instead than just a simple transaction?
What is Smart Contract Platform?
• Everyone hold the same source code in the decentralized way.
How the code is executed?
• Same as the way transaction is made in Blockchain 1.0 we make a
transaction to call the code instead of making a money transferring tx.
• We call it “Blockchain 2.0”
What else Smart Contract could do?
• Store the variables (States)
• Transaction 1: a = 10
• Transaction 2: a = 20
Ethereum
nuuneoi
Ethereum Networks
Main Net
Network ID: 1
Consensus: PoW
Ropsten
Network ID: 3
Consensus: PoW
Client: Cross-Client
Rinkeby
Network ID: 4
Consensus: PoA
Client: Geth
Kovan
Network ID: 42
Consensus: PoA
Client: Parity
• Since the Ethereum is open sourced. There could be unlimited number of
networks out there and each of them are run separately.
Creating a Wallet
• Install MetaMask
• Chrome plugin
Faucet
• Get Ethereum for FREE! … (Sort of)
• https://faucet.kovan.network/ (Github account required)
Creating another Wallet
• Do it in MetaMask
Make the first transaction
• Let’s transfer some Ethereum from first account to the second one.
• Learn more a bit about Etherscan.
Smart Contract
Programming with
Solidity
nuuneoi
Ethereum Smart Contract
pragma solidity ^0.4.18;
contract SimpleContract {
uint balance;
constructor() public {
// Set initial balance as 1000
balance = 1000;
}
function setBalance(uint newBalance) public {
// Cap balance to be [0, 10000]
require(newBalance <= 10000);
// Set new balance
balance = newBalance;
}
function getBalance() public view returns(uint) {
return balance;
}
}
IDE: Remix
• https://remix.ethereum.org/
Solidity Helloworld
pragma solidity ^0.4.18;
contract SimpleContract {
uint balance;
constructor() public {
// Set initial balance as 1000
balance = 1000;
}
function setBalance(uint newBalance) public {
// Set new balance
balance = newBalance;
}
function getBalance() public view returns(uint) {
return balance;
}
}
Coding: Constructor
pragma solidity ^0.4.18;
contract SimpleContract {
uint balance;
constructor() public {
// Set initial balance as 1000
balance = 1000;
}
function setBalance(uint newBalance) public {
// Set new balance
balance = newBalance;
}
function getBalance() public view returns(uint) {
return balance;
}
}
constructor will be called
only once when deployed
Deploying
• Live Demo: Do it on remix
Working with Smart Contract through web3
• ABI
• BYTECODE
Working with Smart Contract through web3
• ABI
[ { "constant": false, "inputs": [ { "name": "newBalance", "type":
"uint256" } ], "name": "setBalance", "outputs": [], "payable": false,
"stateMutability": "nonpayable", "type": "function" }, { "inputs": [],
"payable": false, "stateMutability": "nonpayable", "type": "constructor" },
{ "constant": true, "inputs": [], "name": "getBalance", "outputs": [ {
"name": "", "type": "uint256" } ], "payable": false, "stateMutability":
"view", "type": "function" } ]
• BYTECODE
608060405234801561001057600080fd5b506103e860005560bf806100256000396000f3006
0806040526004361060485763ffffffff7c0100000000000000000000000000000000000000
00000000000000000060003504166312065fe08114604d578063fb1669ca146071575b60008
0fd5b348015605857600080fd5b50605f6088565b60408051918252519081900360200190f3
5b348015607c57600080fd5b506086600435608e565b005b60005490565b6000555600a1656
27a7a72305820cf77c0639acc98ef9acefd6386fe697d2d71d7478f3b9d459d8778557e3061
4a0029
Working with Smart Contract through web3
ABI
Working with Smart Contract through web3
• Live Coding: HTML + Javascript + jquery + web3.js + MetaMask
• Boilerplate: https://goo.gl/jychkY
Testing
$ npm install –g http-server
$ http-server .
Understand Gas Price
• See it on etherscan
Coding: Types
• Live Coding:
• bool
• int, uint, int8, uint8, int16, uint16, …, int256, uint256
• address
• fixed, ufixed
• byte, bytes
• string
• struct
• mapping
• enum
• []
Coding: Inheritance
• “is” contract A {
uint a;
function getA() public view returns(uint) {
return a;
}
}
contract B is A {
uint b;
function getBsumA() public view returns(uint) {
return b + a;
}
}
Coding: pure function
function func(uint x, uint y) public pure returns (uint) {
return x * (y + 42);
}
Coding: view function
uint a;
function func() public view returns (uint) {
return a;
}
Coding: pure & view function through read fn
uint a;
function func() public view returns (uint) {
return a;
}
Coding: pure & view function through read fn
uint a;
function func() public view returns (uint) {
return a;
}
function func2() public view returns (uint) {
return func();
}
Coding: pure & view function through write fn
uint a;
uint b;
function func() public view returns (uint) {
return a;
}
function func3(uint someVal) public returns (uint) {
b = someVal;
return func() + b;
}
Coding: require
function setBalance(uint newBalance) public {
// Check if newBalance is in [0, 10000]
require(newBalance <= 10000);
// Set new balance
balance = newBalance;
}
Coding: Visibility
• public – Can be either called internally or via messages.
• private – Only visible for the contract they are defined and
not in the derived contract.
• internal – Can only be accessed internally (i.e. from within
the current contract or contracts deriving from it)
• external - Can be called from other contracts and via
transactions. Cannot be called internally.
Coding: modifier
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
function Ownable() public {
owner = msg.sender;
}
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0));
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
https://goo.gl/ZLThph
Coding: modifier
pragma solidity ^0.4.18;
contract SimpleContract is Ownable {
uint balance;
constructor() public {
// Set initial balance as 1000
balance = 1000;
}
function setBalance(uint newBalance) public onlyOwner {
// Set new balance
balance = newBalance;
}
function getBalance() public view returns(uint) {
return balance;
}
}
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
function Ownable() public {
owner = msg.sender;
}
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0));
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
https://goo.gl/ZLThph
Coding: Events
pragma solidity ^0.4.18;
contract SimpleContract is Ownable {
event BalancedUpdated(uint balance);
uint balance;
constructor() public {
// Set initial balance as 1000
balance = 1000;
}
function setBalance(uint newBalance) public onlyOwner {
// Set new balance
balance = newBalance;
// Fire Event
emit BalanceUpdated(newBalance);
}
function getBalance() public view returns(uint) {
return balance;
}
}
Coding: Events
pragma solidity ^0.4.18;
contract SimpleContract is Ownable {
event BalancedUpdated(uint balance);
uint balance;
constructor() public {
// Set initial balance as 1000
balance = 1000;
}
function setBalance(uint newBalance) public onlyOwner {
// Set new balance
balance = newBalance;
// Fire Event
emit BalanceUpdated(newBalance);
}
function getBalance() public view returns(uint) {
return balance;
}
}
var event = SimpleContract.BalanceUpdated();
event.watch(function(error, result) {
// Will be called once there is new event emittted
});
Coding: payable
function register() public payable {
registeredAddresses[msg.sender] = true;
}
Redeploying
• Live Demo: See the difference [new contract address].
• Test the event.
Extras
nuuneoi
What is ERC-20?
// https://github.com/ethereum/EIPs/issues/20
interface ERC20Interface {
function totalSupply() public view returns (uint supply);
function balanceOf(address _owner) public view returns (uint balance);
function transfer(address _to, uint _value) public returns (bool success);
function transferFrom(address _from, address _to, uint _value) public returns (bool success);
function approve(address _spender, uint _value) public returns (bool success);
function allowance(address _owner, address _spender) public view returns (uint remaining);
function decimals() public view returns(uint digits);
event Approval(address indexed _owner, address indexed _spender, uint _value);
}
• ERC-20 is just a contract implemented the interface defined by ERC-20
standard.
Truffle: Solidity Framework
• Highly recommended
• Testable code
• Incremental deployment
• etc.
Store file on IPFS
• https://ipfs.io/
• Upload through Infura
Alternative Public Blockchain
• EOSIO: Smart Contract
• TomoChain: Smart Contract (Ethereum-Forked)
• NEM: Smart Contract
• Stellar: Payment (Non Turing Completed)
Create your own Smart Contract blockchain
• Hyperledger Fabric
• Use Golang to write Smart Contract

Smart Contract programming 101 with Solidity #PizzaHackathon

  • 1.
  • 2.
    Agenda • Introduction toBlockchain • Introduction to Smart Contract Platform • Smart Contract 101 • Coding with Solidity • Deploy to Ethereum Network • Work with Ethereum’s Smart Contract though web3 • Extras
  • 3.
  • 4.
    What is Blockchain?(Speedy Version) “The Decentralized Database”
  • 5.
    What is Blockchain?(Speedy Version) “The Decentralized Database”
  • 6.
    What is Blockchain?(Speedy Version) “The Decentralized Database”
  • 7.
    What is Blockchain?(Speedy Version) “The Decentralized Database”
  • 8.
    What is Blockchain?(Speedy Version) “The Decentralized Database”
  • 9.
    What is Blockchain?(Speedy Version) “The Decentralized Database”
  • 10.
  • 11.
    What is SmartContract Platform? • Since Blockchain is the decentralized database. How about we let it keep the “executable code” inside instead than just a simple transaction?
  • 12.
    What is SmartContract Platform? • Everyone hold the same source code in the decentralized way.
  • 13.
    How the codeis executed? • Same as the way transaction is made in Blockchain 1.0 we make a transaction to call the code instead of making a money transferring tx. • We call it “Blockchain 2.0”
  • 14.
    What else SmartContract could do? • Store the variables (States) • Transaction 1: a = 10 • Transaction 2: a = 20
  • 15.
  • 16.
    Ethereum Networks Main Net NetworkID: 1 Consensus: PoW Ropsten Network ID: 3 Consensus: PoW Client: Cross-Client Rinkeby Network ID: 4 Consensus: PoA Client: Geth Kovan Network ID: 42 Consensus: PoA Client: Parity • Since the Ethereum is open sourced. There could be unlimited number of networks out there and each of them are run separately.
  • 17.
    Creating a Wallet •Install MetaMask • Chrome plugin
  • 18.
    Faucet • Get Ethereumfor FREE! … (Sort of) • https://faucet.kovan.network/ (Github account required)
  • 19.
    Creating another Wallet •Do it in MetaMask
  • 20.
    Make the firsttransaction • Let’s transfer some Ethereum from first account to the second one. • Learn more a bit about Etherscan.
  • 21.
  • 22.
    Ethereum Smart Contract pragmasolidity ^0.4.18; contract SimpleContract { uint balance; constructor() public { // Set initial balance as 1000 balance = 1000; } function setBalance(uint newBalance) public { // Cap balance to be [0, 10000] require(newBalance <= 10000); // Set new balance balance = newBalance; } function getBalance() public view returns(uint) { return balance; } }
  • 23.
  • 24.
    Solidity Helloworld pragma solidity^0.4.18; contract SimpleContract { uint balance; constructor() public { // Set initial balance as 1000 balance = 1000; } function setBalance(uint newBalance) public { // Set new balance balance = newBalance; } function getBalance() public view returns(uint) { return balance; } }
  • 25.
    Coding: Constructor pragma solidity^0.4.18; contract SimpleContract { uint balance; constructor() public { // Set initial balance as 1000 balance = 1000; } function setBalance(uint newBalance) public { // Set new balance balance = newBalance; } function getBalance() public view returns(uint) { return balance; } } constructor will be called only once when deployed
  • 26.
  • 27.
    Working with SmartContract through web3 • ABI • BYTECODE
  • 28.
    Working with SmartContract through web3 • ABI [ { "constant": false, "inputs": [ { "name": "newBalance", "type": "uint256" } ], "name": "setBalance", "outputs": [], "payable": false, "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "payable": false, "stateMutability": "nonpayable", "type": "constructor" }, { "constant": true, "inputs": [], "name": "getBalance", "outputs": [ { "name": "", "type": "uint256" } ], "payable": false, "stateMutability": "view", "type": "function" } ] • BYTECODE 608060405234801561001057600080fd5b506103e860005560bf806100256000396000f3006 0806040526004361060485763ffffffff7c0100000000000000000000000000000000000000 00000000000000000060003504166312065fe08114604d578063fb1669ca146071575b60008 0fd5b348015605857600080fd5b50605f6088565b60408051918252519081900360200190f3 5b348015607c57600080fd5b506086600435608e565b005b60005490565b6000555600a1656 27a7a72305820cf77c0639acc98ef9acefd6386fe697d2d71d7478f3b9d459d8778557e3061 4a0029
  • 29.
    Working with SmartContract through web3 ABI
  • 30.
    Working with SmartContract through web3 • Live Coding: HTML + Javascript + jquery + web3.js + MetaMask • Boilerplate: https://goo.gl/jychkY
  • 31.
    Testing $ npm install–g http-server $ http-server .
  • 32.
    Understand Gas Price •See it on etherscan
  • 33.
    Coding: Types • LiveCoding: • bool • int, uint, int8, uint8, int16, uint16, …, int256, uint256 • address • fixed, ufixed • byte, bytes • string • struct • mapping • enum • []
  • 34.
    Coding: Inheritance • “is”contract A { uint a; function getA() public view returns(uint) { return a; } } contract B is A { uint b; function getBsumA() public view returns(uint) { return b + a; } }
  • 35.
    Coding: pure function functionfunc(uint x, uint y) public pure returns (uint) { return x * (y + 42); }
  • 36.
    Coding: view function uinta; function func() public view returns (uint) { return a; }
  • 37.
    Coding: pure &view function through read fn uint a; function func() public view returns (uint) { return a; }
  • 38.
    Coding: pure &view function through read fn uint a; function func() public view returns (uint) { return a; } function func2() public view returns (uint) { return func(); }
  • 39.
    Coding: pure &view function through write fn uint a; uint b; function func() public view returns (uint) { return a; } function func3(uint someVal) public returns (uint) { b = someVal; return func() + b; }
  • 40.
    Coding: require function setBalance(uintnewBalance) public { // Check if newBalance is in [0, 10000] require(newBalance <= 10000); // Set new balance balance = newBalance; }
  • 41.
    Coding: Visibility • public– Can be either called internally or via messages. • private – Only visible for the contract they are defined and not in the derived contract. • internal – Can only be accessed internally (i.e. from within the current contract or contracts deriving from it) • external - Can be called from other contracts and via transactions. Cannot be called internally.
  • 42.
    Coding: modifier contract Ownable{ address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); function Ownable() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } https://goo.gl/ZLThph
  • 43.
    Coding: modifier pragma solidity^0.4.18; contract SimpleContract is Ownable { uint balance; constructor() public { // Set initial balance as 1000 balance = 1000; } function setBalance(uint newBalance) public onlyOwner { // Set new balance balance = newBalance; } function getBalance() public view returns(uint) { return balance; } } contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); function Ownable() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } https://goo.gl/ZLThph
  • 44.
    Coding: Events pragma solidity^0.4.18; contract SimpleContract is Ownable { event BalancedUpdated(uint balance); uint balance; constructor() public { // Set initial balance as 1000 balance = 1000; } function setBalance(uint newBalance) public onlyOwner { // Set new balance balance = newBalance; // Fire Event emit BalanceUpdated(newBalance); } function getBalance() public view returns(uint) { return balance; } }
  • 45.
    Coding: Events pragma solidity^0.4.18; contract SimpleContract is Ownable { event BalancedUpdated(uint balance); uint balance; constructor() public { // Set initial balance as 1000 balance = 1000; } function setBalance(uint newBalance) public onlyOwner { // Set new balance balance = newBalance; // Fire Event emit BalanceUpdated(newBalance); } function getBalance() public view returns(uint) { return balance; } } var event = SimpleContract.BalanceUpdated(); event.watch(function(error, result) { // Will be called once there is new event emittted });
  • 46.
    Coding: payable function register()public payable { registeredAddresses[msg.sender] = true; }
  • 47.
    Redeploying • Live Demo:See the difference [new contract address]. • Test the event.
  • 48.
  • 49.
    What is ERC-20? //https://github.com/ethereum/EIPs/issues/20 interface ERC20Interface { function totalSupply() public view returns (uint supply); function balanceOf(address _owner) public view returns (uint balance); function transfer(address _to, uint _value) public returns (bool success); function transferFrom(address _from, address _to, uint _value) public returns (bool success); function approve(address _spender, uint _value) public returns (bool success); function allowance(address _owner, address _spender) public view returns (uint remaining); function decimals() public view returns(uint digits); event Approval(address indexed _owner, address indexed _spender, uint _value); } • ERC-20 is just a contract implemented the interface defined by ERC-20 standard.
  • 50.
    Truffle: Solidity Framework •Highly recommended • Testable code • Incremental deployment • etc.
  • 51.
    Store file onIPFS • https://ipfs.io/ • Upload through Infura
  • 52.
    Alternative Public Blockchain •EOSIO: Smart Contract • TomoChain: Smart Contract (Ethereum-Forked) • NEM: Smart Contract • Stellar: Payment (Non Turing Completed)
  • 53.
    Create your ownSmart Contract blockchain • Hyperledger Fabric • Use Golang to write Smart Contract