NAME
CryptoTron::GetAccount - Perl extension for use with the blockchain of the crypto coin Tron.
SYNOPSIS
use CryptoTron::GetAccount;
# Initialise the public key as Base58 address.
my $PublicKeyBase58 = 'TQHgMpVzWkhSsRB4BzZgmV8uW4cFL8eaBr';
# Set the output format flag.
my $OutputFlag = ["RAW"|"STR"|""];
# Get response and print the result into the terminal window.
my $response = WithdrawBalance({
address => $PublicKeyBase58,
outflag => $OutputFlag
});
print $response;
# Print the account info into the terminal window.
print $account_info;
DESCRIPTION
The module requests the withdraw balance infos from the Tron blockchain.
SEE ALSO
CryptoTron::JsonHttp
CryptoTron:AddressConvert
CryptoTron:AddressCheck
AUTHOR
Dr. Peter Netz, <ztenretep@cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2022 by Dr. Peter Netz
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.30.0 or, at your option, any later version of Perl 5 you may have available.