import { sendTransaction } from "thirdweb";
import { collectAuctionTokens } from "thirdweb/extensions/marketplace";
const transaction = collectAuctionTokens({
contract,
auctionId: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });