@sei-js/registry is a typed reference package for Sei chain metadata — RPC endpoints, token lists, gas parameters, wallet info, and more. It pulls from the official sei-protocol/chain-registry and is kept in sync as a git submodule.
Install
CHAIN_IDS
Canonical chain IDs for each Sei network:NETWORKS
RPC, REST, gRPC, EVM RPC, WebSocket, and explorer endpoints for each network:provider (name) and url fields. Multiple providers are listed per category — iterate to implement fallback logic:
TOKEN_LIST
Token registry per network — name, symbol, base denom, decimal exponents, images, and CoinGecko IDs:images object with png and svg URLs suitable for display in wallet UIs or token pickers.
GAS_INFO
Minimum gas price and module-specific adjustments per network:min_gas_price here is the Cosmos-side gas floor. For EVM transactions, always use eth_gasPrice or eth_estimateGas — the on-chain EVM gas floor is governed separately and can change. See Gas and Fees.CHAIN_INFO
Basic chain metadata: daemon name, Bech32 prefix, HD path coin type, and supported wallets:WALLETS
Wallet metadata including icons, URLs, and EVM/native capability flags:Network Reference
| Constant | pacific-1 (mainnet) | atlantic-2 (testnet) | arctic-1 (devnet) |
|---|---|---|---|
| Chain ID | pacific-1 | atlantic-2 | arctic-1 |
| EVM Chain ID | 1329 | 1328 | 713715 |
| EVM RPC | NETWORKS['pacific-1'].evm_rpc | NETWORKS['atlantic-2'].evm_rpc | NETWORKS['arctic-1'].evm_rpc |
| EVM WS | NETWORKS['pacific-1'].evm_ws | NETWORKS['atlantic-2'].evm_ws | NETWORKS['arctic-1'].evm_ws |