r2/game-server/app/lib/utils.js
lightings 4c647507d2 init
2023-03-27 17:26:02 +08:00

7 lines
153 B
JavaScript

function verify_wallet_address(address) {
return (/^0x[0123456789abcdefgABCDEFG]{40}$/).test(address);
}
module.exports = {
verify_wallet_address
};