Hi everyone
Possibly someone knows how to access the list of public transactions(mempool) via a public node?
Maybe someone knows a list of public nodes and corresponding apis that can be used to get tx data in real time from mempool?
Aug 2, 2021, 5:32 PM
Use web3.js and subscribe to "pendingTransactions" event there
Aug 2, 2021, 5:33 PM
And I will be to access tx data remotely in real time via pending transactions event ?
And is there a way to use web3.js not only with JavaScript, but also with Go?
Aug 2, 2021, 5:35 PM
Yes. But you will get tx hash on this event. You need additionally call getTransaction(hash)
As I know there are bindings or other implementations exists
Aug 2, 2021, 5:35 PM
Thanks a lot
Aug 2, 2021, 5:35 PM
web3.go
:S
https://github.com/cellcycle/go-web3
Aug 2, 2021, 5:46 PM