For the complete documentation index, see llms.txt. This page is also available as Markdown.

Indexing Vaults

Two different needs, two different answers.

You just need your own vaults (or your users' vaults)

If all you care about is "give me the vaults for this wallet address, or for this list of wallet addresses" β€” use the Public API. No indexing, no event processing, no node operations required.

  • POST /vaults/query/by-client-addresses takes a list of wallet addresses and returns the vaults owned by each.

  • GET /vaults/{vault} returns full detail for a single vault.

See Reading Vault Data for a walkthrough and Reference β†’ Public API for the full endpoint list.

You want to index every vault ever created

If you need a local view of all vaults created by Tesseract β€” for partner-wide dashboards, analytics, third-party data services, or anything you don't want routed through our API β€” index the on-chain VaultDeployed event.

There is one deployer per supported asset (USDC / WETH / WBTC), so the indexer needs to watch all three contract addresses.

Once you have the vault address, everything else is standard β€” ERC‑4626 views on the vault, the vault's WithdrawManager for scheduled withdrawals, and the Public API for performance / decoded history.

Last updated

Was this helpful?