add withdraw & withdrawAll func to DODO Eth proxy

This commit is contained in:
mingda
2020-07-11 01:11:10 +08:00
parent 1458d8edaa
commit aacc3ca91e
2 changed files with 59 additions and 3 deletions

View File

@@ -44,4 +44,8 @@ interface IDODO {
function withdrawQuote(uint256 amount) external returns (uint256);
function withdrawAllQuote() external returns (uint256);
function _BASE_CAPITAL_TOKEN_() external returns (address);
function _QUOTE_CAPITAL_TOKEN_() external returns (address);
}