-
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Samarth Patel edited this page Jan 27, 2026
·
1 revision
validator0x is a lightweight, zero-dependency TypeScript library for validating blockchain wallet addresses across multiple chains.
- Getting Started - Installation and quick start guide
- API Reference - Complete API documentation
- Examples - Common use cases and code examples
- FAQ - Frequently asked questions
- Contributing - How to contribute to the project
- β Multi-chain support (Ethereum, Solana, Bitcoin, Polygon)
- π Zero dependencies
- π¦ TypeScript-first with full type definitions
- π Lightweight and fast
- π― Checksum validation for EVM chains
- π Network detection (mainnet/testnet)
import { validateAddress } from 'validator0x';
const result = validateAddress(
'0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb',
'ethereum'
);
console.log(result.valid); // true or falseWhen building Web3 applications, validating wallet addresses is crucial for:
- Preventing user input errors
- Avoiding sending funds to invalid addresses
- Improving UX with real-time validation
- Supporting multiple blockchain ecosystems
Ready to get started? Check out the Getting Started guide!