text 智能合约上的eth调用方法仅适用于web3

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 智能合约上的eth调用方法仅适用于web3相关的知识,希望对你有一定的参考价值。

const contract = new web3.eth.Contract(abiArray, contractAddr);
var func = contract.methods.myMethod('foo', 'bar')

var encodedFunc = func.encodeABI();

var tx = {
    from: ownerWallet,
    to: contractAddr,
    gas: web3.utils.toHex(1000000), //1m, also tried string '1000000'
    gasPrice: web3.utils.toHex(20000000000), //20gwei, also tried string '20000000000'
    data: encodedFunc
}

//might just be unnecessary three lines
const account = web3.eth.accounts.privateKeyToAccount(ownerPrivate)
console.log(account)
web3.eth.getBalance(ownerWallet).then(console.log)

const signed = await web3.eth.accounts.signTransaction(tx, ownerPrivate)
var trans = web3.eth.sendSignedTransaction(signed.rawTransaction)

以上是关于text 智能合约上的eth调用方法仅适用于web3的主要内容,如果未能解决你的问题,请参考以下文章

使用 Web3 1.0 调用智能合约方法

Eth,如何从智能合约中调用存款功能

web3 接口上的 eth.call 为返回 bytes32/strings 数组的合约函数返回 null 值

以太坊合约地址错误是怎么回事

再深刻理解下web3.js中estimateGas如何计算智能合约消耗的gas量

以太坊源代码 - eth_call以及eth_sendTransaction区别