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

Language:

GetTransactionsByWallet

Get transactions of target user.

Parameters

wallet_address|string - Which wallet you want to query.

limit|int - The transaction limit.

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

Returns

response class - CommonResponse<EVMResGetTransactionsByWallet>

Code Example


string wallet_address = "target wallet address";
int limit = 1;
MWSDK.Ethereum.Wallet.GetTransactionsByWallet(wallet_address, limit, (res) =>
{
CommonResponse<EVMResGetTransactionsByWallet> resObj = res;
long code = resObj.code;
string message = resObj.message;
EVMResGetTransactionsByWallet transactions = resObj.data;
//todo...
});

Edit this page on GitHub

Copyright © Mirror World, Inc. 2023
On this page

Home

Integration

Guides

API Reference

Changelog