Qortal UI - Main Code Repository A User Interface for the Qortal Blockchain Project. Truly decentralized web hosting, application hosting, communications, data storage, and full infrastructure for the future global decentralized digital world.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
204 B

import Base58 from '../deps/Base58'
3 years ago
export const validateAddress = (address) => {
const decodePubKey = Base58.decode(address)
3 years ago
return decodePubKey instanceof Uint8Array && decodePubKey.length == 25
6 months ago
3 years ago
}