使用async / await承诺NodeJS获取事务哈希

时间:2019-02-14 13:51:55

标签: javascript node.js asynchronous promise

我想通过运行以下代码来获取交易哈希:

'Voicemeter!Voicemeter.Program::VBVMR_Input_GetDeviceDescA'

该代码适用于与交易有关的事务,我可以在Etherscan上看到它们。问题是关于Promises的JavaScript。

在这种情况下,控制台注销:

const transactionId = await web3.eth.sendSignedTransaction('0x' + serializedTransaction.toString('hex') ).on('receipt', function(receipt) {
    return receipt.transactionHash;
});

// Now it is known the transaction ID, so let's build the public Etherscan url where the transaction details can be viewed.
const url = `https://rinkeby.etherscan.io/tx/${transactionId}`
console.log(url)

我尝试了不同的方法来获取事务哈希,但是没有成功。你能帮助我吗?这也可能是更好地了解Promises运作方式的正确机会。

1 个答案:

答案 0 :(得分:1)

您正在将诺言与事件提交者结合在一起(这是可能的),但是我建议在基于事件提交者的方法之后尝试首先基于诺言的方法。之后,您可以尝试混合。 :)

  1. 基于承诺:

    async function fetch(){ const transactionID = await web3.eth.sendSignedTransaction('0x'+serializedTransaction.toString('hex'));return transactionID; }let a = fetch() a.then(response=>console.log('transactionHash => ' + response)   .catch(error => console.log('error with sending transaction => ' + error);
    
  2. 基于事件的发射器:

    const transactionID = web3.eth.sendSignedTransaction('0x'+
    serializedTransaction.toString('hex'))
    .on('transactionHash',console.log) 
    .on('receipt', console.log);