@lifi/types
Version:
Types for the LI.FI stack
20 lines • 445 B
TypeScript
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