F-002 · VAULT DETAIL

vault detail

Live read of the deployed Vault contract — state flags, asset composition, ERC-4626 previews, and the full read-surface for verification.

++
vault tvl
total supply
share price
next nonce
state
++

vault state

loading
status
operational
network
underlying asset
underlyings
owner
agent did
composition
++

underlyings breakdown

loading

loading registry…

++

preview simulator

computing
if i deposit
usdc

i would receive

vault shares

if i redeem
shares

i would receive

usdc

previews are non-binding view calls and exclude tx gas. live values update every 30s.

yield
++

yield leaderboard

probing

probing underlying apy…

++

how apy works
the agent probes each underlying vault's convertToAssets(1e18) — a read-only call that estimates how many USDC you get per share deposited. higher values signal stronger returns.

this is a naive proxy. production would track share-price velocity (dw/dt) over rolling windows for a true annualized rate.

reference
++

contract reads

13 fns
functionsignaturecurrent value
totalAssets() → (uint256)
totalSupply() → (uint256)
balanceOf(address) → (uint256)
paused() → (bool)
nextNonce() → (uint256)
agentDid() → (address)
owner() → (address)
getUnderlyings() → (address[])
asset() → (address)
previewDeposit(uint256) → (uint256)
previewRedeem(uint256) → (uint256)
convertToAssets(uint256) → (uint256)
convertToShares(uint256) → (uint256)

only view fns shown. write surface (deposit, withdraw, rebalance, setPaused, emergencyWithdrawAll) lives in their own cards.