generated from bgd-labs/bgd-forge-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDebtSwapV2.t.sol
494 lines (398 loc) · 17.6 KB
/
DebtSwapV2.t.sol
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {IERC20Detailed} from '@aave/core-v3/contracts/dependencies/openzeppelin/contracts/IERC20Detailed.sol';
import {IPoolAddressesProvider} from '@aave/core-v3/contracts/interfaces/IPoolAddressesProvider.sol';
import {AaveGovernanceV2} from 'aave-address-book/AaveGovernanceV2.sol';
import {Errors} from 'aave-address-book/AaveV2.sol';
import {AaveV2Ethereum, AaveV2EthereumAssets, ILendingPool} from 'aave-address-book/AaveV2Ethereum.sol';
import {BaseTest} from './utils/BaseTest.sol';
import {ICreditDelegationToken} from '../src/interfaces/ICreditDelegationToken.sol';
import {IParaswapDebtSwapAdapter} from '../src/interfaces/IParaswapDebtSwapAdapter.sol';
import {ParaSwapDebtSwapAdapter} from '../src/contracts/ParaSwapDebtSwapAdapter.sol';
import {ParaSwapDebtSwapAdapterV2} from '../src/contracts/ParaSwapDebtSwapAdapterV2.sol';
import {AugustusRegistry} from '../src/lib/AugustusRegistry.sol';
contract DebtSwapV2Test is BaseTest {
ParaSwapDebtSwapAdapterV2 internal debtSwapAdapter;
function setUp() public override {
super.setUp();
vm.createSelectFork(vm.rpcUrl('mainnet'), 17706839);
debtSwapAdapter = new ParaSwapDebtSwapAdapterV2(
IPoolAddressesProvider(address(AaveV2Ethereum.POOL_ADDRESSES_PROVIDER)),
address(AaveV2Ethereum.POOL),
AugustusRegistry.ETHEREUM,
AaveGovernanceV2.SHORT_EXECUTOR
);
}
function test_revert_executeOperation_not_pool() public {
address[] memory mockAddresses = new address[](0);
uint256[] memory mockAmounts = new uint256[](0);
vm.expectRevert(bytes('CALLER_MUST_BE_POOL'));
debtSwapAdapter.executeOperation(
mockAddresses,
mockAmounts,
mockAmounts,
address(0),
abi.encode('')
);
}
function test_revert_executeOperation_wrong_initiator() public {
vm.prank(address(AaveV2Ethereum.POOL));
address[] memory mockAddresses = new address[](0);
uint256[] memory mockAmounts = new uint256[](0);
vm.expectRevert(bytes('INITIATOR_MUST_BE_THIS'));
debtSwapAdapter.executeOperation(
mockAddresses,
mockAmounts,
mockAmounts,
address(0),
abi.encode('')
);
}
function test_revert_debtSwap_without_extra_collateral() public {
address aToken = AaveV2EthereumAssets.DAI_A_TOKEN;
address debtAsset = AaveV2EthereumAssets.DAI_UNDERLYING;
address newDebtAsset = AaveV2EthereumAssets.LUSD_UNDERLYING;
address newDebtToken = AaveV2EthereumAssets.LUSD_V_TOKEN;
uint256 supplyAmount = 120e18;
uint256 borrowAmount = 80e18;
// We want to end with LT > utilisation > LTV, so we pump up the utilisation to 75% by withdrawing (80 > 75 > 67).
uint256 withdrawAmount = supplyAmount - (borrowAmount * 100) / 75;
// Deal some debtAsset to cover the premium and any 1 wei rounding errors on withdrawal.
deal(debtAsset, address(debtSwapAdapter), 1e18);
vm.startPrank(user);
_supply(AaveV2Ethereum.POOL, supplyAmount, debtAsset);
_borrow(AaveV2Ethereum.POOL, borrowAmount, debtAsset);
_withdraw(AaveV2Ethereum.POOL, withdrawAmount, debtAsset);
vm.expectRevert(bytes(Errors.VL_COLLATERAL_CANNOT_COVER_NEW_BORROW));
_borrow(AaveV2Ethereum.POOL, 1, debtAsset);
// Swap debt
// add some margin to account for accumulated debt
uint256 repayAmount = (borrowAmount * 101) / 100;
PsPResponse memory psp = _fetchPSPRoute(
newDebtAsset,
debtAsset,
repayAmount,
user,
false,
true
);
skip(1 hours);
ICreditDelegationToken(newDebtToken).approveDelegation(address(debtSwapAdapter), psp.srcAmount);
IERC20Detailed(aToken).approve(address(debtSwapAdapter), supplyAmount);
IParaswapDebtSwapAdapter.DebtSwapParams memory debtSwapParams = IParaswapDebtSwapAdapter
.DebtSwapParams({
debtAsset: debtAsset,
debtRepayAmount: type(uint256).max,
debtRateMode: 2,
newDebtAsset: newDebtAsset,
maxNewDebtAmount: psp.srcAmount,
extraCollateralAsset: address(0),
extraCollateralAmount: 0,
offset: psp.offset,
paraswapData: abi.encode(psp.swapCalldata, psp.augustus)
});
IParaswapDebtSwapAdapter.CreditDelegationInput memory cd;
IParaswapDebtSwapAdapter.PermitInput memory collateralATokenPermit;
vm.expectRevert(bytes(Errors.VL_COLLATERAL_CANNOT_COVER_NEW_BORROW));
debtSwapAdapter.swapDebt(debtSwapParams, cd, collateralATokenPermit);
}
/**
* 1. supply 200000 DAI
* 2. borrow 1000 DAI
* 3. swap whole DAI debt to LUSD debt
*/
function test_debtSwap_swapHalf() public {
vm.startPrank(user);
address debtAsset = AaveV2EthereumAssets.DAI_UNDERLYING;
address debtToken = AaveV2EthereumAssets.DAI_V_TOKEN;
address newDebtAsset = AaveV2EthereumAssets.LUSD_UNDERLYING;
address newDebtToken = AaveV2EthereumAssets.LUSD_V_TOKEN;
uint256 supplyAmount = 200000 ether;
uint256 borrowAmount = 1000 ether;
_supply(AaveV2Ethereum.POOL, supplyAmount, debtAsset);
_borrow(AaveV2Ethereum.POOL, borrowAmount, debtAsset);
uint256 repayAmount = borrowAmount / 2;
PsPResponse memory psp = _fetchPSPRoute(
newDebtAsset,
debtAsset,
repayAmount,
user,
false,
false
);
ICreditDelegationToken(newDebtToken).approveDelegation(address(debtSwapAdapter), psp.srcAmount);
IParaswapDebtSwapAdapter.DebtSwapParams memory debtSwapParams = IParaswapDebtSwapAdapter
.DebtSwapParams({
debtAsset: debtAsset,
debtRepayAmount: repayAmount,
debtRateMode: 2,
newDebtAsset: newDebtAsset,
maxNewDebtAmount: psp.srcAmount,
extraCollateralAsset: address(0),
extraCollateralAmount: 0,
offset: psp.offset,
paraswapData: abi.encode(psp.swapCalldata, psp.augustus)
});
uint256 vDEBT_TOKENBalanceBefore = IERC20Detailed(debtToken).balanceOf(user);
IParaswapDebtSwapAdapter.CreditDelegationInput memory cd;
IParaswapDebtSwapAdapter.PermitInput memory collateralATokenPermit;
debtSwapAdapter.swapDebt(debtSwapParams, cd, collateralATokenPermit);
uint256 vDEBT_TOKENBalanceAfter = IERC20Detailed(debtToken).balanceOf(user);
uint256 vNEWDEBT_TOKENBalanceAfter = IERC20Detailed(newDebtToken).balanceOf(user);
assertEq(vDEBT_TOKENBalanceAfter, vDEBT_TOKENBalanceBefore - repayAmount);
assertLe(vNEWDEBT_TOKENBalanceAfter, psp.srcAmount);
_invariant(address(debtSwapAdapter), debtAsset, newDebtAsset);
}
function test_debtSwap_swapAll() public {
vm.startPrank(user);
address debtAsset = AaveV2EthereumAssets.DAI_UNDERLYING;
address debtToken = AaveV2EthereumAssets.DAI_V_TOKEN;
address newDebtAsset = AaveV2EthereumAssets.LUSD_UNDERLYING;
address newDebtToken = AaveV2EthereumAssets.LUSD_V_TOKEN;
uint256 supplyAmount = 200000 ether;
uint256 borrowAmount = 1000 ether;
_supply(AaveV2Ethereum.POOL, supplyAmount, debtAsset);
_borrow(AaveV2Ethereum.POOL, borrowAmount, debtAsset);
// add some margin to account for accumulated debt
uint256 repayAmount = (borrowAmount * 101) / 100;
PsPResponse memory psp = _fetchPSPRoute(
newDebtAsset,
debtAsset,
repayAmount,
user,
false,
true
);
skip(1 hours);
ICreditDelegationToken(newDebtToken).approveDelegation(address(debtSwapAdapter), psp.srcAmount);
IParaswapDebtSwapAdapter.DebtSwapParams memory debtSwapParams = IParaswapDebtSwapAdapter
.DebtSwapParams({
debtAsset: debtAsset,
debtRepayAmount: type(uint256).max,
debtRateMode: 2,
newDebtAsset: newDebtAsset,
maxNewDebtAmount: psp.srcAmount,
extraCollateralAsset: address(0),
extraCollateralAmount: 0,
offset: psp.offset,
paraswapData: abi.encode(psp.swapCalldata, psp.augustus)
});
IParaswapDebtSwapAdapter.CreditDelegationInput memory cd;
IParaswapDebtSwapAdapter.PermitInput memory collateralATokenPermit;
debtSwapAdapter.swapDebt(debtSwapParams, cd, collateralATokenPermit);
uint256 vDEBT_TOKENBalanceAfter = IERC20Detailed(debtToken).balanceOf(user);
uint256 vNEWDEBT_TOKENBalanceAfter = IERC20Detailed(newDebtToken).balanceOf(user);
assertEq(vDEBT_TOKENBalanceAfter, 0);
assertLe(vNEWDEBT_TOKENBalanceAfter, psp.srcAmount);
_invariant(address(debtSwapAdapter), debtAsset, newDebtAsset);
}
function test_debtSwap_swapAll_BUSD() public {
address vBUSD_WHALE = 0x154AF3A2071363D3fFcDB43744C2a906d8EB856a;
vm.startPrank(vBUSD_WHALE); // vBUSD Whale
address debtAsset = AaveV2EthereumAssets.BUSD_UNDERLYING;
address debtToken = AaveV2EthereumAssets.BUSD_V_TOKEN;
address newDebtAsset = AaveV2EthereumAssets.DAI_UNDERLYING;
address newDebtToken = AaveV2EthereumAssets.DAI_V_TOKEN;
uint256 borrowAmount = IERC20Detailed(debtToken).balanceOf(vBUSD_WHALE);
// add some margin to account for accumulated debt
uint256 repayAmount = (borrowAmount * 101) / 100;
PsPResponse memory psp = _fetchPSPRoute(
newDebtAsset,
debtAsset,
repayAmount,
vBUSD_WHALE,
false,
true
);
skip(1 minutes);
ICreditDelegationToken(newDebtToken).approveDelegation(address(debtSwapAdapter), psp.srcAmount);
IParaswapDebtSwapAdapter.DebtSwapParams memory debtSwapParams = IParaswapDebtSwapAdapter
.DebtSwapParams({
debtAsset: debtAsset,
debtRepayAmount: type(uint256).max,
debtRateMode: 2,
newDebtAsset: newDebtAsset,
maxNewDebtAmount: psp.srcAmount,
extraCollateralAsset: address(0),
extraCollateralAmount: 0,
offset: psp.offset,
paraswapData: abi.encode(psp.swapCalldata, psp.augustus)
});
IParaswapDebtSwapAdapter.CreditDelegationInput memory cd;
IParaswapDebtSwapAdapter.PermitInput memory collateralATokenPermit;
debtSwapAdapter.swapDebt(debtSwapParams, cd, collateralATokenPermit);
uint256 vDEBT_TOKENBalanceAfter = IERC20Detailed(debtToken).balanceOf(vBUSD_WHALE);
uint256 vNEWDEBT_TOKENBalanceAfter = IERC20Detailed(newDebtToken).balanceOf(vBUSD_WHALE);
assertEq(vDEBT_TOKENBalanceAfter, 0);
assertLe(vNEWDEBT_TOKENBalanceAfter, psp.srcAmount);
_invariant(address(debtSwapAdapter), debtAsset, newDebtAsset);
}
function test_debtSwap_extra_Collateral() public {
address debtAsset = AaveV2EthereumAssets.DAI_UNDERLYING;
address newDebtAsset = AaveV2EthereumAssets.LUSD_UNDERLYING;
address newDebtToken = AaveV2EthereumAssets.LUSD_V_TOKEN;
address extraCollateralAsset = debtAsset;
address extraCollateralAToken = AaveV2EthereumAssets.DAI_A_TOKEN;
uint256 supplyAmount = 120e18;
uint256 borrowAmount = 80e18;
uint256 extraCollateralAmount = 1000e18;
// We want to end with LT > utilisation > LTV, so we pump up the utilisation to 75% by withdrawing (80 > 75 > 67).
uint256 withdrawAmount = supplyAmount - (borrowAmount * 100) / 75;
// Deal some debtAsset to cover the premium and any 1 wei rounding errors on withdrawal.
deal(debtAsset, address(debtSwapAdapter), 1e18);
vm.startPrank(user);
_supply(AaveV2Ethereum.POOL, supplyAmount, debtAsset);
_borrow(AaveV2Ethereum.POOL, borrowAmount, debtAsset);
_withdraw(AaveV2Ethereum.POOL, withdrawAmount, debtAsset);
vm.expectRevert(bytes(Errors.VL_COLLATERAL_CANNOT_COVER_NEW_BORROW));
_borrow(AaveV2Ethereum.POOL, 1, debtAsset);
// Swap debt
// add some margin to account for accumulated debt
uint256 repayAmount = (borrowAmount * 101) / 100;
PsPResponse memory psp = _fetchPSPRoute(
newDebtAsset,
debtAsset,
repayAmount,
user,
false,
true
);
skip(1 hours);
ICreditDelegationToken(newDebtToken).approveDelegation(address(debtSwapAdapter), psp.srcAmount);
IERC20Detailed(extraCollateralAToken).approve(
address(debtSwapAdapter),
extraCollateralAmount + 1
);
IParaswapDebtSwapAdapter.DebtSwapParams memory debtSwapParams = IParaswapDebtSwapAdapter
.DebtSwapParams({
debtAsset: debtAsset,
debtRepayAmount: type(uint256).max,
debtRateMode: 2,
newDebtAsset: newDebtAsset,
maxNewDebtAmount: psp.srcAmount,
extraCollateralAsset: extraCollateralAsset,
extraCollateralAmount: extraCollateralAmount,
offset: psp.offset,
paraswapData: abi.encode(psp.swapCalldata, psp.augustus)
});
IParaswapDebtSwapAdapter.CreditDelegationInput memory cd;
IParaswapDebtSwapAdapter.PermitInput memory collateralATokenPermit;
debtSwapAdapter.swapDebt(debtSwapParams, cd, collateralATokenPermit);
}
function test_debtSwap_extra_Collateral_permit() public {
address debtAsset = AaveV2EthereumAssets.DAI_UNDERLYING;
address newDebtAsset = AaveV2EthereumAssets.LUSD_UNDERLYING;
address newDebtToken = AaveV2EthereumAssets.LUSD_V_TOKEN;
address extraCollateralAsset = debtAsset;
address extraCollateralAToken = AaveV2EthereumAssets.DAI_A_TOKEN;
uint256 supplyAmount = 120e18;
uint256 borrowAmount = 80e18;
uint256 extraCollateralAmount = 1000e18;
// We want to end with LT > utilisation > LTV, so we pump up the utilisation to 75% by withdrawing (80 > 75 > 67).
uint256 withdrawAmount = supplyAmount - (borrowAmount * 100) / 75;
// Deal some debtAsset to cover the premium and any 1 wei rounding errors on withdrawal.
deal(debtAsset, address(debtSwapAdapter), 1e18);
vm.startPrank(user);
_supply(AaveV2Ethereum.POOL, supplyAmount, debtAsset);
_borrow(AaveV2Ethereum.POOL, borrowAmount, debtAsset);
_withdraw(AaveV2Ethereum.POOL, withdrawAmount, debtAsset);
vm.expectRevert(bytes(Errors.VL_COLLATERAL_CANNOT_COVER_NEW_BORROW));
_borrow(AaveV2Ethereum.POOL, 1, debtAsset);
// Swap debt
// add some margin to account for accumulated debt
uint256 repayAmount = (borrowAmount * 101) / 100;
PsPResponse memory psp = _fetchPSPRoute(
newDebtAsset,
debtAsset,
repayAmount,
user,
false,
true
);
skip(1 hours);
ICreditDelegationToken(newDebtToken).approveDelegation(address(debtSwapAdapter), psp.srcAmount);
IParaswapDebtSwapAdapter.DebtSwapParams memory debtSwapParams = IParaswapDebtSwapAdapter
.DebtSwapParams({
debtAsset: debtAsset,
debtRepayAmount: type(uint256).max,
debtRateMode: 2,
newDebtAsset: newDebtAsset,
maxNewDebtAmount: psp.srcAmount,
extraCollateralAsset: extraCollateralAsset,
extraCollateralAmount: extraCollateralAmount,
offset: psp.offset,
paraswapData: abi.encode(psp.swapCalldata, psp.augustus)
});
IParaswapDebtSwapAdapter.CreditDelegationInput memory cd;
IParaswapDebtSwapAdapter.PermitInput memory collateralATokenPermit = _getPermit(
extraCollateralAToken,
address(debtSwapAdapter),
extraCollateralAmount + 1
);
debtSwapAdapter.swapDebt(debtSwapParams, cd, collateralATokenPermit);
}
function test_debtSwap_extra_Collateral_same_as_new_debt() public {
// We'll use the debtAsset & supplyAmount as extra collateral too.
address debtAsset = AaveV2EthereumAssets.DAI_UNDERLYING;
address newDebtAsset = AaveV2EthereumAssets.USDC_UNDERLYING;
address newDebtToken = AaveV2EthereumAssets.USDC_V_TOKEN;
address extraCollateralAsset = newDebtAsset;
address extraCollateralAToken = AaveV2EthereumAssets.USDC_A_TOKEN;
uint256 supplyAmount = 120e18;
uint256 borrowAmount = 80e18;
uint256 extraCollateralAmount = 1000e6;
// We want to end with LT > utilisation > LTV, so we pump up the utilisation to 75% by withdrawing (80 > 75 > 67).
uint256 withdrawAmount = supplyAmount - (borrowAmount * 100) / 75;
// Deal some debtAsset to cover the premium and any 1 wei rounding errors on withdrawal.
deal(debtAsset, address(debtSwapAdapter), 1e18);
vm.startPrank(user);
_supply(AaveV2Ethereum.POOL, supplyAmount, debtAsset);
_borrow(AaveV2Ethereum.POOL, borrowAmount, debtAsset);
_withdraw(AaveV2Ethereum.POOL, withdrawAmount, debtAsset);
vm.expectRevert(bytes(Errors.VL_COLLATERAL_CANNOT_COVER_NEW_BORROW));
_borrow(AaveV2Ethereum.POOL, 1, debtAsset);
// Swap debt
// add some margin to account for accumulated debt
uint256 repayAmount = (borrowAmount * 101) / 100;
PsPResponse memory psp = _fetchPSPRoute(
newDebtAsset,
debtAsset,
repayAmount,
user,
false,
true
);
skip(1 hours);
ICreditDelegationToken(newDebtToken).approveDelegation(address(debtSwapAdapter), psp.srcAmount);
IERC20Detailed(extraCollateralAToken).approve(
address(debtSwapAdapter),
extraCollateralAmount + 1
);
IParaswapDebtSwapAdapter.DebtSwapParams memory debtSwapParams = IParaswapDebtSwapAdapter
.DebtSwapParams({
debtAsset: debtAsset,
debtRepayAmount: type(uint256).max,
debtRateMode: 2,
newDebtAsset: newDebtAsset,
maxNewDebtAmount: psp.srcAmount,
extraCollateralAsset: extraCollateralAsset,
extraCollateralAmount: extraCollateralAmount,
offset: psp.offset,
paraswapData: abi.encode(psp.swapCalldata, psp.augustus)
});
IParaswapDebtSwapAdapter.CreditDelegationInput memory cd;
IParaswapDebtSwapAdapter.PermitInput memory collateralATokenPermit;
debtSwapAdapter.swapDebt(debtSwapParams, cd, collateralATokenPermit);
}
function _supply(ILendingPool pool, uint256 amount, address asset) internal {
deal(asset, user, amount);
IERC20Detailed(asset).approve(address(pool), amount);
pool.deposit(asset, amount, user, 0);
}
function _borrow(ILendingPool pool, uint256 amount, address asset) internal {
pool.borrow(asset, amount, 2, 0, user);
}
function _withdraw(ILendingPool pool, uint256 amount, address asset) internal {
pool.withdraw(asset, amount, user);
}
}