Web3js 11: 调用智能合约写函数

105 阅读1分钟

前言

求其区块链团队出品

旗下网站


调用智能合约写函数

调用写函数,相当于发送了交易

myContract.methods.setNumber(1234)
    .send({ from: '0x956188a6bD41694BdB13AA5CE168543a03B74770' })
    .on('receipt', function(receipt) {
        console.log(receipt)
})