Ethereum:第一个Dapp

第一个Dapp-Voting

  1. 创建工作目录
mkdir Voting
  1. 安装testrpc、web3和solc
npm install ethereal-testrpc [email protected] sole

3.启动testrpc

testrpc

如果运行成功了,如下图所示:


Ethereum:第一个Dapp_第1张图片
success.png

testrpc创建了10个账户,每个账户都有100个eth可供使用。

4.编写合约:简单的Voting代码。
5.启动Node,使用web3与blockchain交互

> Web3 = require('Web3') //引用Web3库
> web3 = new Web3(new Web3.providers.HttpProvider('http://localhost:8545'));//使用server地址初始化web3
> web3.eth.accounts //查询账户
[ '0xd84f54f54f18a5ed94246cdef94c525454e0b607',
  '0xdf1892ff499fe2683d5f017d6a97c5e8053cae76',
  '0x8a624e7852ec62f3c28a4fa3b1c24ffc02228c5f',
  '0xd931a86fd7673a0e18dadc024cda309483dabe27',
  '0x77d85933e3b9725b42fbf753dba059538c4e2d28',
  '0x467d5ccd570397fab0026a0f8f68b0026e43ced5',
  '0xbc1ee573d36b8009d23918a48d6e708166a706a0',
  '0xc4e1275f17012beba77c3e3c94ea97cb0b3cd9b0',
  '0x8083c17ce4d339f1e9f09c8541ecb32a733f5aae',
  '0xbc19808198a4b4d88f3db83e9ae22e1e7bde20f1' ]
可以看到web3提供的账户与testrpc服务所提供的账户是一致的。
> solc = require('solc')//引用solc
> code = fs.readFileSync('Voting.sol').toString();//引入合约文件
> compileCode = solc.compile(code);//编译合约
> byteCode = compileCode.contracts[':Voting'].bytecode;//将来部署到blockchain的执行code
> abi = compileCode.contracts[':Voting'].interface;//contract的接口(ABI)
> abiDefinition = JSON.parse(abiDefinition);
部署contract:
> VotingContract = web3.eth.contract(abiDefinition);//
> deployedContract = VotingContract.new(['A','B','C'],{data:byteCode,from:web3.eth.accounts[0],gas:470000});//部署
> deployedContract.address
'0xd1b2cb25b7d6bf9fd7775d46610aa6747fd75615'//合约地址
> contractInstance = VotingContract.at(deployedContract.address)//初始化,到此我们就可以调用合约中的方法了
> contractInstance.totalVotesFor('A').toString();//查询A的票数
'0'
> contractInstance.voteForCandidate('A',{from:web3.eth.accounts[0]});//给A投票
'0x21298cd14cad4ca81ce8a69372b4e95e646d50e7dba4433242e6b2dab2eece04'
> contractInstance.totalVotesFor('A').toString();
'1'

到此在shell上部署成功,接些来是,与blockchain交互的界面。
index.html
index.js

完成之后,即可使用浏览器打开index.html来进行投票了,如果能够看到投票,并看到更新后的票数,那么恭喜你,第一个Dapp已经成功运行了。


Ethereum:第一个Dapp_第2张图片
Voting.png

你可能感兴趣的:(Ethereum:第一个Dapp)