updateNFTListing
Update NFT Listing on your marketplace instance.
_14String mintAddress = "mint_address";_14Double price = 1;_14_14MirrorWorld.updateNFTListing(mint_address, price, new UpdateListListener() {_14 @Override_14 public void onUpdateSuccess(ListingResponse listingResponse) {_14 Log.d("MirrorSDK","UpdateNFTListing success! New price:"+listingResponse.price);_14 }_14_14 @Override_14 public void onUpdateFailed(long code, String message) {_14 Log.d("MirrorSDK","Update NFT listing faild,code:"+code+" message:"+message);_14 }_14});
Edit this page on GitHub