You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So here's the detailed step-by-step of what we understood what happend:
the listener subscribes to events using ethers;
the subscription is via polling;
this listener uses the first RPC that is being passed via the provider;
that RPC failed (as it does quite commonly with arbitrum RPCs) during the poll;
Open event missed.
Posible solutions
Poll for events manually, define a range of blocks to gather the info form, and move the pointer upon completion.
Change the current architecture to allow multiple listeners to be running in parallel (multiple RPCs subscriptions, Subgraphs, ponder, lite nodes, etc); use a message broker to enqueue the mssages and let the solver be the worker.
Some other...?
The text was updated successfully, but these errors were encountered:
The main goal for this is to focus the work towards reliability and let the speed as a secondary milestone.
Demo (mini) post-mortem
During the demo at the L2 Working Group - Call #3, the intent was not able to go through.
So here's the detailed step-by-step of what we understood what happend:
Posible solutions
The text was updated successfully, but these errors were encountered: