import { sendTransaction } from "thirdweb";
import { executeWithSig } from "thirdweb/extensions/erc7702";
 
const transaction = executeWithSig({
 contract,
 wrappedCalls: ...,
 signature: ...,
 overrides: {
   ...
 }
});
 
// Send the transaction
await sendTransaction({ transaction, account });