forked from paraswap/paraswap-dex-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaave-v2.ts
409 lines (378 loc) · 11.8 KB
/
aave-v2.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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
import { Interface } from '@ethersproject/abi';
import {
Token,
Address,
ExchangePrices,
PoolPrices,
AdapterExchangeParam,
SimpleExchangeParam,
PoolLiquidity,
Logger,
NumberAsString,
DexExchangeParam,
} from '../../types';
import { SwapSide, Network, NULL_ADDRESS } from '../../constants';
import * as CALLDATA_GAS_COST from '../../calldata-gas-cost';
import { isETHAddress, getDexKeysWithNetwork, getBigIntPow } from '../../utils';
import { AaveV2Data, AaveV2Param, AaveV2PoolAndWethFunctions } from './types';
import WETH_GATEWAY_ABI_MAINNET from '../../abi/aave-weth-gateway.json';
import WETH_GATEWAY_ABI_POLYGON from '../../abi/aave-weth-gateway-polygon.json';
import WETH_GATEWAY_ABI_AVALANCHE from '../../abi/aave-weth-gateway-avalanche.json';
import AAVE_LENDING_POOL_ABI_V2 from '../../abi/AaveV2_lending_pool.json';
import { IDex } from '../../dex/idex';
import { IDexHelper } from '../../dex-helper/idex-helper';
import { SimpleExchange } from '../simple-exchange';
import {
AaveV2Config,
Adapters,
WETH_GATEWAY,
aaveLendingPool,
} from './config';
import { isAaveV2Pair } from './tokens';
const WETH_GATEWAY_ABI: any = {
[Network.MAINNET]: WETH_GATEWAY_ABI_MAINNET,
[Network.POLYGON]: WETH_GATEWAY_ABI_POLYGON,
[Network.AVALANCHE]: WETH_GATEWAY_ABI_AVALANCHE,
};
const REF_CODE = 1;
const Aave2ETHGasCost = 246 * 100;
const Aave2LendingGasCost = 328 * 1000;
export class AaveV2
extends SimpleExchange
implements IDex<AaveV2Data, AaveV2Param>
{
readonly hasConstantPriceLargeAmounts = true;
readonly isFeeOnTransferSupported = false;
public static dexKeysWithNetwork: { key: string; networks: Network[] }[] =
getDexKeysWithNetwork(AaveV2Config);
logger: Logger;
private aavePool: Interface;
private wethGateway: Interface;
constructor(
protected network: Network,
dexKey: string,
protected dexHelper: IDexHelper,
) {
super(dexHelper, dexKey);
this.logger = dexHelper.getLogger(dexKey);
this.wethGateway = new Interface(WETH_GATEWAY_ABI[network]);
this.aavePool = new Interface(AAVE_LENDING_POOL_ABI_V2);
}
// Initialize pricing is called once in the start of
// pricing service. It is intended to setup the integration
// for pricing requests. It is optional for a DEX to
async initializePricing(blockNumber: number) {}
// Returns the list of contract adapters (name and index)
// for a buy/sell. Return null if there are no adapters.
getAdapters(side: SwapSide): { name: string; index: number }[] | null {
return Adapters[this.network][side];
}
// Returns list of pool identifiers that can be used
// for a given swap. poolIdentifiers must be unique
// across DEXes. It is recommended to use
// ${dexKey}_${poolAddress} as a poolIdentifier
async getPoolIdentifiers(
srcToken: Token,
destToken: Token,
side: SwapSide,
blockNumber: number,
): Promise<string[]> {
const aToken = isAaveV2Pair(
this.network,
this.dexHelper.config.wrapETH(srcToken),
this.dexHelper.config.wrapETH(destToken),
);
if (aToken === null) {
return [];
}
const tokenAddress = [
srcToken.address.toLowerCase(),
destToken.address.toLowerCase(),
]
.sort((a, b) => (a > b ? 1 : -1))
.join('_');
return [`${this.dexKey}_${tokenAddress}`];
}
// Returns pool prices for amounts.
// If limitPools is defined only pools in limitPools
// should be used. If limitPools is undefined then
// any pools can be used.
async getPricesVolume(
srcToken: Token,
destToken: Token,
amounts: bigint[],
side: SwapSide,
blockNumber: number,
limitPools?: string[],
): Promise<null | ExchangePrices<AaveV2Data>> {
const _src = this.dexHelper.config.wrapETH(srcToken);
const _dst = this.dexHelper.config.wrapETH(destToken);
const aToken = isAaveV2Pair(this.network, _src, _dst);
if (!aToken) {
return null;
}
const fromAToken = aToken == _src;
return [
{
prices: amounts,
unit: getBigIntPow(
(side === SwapSide.SELL ? destToken : srcToken).decimals,
),
gasCost: isETHAddress(srcToken.address)
? Aave2ETHGasCost
: Aave2LendingGasCost,
exchange: this.dexKey,
data: {
isV2: true,
fromAToken,
},
poolAddresses: [fromAToken ? srcToken.address : destToken.address],
},
];
}
// Returns estimated gas cost of calldata for this DEX in multiSwap
getCalldataGasCost(poolPrices: PoolPrices<AaveV2Data>): number | number[] {
return (
CALLDATA_GAS_COST.DEX_OVERHEAD +
CALLDATA_GAS_COST.LENGTH_SMALL +
CALLDATA_GAS_COST.ADDRESS
);
}
// Encode params required by the exchange adapter
// Used for multiSwap, buy & megaSwap
getAdapterParam(
srcToken: string,
destToken: string,
srcAmount: string,
destAmount: string,
data: AaveV2Data,
side: SwapSide,
): AdapterExchangeParam {
const aToken = data.fromAToken ? srcToken : destToken; // Warning
const payload = this.abiCoder.encodeParameter(
{
ParentStruct: {
aToken: 'address',
},
},
{ aToken: aToken },
);
return {
// target exchange is not used by the contract
targetExchange: NULL_ADDRESS,
payload,
networkFee: '0',
};
}
// Encode call data used by simpleSwap like routers
// Used for simpleSwap & simpleBuy
async getSimpleParam(
srcToken: string,
destToken: string,
srcAmount: string,
destAmount: string,
data: AaveV2Data,
side: SwapSide,
): Promise<SimpleExchangeParam> {
const amount = side === SwapSide.SELL ? srcAmount : destAmount;
const [Interface, swapCallee, swapFunction, swapFunctionParams] = ((): [
Interface,
Address,
AaveV2PoolAndWethFunctions,
AaveV2Param,
] => {
if (isETHAddress(srcToken)) {
switch (this.network) {
case 1:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.depositETH,
[this.augustusAddress, REF_CODE],
];
case 137:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.depositETH,
[aaveLendingPool[this.network], this.augustusAddress, REF_CODE],
];
case 43114:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.depositETH,
[aaveLendingPool[this.network], this.augustusAddress, REF_CODE],
];
default:
throw new Error(`Network ${this.network} not supported`);
}
}
if (isETHAddress(destToken)) {
switch (this.network) {
case Network.MAINNET:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.withdrawETH,
[amount, this.augustusAddress],
];
case Network.POLYGON:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.withdrawETH,
[aaveLendingPool[this.network], amount, this.augustusAddress],
];
case Network.AVALANCHE:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.withdrawETH,
[aaveLendingPool[this.network], amount, this.augustusAddress],
];
default:
throw new Error(`Network ${this.network} not supported`);
}
}
if (data.fromAToken) {
return [
this.aavePool,
aaveLendingPool[this.network],
AaveV2PoolAndWethFunctions.withdraw,
[destToken, amount, this.augustusAddress],
];
}
return [
this.aavePool,
aaveLendingPool[this.network],
AaveV2PoolAndWethFunctions.deposit,
[srcToken, amount, this.augustusAddress, REF_CODE],
];
})();
const swapData = Interface.encodeFunctionData(
swapFunction,
swapFunctionParams,
);
return this.buildSimpleParamWithoutWETHConversion(
srcToken,
amount,
destToken,
destAmount,
swapData,
swapCallee,
);
}
getDexParam(
srcToken: Address,
destToken: Address,
srcAmount: NumberAsString,
destAmount: NumberAsString,
recipient: Address,
data: AaveV2Data,
side: SwapSide,
): DexExchangeParam {
const amount = side === SwapSide.SELL ? srcAmount : destAmount;
const [Interface, swapCallee, swapFunction, swapFunctionParams] = ((): [
Interface,
Address,
AaveV2PoolAndWethFunctions,
AaveV2Param,
] => {
if (isETHAddress(srcToken)) {
switch (this.network) {
case Network.MAINNET:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.depositETH,
[recipient, REF_CODE],
];
case Network.POLYGON:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.depositETH,
[aaveLendingPool[this.network], recipient, REF_CODE],
];
case Network.AVALANCHE:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.depositETH,
[aaveLendingPool[this.network], recipient, REF_CODE],
];
default:
throw new Error(`Network ${this.network} not supported`);
}
}
if (isETHAddress(destToken)) {
switch (this.network) {
case Network.MAINNET:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.withdrawETH,
[amount, recipient],
];
case Network.POLYGON:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.withdrawETH,
[aaveLendingPool[this.network], amount, recipient],
];
case Network.AVALANCHE:
return [
this.wethGateway,
WETH_GATEWAY[this.network],
AaveV2PoolAndWethFunctions.withdrawETH,
[aaveLendingPool[this.network], amount, recipient],
];
default:
throw new Error(`Network ${this.network} not supported`);
}
}
if (data.fromAToken) {
return [
this.aavePool,
aaveLendingPool[this.network],
AaveV2PoolAndWethFunctions.withdraw,
[destToken, amount, recipient],
];
}
return [
this.aavePool,
aaveLendingPool[this.network],
AaveV2PoolAndWethFunctions.deposit,
[srcToken, amount, recipient, REF_CODE],
];
})();
const exchangeData = Interface.encodeFunctionData(
swapFunction,
swapFunctionParams,
);
return {
needWrapNative: this.needWrapNative,
dexFuncHasRecipient: true,
exchangeData,
targetExchange: swapCallee,
returnAmountPos: undefined,
};
}
// This is called once before getTopPoolsForToken is
// called for multiple tokens. This can be helpful to
// update common state required for calculating
// getTopPoolsForToken. It is optional for a DEX
updatePoolState(): Promise<void> {
return Promise.resolve();
}
// Returns list of top pools based on liquidity. Max
// limit number pools should be returned.
async getTopPoolsForToken(
tokenAddress: Address,
limit: number,
): Promise<PoolLiquidity[]> {
return [];
}
}