UNPKG

walletcheck

Version:
16 lines (12 loc) 404 B
// walletBalance.js const walletCheck = require('walletcheck'); function checkWalletBalance(address) { if (!walletCheck.isValidErcAddress(address)) { console.log("无效的 ERC 钱包地址。"); return; } // 假设的余额数据 console.log(`地址 ${address} 的当前余额是 2.5 ETH.`); return "2.5 ETH"; } module.exports = checkWalletBalance;