Upgrade to Pro — share decks privately, control downloads, hide ads and more …

イーサリアムとスマートコントラクト / Ethereum and Smart Contracts

イーサリアムとスマートコントラクト / Ethereum and Smart Contracts

ブロックチェーンハブ主催で開催しているブロックチェーン基盤技術講義『イーサリアムとスマートコントラクト』のスライドです。2017年7月19日(水) に使用しました。

Kenji Saito

July 19, 2017
Tweet

More Decks by Kenji Saito

Other Decks in Technology

Transcript

  1. ( ) SFC ( ) CSO (Chief Science Officer) CEO

    1993 M.Eng ( ) 2006 ( ) SFC 16 P2P 2011 → ( ) — — 2017-07-19 – p.2/40
  2. 1. ⇒ ( ) ⇒ 2. ⇒ ⇒ 3. ⇒

    — — 2017-07-19 – p.9/40
  3. (by ) 1. 2. ( ) ( ) . .

    . cf. by McLuhan cf. by McLuhan — — 2017-07-19 – p.10/40
  4. Vitalik Buterin, “Ethereum White Paper: A NEXT GENERATION SMART CONTRACT

    & DECENTRALIZED APPLICATION PLATFORM” 15 — — 2017-07-19 – p.14/40
  5. EVM : . . . : Solidity — JavaScript LLL

    — Lisp — — 2017-07-19 – p.19/40
  6. Solidity ( ) pragma solidity ˆ0.4.8; contract IndivisibleAsset { /*

    */ string public _name; string public _symbol; uint256 public _quantity; address public _owner; function IndivisibleAsset(string name, string symbol, uint256 quantity) { _name = name; _symbol = symbol; _quantity = quantity; _owner = msg.sender; } function transfer(address to) { if (_owner != msg.sender) { throw; } _owner = to; } } — — 2017-07-19 – p.20/40
  7. Solidity JavaScript ( , ) (constructor) ( ) ( )

    Ether — — 2017-07-19 – p.21/40
  8. The DAO ( ) The DAO Split ( ) 360

    ETH (50∼60 ) (2016/6/17) ( ) ( ; ) (2016/7/20 ) — — 2017-07-19 – p.27/40
  9. — 1. ( ) 2. ( ) 3. ( )

    — — 2017-07-19 – p.36/40
  10. Communicating Promises in the Air CPA : Communicating Promises in

    the Air etc. → — — 2017-07-19 – p.37/40
  11. 10 12 → 120 120 12 12 120 — —

    2017-07-19 – p.38/40