UNPKG

@lifi/types

Version:
20 lines 445 B
import type { CoinKey } from '../tokens/base.js'; import type { ChainKey } from './base.js'; export declare enum ChainType { EVM = "EVM", SVM = "SVM", MVM = "MVM", UTXO = "UTXO", TVM = "TVM" } export interface _Chain { key: ChainKey; chainType: ChainType; name: string; coin: CoinKey; id: number; mainnet: boolean; logoURI?: string; faucetUrls?: string[]; } //# sourceMappingURL=Chain.d.ts.map