Automated yield farming strategies for Avalanche.
npm install
cp .env.sample .env
npx hardhat compile
BlizzardStrategies are an autocompounding primitive. They are designed to be platform-neutral and maximize returns to users from compounding strategies.
BlizzardStrategies are designed to bootstrap growth with fees that may be changed based on ecosystem conditions.
Developers can generate revenue by writing BlizzardStrategies.
Strategies should inherit from BlizzardStrategy.sol
. Most strategies will:
- Accept deposits
- Process withdraws
- Handle compounding
- Take a fee
Strategies should implement the necessary behavior to generate a return on deposits.
Strategy developers have the ultimate control over functionality. Yield Blizzard may choose to support the underlying strategies with platform integrations.
BlizzardVaults are designed to be flexible user interfaces for BlizzardStrategies. BlizzardVaults may be comprised of many BlizzardStrategies.
The example implementation BlizzardVault.sol
is a managed vault, designed to meet user preferences for risk/reward based on a manager.
Most BlizzardVaults will:
- Accept multiple deposit types
- Process withdraws
- Manage rebalances
- Take a fee