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