
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
multichain-address-validator
Advanced tools
Multichain address validator for Bitcoin and other blockchains.
Simple blockchain address validator for validating Bitcoin and other blockchain addresses Node.js and browser.
npm install multichain-address-validator
<script src="dist/multichain-address-validator.bundle.min.js"></script>
Returns true if the address is a valid wallet address for the blockchain specified or throws if validator could not be found for chain
algorandbitcoin, btc, omnibitcoin-cash, bitcoincash, bitcoin cash, bchcardano, adacosmos, atomdogecoin, dogeeosethereum, eth, erc20, flare, avalanche, avalanche-c, bsc, bnb, binance, sonic, berachain, storylitecoin, ltcmoneronanonempolkadotripple', xrp`siasolana, spltezostron, trc20xlm, stellarimport { validate } from 'multichain-address-validator'
const valid = 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.
import { validate } from 'multichain-address-validator'
const valid = validate('0xdbF03B407c01E7cD3CBea99509d93f8DDDC8C6FB', 'ethereum');
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.
import { validate } from 'multichain-address-validator'
const valid = validate('1KFzzGtDdnq5hrwxXGjwVnKzRbvf8WVxck', { chain: 'litecoin', networkType: '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.
FAQs
Multichain address validator for Bitcoin and other blockchains.
We found that multichain-address-validator demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.