@yoroi/exchange
Version:
The Exchange package of Yoroi SDK
11 lines (10 loc) • 312 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isPossibleCardanoAddress = isPossibleCardanoAddress;
function isPossibleCardanoAddress(address) {
const shelleyRegex = /^(addr1)[0-9a-z]+$/;
return shelleyRegex.test(address);
}
//# sourceMappingURL=wallet-address.js.map