
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
wallet-address-validator
Advanced tools
Simple wallet address validator for validating Bitcoin and other altcoins addresses in Node.js and browser.
Forked from ryanralph/altcoin-address.
File size is ~22 kB (minifed and gzipped).
npm install wallet-address-validator
<script src="wallet-address-validator.min.js"></script>
'bitcoin' (default), 'litecoin' or 'LTC''prod' (default) to enforce standard address, 'testnet' to enforce testnet address and 'both' to enforce nothing.Returns true if the address (string) is a valid wallet address for the crypto currency specified, see below for supported currencies.
Auroracoin/AUR, 'auroracoin' or 'AUR'
Bankex/BKX, 'bankex' or 'BKX'
BeaverCoin/BVC, 'beavercoin' or 'BVC'
Biocoin/BIO, 'biocoin' or 'BIO'
Bitcoin/BTC, 'bitcoin' or 'BTC'
BitcoinCash/BCH, 'bitcoincash' or 'BCH'
BitcoinGold/BTG, 'bitcoingold' or 'BTG'
BitcoinPrivate/BTCP, 'bitcoinprivate' or 'BTCP'
BitcoinZ/BTCZ, 'bitcoinz' or 'BTCZ'
Callisto/CLO, 'callisto' or 'CLO'
Dash, 'dash' or 'DASH'
Decred/DCR, 'decred' or 'DCR'
Digibyte/DGB, 'digibyte' or 'DGB'
Dogecoin/DOGE, 'dogecoin' or 'DOGE'
Ethereum/ETH, 'ethereum' or 'ETH'
EthereumClassic/ETH, 'ethereumclassic' or 'ETC'
EthereumZero/ETZ, 'etherzero' or 'ETZ'
Freicoin/FRC, 'freicoin' or 'FRC'
Garlicoin/GRLC, 'garlicoin' or 'GRLC'
Hush/HUSH, 'hush' or 'HUSH'
Komodo/KMD, 'komodo' or 'KMD'
Litecoin/LTC, 'litecoin' or 'LTC'
Megacoin/MEC, 'megacoin' or 'MEC'
Monero/XMR, 'monero' or 'XMR'
Namecoin/NMC, 'namecoin' or 'NMC'
Nano/NANO, 'nano' or 'NANO'
NEO/NEO, 'NEO' or 'NEO'
NeoGas/GAS, 'neogas' or 'GAS'
Peercoin/PPCoin/PPC, 'peercoin' or 'PPC'
Primecoin/XPM, 'primecoin' or 'XPM'
Protoshares/PTS, 'protoshares' or 'PTS'
Qtum/QTUM, 'qtum' or 'QTUM'
Raiblocks/XRB, 'raiblocks' or 'XRB'
Ripple/XRP, 'ripple' or 'XRP'
Snowgem/SNG, 'snowgem' or 'SNG'
Vertcoin/VTC, 'vertcoin' or 'VTC'
Votecoin/VTC, 'votecoin' or 'VOT'
Zcash/ZEC, 'zcash' or 'ZEC'
Zclassic/ZCL, 'zclassic' or 'ZCL'
ZenCash/ZEN, 'zencash' or 'ZEN'
var WAValidator = require('wallet-address-validator');
var valid = WAValidator.validate('1KFzzGtDdnq5hrwxXGjwVnKzRbvf8WVxck', 'BTC');
if(valid)
console.log('This is a valid address');
else
console.log('Address INVALID');
// This will log 'This is a valid address' to the console.
var WAValidator = require('wallet-address-validator');
var valid = WAValidator.validate('1KFzzGtDdnq5hrwxXGjwVnKzRbvf8WVxck', 'litecoin', 'testnet');
if(valid)
console.log('This is a valid address');
else
console.log('Address INVALID');
// As this is a invalid litecoin address 'Address INVALID' will be logged to console.
<script src="wallet-address-validator.min.js"></script>
// WAValidator is exposed as a global (window.WAValidator)
var valid = WAValidator.validate('1KFzzGtDdnq5hrwxXGjwVnKzRbvf8WVxck', 'bitcoin');
if(valid)
alert('This is a valid address');
else
alert('Address INVALID');
// This should show a pop up with text 'This is a valid address'.
FAQs
Wallet address validator for Bitcoin and other Altcoins.
We found that wallet-address-validator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.