diff --git a/docs/developers/v3/overview.md b/docs/developers/v3/overview.md index c955f909f2..2f762d0518 100644 --- a/docs/developers/v3/overview.md +++ b/docs/developers/v3/overview.md @@ -22,9 +22,9 @@ So whether you are a full-blown gas golfing expert, a degen looking to codify yo ## Get started -- [Building your own V3 Strategy](https://docs.yearn.fi/developers/v3/strategy_development.md) -- [Deploying and managing a V3 Vault](https://docs.yearn.fi/developers/v3/vault_management.md) -- [Protocol Fees](https://docs.yearn.fi/developers/v3/protocol_fees.md) +- [Building your own V3 Strategy](https://docs.yearn.fi/developers/v3/strategy_development) +- [Deploying and managing a V3 Vault](https://docs.yearn.fi/developers/v3/vault_management) +- [Protocol Fees](https://docs.yearn.fi/developers/v3/protocol_fees) ## Contract Addresses diff --git a/docs/developers/v3/vault_management.md b/docs/developers/v3/vault_management.md index 5544be402e..bc25f9a1d4 100644 --- a/docs/developers/v3/vault_management.md +++ b/docs/developers/v3/vault_management.md @@ -8,11 +8,11 @@ Running your vault requires no need to know how to code. Anyone desiring to mana ## Definitions -**vault**: ERC-4626 compliant contract that accepts deposits, issues shares, and allocates funds to different strategies to earn yield. -**shares**: A tokenized representation of a depositor's share of the underlying balance of a vault. -**strategy**: Any ERC-4626 compliant contract that can be added to a vault that earns yield on an underlying asset. -**debt**: The amount of the underlying asset that a vault has sent to a strategy to earn yield. -**report**: The function where a vault accounts for any profits or losses a strategy has accrued, charges applicable fees, and locks profit to be distributed to depositors. +- **vault**: ERC-4626 compliant contract that accepts deposits, issues shares, and allocates funds to different strategies to earn yield. +- **shares**: A tokenized representation of a depositor's share of the underlying balance of a vault. +- **strategy**: Any ERC-4626 compliant contract that can be added to a vault that earns yield on an underlying asset. +- **debt**: The amount of the underlying asset that a vault has sent to a strategy to earn yield. +- **report**: The function where a vault accounts for any profits or losses a strategy has accrued, charges applicable fees, and locks profit to be distributed to depositors. ## Deployment