Send multiple txs at once and await the confirmation of them all #3531
Unanswered
0xrusowsky
asked this question in
Q&A
Replies: 1 comment 1 reply
-
If you use the NonceManager you can achieve sending multiple transactions rapidly. There is no way to guarantee they will occur within the same block, but they could. :) |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I want to send multiple txs at once, so that all of them get included in the same block.
I want my script to perform further actions once the block is confirmed, so I also need to wait for the confirmation of all the txs. Nevertheless, I haven't been able to do so without awaiting each of them separately (therefore having them in different blocks).
This is what I have so far to send all of them in the same block, but I just need to await.
Beta Was this translation helpful? Give feedback.
All reactions