forked from aave-dao/aave-v3-origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAaveV3MockCollateralUpdate.sol
36 lines (29 loc) · 1.19 KB
/
AaveV3MockCollateralUpdate.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
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.0;
import '../../../../src/contracts/extensions/v3-config-engine/AaveV3Payload.sol';
/**
* @dev Smart contract for a mock collateral update, for testing purposes
* IMPORTANT Parameters are pseudo-random, DON'T USE THIS ANYHOW IN PRODUCTION
* @author BGD Labs
*/
contract AaveV3MockCollateralUpdate 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: 72_00,
liqBonus: 6_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'});
}
}