Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix list display #348

Merged
merged 2 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/developers/v3/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions docs/developers/v3/vault_management.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading