IENavView
Last updated
Provides view methods to retrieve token balances and NAV without modifying state
Designed for off-chain queries like DeFiLlama, subgraphs, or ZK proof generation
function getNavDataView() external view returns (struct NavView.NavData navData)Returns complete NAV data for the pool
navData
struct NavView.NavData
Struct containing totalValue, unitaryValue, and timestamp
function getAppTokensAndBalancesView() external view returns (struct AppTokenBalance[] apps)Returns application token balances for external positions
apps
struct AppTokenBalance[]
Array of AppTokenBalance structs with balances
Last updated