import { Models } from '@open-rights-exchange/chain-js'; export declare enum ChainNetwork { EosKylin = "eos_kylin", EosJungle = "eos_jungle" } export interface IChainSettings { chainType: Models.ChainType; endpoints: [Models.ChainEndpoint]; chainSettings: any; account_MSIG: string; account1: string; account2: string; symbol: string; permission1: any; permission2: any; privateKey_singleSign: string; privateKeys_MSIG: string[]; transferAmount: string; precision: number; } export type IAllChainSettings = { [chainNetwork in ChainNetwork]: IChainSettings; }; export declare const chainConfig: IAllChainSettings;