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