4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-19 05:35:48 +00:00
qortal-ui/crypto/api/wallet/validateAddress.js

9 lines
204 B
JavaScript
Raw Normal View History

import Base58 from '../deps/Base58'
2021-12-25 14:39:47 +01:00
export const validateAddress = (address) => {
const decodePubKey = Base58.decode(address)
2021-12-25 14:39:47 +01:00
return decodePubKey instanceof Uint8Array && decodePubKey.length == 25
2024-03-27 12:48:38 +01:00
2021-12-25 14:39:47 +01:00
}