Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

voyager transaction batch plugin improvements #4012

Open
benluelo opened this issue Mar 10, 2025 · 0 comments
Open

voyager transaction batch plugin improvements #4012

benluelo opened this issue Mar 10, 2025 · 0 comments
Assignees
Labels
A-voyager Area: voyager (relayer) C-enhancement Category: An issue proposing an enhancement or a PR with one. E-hard Call for participation: Hard difficulty. Experience needed to fix: A lot.

Comments

@benluelo
Copy link
Contributor

currently the transaction batch plugin works essentially like this:

  1. N messages to be sent
  2. batch those into B-sized chunks
  3. for all of these, generate one light client update
  4. once the lc update is generated, fetch proofs for all of the messages at the height of the light client update
  5. submit all messages as a conc(submit(...updates, ...B1), seq(waitForClientHeight(), submit(...Bn)))

this has a few issues:

  • if the first message fails (for whatever reason), then the update will never go through. this will cause the trailing messages to spin forever, unless a client is updated to exactly the same height as the update they were expecting (not likely).
  • similar to the first point, and put more generally, this introduces a dependency on the first message for all of the subsequent messages.

an ideal design would instead at step 4 only fetch proofs for the items in the first batch (B1), and then for the rest of the messages queue them as seq(waitForAtLeastClientHeight(), mkMsgs(...Bn)). mkMsgs would then query the latest client state height, and generate proofs at that height instead.

@benluelo benluelo added C-enhancement Category: An issue proposing an enhancement or a PR with one. E-hard Call for participation: Hard difficulty. Experience needed to fix: A lot. A-voyager Area: voyager (relayer) labels Mar 10, 2025
@benluelo benluelo self-assigned this Mar 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-voyager Area: voyager (relayer) C-enhancement Category: An issue proposing an enhancement or a PR with one. E-hard Call for participation: Hard difficulty. Experience needed to fix: A lot.
Projects
None yet
Development

No branches or pull requests

1 participant