Remove a market Listing
Removes the specified Listing from the market.
export type RemoveListingProps = { listingId: string; walletUserId?: string; }
const success = await assetlayer.listings.removeListing({ listingId: 'listingId' });
type ReturnType = boolean;
Last updated 1 year ago