UNPKG

@lifi/types

Version:
29 lines (26 loc) 620 B
import type { CoinKey } from '../tokens/base.js' import type { ChainKey } from './base.js' export enum ChainType { EVM = 'EVM', // Solana virtual machine SVM = 'SVM', // Move virtual machine MVM = 'MVM', // Unspent transaction output (e.g. Bitcoin) UTXO = 'UTXO', // Tron virtual machine TVM = 'TVM', // Stellar consensus protocol STL = 'STL', } export interface _Chain { key: ChainKey chainType: ChainType name: string coin: CoinKey id: number mainnet: boolean logoURI?: string // faucetUrls is DEPRECATED - will be removed in the next breaking release faucetUrls?: string[] }