Skip to main content

LiteForge Network

SettingValue
Network nameLitVM LiteForge
Chain ID4441
Native currencyzkLTC
Native decimals18
RPChttps://liteforge.rpc.caldera.xyz/http
Explorerhttps://liteforge.explorer.caldera.xyz
TestnetYes
Solidity/EVM targetShanghai

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.