mining-pool/frontend/app/globals.default.js
Claude 909bff2dd9
rebrand(lethean): update branding, ports, and config for Lethean blockchain
- 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>
2026-04-01 22:24:13 +01:00

11 lines
No EOL
195 B
JavaScript

'use strict';
angular.module('pool.globals', [])
.factory('GLOBALS', function() {
return {
pool_name: "LetheanPool",
api_url : 'http://localhost:8001',
api_refresh_interval: 5000
};
});