NAME

Blockchain::Ethereum::Keystore::Address

VERSION

version 0.009

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

Returns the checksummed address 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