/**
* @notice Get amount of underlying asset for a given amount of shares.
*/
function getValueByShares(uint256 shares) external view returns (uint256 value);
Decimals of values
/**
* @notice Get the decimals of the values.
*/
function getOracleDecimals() external view returns (uint8);
Contract address of LST Oracle
/**
* @notice Get the address of LST Oracle.
*/
function getOracle() public view returns (address);
LST Oracle Contract
Code URL
Get Nav
function getNav(address erc20) external view returns (uint256);
Nav Decimals
function navDecimals(address erc20) external view returns (uint8);