@alcorexchange/alcor-swap-sdk
Version:
**npm** ``` npm i @alcorexchange/alcor-swap-sdk ``` **yarn** ``` yarn add @alcorexchange/alcor-swap-sdk ``` ## Usage ### Import:
15 lines (14 loc) • 597 B
TypeScript
interface FeeGrowthOutside {
feeGrowthOutsideAX64: bigint;
feeGrowthOutsideBX64: bigint;
}
export declare function subIn256(x: bigint, y: bigint): bigint;
export declare function subIn128(x: bigint, y: bigint): bigint;
export declare abstract class TickLibrary {
/**
* Cannot be constructed.
*/
private constructor();
static getFeeGrowthInside(feeGrowthOutsideLower: FeeGrowthOutside, feeGrowthOutsideUpper: FeeGrowthOutside, tickLower: number, tickUpper: number, tickCurrent: number, feeGrowthGlobalAX64: bigint, feeGrowthGlobalBX64: bigint): bigint[];
}
export {};