@energiswap/v3-sdk
Version:
⚒️ An SDK for building applications on top of Energiswap V3
24 lines (23 loc) • 803 B
TypeScript
import { ChainId } from '@energiswap/sdk-core';
export declare const FACTORY_ADDRESS = "0x2BfD24B00413Fd35089cc9E3E6Aa285e4Bd7904d";
export declare const ADDRESS_ZERO = "0x0000000000000000000000000000000000000000";
export declare const POOL_INIT_CODE_HASH = "0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54";
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_200 = 200,
LOW_300 = 300,
LOW_400 = 400,
LOW = 500,
MEDIUM = 3000,
HIGH = 10000
}
/**
* The default factory tick spacings by fee amount.
*/
export declare const TICK_SPACINGS: {
[amount in FeeAmount]: number;
};