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

Language:

CheckTransactionsStatus

Get status of transactions.

Parameters

signatures|List<string> - The signatures 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> signatures = new List<string>();
signatures.Add("signature 1");
signatures.Add("signature 2");
MWSDK.Solana.Asset.CheckTransactionsStatus(signatures, (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