LiteForge Network
| Setting | Value |
|---|---|
| Network name | LitVM LiteForge |
| Chain ID | 4441 |
| Native currency | zkLTC |
| Native decimals | 18 |
| RPC | https://liteforge.rpc.caldera.xyz/http |
| Explorer | https://liteforge.explorer.caldera.xyz |
| Testnet | Yes |
| Solidity/EVM target | Shanghai |
viem example
import { defineChain } from 'viem';
export const liteForge = defineChain({
id: 4441,
name: 'LitVM LiteForge',
nativeCurrency: { name: 'zkLTC', symbol: 'zkLTC', decimals: 18 },
rpcUrls: { default: { http: ['https://liteforge.rpc.caldera.xyz/http'] } },
blockExplorers: {
default: { name: 'LiteForge Explorer', url: 'https://liteforge.explorer.caldera.xyz' },
},
testnet: true,
});
RPC behavior
The first-party indexer documentation records that the official RPC is reliable for small historical log ranges but can time out on much larger historical eth_getLogs ranges. The application therefore avoids broad browser-side history scans.