import { sendTransaction } from "thirdweb";
import { withdraw } from "thirdweb/extensions/erc4626";
const transaction = withdraw({
contract,
assets: ...,
receiver: ...,
owner: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });