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