Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
イーサリアムとスマートコントラクト / Ethereum and Smart Contracts
Search
Kenji Saito
PRO
July 19, 2017
Technology
0
890
イーサリアムとスマートコントラクト / Ethereum and Smart Contracts
ブロックチェーンハブ主催で開催しているブロックチェーン基盤技術講義『イーサリアムとスマートコントラクト』のスライドです。2017年7月19日(水) に使用しました。
Kenji Saito
PRO
July 19, 2017
Tweet
Share
More Decks by Kenji Saito
See All by Kenji Saito
スマートコントラクトデザイン / Smart Contract Design
ks91
PRO
0
7
FinTech 7-8 : Blockchain
ks91
PRO
0
73
スマートコントラクトプログラミング / Smart Contract Programming
ks91
PRO
0
19
AI が研究する時代に、人はどう育つのか? — GAMER PAT にみる "シリアスゲームとしての知的訓練" / In an era where AI conducts research, how will humans develop? — "Intellectual Training as a Serious Game" Seen in GAMER PAT
ks91
PRO
0
58
FinTech 5-6 : The World of Apps
ks91
PRO
0
110
生成AI による論文執筆サポート・ワークショップ ─ サーベイ/リサーチクエスチョン編 / Workshop on AI-Assisted Paper Writing Support: Survey/Research Question Edition
ks91
PRO
0
83
ブロックチェーン概論とインストール大会 / Introduction to Blockchain and Installation Workshop
ks91
PRO
0
11
FinTech 3-4 : Internet Technology and Governance
ks91
PRO
0
83
民主主義と博愛(Humanitarianism) / Democracy and Humanitarianism
ks91
PRO
0
19
Other Decks in Technology
See All in Technology
ViteとTypeScriptのProject Referencesで 大規模モノレポのUIカタログのリリースサイクルを高速化する
shuta13
3
230
re:Invent 2025の見どころと便利アイテムをご紹介 / Highlights and Useful Items for re:Invent 2025
yuj1osm
0
380
SREのキャリアから経営に近づく - Enterprise Risk Managementを基に -
shonansurvivors
1
420
AWS DMS で SQL Server を移行してみた/aws-dms-sql-server-migration
emiki
0
260
Raycast AI APIを使ってちょっと便利なAI拡張機能を作ってみた
kawamataryo
0
190
JAWS UG AI/ML #32 Amazon BedrockモデルのライフサイクルとEOL対応/How Amazon Bedrock Model Lifecycle Works
quiver
1
130
デザインとエンジニアリングの架け橋を目指す OPTiMのデザインシステム「nucleus」の軌跡と広げ方
optim
0
120
Oracle Base Database Service 技術詳細
oracle4engineer
PRO
14
82k
生成AI時代のPythonセキュリティとガバナンス
abenben
0
150
AWSが好きすぎて、41歳でエンジニアになり、AAIを経由してAWSパートナー企業に入った話
yama3133
2
200
What's new in OpenShift 4.20
redhatlivestreaming
0
390
様々なファイルシステム
sat
PRO
0
270
Featured
See All Featured
Statistics for Hackers
jakevdp
799
220k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
What’s in a name? Adding method to the madness
productmarketing
PRO
24
3.7k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
9
940
Rebuilding a faster, lazier Slack
samanthasiow
84
9.2k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.1k
KATA
mclloyd
PRO
32
15k
Music & Morning Musume
bryan
46
6.9k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
127
54k
Why Our Code Smells
bkeepers
PRO
340
57k
The Power of CSS Pseudo Elements
geoffreycrofte
80
6k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.2k
Transcript
CSO / SFC
[email protected]
— — 2017-07-19 – p.1/40
( ) SFC ( ) CSO (Chief Science Officer) CEO
1993 M.Eng ( ) 2006 ( ) SFC 16 P2P 2011 → ( ) — — 2017-07-19 – p.2/40
(EVM) — — 2017-07-19 – p.3/40
1. 2. (Ethereum) 3. 4. 5. OS 6. — —
2017-07-19 – p.4/40
1. — — 2017-07-19 – p.5/40
— — 2017-07-19 – p.6/40
. . . — — 2017-07-19 – p.7/40
vs. — — 2017-07-19 – p.8/40
1. ⇒ ( ) ⇒ 2. ⇒ ⇒ 3. ⇒
— — 2017-07-19 – p.9/40
(by ) 1. 2. ( ) ( ) . .
. cf. by McLuhan cf. by McLuhan — — 2017-07-19 – p.10/40
⇒ : ⇒ — — 2017-07-19 – p.11/40
⇒ : ⇒ — — 2017-07-19 – p.12/40
2. (Ethereum) EVM (Ethereum Virtual Machine) — — 2017-07-19 –
p.13/40
Vitalik Buterin, “Ethereum White Paper: A NEXT GENERATION SMART CONTRACT
& DECENTRALIZED APPLICATION PLATFORM” 15 — — 2017-07-19 – p.14/40
= run — — 2017-07-19 – p.15/40
Ether Ethereum EOA : Externally-Owned Account Ether EVM EVM —
— 2017-07-19 – p.16/40
EVM : Ethereum Virtual Machine Gas — — 2017-07-19 –
p.17/40
3. — — 2017-07-19 – p.18/40
EVM : . . . : Solidity — JavaScript LLL
— Lisp — — 2017-07-19 – p.19/40
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
Solidity JavaScript ( , ) (constructor) ( ) ( )
Ether — — 2017-07-19 – p.21/40
— — 2017-07-19 – p.22/40
4. ADEPT — — 2017-07-19 – p.23/40
ADEPT ADEPT : IBM IoT → — — 2017-07-19 –
p.24/40
. . . — — 2017-07-19 – p.25/40
⇒ — — 2017-07-19 – p.26/40
The DAO ( ) The DAO Split ( ) 360
ETH (50∼60 ) (2016/6/17) ( ) ( ; ) (2016/7/20 ) — — 2017-07-19 – p.27/40
5. OS — — 2017-07-19 – p.28/40
OS (2007) — — 2017-07-19 – p.29/40
OS ↑ cf. NPO/NGO — — 2017-07-19 – p.30/40
OS — — 2017-07-19 – p.31/40
Uber — — 2017-07-19 – p.32/40
Uber Uber P2P + Uber — — 2017-07-19 – p.33/40
6. / . . . — — 2017-07-19 – p.34/40
( ) / / — — 2017-07-19 – p.35/40
— 1. ( ) 2. ( ) 3. ( )
— — 2017-07-19 – p.36/40
Communicating Promises in the Air CPA : Communicating Promises in
the Air etc. → — — 2017-07-19 – p.37/40
10 12 → 120 120 12 12 120 — —
2017-07-19 – p.38/40
— — 2017-07-19 – p.39/40
— — 2017-07-19 – p.40/40