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
イーサリアム実習 II / Practicing Ethereum II
Search
Kenji Saito
PRO
November 08, 2017
Technology
0
130
イーサリアム実習 II / Practicing Ethereum II
2017年11月8日(水)、ブロックチェーンアカデミー「スマートコントラクトプログラミング講座(4)」にて使用のスライドです。
Kenji Saito
PRO
November 08, 2017
Tweet
Share
More Decks by Kenji Saito
See All by Kenji Saito
FinTech 7-8 : Blockchain
ks91
PRO
0
65
スマートコントラクトプログラミング / Smart Contract Programming
ks91
PRO
0
14
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
38
FinTech 5-6 : The World of Apps
ks91
PRO
0
100
生成AI による論文執筆サポート・ワークショップ ─ サーベイ/リサーチクエスチョン編 / Workshop on AI-Assisted Paper Writing Support: Survey/Research Question Edition
ks91
PRO
0
71
ブロックチェーン概論とインストール大会 / Introduction to Blockchain and Installation Workshop
ks91
PRO
0
4
FinTech 3-4 : Internet Technology and Governance
ks91
PRO
0
81
民主主義と博愛(Humanitarianism) / Democracy and Humanitarianism
ks91
PRO
0
8
ブロックチェーン概論 / Introduction to Blockchain
ks91
PRO
0
12
Other Decks in Technology
See All in Technology
Open Table Format (OTF) が必要になった背景とその機能 (2025.10.28)
simosako
2
340
AI時代におけるデータの重要性 ~データマネジメントの第一歩~
ryoichi_ota
0
720
オブザーバビリティと育てた ID管理・認証認可基盤の歩み / The Journey of an ID Management, Authentication, and Authorization Platform Nurtured with Observability
kaminashi
1
740
RemoteFunctionを使ったコロケーション
mkazutaka
1
120
Retrospectiveを振り返ろう
nakasho
0
120
事業開発におけるDify活用事例
kentarofujii
5
1.5k
What's new in OpenShift 4.20
redhatlivestreaming
0
290
AI-Readyを目指した非構造化データのメダリオンアーキテクチャ
r_miura
1
330
現場の壁を乗り越えて、 「計装注入」が拓く オブザーバビリティ / Beyond the Field Barriers: Instrumentation Injection and the Future of Observability
aoto
PRO
1
620
マルチエージェントのチームビルディング_2025-10-25
shinoyamada
0
190
SCONE - 動画配信の帯域を最適化する新プロトコル
kazuho
1
390
From Natural Language to K8s Operations: The MCP Architecture and Practice of kubectl-ai
appleboy
0
250
Featured
See All Featured
BBQ
matthewcrist
89
9.9k
Balancing Empowerment & Direction
lara
5
700
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.2k
Building an army of robots
kneath
305
46k
Building a Scalable Design System with Sketch
lauravandoore
463
33k
GraphQLの誤解/rethinking-graphql
sonatard
73
11k
How To Stay Up To Date on Web Technology
chriscoyier
791
250k
For a Future-Friendly Web
brad_frost
180
10k
Rails Girls Zürich Keynote
gr2m
95
14k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
30
2.9k
Product Roadmaps are Hard
iamctodd
PRO
55
11k
A Tale of Four Properties
chriscoyier
161
23k
Transcript
II (4) CSO / SFC
[email protected]
II – (4) –
2017-05-31 – p.1/54
1. : 2. ∼ ∼ II – (4) – 2017-05-31
– p.2/54
1. : 2. : 3. / II – (4) –
2017-05-31 – p.3/54
1. II – (4) – 2017-05-31 – p.4/54
(m2 ) 1 1 II – (4) – 2017-05-31 –
p.5/54
IndivisibleAsset string public _name; string public _symbol; uint256 public _quantity;
address public _owner; _name ( ) _symbol _quantity (m2 ) _owner _ Solidity . . . II – (4) – 2017-05-31 – p.6/54
IndivisibleAsset event Transfer(address indexed from, address indexed to); from to
II – (4) – 2017-05-31 – p.7/54
IndivisibleAsset function IndivisibleAsset(string name, string symbol, uint256 quantity) { _name
= name; _symbol = symbol; _quantity = quantity; _owner = msg.sender; } II – (4) – 2017-05-31 – p.8/54
IndivisibleAsset getOwner() function getOwner() returns (address owner) { return (_owner);
} II – (4) – 2017-05-31 – p.9/54
IndivisibleAsset transfer() function transfer(address to) { if (_owner != msg.sender)
{ throw; } _owner = to; Transfer(msg.sender, to); } ( / ) $ populus compile II – (4) – 2017-05-31 – p.10/54
(1) import pytest @pytest.fixture() def asset_contract(chain): AssetFactory = chain.provider.get_contract_factory(’IndivisibleAsset’) deploy_txid
= AssetFactory.deploy(args=[ "5322 Endo, Fujisawa", "mˆ2", 300, ]) contract_address = chain.wait.for_contract_address(deploy_txid) return AssetFactory(address=contract_address) SFC (300m2 ) II – (4) – 2017-05-31 – p.11/54
(2) def test_indivisible_assset(asset_contract, chain): account0 = chain.web3.eth.accounts[0] account1 = chain.web3.eth.accounts[1]
assert asset_contract.call().getOwner() == account0 txid = asset_contract.transact().transfer(account1) chain.wait.for_receipt(txid) assert asset_contract.call().getOwner() == account1 account0 account1 II – (4) – 2017-05-31 – p.12/54
$ py.test -k test_indivisible_asset.py II – (4) – 2017-05-31 –
p.13/54
2. II – (4) – 2017-05-31 – p.14/54
transfer settle, retrieve asset, retrieve token 3 II – (4)
– 2017-05-31 – p.15/54
1. ( ) 2. ( ) 3. ( ) II
– (4) – 2017-05-31 – p.16/54
OneTimeEscrow settle() function settle() { address addr = this; /*
this */ if (_token.getBalanceOf(this) < _price || _asset.getOwner() != addr) { throw; } _token.transfer(_seller , _price); _asset.transfer(_buyer); Settled(); /* */ } settle() transfer ( / ) $ populus compile II – (4) – 2017-05-31 – p.17/54
(1) import pytest @pytest.fixture() def token_contract(chain): . . . @pytest.fixture()
def asset_contract(chain): . . . II – (4) – 2017-05-31 – p.18/54
(2) def test_one_time_escrow(token_contract, asset_contract, chain): account0 = chain.web3.eth.accounts[0] account1 =
chain.web3.eth.accounts[1] txid = chain.web3.eth.sendTransaction({ ’from’: account0, ’to’: account1, ’value’: chain.web3.toWei(1, "ether") }) chain.wait.for_receipt(txid) txid = token_contract.transact().transfer(account1, 300) chain.wait.for_receipt(txid) account0 account1 1Ether 300BcH 300BcH TX II – (4) – 2017-05-31 – p.19/54
(3) EscrowFactory = chain.provider.get_contract_factory(’OneTimeEscrow’) txid = EscrowFactory.deploy(args=[ token_contract.address, account1, asset_contract.address,
account0, 300, ]) contract_address = chain.wait.for_contract_address(txid) EscrowFactory.address = contract_address; account1 account0 300BcH II – (4) – 2017-05-31 – p.20/54
(4) txid = token_contract.transact({ ’from’: account1 }).transfer(contract_address, 300) chain.wait.for_receipt(txid) txid
= asset_contract.transact().transfer(contract_address) chain.wait.for_receipt(txid) assert token_contract.call().getBalanceOf(account0) == 999700 assert token_contract.call().getBalanceOf(account1) == 0 assert token_contract.call().getBalanceOf(contract_address) == 300 assert asset_contract.call().getOwner() == contract_address account1 300BcH account0 II – (4) – 2017-05-31 – p.21/54
(5) txid = EscrowFactory.transact().settle(); chain.wait.for_receipt(txid) assert token_contract.call().getBalanceOf(account0) == 1000000 assert
token_contract.call().getBalanceOf(account1) == 0 assert token_contract.call().getBalanceOf(contract_address) == 0 assert asset_contract.call().getOwner() == account1 settle() II – (4) – 2017-05-31 – p.22/54
$ py.test -k test_one_time_escrow.py : settle() II – (4) –
2017-05-31 – p.23/54
3. / Hyperledger (Fabric, Sawtooth, Iroha, Burrow, Indy) R3 Corda
Enterprise Ethereum Alliance Tangle (IOTA) BBc-1 II – (4) – 2017-05-31 – p.24/54
( ) ( ) ( ) IoT / / (
) II – (4) – 2017-05-31 – p.25/54
( = ) ( ) ( ) ↑ II –
(4) – 2017-05-31 – p.26/54
(Linux Foundation) https://www.hyperledger.org Apache License, Version 2.0 II – (4)
– 2017-05-31 – p.27/54
/ : Proposal → Incubation → Active → Deprecated →
End of Life II – (4) – 2017-05-31 – p.28/54
( https://www.hyperledger.org/about/members ) II – (4) – 2017-05-31 – p.29/54
Fabric (IBM) IBM Digital Asset Holdings http://hyperledger-fabric.readthedocs.io/en/latest/ State : Active
II – (4) – 2017-05-31 – p.30/54
( ) ( ) II – (4) – 2017-05-31 –
p.31/54
(Docker) (chaincode) PBFT (Practical BFT) RocksDB CA PKI v1.0 DB
CA BFT : Byzantine Fault Tolerance ( ) CA : Certificate Authority ( ) PKI : Public Key Infrastructure ( ) II – (4) – 2017-05-31 – p.32/54
Sawtooth (Intel) https://github.com/hyperledger/sawtooth-core State : Active II – (4) –
2017-05-31 – p.33/54
( ) (permissioned) (permissionless) Proof of Elapsed Time (PoET) Proof
of Work ( ) (Intel ) / Transaction Families II – (4) – 2017-05-31 – p.34/54
(transaction families) (PoET ) PoET ( ) (transaction families) II
– (4) – 2017-05-31 – p.35/54
Iroha ( ) https://github.com/hyperledger/iroha State : Active II – (4)
– 2017-05-31 – p.36/54
( ) DLT : C++ Sumeragi Whitepaper : https://github.com/hyperledger/iroha/blob/master/docs/iroha_whitepaper.md II
– (4) – 2017-05-31 – p.37/54
JVM (chaincode) Sumeragi (BFT) JVM : Java Virtual Machine (Java
) II – (4) – 2017-05-31 – p.38/54
Corda (R3) Tangle (IOTA) II – (4) – 2017-05-31 –
p.39/54
Corda (R3) R3 https://github.com/corda/corda II – (4) – 2017-05-31 –
p.40/54
R3 R3CEV 77 (2017 2 ) 3 SBI R3Net( )
Corda II – (4) – 2017-05-31 – p.41/54
Corda Corda : : II – (4) – 2017-05-31 –
p.42/54
( ) + CAP ( DLT ) II – (4)
– 2017-05-31 – p.43/54
JVM ( ) (Uniqueness Services) UTXO X.509 PKI ( )
UTXO : Unspent TX (transaction) Output ( ) X.509 : PKI II – (4) – 2017-05-31 – p.44/54
Tangle (IOTA) IoT IOTA https://iota.readme.io II – (4) – 2017-05-31
– p.45/54
IoT TX TX (DAG) ( ) TX Tangle II –
(4) – 2017-05-31 – p.46/54
IoT (IOTA) DAG ( ) DAG II – (4) –
2017-05-31 – p.47/54
BBc-1 (Beyond Blockchain One) https://github.com/beyond-blockchain/bbc1 II – (4) – 2017-05-31
– p.48/54
Proof of Work Bitcoin ( ) BBc Trust ( )
https://beyond-blockchain.org/public/bbc-trust.pdf ( ) https://beyond-blockchain.org/public/bbc-trust_ja.pdf ( ) Design Paper (white paper) https://beyond-blockchain.org/public/bbc1-design-paper.pdf II – (4) – 2017-05-31 – p.49/54
( Python) ( DAG) ( ) UTXO II – (4)
– 2017-05-31 – p.50/54
DLT DLT II – (4) – 2017-05-31 – p.51/54
( ) (by ) (since 1984) ( ) ( )
( ) . . . ( ) ⇒ . . . II – (4) – 2017-05-31 – p.52/54
( ) ( ) ( ) ( ) ( )
( ) (by ) ⇒ DLT II – (4) – 2017-05-31 – p.53/54
⇒ ⇒ II – (4) – 2017-05-31 – p.54/54