mirror of
https://github.com/Instadapp/dsa-connectors-2.0.git
synced 2024-07-29 21:57:39 +00:00
17 lines
421 B
Solidity
17 lines
421 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.2;
|
|
|
|
interface IFluidStETHQueue {
|
|
function queue(
|
|
uint256 ethBorrowAmount_,
|
|
uint256 stETHAmount_,
|
|
address borrowTo_,
|
|
address claimTo_
|
|
) external returns (uint256 requestIdFrom_);
|
|
|
|
function claim(
|
|
address claimTo_,
|
|
uint256 requestIdFrom_
|
|
) external returns (uint256 claimedAmount_, uint256 repayAmount_);
|
|
}
|