LCX Logo

    Network Details

    This page provides a complete reference for the Liberty Chain Testnet network configuration, including connection details, system contract addresses, and infrastructure endpoints.

    Network Configuration

    Liberty Chain Testnet

    Chain Name
    Liberty Chain Testnet
    Chain ID
    76847801
    Currency
    ETH
    Block Time
    2 seconds

    Chain Details

    StackOP Stack (Optimism)
    L1 Settlement LayerEthereum Sepolia
    Rollup TypeOptimistic Rollup
    EVM CompatibilityEthereum-equivalent
    Block Time2 seconds
    Native CurrencyETH (18 decimals)
    Chain ID (Decimal)76847801
    Chain ID (Hex)0x4949AB9

    Infrastructure Endpoints

    ServiceURL
    JSON-RPC (HTTPS)https://testnet-rpc.lcx.com
    WebSocketwss://testnet-rpc.lcx.com
    Block Explorerhttps://testnet-explorer.lcx.com
    Explorer APIhttps://testnet-explorer.lcx.com/api
    Bridgehttps://chain.lcx.com/bridge

    System Contract Addresses

    Liberty Chain uses the standard OP Stack pre-deployed system contracts. These contracts are deployed at deterministic addresses that are the same across all OP Stack chains.

    Standard OP Stack Addresses

    These addresses follow the OP Stack convention where all system contracts live in the 0x4200...00XX address range. They are identical across all OP Stack chains, so if you have worked with Optimism, Base, or any other OP Stack chain, you already know these addresses.

    L1 Contract Addresses (Sepolia)

    These are the Liberty Chain rollup contracts deployed on Ethereum Sepolia. Developers building bridges, cross-chain messaging, or integrations will need these addresses.

    Bridging Integration

    To bridge ERC-20 tokens to Liberty Chain, first deploy the L2 representation using the OptimismMintableERC20Factory on L2, then use the L1StandardBridge to deposit. See the Bridge Guide for details.

    Quick Connection Test

    Verify your connection by querying the chain ID:

    Verify connection
    bash
    curl -s -X POST https://testnet-rpc.lcx.com \
      -H "Content-Type: application/json" \
      -d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}' | python3 -m json.tool

    The response should return 0x4949AB9 (76847801 in decimal), confirming you are connected to Liberty Chain Testnet.

    Related Pages