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

Language:

CheckMintingStatus

Get status of a minting operation. Because minting may has some delay before success.

Parameters

mintAddresses|List<string> - The mintAddresses of transactions you are planning to query.

action|Action<CommonResponse<GetStatusOfTransactionsResponse>> - The callback function of this method is used to receive the results.

Returns

response class - CommonResponse<GetStatusOfTransactionsResponse>

Code Example


List<string> mintAddresses = new List<string>();
mintAddresses.Add("mint address 1");
mintAddresses.Add("mint address 2");
MWSDK.Solana.Asset.CheckMintingStatus(mintAddresses, (res) =>
{
CommonResponse<GetStatusOfTransactionsResponse> resObj = res;
long code = res.code;
string message = res.message;
GetStatusOfTransactionsResponse transactionStatus = res.data;
//todo...
});

Edit this page on GitHub

Copyright © Mirror World, Inc. 2023
On this page

Home

Integration

Guides

API Reference

Changelog