Skip to main content
BETA
HomeIntegration BuilderAPI ReferenceGuidesChangelog
View Mirror World on Github
Join the Discord server

Language:

cancelNFTListing

Cancel NFT Listing on your marketplace instance.


Activity activity = this;
String mintAddress = "mint_address";
doubld price = 1.0;
String auctionHouse = "auction_house";
MirrorWorld.Solana.Asset.cancelNFTListing(activity, mintAddress, price, auctionHouse, new CancelListListener() {
@Override
public void onCancelSuccess(ListingResponse listingResponse) {
Log.d("MirrorSDK","CancelNFTListing success! Mint address is "+listingResponse.mint_address);
}
@Override
public void onCancelFailed(long code, String message) {
Log.d("MirrorSDK","Cancel NFT listing faild,code:"+code+" message:"+message);
}
});

Edit this page on GitHub

Copyright © Mirror World, Inc. 2023
On this page

    Home

    Integration

    Guides

    API Reference

    Changelog