0.1.0 • Published 3 years ago

react-native-blockchain-address-validator v0.1.0

Weekly downloads
4
License
GPL-v3.0
Repository
-
Last release
3 years ago

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...");