- Coin: Zano → Lethean, ticker: ZAN/ZANO → LTHN - Ports: 11211 → 36941 (mainnet RPC), 46941 (testnet RPC) - Wallet: 11212 → 36944/46944 - Address prefix: iTHN - URLs: zano.org → lethean.io - Explorer links: explorer.lthn.io Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
71 lines
1.6 KiB
JSON
71 lines
1.6 KiB
JSON
{
|
|
"name": "wallet-address-validator",
|
|
"description": "Wallet address validator for Bitcoin and other Altcoins.",
|
|
"keywords": [
|
|
"btc",
|
|
"bitcoin",
|
|
"bitcoin cash",
|
|
"litecoin",
|
|
"decred",
|
|
"dogecoin",
|
|
"ethereum",
|
|
"ripple",
|
|
"dash",
|
|
"neo",
|
|
"gas",
|
|
"komodo",
|
|
"zcash",
|
|
"qtum",
|
|
"altcoin",
|
|
"bankex",
|
|
"monero",
|
|
"segwit",
|
|
"crypto",
|
|
"address",
|
|
"wallet",
|
|
"validator",
|
|
"vertcoin",
|
|
"nano",
|
|
"raiblocks",
|
|
"javascript",
|
|
"browser",
|
|
"nodejs",
|
|
"lethean",
|
|
"lthn",
|
|
"ithn"
|
|
],
|
|
"version": "0.2.4",
|
|
"author": "Tomek Kolasa <tomek@kolasa.me>",
|
|
"homepage": "https://github.com/hyle-team/wallet-address-validator",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/hyle-team/wallet-address-validator.git"
|
|
},
|
|
"main": "src/wallet_address_validator",
|
|
"engines": {
|
|
"node": "*"
|
|
},
|
|
"scripts": {
|
|
"bundle": "browserify src/wallet_address_validator.js --standalone WAValidator --outfile dist/wallet-address-validator.js",
|
|
"minify": "uglifyjs -c -m -o dist/wallet-address-validator.min.js -- dist/wallet-address-validator.js",
|
|
"test:node": "mocha test",
|
|
"test:browser": "karma start",
|
|
"test": "npm run test:node && npm run test:browser",
|
|
"start": "npm run bundle && npm run minify && npm test"
|
|
},
|
|
"dependencies": {
|
|
"base-x": "^3.0.4",
|
|
"jssha": "2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^15.1.0",
|
|
"chai": "^4.1.2",
|
|
"karma": "^2.0.0",
|
|
"karma-chai": "^0.1.0",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-mocha": "^1.3.0",
|
|
"mocha": "^5.0.2",
|
|
"uglify-js": "^3.3.13"
|
|
}
|
|
}
|