checkStatusOfMinting
Get status of a minting operation. Because minting may has some delay before success.
_14List<String> addresses = new ArrayList<>(); addresses.add("mintAddress1"); addresses.add("mintAddress2");_14_14MirrorWorld.checkStatusOfMinting(addresses,new CheckStatusOfMintingListener() {_14_14 @Override_14 public void onSuccess(CheckStatusOfMintingResponse response) {_14 Log.d("MirrorSDK","result is:" + MirrorGsonUtils.getInstance().toJson(response));_14 }_14_14 @Override_14 public void onCheckFailed(long code, String message) {_14 Log.d("MirrorSDK",MirrorStringUtils.GetFailedNotice("CHECK_STATUS_OFMINTING",code,message));_14 }_14});
Edit this page on GitHub