用法
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.
2022-06-14 04:59:02
9KB
HTML
1