import { sendTransaction } from "thirdweb";
import { aggregate3 } from "thirdweb/extensions/multicall3";
const transaction = aggregate3({
contract,
calls: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });