UNPKG
@yoroi/exchange
Version:
latest (3.0.0)
3.0.0
2.0.1
The Exchange package of Yoroi SDK
github.com/Emurgo/yoroi/packages/exchange
@yoroi/exchange
/
src
/
validators
/
wallet-address.ts
5 lines
(4 loc)
•
142 B
text/typescript
View Raw
1
2
3
4
5
export
function
isPossibleCardanoAddress
(
address: string
) {
const
shelleyRegex =
/^(addr1)[0-9a-z]+$/
return
shelleyRegex.
test
(address) }