Solidity Smart Contract template for creating your own contract.
Interfaces for some of the most used DeFi protocols on ethereum mainnet.
Sample test suite that runs on mainnet fork.
Let's say Alice holds 100 DAI and wants to start earning yield % on them.
For this Alice needs to DAI.approve(yVault.address, 100)
.
Then Alice will call yVault.deposit(100)
.
yVault will then transfer 100 DAI from Alice to itself, and mint Alice the corresponding shares.
Alice can then redeem those shares using yVault.withdrawAll()
for the corresponding DAI balance.
TODO
-
Install Dev dependencies:
pip3 install -r requirements-dev.txt
- Use whatever pip version avaiable
-
Install ganache-cli:
npm install -g [email protected]
-
For those of you using Node 14, you'll need to launch ganache-cli via node 8, 10, or 12 until this is fixed. For example, run nvm use 12 && npm install ganache-cli -g to install for node 12, and then run ganache-cli with nvm use 12 && ganache-cli.
-
-
Install npm dependencies:
npm install
-
Install project dependencies:
$ brownie pm install iearn-finance/[email protected]
$ brownie pm install OpenZeppelin/[email protected]
-
Copy
.env.example
to.env
-
Setup
ETHERSCAN_TOKEN
&WEB3_INFURA_PROJECT_ID
on.env
-
Compile contracts with:
npm run compile
-
Run tests with:
npm test