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
/
lib
/
module
/
validators
/
wallet-address.js
5 lines
•
178 B
JavaScript
View Raw
1
2
3
4
5
export
function
isPossibleCardanoAddress
(
address
) {
const
shelleyRegex =
/^(addr1)[0-9a-z]+$/
;
return
shelleyRegex.
test
(address); }
//# sourceMappingURL=wallet-address.js.map