1. 首页
  2. 数据库
  3. 其它
  4. solidity 以太坊区块链Truffle webpack开发入门 (九) 新建/创建合约

solidity 以太坊区块链Truffle webpack开发入门 (九) 新建/创建合约

上传者: 2021-01-31 08:02:20上传 PDF文件 25.23KB 热度 23次
新建合约 原文地址 新建一个合约 MetaCoin.new().then(function(instance) { // Print the new address console.log(instance.address); }).catch(function(err) { // There was an error! Handle it. }); 如果你已经有一个合约地址address 了,那么你可以指定新合约使用这个地址 var instance = MetaCoin.at(0x1234...); 关于转账,Ether(web3.eth)有现成的方法,可以不用在
用户评论