Keybase proof
I hereby claim:
- I am storming0x on github.
- I am storm0x (https://keybase.io/storm0x) on keybase.
- I have a public key ASDyCqbBmMVbYmA-iVjRORYLkFFDO3Em3msuEcj5XbNDOwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
This is a living guide that defines a development process for The Yearn.finance Core Protocol.
We want to make contributing to this project as easy and transparent as possible, whether it's:
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.6.2; | |
pragma experimental ABIEncoderV2; | |
interface VaultLike { | |
function available() external view returns (uint); | |
function earn() external; | |
} | |
contract Context { |