-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* flash mint hyeth v3 * DexAdapterV3 with BalancerV2 support --------- Co-authored-by: Edward Kim <[email protected]> Co-authored-by: christn <[email protected]>
- Loading branch information
1 parent
7202ed7
commit b4b7216
Showing
9 changed files
with
2,389 additions
and
3 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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: UNLICENSED | ||
pragma solidity 0.6.10; | ||
|
||
interface IRsEthAdapter { | ||
function depositRsETH(uint256 rsETHAmount, string memory referralId) external; | ||
function getRSETHWithERC20(address asset, uint256 depositAmount, string memory referralId) external; | ||
function getRSETHWithETH(string memory referralId) external payable; | ||
function lrtDepositPool() external view returns (address); | ||
function rsETH() external view returns (address); | ||
function vault() external view returns (address); | ||
} |
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
Oops, something went wrong.