@sei-js/registry
Version:
TypeScript library for Sei chain constants and assets
18 lines (17 loc) • 459 B
TypeScript
export * from './tokens';
export * from './chain-info';
export * from './gas';
export * from './networks';
export * from './ibc';
/**
* A TypeScript type representing the official Sei network chain identifiers.
*/
export type Network = 'pacific-1' | 'atlantic-2' | 'arctic-1';
/**
* An object for referencing the official Sei network chain identifiers.
*/
export declare const CHAIN_IDS: {
mainnet: string;
testnet: string;
devnet: string;
};