File Coverage

blib/lib/CryptoTron.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1              
2             # Load the Perl pragmas.
3             use 5.010000;
4 1     1   69179 use strict;
  1         4  
5 1     1   5 use warnings;
  1         2  
  1         18  
6 1     1   4  
  1         2  
  1         54  
7             # Load the Perl pragma Exporter.
8             use vars qw(@ISA @EXPORT @EXPORT_OK);
9 1     1   14 use Exporter 'import';
  1         4  
  1         70  
10 1     1   6  
  1         3  
  1         83  
11             # Exporting the implemented subroutine.
12             our @EXPORT = qw();
13              
14             # Base class of this (tron_addr) module.
15             our @ISA = qw(Exporter);
16              
17             # Set the package version.
18             our $VERSION = '0.09';
19              
20             1;
21              
22              
23             =head1 NAME
24              
25             CryptoTron - Perl extension for use with the crypto coin Tron blockchain
26              
27             =head1 SYNOPSIS
28              
29             use CryptoTron::SignTx
30             use CryptoTron::ClaimReward
31             use CryptoTron::AddressConvert
32             use CryptoTron::AddressCheck
33             use CryptoTron::AddrTools
34             use CryptoTron::CreateAccount
35              
36             =head1 DESCRIPTION
37              
38             The module provides methods to query the blockchain of the crypto coin Tron.
39              
40             =head1 SEE ALSO
41              
42             CryptoTron modules:
43              
44             CryptoTron::SignTx
45              
46             CryptoTron::AddrTools
47              
48             CryptoTron::AddressConvert
49              
50             CryptoTron::AddressCheck
51              
52             CryptoTron::ClaimReward
53              
54             CryptoTron::CreateAccount
55              
56             CPAN modules:
57              
58             URI
59              
60             LWP::UserAgent
61              
62             JSON::PP
63              
64             Try::Catch
65              
66             Inline::Python
67              
68             Bitcoin::Crypto::Base58
69              
70             =head1 AUTHOR
71              
72             Dr. Peter Netz, E<lt>ztenretep@cpan.orgE<gt>
73              
74             =head1 COPYRIGHT AND LICENSE
75              
76             Copyright (C) 2022 by Dr. Peter Netz
77              
78             This library is free software; you can redistribute it and/or modify
79             it under the same terms as Perl itself, either Perl version 5.30.0 or,
80             at your option, any later version of Perl 5 you may have available.
81              
82             =cut