Replies: 1 comment 2 replies
-
There is currently a |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
We are trying to integrate Erigon and Chainlink, and we hit the missing feature of subscribing to logs mentioned here: #4030 (comment)
We were going to build a workaround such that on every new head we would simply request logs for the block, however after digging into this further, we found one edge case described here: https://geth.ethereum.org/docs/rpc/pubsub
This says, that in case of re-org the removed logs will be re-delivered. However, having the single subscription for heads we are missing this important feature. The implementation would become extremely difficult if we have to detect reorgs with heads and then backfilling past logs that might be removed.
Do you have a better workaround for the missing logs subscription?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions