thena-v3-sdk
Version:
⚒️ An SDK for building applications on top of Thena V3 Fusion
22 lines (21 loc) • 635 B
TypeScript
export declare const POOL_DEPLOYER_ADDRESSES: {
[key: number]: string;
};
export declare const POOL_INIT_CODE_HASHES: {
[key: number]: string;
};
export declare const ADDRESS_ZERO = "0x0000000000000000000000000000000000000000";
export declare const FACTORY_ADDRESS = "0x30055F87716d3DFD0E5198C27024481099fB4A98";
/**
* 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_SPACING: number;