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