lbry-desktop/ui/util/form-validation.js
saltrafael 2852138c3a
allow sending directly to a channel or content address (#5990)
* allow sending directly to a channel or content address
2021-05-20 15:30:40 -04: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;
};