removeListing()

Remove a market Listing

Removes the specified Listing from the market.

Parameters

export type RemoveListingProps = {
    listingId: string;
    walletUserId?: string;
}

Examples

const success = await assetlayer.listings.removeListing({
    listingId: 'listingId'
});

Return Types

type ReturnType = boolean;

Last updated