GetTokens
Get tokens of current user.
Parameters
action|Action<WalletTokenResponse>
- The callback function of this method is used to receive the results.
Returns
response class
- CommonResponse<WalletTokenResponse>
Code Example
MWSDK.Solana.Wallet.GetTokens((res) => { CommonResponse<WalletTokenResponse> resObj = res; long code = resObj.code; string message = resObj.message; WalletTokenResponse token = resObj.data; //todo... });
Edit this page on GitHub