madiator.com/ui/util/form-validation.js
2021-08-16 12:11:25 +02:00

17 lines
426 B
JavaScript

// @flow
import { regexAddress } from 'lbry-redux';
export default function validateSendTx(address: string) {
const errors = {
address: '',
};
// All we need to check is if the address is valid
// If values are missing, users wont' be able to submit the form
if (!process.env.NO_ADDRESS_VALIDATION && !regexAddress.test(address)) {
errors.address = __('Not a valid LBRY address');
}
return errors;
};