We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf19cc6 commit bbc7867Copy full SHA for bbc7867
services/utils/general.js
@@ -98,7 +98,7 @@ export function validateCelestiaAddress(address) {
98
if (!address.startsWith(prefix)) return false
99
100
const hashPart = address.slice(prefix.length)
101
- if (hashPart.length !== 38) return false
+ if (hashPart.length < 38 || hashPart.length > 119) return false
102
103
const validChars = /^[qpzry9x8gf2tvdw0s3jn54khce6mua7l]+$/
104
if (!validChars.test(hashPart)) return false
0 commit comments