| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | // SPDX-License-Identifier: BlueOak-1.0.0
pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface ISTETH is IERC20 {
function handleOracleReport(uint256 _beaconValidators, uint256 _beaconBalance) external;
function getBeaconStat()
external
view
returns (
uint256 depositedValidators,
uint256 beaconValidators,
uint256 beaconBalance
);
}
|