Skip to content

cilphex/ethereum-address

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ethereum-address

Ethereum address validation

This is a clone of the web3.js isAddress utility method, but without the rest of web3.js.

Install

npm install ethereum-address

Usage

var ethereum_address = require('ethereum-address');

if (ethereum_address.isAddress(value)) {
  console.log('Valid ethereum address.');
}
else {
  console.log('Invalid Ethereum address.');
}

API

isAddress (address)

Returns true if the address (string) is an Ethereum address

isChecksumAddress (address)

Returns true if the address (string) is an Ethereum checksum address

About

Ethereum address validation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published