Web3js 签名交易

Posted

技术标签:

【中文标题】Web3js 签名交易【英文标题】:Web3js signTransation 【发布时间】:2021-12-25 18:29:00 【问题描述】:

我正在关注文档以便能够在 Kovan 测试网上签署和发送交易。当我控制 txHash 时,我目前得到一个未定义的值。

web3.eth.getTransactionCount(account1, (err, txCount) => 
    // 1)Build Transaction
    const txObject = 
        nonce: web3.utils.toHex(txCount),
        to: account2,
        value: web3.utils.toHex(web3.utils.toWei('0.05', 'ether')),
        gasLimit: web3.utils.toHex(2100),
        gasPrice: web3.utils.toHex(web3.utils.toWei('10', 'gwei'))
    
    
     // 2)Sign Transaction
    const tx = new Tx(txObject,'chain':42)
    tx.sign(privateKey1)
    
    const serializedTransaction = tx.serialize()
    const raw = '0x' + serializedTransaction.toString('hex')

    console.log("raw:", raw)
    console.log("tx:", serializedTransaction)

    // 3)Broadcast Transaction
    web3.eth.sendSignedTransaction(raw, (err, txHash) =>
        console.log('txHash:', txHash)
    )
    // COMMENTED-OUT web3.eth.sendSignedTransaction('0x' + serializedTransaction .toString('hex'))
    // .on('receipt', console.log);
)

【问题讨论】:

【参考方案1】:

signTransaction() 只执行签名。它不会将(签名的)交易广播到网络。

为此,您可以使用sendSignedTransaction() (docs),它将(签名和序列化的)tx 数据提交给提供者,提供者将其广播到网络。

web3.eth.sendSignedTransaction(signedTx.rawTransaction)
.on('receipt', console.log);

【讨论】:

我更新了我的代码,但现在有未定义的任何想法? @PythonCoder1981 你在哪一部分得到undefinedsendSignedTransaction 回调中的 err 是否返回任何非空值? 在 console.log 的 sendSignTransaction 的输出中显示 txHash: undefined @PythonCoder1981 然后它可能在err 变量中返回一个值,它没有设置txHash。 (在 JS 中,undefined 值用于尚未设置值的变量。)您可以检查err 值吗? 谢谢,我在 console.log 后发现了“err”,gas 限制设置不正确,我将它设置为 2100 并将其更改为 21000 并且它起作用了。

以上是关于Web3js 签名交易的主要内容,如果未能解决你的问题,请参考以下文章

web3j - 从签名交易中获取交易详情(金额、gas 价格、gas 限制)

使用 Trezor(硬件钱包)将签名交易发送到 Ropsten 或 Truffle 开发网络

Solidity & Web3js:EIP712 签名 uint256 工作签名 uint256[] 不

如何在 web3js 中进行多笔交易

如何通过 web3js 交易设置 Eth 价格

Web3js 小笔记