-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FXD-78_StakingSystemForLiquidator 2024 Jan 18th FSLS replace FlashLen…
…ding to VaultLending Replaced flahsLending to vaultLending since the vaultLending contract(LiquidationStrategy contract that will be connected to FathomVault) will also include logic that deals with flashLending.
- Loading branch information
1 parent
ab2db54
commit 8590172
Showing
2 changed files
with
15 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// SPDX-License-Identifier: AGPL-3.0-or-later | ||
pragma solidity 0.8.17; | ||
|
||
interface IVaultLendingCallee { | ||
function vaultLendingCall( | ||
address caller, | ||
uint256 debtValueToRepay, // [rad] | ||
uint256 collateralAmountToLiquidate, // [wad] | ||
bytes calldata | ||
) external; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters