我想检索2个区块之间的交易历史记录,我遇到了这个重播过滤器 重播包含在一系列区块中的单个交易:
Subscription subscription = web3j.replayTransactionsObservable( <startBlockNumber>, <endBlockNumber>) .subscribe(tx -> { ... });
但是,我找不到与此过滤器相关的任何有效示例。有人可以帮忙提供一个可行的例子吗?
答案 0 :(得分:0)
简单地访问事务对象非常简单:
Web3j web3j = Web3j.build(new HttpService());
web3j.replayTransactionsObservable(DefaultBlockParameterName.EARLIEST, DefaultBlockParameterName.LATEST).subscribe(System.out::println));
将打印出在本地主机上运行的对等节点上发生的所有事务。只需将System.out::println
更改为tx -> //do something with tx
(tx
是org.web3j.protocol.core.methods.response.EthBlock$TransactionObject
)。
请注意,这只会重播历史记录。当将块添加到链中时,您将看不到任何新的交易对象。
如果您想要执行诸如侦听发出的特定事件之类的操作,则会出现一个使用订阅的更复杂示例。如果有帮助,我在下面提供了一个示例。如果您需要特定问题的帮助,请发布问题,以获取更多详细信息和示例代码。
// Prints event emitted from a deployed contract
// Event definition:
// event MyEvent(address indexed _address, uint256 _oldValue, uint256 _newValue);
public static void eventTest() {
try {
Web3j web3j = Web3j.build(new HttpService());
Event event = new Event("MyEvent",
Arrays.asList(new TypeReference<Address>() {}),
Arrays.asList(new TypeReference<Uint256>() {}, new TypeReference<Uint256>() {}));
// Note contract address here. See https://github.com/web3j/web3j/issues/405
EthFilter filter = new EthFilter(DefaultBlockParameterName.EARLIEST, DefaultBlockParameterName.LATEST, "6dd7c1c13df7594c27e0d191fd8cc21efbfc98b4");
filter.addSingleTopic(EventEncoder.encode(event));
web3j.ethLogObservable(filter).subscribe(log -> System.out.println(log.toString()));
}
catch (Throwable t) {
t.printStackTrace();
}
}