바우트
디지털 자산을 보유하고 관리하는 스마트 계약은 일반적으로 수익을 창출하거나 DeFi 프로토콜에 참여합니다.
Vault는 예치된 자산에 대한 수익을 최적화하기 위해 다양한 DeFi 프로토콜과 상호 작용하는 자동화된 전략입니다. 대출, 스테이킹 및 유동성 제공과 같은 다양한 전략을 사용하여 수익을 창출합니다. 사용자는 자산을 vault에 예치하고, vault의 스마트 컨트랙트는 선택된 전략을 자동으로 실행합니다. Vault는 DeFi의 복잡성을 추상화하여 사용자가 자산을 적극적으로 관리하지 않고도 수동 소득을 얻을 수 있도록 합니다. 일반적으로 사용 및 성능에 대한 수수료가 포함됩니다.
graph LR
Center["바우트"]:::main
Pre_mathematics["mathematics"]:::pre --> Center
click Pre_mathematics "/terms/mathematics"
Rel_smart_contracts["smart-contracts"]:::related -.-> Center
click Rel_smart_contracts "/terms/smart-contracts"
Rel_smart_contract["smart-contract"]:::related -.-> Center
click Rel_smart_contract "/terms/smart-contract"
Rel_blockchain["blockchain"]:::related -.-> Center
click Rel_blockchain "/terms/blockchain"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧠 지식 테스트
🧒 5살도 이해할 수 있게 설명
🏦 It's like a 'smart savings account'. Instead of you manually moving your money from one bank to another to find the best interest rate, you put your money in a Vault. The Vault then automatically finds the best deals, moves the money for you, and 'compounds' the interest back into your account so it grows faster.
🤓 Expert Deep Dive
Vaults in Decentralized Finance (DeFi) represent an evolution of smart contract-based asset management, abstracting complex, multi-protocol yield optimization strategies into a single, user-friendly interface. At their core, vaults are smart contracts that implement specific, often dynamic, investment strategies. These strategies can involve a spectrum of DeFi primitives:
Lending: Depositing assets into protocols like Aave or Compound to earn interest.
Liquidity Provision (LP): Supplying assets to Automated Market Makers (AMMs) such as Uniswap or Curve, often in pairs, to earn trading fees and sometimes additional token rewards.
Staking: Locking up native tokens (e.g., ETH 2.0, or governance tokens of other protocols) to secure networks or earn protocol-specific rewards.
Leveraged Yield Farming: Utilizing borrowed assets to amplify exposure to LP positions, aiming for higher yields but also increasing risk.
* Arbitrage: Exploiting price discrepancies across different DEXs or lending platforms.
The vault contract acts as an intermediary. Users deposit assets (e.g., ETH, stablecoins) into the vault. The vault's strategy contract then interacts with other DeFi protocols, often programmatically via Solidity function calls, to deploy these assets according to its predefined logic. This logic can be deterministic or employ oracles and off-chain computation for more complex decision-making. For instance, a vault might rebalance its LP positions based on impermanent loss thresholds or shift funds between lending protocols based on prevailing APYs.
Key architectural components include:
- Vault Contract: Manages user deposits/withdrawals, tracks user shares (often via ERC-20 tokens representing their stake), and holds the pooled assets.
- Strategy Contract: Contains the specific logic for interacting with external DeFi protocols. Multiple strategy contracts can exist for a single vault type, allowing for diversification or specialized approaches.
- Controller/Manager Contract: Often responsible for authorizing strategy contracts to interact with the vault, managing risk parameters, and potentially triggering strategy upgrades.
A common accounting mechanism involves shares and base assets. When a user deposits X amount of base asset, they receive Y amount of share tokens. As the vault's strategy generates yield, the base asset value behind each share token increases. A withdrawal of Y share tokens would then redeem Z amount of base asset, where Z > X, reflecting the accrued profits. Fees are typically deducted from the generated yield before distribution to users, often structured as a management fee (e.g., 2% APY) and a performance fee (e.g., 20% of profits above a certain threshold).