SAP-BTP-Spielwiese/app1/node_modules/validator/es/lib/isBtcAddress.js
Markus Rettig 775ac7b58c completed step 3 from the tutorial
you must login with an BTP account in order to see the app
2024-02-08 16:13:36 +01:00

13 lines
No EOL
347 B
JavaScript

import assertString from './util/assertString'; // supports Bech32 addresses
var bech32 = /^(bc1)[a-z0-9]{25,39}$/;
var base58 = /^(1|3)[A-HJ-NP-Za-km-z1-9]{25,39}$/;
export default function isBtcAddress(str) {
assertString(str); // check for bech32
if (str.startsWith('bc1')) {
return bech32.test(str);
}
return base58.test(str);
}