NAME
Blockchain::Ethereum::Keystore::Address - Ethereum address abstraction
VERSION
version 0.011
SYNOPSIS
Import an existing address:
my $address = Blockchain::Ethereum::Address->new(0x...);
# print checksummed address
print $address;
Generate a new address:
my $key = Blockchain::Ethereum::Key->new;
my $address = $key->address;
METHODS
no_prefix
Removes the 0x prefix
Returns the address string without the 0x prefix
to_string
Returns the checksummed 0x prefixed address
This function will be called as the default stringification method
AUTHOR
Reginaldo Costa <refeco@cpan.org>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2023 by REFECO.
This is free software, licensed under:
The MIT (X11) License