NAME

CryptoTron::AccountTools - Perl extension for use with crypto coin Tron addresses

SYNOPSIS

use CryptoTron::GetAccount_JsonStr;

# Declare the public keys.
my $PublicKeyBase58 = 'TQHgMpVzWkhSsRB4BzZgmV8uW4cFL8eaBr';
my $PublicKeyHex = '419D1015E669C2DF831003C5C54CEB48DA613D9979';

# Convert the public keys.
my $HexAddr = to_hex_addr($PublicKeyBase58);
print $HexAddr . "\n";
my $Base58Addr = to_base58_addr($PublicKeyHex);
print $Base58Addr . "\n";

DESCRIPTION

Get account info from the Tron blockchain.

SEE ALSO

Bitcoin::Crypto::Base58

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.