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