We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any method where you can post a string, and that it returns whether this is a valid address or not?
I've tried to use something like this
private func isValidAddress() -> Bool { if let _ = try? BitcoinAddress(cashaddr: address) { return true } else if let _ = try? BitcoinAddress(legacy: address) { return true } return true }
The text was updated successfully, but these errors were encountered:
Thats actually the correct way of validating an address. Only I would change the last return and actually pass the address 😜
return
Sorry, something went wrong.
No branches or pull requests
Is there any method where you can post a string, and that it returns whether this is a valid address or not?
I've tried to use something like this
The text was updated successfully, but these errors were encountered: