react-native-blockchain-address-validator
v0.1.0
Published
General-purpose and blockchain address validator for React Native
Downloads
4
Readme
React Native blockchain address validator
A React-Native-compatible library to validate blockchain addresses. Supports validation for all the major blockchain platforms such as Bitcoin, Ethereum, etc etc.
How to use
Simply import the required validator/s from the library and pass in a string representing the address which has to be validated. The validator returns true on a successful validation, false otherwise.
const {
validateEthAddress,
} = require("react-native-blockchain-address-validator/validators/eth");
const isEthAddressValid = validateEthAddress("0x...");