/**
* @notice Get amount of underlying asset for a given amount of shares.
*/
function getValueByShares(uint256 shares) external view returns (uint256 value);
资产值的小数位数
/**
* @notice Get the decimals of the values.
*/
function getOracleDecimals() external view returns (uint8);
LST预言机合约地址
/**
* @notice Get the address of LST Oracle.
*/
function getOracle() public view returns (address);
LST预言机合约
获取净资产值 (NAV: Net Asset Value)
function getNav(address erc20) external view returns (uint256);
净资产值的小数位数
function navDecimals(address erc20) external view returns (uint8);