@dolltoken/v2-sdk
Version:
⚒️ An SDK for building applications on top of Doll V2
18 lines (17 loc) • 605 B
TypeScript
export declare const FACTORY_ADDRESS = "0xA81182C7eB731e362c5da5C5489A7Dd71D7712C3";
export declare const ADDRESS_ZERO = "0x0000000000000000000000000000000000000000";
export declare const POOL_INIT_CODE_HASH = "0x1781d93dc1a330c08b2776ce86be3b0aad2d7521f5a0a52bd7e42a37a44d415c";
/**
* The default factory enabled fee amounts, denominated in hundredths of bips.
*/
export declare enum FeeAmount {
LOW = 500,
MEDIUM = 3000,
HIGH = 10000
}
/**
* The default factory tick spacings by fee amount.
*/
export declare const TICK_SPACINGS: {
[amount in FeeAmount]: number;
};