- 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>
10 lines
304 B
TypeScript
10 lines
304 B
TypeScript
type GlobalWindow = Window & typeof globalThis;
|
|
|
|
type LtheanWindow = Omit<GlobalWindow, 'Infinity'> & {
|
|
lethean: {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
request: (_str: string, _params?: any, _timeoutMs?: number | null) => Promise<any>;
|
|
};
|
|
};
|
|
|
|
export default LtheanWindow;
|