Chronicle Yellowstone - Lit Protocol Testnet

PropertyValue
ChainID175188 (0x2ac54)
CurrencytstLPX
RPC URLhttps://yellowstone-rpc.litprotocol.com/
Also see Chainlist for more details.

Viem Chain Config for the Chronicle Yellowstone network

import { Chain, http } from "viem";

export const viemChainConfig: Readonly<Chain> = Object.freeze({
  id: 175188,
  name: "Chronicle Yellowstone",
  nativeCurrency: {
    name: "Chronicle Yellowstone",
    symbol: "tstLPX",
    decimals: 18,
  },
  rpcUrls: {
    default: {
      http: ["https://yellowstone-rpc.litprotocol.com/"],
    },
    public: {
      http: ["https://yellowstone-rpc.litprotocol.com/"],
    },
  },
  blockExplorers: {
    default: {
      name: "Yellowstone Explorer",
      url: "https://yellowstone-explorer.litprotocol.com/",
    },
  },
});
Alternatively, we also provide a helper function to get the viem chain config. You can use
litClient.getChainConfig().viemConfig
to get the viem chain config. See Lit Client Reference for more details.