What It Does
Aera V3 is a noncustodial, trustless smart contract protocol for on-chain treasury and yield management. It provides the vault contracts, permission model, and extensibility framework that powers the majority of Gauntlet’s vault infrastructure across Ethereum, Arbitrum, Base, Optimism, Polygon, and Avalanche. Aera V3 handles asset custody, operation validation, and hook-based extensibility while Gauntlet handles curation, strategy, and risk management.How Gauntlet Uses It
Gauntlet deploys Aera V3 vaults in two configurations:- Single-depositor vaults serve dedicated treasuries where one entity deposits capital and Gauntlet manages strategy execution. These use
SingleDepositorVaultcontracts with time-delayed fee calculation. - Multi-depositor vaults accept deposits from multiple participants through a
Provisionercontract that handles minting, redeeming, and async order fulfillment. These useMultiDepositorVaultcontracts with unit-based fee calculation.
What Integrators Touch
Aera V3 vaults expose the standard ERC-4626 tokenized vault interface. Integrators use the samedeposit/redeem patterns described in the Deposits and Withdrawals guide.
Key integration considerations:
- Vault type matters: Single-depositor vaults have direct deposit/withdraw on the vault contract. Multi-depositor vaults route through a Provisioner with async fulfillment. See Vault Types.
- Fees: Aera V3 includes a
FeeVaultcontract for on-chain fee accrual and claiming. Partners can configure fee recipients. See Fees. - Wrapper vaults: Partners needing bespoke allocations or custom fee configurations can use wrapper vaults that deposit into underlying Gauntlet vaults. See Wrapper Vaults.
- Data: Vault metrics are available through the Gauntlet API and on-chain. See Displaying Data.
Related Pages
- Deposits and Withdrawals — ERC-4626 deposit and withdrawal flows
- Vault Types — Single-depositor and multi-depositor architectures
- Fees — Fee types, FeeVault integration, and fee recipient setup
- Deployed Vaults — Aera V3 vault addresses by chain
- Contract Reference — Full contract documentation