gpt4 book ai didi

blockchain - 如何使用 web3 在以太坊中获取待处理的交易?

转载 作者:行者123 更新时间:2023-12-04 12:42:07 25 4
gpt4 key购买 nike

我需要使用 web3 计算连续交易的随机数在以太坊中,但是 getTransactionCount不返回挂起的交易。

有没有办法使用 web3 获取所有交易,包括待处理和已完成的交易? ??如果不是 web3 ,有没有其他方法可以做到这一点?

最佳答案

您是否尝试使用 web3.eth.filter ?

以下代码应该可以工作。 (目前无法测试自己)

var options = {
fromBlock: "pending",
toBlock: "latest",
address: "0xabc123...",
}

web3.eth.filter(options, (error, result) => {
if (!error)
console.log(result);
});

关于blockchain - 如何使用 web3 在以太坊中获取待处理的交易?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53718941/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com