File Coverage

blib/lib/Blockchain/Ethereum/ABI.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 7 7 100.0


line stmt bran cond sub pod time code
1 1     1   105361 use v5.26;
  1         4  
2 1     1   637 use Object::Pad;
  1         11763  
  1         4  
3              
4             package Blockchain::Ethereum::ABI 0.012;
5             class Blockchain::Ethereum::ABI;
6              
7             =head1 NAME
8              
9             Blockchain::Ethereum::ABI - Contract ABI utilities
10              
11             =head1 SYNOPSIS
12              
13             The Contract Application Binary Interface (ABI) is the standard way to interact
14             with contracts (Ethereum), this module aims to be an utility to encode/decode the given
15             data according ABI type specification.
16              
17             =over 4
18              
19             =item * B: L
20              
21             =item * B: L
22              
23             =back
24              
25             =head1 AUTHOR
26              
27             Reginaldo Costa, C<< >>
28              
29             =head1 BUGS
30              
31             Please report any bugs or feature requests to L
32              
33             =head1 LICENSE AND COPYRIGHT
34              
35             This software is Copyright (c) 2022 by REFECO.
36              
37             This is free software, licensed under:
38              
39             The MIT License
40              
41             =cut
42              
43             1;