UNPKG

@sei-js/registry

Version:

TypeScript library for Sei chain constants and assets

13 lines (12 loc) 434 B
import NetworksJSON from '../../chain-registry/chains.json'; /** * A constant holding the network configurations for each network, imported from the official Sei [chain-registry](https://github.com/sei-protocol/chain-registry) * * @example * ```tsx * import { NETWORKS } from '@sei-js/registry'; * * const pacific1 = NETWORKS.find((network) => network.chainId === 'pacific-1'); * ``` */ export const NETWORKS = NetworksJSON;