Delist SkyID from marketplace

After you must have listed a SkyID, to delist it. Implement this code:

async function deListNft(listingId:string) {
        const data = await skynet.contractService.callContractWrite(skynet.contractService.Marketplace.cancelListing(listingId));
        return data;
    }

Last updated