cloudSEISMIC_TESTNET

Pre-configured Seismic public testnet

Pre-defined ChainConfig for the Seismic public testnet (GCP node 1).

Overview

SEISMIC_TESTNET is a ready-to-use chain configuration pointing to the primary Seismic testnet instance. It's the recommended starting point for developers building on Seismic.

Definition

SEISMIC_TESTNET: ChainConfig = make_seismic_testnet(1)

Internally, this is equivalent to:

ChainConfig(
    chain_id=5124,
    rpc_url="https://gcp-1.seismictest.net/rpc",
    ws_url="wss://gcp-1.seismictest.net/ws",
    name="Seismic Testnet",
)

Configuration

Property
Value

chain_id

5124

rpc_url

"https://gcp-1.seismictest.net/rpc"

ws_url

"wss://gcp-1.seismictest.net/ws"

name

"Seismic Testnet"

Usage

Import and Access Properties

Create Wallet Client (Sync)

Create Wallet Client (Async)

Create Public Client

Examples

Basic Shielded Transaction

Using with Environment Variables

Checking Connection

Notes

  • This is the primary public testnet instance

  • Suitable for development and testing

  • WebSocket endpoint is available for subscriptions

  • For alternate testnet instances, use make_seismic_testnet(n)

Chain ID Constant

The chain ID is also available as a standalone constant:

See Also

Last updated