We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to get tron token/stable coin's balance? For ex. - USDT Tron
What i can find it is ...
Future<double> getTronAccountBalance({required String walletAddress}) async { try { final response = await tronClient.request( TronRequestGetAccountBalance( address: TronAddress(walletAddress), ), ); dev.log(response); final balance = double.parse(response); return balance; } catch (error) { throw ("error in getAccountBalance $error"); } }
Could anyone please provide way to get balance of tron token(not tron native)? hope you understand!!!
The text was updated successfully, but these errors were encountered:
How to get tron token/stable coin's balance? For ex. - USDT Tron What i can find it is ... Future<double> getTronAccountBalance({required String walletAddress}) async { try { final response = await tronClient.request( TronRequestGetAccountBalance( address: TronAddress(walletAddress), ), ); dev.log(response); final balance = double.parse(response); return balance; } catch (error) { throw ("error in getAccountBalance $error"); } } Could anyone please provide way to get balance of tron token(not tron native)? hope you understand!!!
hi, you can find some contract interaction examples here
Sorry, something went wrong.
No branches or pull requests
How to get tron token/stable coin's balance?
For ex. - USDT Tron
What i can find it is ...
Could anyone please provide way to get balance of tron token(not tron native)?
hope you understand!!!
The text was updated successfully, but these errors were encountered: