File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
// SPDX-License-Identifier: MIT
2
2
pragma solidity ^ 0.8.27 ;
3
3
4
- /// @title A minimal interface for the wstETH contract indended to read the
5
- /// stETH value per token value of 1 unit of wstETH.
4
+ /// @title A minimal interface for the wstETH contract on Ethereum, used to read
5
+ /// the stETH value per token value of 1 unit of wstETH.
6
6
interface IWstETH {
7
7
/// @notice Returns the stETH value per token value of 1 unit of wstETH.
8
8
function stEthPerToken () external view returns (uint256 );
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ pragma solidity ^0.8.27;
4
4
import "@api3/contracts/interfaces/IApi3ReaderProxy.sol " ;
5
5
import "./IWstETH.sol " ;
6
6
7
- /// @title An immutable proxy contract that reads the price of wstETH directly
8
- /// from the WstETH contract on Ethereum.
7
+ /// @title An immutable proxy contract that reads the price of wstETH/stETH
8
+ /// directly from the WstETH contract on Ethereum.
9
9
/// @dev This contract implements only the IApi3ReaderProxy and not the
10
10
/// AggregatorV2V3Interface which is usually implemented with Api3 proxies. The
11
11
/// user of this contract needs to be aware of this and only use this contract
You can’t perform that action at this time.
0 commit comments