import { Chain } from './type'; export declare const DEFAULT_CHAIN_ID = 1; export declare const kGoodPrice = 40000000000; export declare const kGreatPrice = 30000000000; export declare const kBSCGoodPrice = 20000000000; export declare const kBSCGreatPrice = 15000000000; export declare function getChain(chainId: number): Chain; export declare const getChainDexList: (chainId: number, filterCreateMiningEnable?: boolean) => { key: string; value: string; icon: string | { src: string; }; }[]; /** * 一天预估产生多少区块 */ export declare function getBlocksCountPerDay(chainId: number): number; export declare function getBlocksCountPerYear(chainId: number): number; /** * 找零逻辑。预留一部分平台币作为 gas fee * @param chainId * @returns */ export declare function getPlatformGasReserve(chainId: number): number; //# sourceMappingURL=config.d.ts.map