import { sendTransaction } from "thirdweb";
import { createAccount } from "thirdweb/extensions/erc4337";
 
const transaction = createAccount({
 contract,
 admin: ...,
 data: ...,
 overrides: {
   ...
 }
});
 
// Send the transaction
await sendTransaction({ transaction, account });