mirror of
https://github.com/Instadapp/fluid-contracts-public.git
synced 2024-07-29 21:57:37 +00:00
d7a58e88ff
ARB: deploy protocols
17 lines
502 B
Solidity
17 lines
502 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.21;
|
|
|
|
interface IWeETH {
|
|
/**
|
|
* @notice Get amount of eETH for {_weETHAmount} weETH
|
|
* @return Amount of eETH for {_weETHAmount} weETH
|
|
*/
|
|
function getEETHByWeETH(uint256 _weETHAmount) external view returns (uint256);
|
|
|
|
/**
|
|
* @notice Get amount of weETH for {_eETHAmount} eETH
|
|
* @return Amount of weETH for {_eETHAmount} eETH
|
|
*/
|
|
function getWeETHByeETH(uint256 _eETHAmount) external view returns (uint256);
|
|
}
|