vault detail
Live read of the deployed Vault contract — state flags, asset composition, ERC-4626 previews, and the full read-surface for verification.
vault state
- status
- operational
- network
- —
- underlying asset
- —
- underlyings
- —
- owner
- —
- agent did
- —
underlyings breakdown
loading registry…
preview simulator
i would receive
— vault shares
i would receive
— usdc
previews are non-binding view calls and exclude tx gas. live values update every 30s.
yield leaderboard
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.
contract reads
| function | signature | current 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.