GetTokensByWallet
Get tokens by wallet address.
Parameters
wallet_address|string
- Which wallet you want to query.
action|Action<string>
- The callback function of this method is used to receive the results.
Returns
response class
- string
Code Example
string walletAddress = "target wallet address";MWSDK.Polygon.Wallet.GetTokensByWallet(walletAddress,(res) => { string resStr = res; //todo...});
Edit this page on GitHub