forked from aave-dao/aave-v3-origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAaveV3MockCollateralUpdateWrongBonus.sol
68 lines (55 loc) · 2.28 KB
/
AaveV3MockCollateralUpdateWrongBonus.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
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.0;
import '../../../../src/contracts/extensions/v3-config-engine/AaveV3Payload.sol';
/**
* @dev Smart contracts for a mock collateral update, with wrong LT/LB ratio
* IMPORTANT Parameters are pseudo-random, DON'T USE THIS ANYHOW IN PRODUCTION
* @author BGD Labs
*/
contract AaveV3MockCollateralUpdateWrongBonus is AaveV3Payload {
address public immutable ASSET_ADDRESS;
constructor(address assetAddress, address customEngine) AaveV3Payload(IEngine(customEngine)) {
ASSET_ADDRESS = assetAddress;
}
function collateralsUpdates() public view override returns (IEngine.CollateralUpdate[] memory) {
IEngine.CollateralUpdate[] memory collateralsUpdate = new IEngine.CollateralUpdate[](1);
collateralsUpdate[0] = IEngine.CollateralUpdate({
asset: ASSET_ADDRESS,
ltv: 62_00,
liqThreshold: 90_00,
liqBonus: 12_00,
debtCeiling: EngineFlags.KEEP_CURRENT,
liqProtocolFee: EngineFlags.KEEP_CURRENT
});
return collateralsUpdate;
}
function getPoolContext() public pure override returns (IEngine.PoolContext memory) {
return IEngine.PoolContext({networkName: 'Avalanche', networkAbbreviation: 'Ava'});
}
}
/**
* @dev Smart contracts for a mock collateral update, with correct (but edge) LT/LB ratio
* IMPORTANT Parameters are pseudo-random, DON'T USE THIS ANYHOW IN PRODUCTION
* @author BGD Labs
*/
contract AaveV3MockCollateralUpdateCorrectBonus is AaveV3Payload {
address public immutable ASSET_ADDRESS;
constructor(address assetAddress, address customEngine) AaveV3Payload(IEngine(customEngine)) {
ASSET_ADDRESS = assetAddress;
}
function collateralsUpdates() public view override returns (IEngine.CollateralUpdate[] memory) {
IEngine.CollateralUpdate[] memory collateralsUpdate = new IEngine.CollateralUpdate[](1);
collateralsUpdate[0] = IEngine.CollateralUpdate({
asset: ASSET_ADDRESS,
ltv: 62_00,
liqThreshold: 90_00,
liqBonus: 11_00,
debtCeiling: EngineFlags.KEEP_CURRENT,
liqProtocolFee: EngineFlags.KEEP_CURRENT
});
return collateralsUpdate;
}
function getPoolContext() public pure override returns (IEngine.PoolContext memory) {
return IEngine.PoolContext({networkName: 'Local', networkAbbreviation: 'Loc'});
}
}