does ethers js support batchcalls ? #4685
fullstackomar
started this conversation in
General
Replies: 1 comment 6 replies
-
By default, ethers v6 batches all calls using the json-rpc batch functionality, but when sending a transaction there are many fields that ethers needs to populate. You can populate these manually, using But if you want them both in the same transaction, you would have to use a multicall or contract wallet. Can you explain your use case more, and I might be able to help more. :) |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to batchcall 2 transaction into a single transaction so I can sendTransaction also deploy smart contract , how can i achieve this ?
I want to call sendTransaction and deploy into a single call how can I batchcall in ethers js , is it available yet ?
Beta Was this translation helpful? Give feedback.
All reactions