react-native-blockchain-address-validator

General-purpose and blockchain address validator for React Native

Usage no npm install needed!

<script type="module">
  import reactNativeBlockchainAddressValidator from 'https://cdn.skypack.dev/react-native-blockchain-address-validator';
</script>

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