@galacticcouncil/sdk-next 1.4.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +0,0 @@
1
- export declare const UNISWAP_V3_FACTORY = "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0";
2
- export type V3PoolConfig = {
3
- assetA: number;
4
- assetB: number;
5
- fee: number;
6
- };
7
- export declare const V3_POOLS: V3PoolConfig[];
@@ -1,5 +0,0 @@
1
- export * from './types';
2
- export * from './const';
3
- export * from './UniswapV3Math';
4
- export * from './UniswapV3Pool';
5
- export * from './UniswapV3PoolClient';
@@ -1,21 +0,0 @@
1
- import { PoolBase, PoolFee, PoolFees } from '../types';
2
- export type V3Tick = {
3
- index: number;
4
- liquidityNet: bigint;
5
- liquidityGross: bigint;
6
- };
7
- export type V3PoolState = {
8
- fee: number;
9
- sqrtPriceX96: bigint;
10
- tick: number;
11
- liquidity: bigint;
12
- tickSpacing: number;
13
- ticks: V3Tick[];
14
- };
15
- export interface UniswapV3PoolBase extends PoolBase, V3PoolState {
16
- token0: number;
17
- token1: number;
18
- }
19
- export type UniswapV3PoolFees = PoolFees & {
20
- fee: PoolFee;
21
- };