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