Skip to content

Commit

Permalink
Update briefcase
Browse files Browse the repository at this point in the history
Changes:
A	src/protocols/v4-periphery/interfaces/external/IWstETH.sol
  • Loading branch information
github-actions[bot] committed Feb 24, 2025
1 parent 64eed84 commit 787cdda
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/protocols/v4-periphery/interfaces/external/IWstETH.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.6.2;

// SPDX-FileCopyrightText: 2021 Lido <[email protected]>
// https://github.com/lidofinance/core/blob/master/contracts/0.6.12/WstETH.sol

/* See contracts/COMPILERS.md */

interface IWstETH {
function wrap(uint256 _stETHAmount) external returns (uint256);
function unwrap(uint256 _wstETHAmount) external returns (uint256);
function getStETHByWstETH(uint256 _wstETHAmount) external view returns (uint256);
function getWstETHByStETH(uint256 _stETHAmount) external view returns (uint256);
function stETH() external view returns (address);
}

0 comments on commit 787cdda

Please sign in to comment.