dsa-polygon-migration/contracts/senders/aave-v2-migrator/events.sol

33 lines
704 B
Solidity
Raw Normal View History

pragma solidity >=0.7.0;
pragma experimental ABIEncoderV2;
contract Events {
2021-04-11 16:53:42 +00:00
event LogSettle(
address[] tokens,
uint256[] amts
);
event LogAaveV2Migrate(
address indexed user,
address indexed targetDsa,
address[] supplyTokens,
address[] borrowTokens,
2021-04-11 16:53:42 +00:00
uint256[] supplyAmts,
uint256[] variableBorrowAmts,
uint256[] stableBorrowAmts
);
2021-04-11 16:21:23 +00:00
event LogUpdateVariables(
uint256 oldFee,
uint256 newFee,
uint256 oldSafeRatioGap,
uint256 newSafeRatioGap
);
event LogAddSupportedTokens(
2021-04-14 22:12:24 +00:00
address[] tokens
);
2021-04-12 23:05:47 +00:00
2021-04-14 22:12:24 +00:00
event LogVariablesUpdate(uint _safeRatioGap, uint _fee);
2021-04-13 22:43:51 +00:00
}