UNPKG

class-validator-multi-lang

Version:
25 lines 1.12 kB
import { buildMessage, ValidateBy } from '../common/ValidateBy'; import isEthereumAddressValidator from 'validator/lib/isEthereumAddress'; import { getText } from '../../multi-lang'; export const IS_ETHEREUM_ADDRESS = 'isEthereumAddress'; /** * Check if the string is an Ethereum address using basic regex. Does not validate address checksums. * If given value is not a string, then it returns false. */ export function isEthereumAddress(value) { return typeof value === 'string' && isEthereumAddressValidator(value); } /** * Check if the string is an Ethereum address using basic regex. Does not validate address checksums. * If given value is not a string, then it returns false. */ export function IsEthereumAddress(validationOptions) { return ValidateBy({ name: IS_ETHEREUM_ADDRESS, validator: { validate: (value, args) => isEthereumAddress(value), defaultMessage: buildMessage(eachPrefix => eachPrefix + getText('$property must be an Ethereum address'), validationOptions), }, }, validationOptions); } //# sourceMappingURL=IsEthereumAddress.js.map