Prepares a transaction to call the "withdraw" function on the contract.
import { sendTransaction } from "thirdweb";import { withdraw } from "thirdweb/extensions/erc4626"; const transaction = withdraw({ contract, assets: ..., receiver: ..., owner: ..., overrides: { ... }}); // Send the transactionawait sendTransaction({ transaction, account });
function withdraw( >,
The options for the "withdraw" function.
>;
A prepared transaction object.