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