-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathtypes.ts
310 lines (276 loc) · 7.82 KB
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
import { BigNumber } from '@ethersproject/bignumber';
import { BigNumber as OldBigNumber } from './utils/bignumber';
export interface SorConfig {
chainId: number;
vault: string;
weth: string;
connectingTokens?: { symbol: string; address: string }[];
staBal3Pool?: { id: string; address: string };
usdcConnectingPool?: { id: string; usdc: string };
wETHwstETH?: { id: string; address: string };
lbpRaisingTokens?: string[];
triPathMidPoolIds?: string[];
}
export type NoNullableField<T> = {
[P in keyof T]: NonNullable<T[P]>;
};
export enum SwapTypes {
SwapExactIn,
SwapExactOut,
}
export enum PoolTypes {
Weighted,
Stable,
Element,
MetaStable,
Linear,
Gyro2,
Gyro3,
GyroE,
Fx,
}
export interface SwapOptions {
gasPrice: BigNumber;
swapGas: BigNumber;
timestamp: number;
maxPools: number;
poolTypeFilter: PoolFilter;
forceRefresh: boolean;
}
export type PoolPairBase = {
id: string;
address: string;
poolType: PoolTypes;
swapFee: BigNumber;
tokenIn: string;
tokenOut: string;
decimalsIn: number;
decimalsOut: number;
balanceIn: BigNumber;
balanceOut: BigNumber;
};
export interface Swap {
pool: string;
tokenIn: string;
tokenOut: string;
swapAmount?: string;
limitReturnAmount?: string;
maxPrice?: string;
tokenInDecimals: number;
tokenOutDecimals: number;
returnAmount?: string;
}
export interface SubgraphPoolBase {
id: string;
address: string;
poolType: string;
poolTypeVersion?: number;
swapFee: string;
swapEnabled: boolean;
totalShares: string;
tokens: SubgraphToken[];
tokensList: string[];
// Weighted & Element field
totalWeight?: string;
// Stable specific fields
amp?: string;
// Element specific fields
expiryTime?: number;
unitSeconds?: number;
principalToken?: string;
baseToken?: string;
// Linear specific fields
mainIndex?: number;
wrappedIndex?: number;
lowerTarget?: string;
upperTarget?: string;
// Gyro2 specific fields
sqrtAlpha?: string;
sqrtBeta?: string;
// Gyro3 specific field
root3Alpha?: string;
// GyroE and GyroEV2 specific fields
alpha?: string;
beta?: string;
c?: string;
s?: string;
lambda?: string;
tauAlphaX?: string;
tauAlphaY?: string;
tauBetaX?: string;
tauBetaY?: string;
u?: string;
v?: string;
w?: string;
z?: string;
dSq?: string;
// GyroEV2 and Gyro2V2 specific fields
tokenRates?: string[];
// FxPool
delta?: string;
epsilon?: string;
}
export type SubgraphToken = {
address: string;
balance: string;
decimals: number;
priceRate: string;
// WeightedPool field
weight: string | null;
token?: SubgraphTokenData;
};
export type SubgraphTokenData = {
latestFXPrice?: string;
fxOracleDecimals?: number;
};
export interface SwapV2 {
poolId: string;
assetInIndex: number;
assetOutIndex: number;
amount: string;
userData: string;
returnAmount?: string;
}
export interface SwapInfo {
tokenAddresses: string[];
swaps: SwapV2[];
swapAmount: BigNumber;
swapAmountForSwaps: BigNumber; // Used with stETH/wstETH
returnAmount: BigNumber;
returnAmountFromSwaps: BigNumber; // Used with stETH/wstETH
returnAmountConsideringFees: BigNumber;
tokenIn: string;
tokenInForSwaps?: string; // Used with stETH/wstETH
tokenOut: string;
tokenOutFromSwaps?: string; // Used with stETH/wstETH
marketSp: string;
}
export interface PoolDictionary {
[poolId: string]: PoolBase;
}
export interface PoolPairDictionary {
[tokenInOut: string]: PoolPairBase;
}
export interface hopDictionary {
[hopToken: string]: Set<string>; // the set of pool ids
}
export interface NewPath {
id: string; // pool address if direct path, contactenation of pool addresses if multihop
swaps: Swap[];
poolPairData: PoolPairBase[];
limitAmount: BigNumber;
pools: PoolBase[];
filterEffectivePrice?: OldBigNumber; // TODO: This is just used for filtering, maybe there is a better way to filter?
}
export enum PoolFilter {
All = 'All',
Weighted = 'Weighted',
Stable = 'Stable',
MetaStable = 'MetaStable',
LiquidityBootstrapping = 'LiquidityBootstrapping',
Investment = 'Investment',
Element = 'Element',
StablePhantom = 'StablePhantom',
ComposableStable = 'ComposableStable',
Gyro2 = 'Gyro2',
Gyro3 = 'Gyro3',
GyroE = 'GyroE',
// Linear Pools defined below all operate the same mathematically but have different factories and names in Subgraph
AaveLinear = 'AaveLinear',
Linear = 'Linear',
EulerLinear = 'EulerLinear',
ERC4626Linear = 'ERC4626Linear',
BeefyLinear = 'BeefyLinear',
GearboxLinear = 'GearboxLinear',
MidasLinear = 'MidasLinear',
ReaperLinear = 'ReaperLinear',
SiloLinear = 'SiloLinear',
TetuLinear = 'TetuLinear',
YearnLinear = 'YearnLinear',
FX = 'FX',
}
export interface PoolBase<D extends PoolPairBase = PoolPairBase> {
poolType: PoolTypes;
id: string;
address: string;
tokensList: string[];
tokens: { address: string; balance: string; decimals: number }[];
totalShares: BigNumber;
mainIndex?: number;
isLBP?: boolean;
parsePoolPairData: (tokenIn: string, tokenOut: string) => D;
getNormalizedLiquidity: (poolPairData: D) => OldBigNumber;
getLimitAmountSwap: (poolPairData: D, swapType: SwapTypes) => OldBigNumber;
/**
* @param {string} token - Address of token.
* @param {BigNumber} newBalance - New balance of token. EVM scaled.
*/
updateTokenBalanceForPool: (token: string, newBalance: BigNumber) => void;
updateTotalShares: (newTotalShares: BigNumber) => void;
_exactTokenInForTokenOut: (
poolPairData: D,
amount: OldBigNumber
) => OldBigNumber;
_tokenInForExactTokenOut: (
poolPairData: D,
amount: OldBigNumber
) => OldBigNumber;
_calcTokensOutGivenExactBptIn(bptAmountIn: BigNumber): BigNumber[];
_calcBptOutGivenExactTokensIn(amountsIn: BigNumber[]): BigNumber;
_spotPriceAfterSwapExactTokenInForTokenOut: (
poolPairData: D,
amount: OldBigNumber
) => OldBigNumber;
_spotPriceAfterSwapTokenInForExactTokenOut: (
poolPairData: D,
amount: OldBigNumber
) => OldBigNumber;
_derivativeSpotPriceAfterSwapExactTokenInForTokenOut: (
poolPairData: D,
amount: OldBigNumber
) => OldBigNumber;
_derivativeSpotPriceAfterSwapTokenInForExactTokenOut: (
poolPairData: D,
amount: OldBigNumber
) => OldBigNumber;
}
export interface WeightedPool<D extends PoolPairBase> extends PoolBase<D> {
totalWeight: string;
}
export interface TokenPriceService {
/**
* This should return the price of the native asset (ETH) in the token defined by tokenAddress.
* Example: BAL = $20 USD, ETH = $4,000 USD, then 1 ETH = 200 BAL. This function would return 200.
* @param tokenAddress
*/
getNativeAssetPriceInToken(tokenAddress: string): Promise<string>;
}
export interface PoolDataService {
getPools(
query?: GraphQLArgs,
chunkSize?: number
): Promise<SubgraphPoolBase[]>;
}
export type FundManagement = {
sender: string;
recipient: string;
fromInternalBalance: boolean;
toInternalBalance: boolean;
};
type GraphQLFilterOperator = 'gt' | 'lt' | 'eq' | 'in' | 'not_in' | 'contains';
type GraphQLFilter = {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
[operator in GraphQLFilterOperator]?: any;
};
export interface GraphQLArgs {
chainId?: number;
first?: number;
skip?: number;
nextToken?: string;
orderBy?: string;
orderDirection?: string;
block?: {
number?: number;
};
where?: Record<string, GraphQLFilter>;
}