import { Models } from '@open-rights-exchange/chain-js'; export declare enum ChainNetwork { EthRopsten = "eth_ropsten", EthRinkeby = "eth_rinkeby", EthGoerli = "eth_goerli" } export interface IChainSettings { defaultTransactionOptions: any; 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;