mirror of
https://github.com/Instadapp/fluid-contracts-public.git
synced 2024-07-29 21:57:37 +00:00
d7a58e88ff
ARB: deploy protocols
20 lines
760 B
Solidity
20 lines
760 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.21;
|
|
|
|
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
|
|
import { FluidStETHQueue } from "../../../contracts/protocols/steth/main.sol";
|
|
import { IFluidLiquidity } from "../../../contracts/liquidity/interfaces/iLiquidity.sol";
|
|
import { ILidoWithdrawalQueue } from "../../../contracts/protocols/steth/interfaces/external/iLidoWithdrawalQueue.sol";
|
|
|
|
contract FluidStETHQueueExposed is FluidStETHQueue {
|
|
constructor(
|
|
IFluidLiquidity liquidity_,
|
|
ILidoWithdrawalQueue lidoWithdrawalQueue_,
|
|
IERC20 stETH_
|
|
) FluidStETHQueue(liquidity_, lidoWithdrawalQueue_, stETH_) {}
|
|
|
|
function exposed_status() external view returns (uint8) {
|
|
return _status;
|
|
}
|
|
}
|