import { ChainId } from '@deliquifiedlabs/sdk-core'; export declare const FACTORY_ADDRESS = "0x5Cc0428FdD7B3a4D4DeFF586983167Aa68D86C71"; export declare const ADDRESS_ZERO = "0x0000000000000000000000000000000000000000"; export declare const POOL_INIT_CODE_HASH = "0x71a41497b843eeefb2f66f34cf0e863deeda6c9e9729ab3c1121b63895338b6a"; export declare function poolInitCodeHash(chainId?: ChainId): string; /** * The default factory enabled fee amounts, denominated in hundredths of bips. */ export declare enum FeeAmount { LOWEST = 100, LOW = 500, MEDIUM = 3000, HIGH = 10000 } /** * The default factory tick spacings by fee amount. */ export declare const TICK_SPACINGS: { [amount in FeeAmount]: number; };