import { IBlockJson } from "./block"; export interface NetworkConfig { exceptions: IExceptions; genesisBlock: IBlockJson; milestones: Array>; network: Network; } export interface Network { name: string; messagePrefix: string; bip32: { public: number; private: number; }; pubKeyHash: number; nethash: string; wif: number; slip44: number; aip20: number; client: { token: string; symbol: string; explorer: string; }; } export interface IExceptions { blocks?: string[]; transactions?: string[]; outlookTable?: Record; transactionIdFixTable?: Record; } //# sourceMappingURL=networks.d.ts.map