@sei-js/registry
Version:
TypeScript library for Sei chain constants and assets
13 lines (12 loc) • 396 B
JavaScript
import ChainInfoJSON from '../../chain-registry/chain_info.json';
/**
* A constant that holds the chain information, imported from the official Sei [chain-registry](https://github.com/sei-protocol/chain-registry).
*
* @example
* ```tsx
* import { CHAIN_INFO } from '@sei-js/registry';
*
* console.log(CHAIN_INFO.bech32_prefix); // 'sei'
* ```
*/
export const CHAIN_INFO = ChainInfoJSON;