じゃんけんアプリにEthereumを組み込んでみた
はじめに
じゃんけんに勝つと1ETHをもらえるものを作りました。
イメージはこんな感じです。
少し前に作ったじゃんけんに勝つと1ETHがもらえるdapps。
— ko (@kolife01) 2018年7月1日
ローカル環境のgethにしか対応していないクソゲーw
JavaScript覚えたてで、学校の課題のじゃんけんアプリにEthereumを組み合わせました。#初めてのdapps#dApps pic.twitter.com/1dQ5YzbEPC
ローカル環境のgethで作成したアカウントをそれぞれこのように分けてます。
account[0]→master
account[1]→player
account[2]→pc
アプリの作り方
じゃんけん部は割愛するとしてgethと繋げる部分としてまずweb3を読み込みます。
<script type="text/javascript" src="../web3/bignumber.js/bignumber.min.js"></script>
<script type="text/javascript" src="../web3/dist/web3.js"></script>
var web3 = new Web3();
web3.setProvider(new web3.providers.HttpProvider('http://localhost:8545'));
if(!web3.isConnected()){
alert("not connected! gethを立ち上げてください");
console.log("not connected");
}else{
console.log("connected");
}
アカウント、残高の表示
function watchBalance() {
var add00 = String(web3.eth.accounts[0]);
var add01 = String(web3.eth.accounts[1]);
var add02 = String(web3.eth.accounts[2]);
$("#add00").text(add00);
$("#add01").text(add01);
$("#add02").text(add02);
var add00_balance = web3.eth.getBalance(add00);
var add01_balance = web3.eth.getBalance(add01);
var add02_balance = web3.eth.getBalance(add02);
var add00_balance_eth = web3.fromWei(add00_balance, 'ether');
var add01_balance_eth = web3.fromWei(add01_balance, 'ether');
var add02_balance_eth = web3.fromWei(add02_balance, 'ether');
$("#add00_balance").text(add00_balance_eth +" ETH");
$("#add01_balance").text(add01_balance_eth +" ETH");
$("#add02_balance").text(add02_balance_eth +" ETH");
}
勝利時のトランザクション処理
function win(){
var _sendTransaction = web3.eth.sendTransaction({
from: web3.eth.accounts[2],
to: web3.eth.accounts[1],
value: 1000000000000000000
},)
}
この処理をじゃんけん勝ったときに追加すればOKです。
アプリの使い方
gethの起動
'''
geth --rpc --rpcport 8545 --rpcapi "web3,eth,net,personal" --rpccorsdomain "*" --rpcaddr "0.0.0.0" --datadir "~/eth_testnet" --nodiscover --networkid 10 --unlock 0,1,2 console 2>> ~/eth_testnet/geth.log
'''
アカウントをアンロックしないとトランザクション処理時にエラーになるので、geth立ち上げ時にアカウントロックを解除します。
アカウントロック例
Unlocking account 0 | Attempt 1/3
Passphrase: pass
Unlocking account 0 | Attempt 2/3
Passphrase:
Unlocking account 0 | Attempt 3/3
Passphrase:
マイニングスタートしてじゃんけんをする
miner start()
終わりに
今回はローカル環境だったので次はテストネット上のdappsに挑戦じゃー!
Author And Source
この問題について(じゃんけんアプリにEthereumを組み込んでみた), 我々は、より多くの情報をここで見つけました https://qiita.com/kolife/items/cfae79c123a45d99e3cf著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .