[Node Operator Question] get latest TXs (fastest way(Mempool)) by running op-node #327
-
Are you running the most up to date node software?
Did you check the documentation?
Did you check for duplicate questions?
Issue DescriptionHi I run an op-node with this command :
my goal is to retrieve the latest Txs on L2 in fatest way(from the Sequencer before those blocks are submitted to L1) after the op-node ran I successful called this Curl and get a response from my op-node :
I need to use this rpc : what should i do now? note : Protocol Description. Node LogsNo response Additional InformationNo response FeedbackNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Optimism is featuring a private mempool. The fastest way is probably listening through P2P gossip that I have guided in the previous topic. But is probably hard to do. I have just come up with another method to modify the op-node gossip handler function to send the tx to your application which may be easier. Then you could run that modified op-node and transaction will be streamed to your application. |
Beta Was this translation helpful? Give feedback.
Optimism is featuring a private mempool. The fastest way is probably listening through P2P gossip that I have guided in the previous topic. But is probably hard to do.
#312 (reply in thread)
I have just come up with another method to modify the op-node gossip handler function to send the tx to your application which may be easier. Then you could run that modified op-node and transaction will be streamed to your application.