Skip to content

Commit

Permalink
Merge branch 'master' into add_vyper_linting
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu committed Nov 5, 2020
2 parents 565b737 + 5a6f96c commit e249884
Show file tree
Hide file tree
Showing 5 changed files with 536 additions and 115 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# yEarn Vault Contracts
# Yearn Vault Contracts

Please read and be familiar with the [Specification](SPECIFICATION.md).

This repository is the set of smart contracts that are used for the Yearn Vaults.
It contains the requirements, code, deployment scripts, and tests necessary for the
core protocol, including a inheritable template strategy for use with Solidity-based
strategies that interact with yEarn Vaults. These contracts are used to create a simple
strategies that interact with Yearn Vaults. These contracts are used to create a simple
way to generate high risk-adjusted returns for depositors of various assets via best-
in-class lending protocols, liquidity pools, and community-made yield farming strategies
on Ethereum.
Expand Down Expand Up @@ -179,7 +179,7 @@ For security concerns, please visit [Bug Bounty](https://github.com/iearn-financ

### Documentation

You can read more about yEarn finance on our documentation [webpage](https://docs.yearn.finance).
You can read more about Yearn Finance on our documentation [webpage](https://docs.yearn.finance).

### Discussion

Expand Down
4 changes: 2 additions & 2 deletions contracts/BaseStrategy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ abstract contract BaseStrategy {
* use that estimate to make a determination if calling it is "worth it" for the keeper.
* This is not the only consideration into issuing this trigger, for example if the position
* would be negatively affected if `tend()` is not called shortly, then this can return `true`
* even if the keeper might be "at a loss" (keepers are always reimbursed by yEarn)
* even if the keeper might be "at a loss" (keepers are always reimbursed by Yearn)
*
* NOTE: `callCost` must be priced in terms of `want`
*
Expand All @@ -291,7 +291,7 @@ abstract contract BaseStrategy {
* use that estimate to make a determination if calling it is "worth it" for the keeper.
* This is not the only consideration into issuing this trigger, for example if the position
* would be negatively affected if `harvest()` is not called shortly, then this can return `true`
* even if the keeper might be "at a loss" (keepers are always reimbursed by yEarn)
* even if the keeper might be "at a loss" (keepers are always reimbursed by Yearn)
*
* NOTE: `callCost` must be priced in terms of `want`
*
Expand Down
Loading

0 comments on commit e249884

Please sign in to comment.