For the complete documentation index, see llms.txt. This page is also available as Markdown.

Seismic Testnet

Seismic public testnet chain configuration

The Seismic public testnet is the primary network for development and testing. seismicTestnet is a RainbowKit-compatible chain object that wraps the seismic-viem testnet definition with RainbowKit metadata.

Configuration

Property
Value

Chain ID

5124

Name

Seismic

RPC (HTTPS)

https://testnet-1.seismictest.net/rpc

RPC (WSS)

wss://testnet-1.seismictest.net/ws

Explorer

https://seismic-testnet.socialscan.io

Native Currency

ETH (18 decimals)

Import

import { seismicTestnet } from "seismic-react/rainbowkit";

Usage

With RainbowKit

import { getDefaultConfig } from "@rainbow-me/rainbowkit";
import { seismicTestnet } from "seismic-react/rainbowkit";

const config = getDefaultConfig({
  appName: "My App",
  projectId: "YOUR_PROJECT_ID",
  chains: [seismicTestnet],
});

With wagmi Config

Notes

  • Chain ID 5124 is used for EIP-155 replay protection and EIP-712 typed data signing

  • The testnet supports all Seismic protocol features including shielded transactions and signed reads

  • The Seismic icon is included automatically for display in RainbowKit's chain selector

See Also

Last updated