文件名称:my_simple_voting_dapp:一个简单的投票dapp
文件大小:9KB
文件格式:ZIP
更新时间:2024-06-02 14:29:35
HTML
用法 npm install 使用./node_modules/.bin/ganache-cli启动ganache测试链 使用./node_modules/.bin/solcjs --abi --bin Voting.sol获取abi和代码库文件 在node-cli中 var Web3 = require('web3') var web3 = new Web3(new Web3.providers.HttpProvider('http://localhost:8545')) 使用web3.isConnected()测试web3是否连接了ganache链 复制abi和bin的内容 var abi ={the content of the abi} var bytecode={the content of the bin} var VotingContract = web3.eth.
【文件预览】:
my_simple_voting_dapp-master
----index.html(3KB)
----README.md(4KB)
----.gitignore(21B)
----package-lock.json(26KB)
----package.json(298B)
----Voting.sol(826B)