import { buyFromListing } from "thirdweb/extensions/marketplace";
import { sendTransaction } from "thirdweb";
const transaction = buyFromListing({
contract,
listingId: 1n,
quantity: 1n,
recipient: "0x...",
});
await sendTransaction({ transaction, account });