/** * The default enabled fee amounts, denominated in hundredths of bips. */ export declare enum FeeAmount { ZERO = 0, VERY_LOWEST = 10, LOWEST = 100, LOW = 500, LOW_HIGH = 1000, MEDIUM_LOW = 2000, MEDIUM = 3000, HIGH = 10000 } /** * The default tick spacings by fee amount. */ export declare const TICK_SPACINGS: { [amount in FeeAmount]: number; }; export declare const MODULE_POOL_MANAGER = "pool_manager"; export declare const MODULE_POSITION_MANAGER = "position_manager"; export declare const MODULE_I32 = "i32"; export declare const BPS = 1000000; export declare const I32_BITS = 32; export declare const I128_BITS = 128; export declare const CONFIGS: { mainnet: { packageId: string; poolRegistryObject: string; positionRegistryObject: string; versionObject: string; positionType: string; poolType: string; i32Type: string; poolFeeCollectEventType: string; poolRewardCollectEventType: string; }; testnet: { packageId: string; poolRegistryObject: string; positionRegistryObject: string; versionObject: string; poolFeeCollectEventType: string; positionType: string; poolType: string; i32Type: string; poolRewardCollectEventType: string; }; };