Asset and shares
Every 4626 vault has one underlying ERC-20 (asset()) and issues an ERC-20 share token (balanceOf, transfer, etc.). Shares represent a pro-rata claim on totalAssets().
Standards
ERC-4626 defines a common interface for any vault that wraps a single ERC-20 underlying asset. Deposit, mint, withdraw, redeem, share accounting — every 4626 vault speaks the same language, so the rest of DeFi can integrate without bespoke adapters. 4626.fun applies the standard to creator coins on Base.
Every 4626 vault has one underlying ERC-20 (asset()) and issues an ERC-20 share token (balanceOf, transfer, etc.). Shares represent a pro-rata claim on totalAssets().
deposit(assets, receiver) mints shares. redeem(shares, receiver, owner) burns shares and returns assets. convertToShares and convertToAssets express the current exchange rate.
maxDeposit, maxWithdraw, previewDeposit, previewRedeem let integrators reason about caps and round-trip values without simulating a full transaction.
Wallets, portfolio trackers, aggregators, and downstream protocols already understand ERC-4626. A creator-coin vault built on the standard inherits that integration surface without writing a single bespoke adapter.
The standard's narrow interface and well-known reference implementations mean auditors can focus on the strategy and accounting logic rather than re-deriving deposit-and-redeem semantics from scratch.
4626 vaults can route capital through any combination of DeFi primitives — lending, concentrated LP, cross-chain — while presenting a single uniform share to the depositor.
A vault share is just an ERC-20. It can be held, sent, used as collateral, or wrapped further — the position itself is portable, not locked inside a custom interface.
Some vault strategies can't always settle in a single transaction — cross-chain bridges, concentrated LP unwinds, or auction-priced exits. EIP-7540 extends ERC-4626 with a request-and-claim lifecycle so async withdrawals stay inside the standard's interface.
pendingDepositRequest and claimableDepositRequest.How 4626.fun applies the standard to creator coins.
How vault share tokens are distributed at launch via Uniswap V4.
The difference between anonymous yield aggregation and creator-coin-first vault infrastructure.