Skip to content

An Ethereum EIP-55 address encoder and validator in Elixir.

License

Notifications You must be signed in to change notification settings

vektor-finance/eip_55

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EIP-55

Encode and validate an Ethereum address against EIP-55 checksum in Elixir.

Installation

The package can be installed by adding :eip_55 to your list of dependencies in mix.exs:

defp deps do
  [
    {:eip_55, "~> 0.1"}
  ]
end

Usage

Encoding:

iex> EIP55.encode("0x5aaeb6053f3e94c9b9a09f33669435e7ef1beaed")
{:ok, "0x5aAeb6053F3E94C9b9A09f33669435E7Ef1BeAed"}

iex> EIP55.encode(<<90, 174, 182, 5, 63, 62, 148, 201, 185, 160,
...> 159, 51, 102, 148, 53, 231, 239, 27, 234, 237>>)
{:ok, "0x5aAeb6053F3E94C9b9A09f33669435E7Ef1BeAed"}

Validation:

iex> EIP55.valid?("0x5aAeb6053F3E94C9b9A09f33669435E7Ef1BeAed")
true

iex> EIP55.valid?("0x5AAEB6053f3e94c9b9a09f33669435e7ef1beaed")
false

Full documentation can be found at https://hexdocs.pm/eip_55.

Performance

This is a fork of eip_55 and uses the :ex_keccak dependency that uses a Rustler NIF for significant performance gains.

License

EIP-55 is released under the MIT License. See LICENSE for further details.

About

An Ethereum EIP-55 address encoder and validator in Elixir.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Elixir 100.0%