Morpho Optimizers improve the capital efficiency of positions on existing lending pools by seamlessly matching users peer-to-peer.
TL;DR: Instead of borrowing or lending on your favorite pool like Compound or Aave, you would be better off using Morpho Optimizers.
Morpho Optimizers are designed at their core with a set of contracts delegating calls to implementation contracts (to overcome the contract size limit).
Here is a brief overview of the Morpho Optimizers' contracts interactions:
The main user's entry points are exposed in the Morpho
contract. It inherits from MorphoGovernance
, which contains all the admin functions of the DAO, MorphoUtils
, and MorphoStorage
, where the protocol's storage is located. This contract delegates call to other contracts that have the same storage layout:
PositionsManager
: logic of basic supply, borrow, withdraw, repay, and liquidate functions. The Morpho-AaveV2 Optimizer is separated into two contracts, EntryPositionsManager
and ExitPositionsManager
. These contracts inherit from MatchingEngine
, which contains the matching engine's internal functions.InterestRatesManager
: logic of indexes computation.It also interacts with RewardsManager
, which manages the underlying pool's rewards, if any.
All audits are stored in the audits' folder.
A bug bounty is open on Immunefi. The rewards and scope are defined here. You can email security@morpho.org if you find something worrying.
Using npm:
npm install @morpho-dao/morpho-v1
Using forge:
forge install @morpho-dao/morpho-v1@v2.0.0
Using git submodules:
git submodule add @morpho-dao/morpho-v1@v2.0.0 lib/morpho-v1
Tests are run against a fork of real networks, allowing us to interact directly with Compound or Aave liquidity pools. Note that you need an RPC provider with access to Ethereum or Polygon.
For testing, make sure yarn
and foundry
are installed and install dependencies (node_modules, git submodules) with:
make install
Alternatively, if you only want to set up
Refer to the env.example
for the required environment variable.
To run tests on different protocols, navigate a Unix terminal to the root folder of the project and run the command of your choice:
To run every test of a specific protocol (e.g. for the Morpho-Compound Optimizer):
make test PROTOCOL=compound
or to run only a specific set of tests of a specific protocol (e.g. for the Morpho-AaveV2 Optimizer):
make c-TestBorrow PROTOCOL=aave-v2
or to run an individual test of a specific protocol (e.g. for the Morpho-AaveV2 Optimizer):
make test-testBorrow1 PROTOCOL=aave-v2
For the other commands, check the Makefile.
If you want to call a custom forge command and not have to edit the Makefile
, you can source the export_env.sh
script by calling . ./export_env.sh
.
:warning: The export_env.sh
script exports environment variables in the current shell, meaning that subsequent calls to make
or forge
will use those variables. Variables defined in the .env.local
file will still override those if you run make
later. If you don't want to change variables in the current shell, you can always create a new shell in one of the following ways:
( . ./export_env.sh && forge test )
if the command you want to run is forge test
bash
and then . ./export_env.sh
followed by your commands and then exit
to return to the parent shell and clear the environment variables.Only tests for the RewardsDistributor are run with Hardhat.
Just run:
yarn test
Test coverage is reported using foundry coverage with lcov report formatting (and optionally, genhtml transformer).
To generate the lcov
report, run the following:
make coverage
The report is then usable either:
make lcov-html
to transform the report and opening coverage/index.html
:warning: Test coverage is not available on the Morpho-AaveV2 Optimizer for this reason
2 CI pipelines are currently running on every PR to check that the changes introduced are not modifying the storage layout of proxied smart contracts in an unsafe way:
In the case the storage layout snapshots checked by storage-layout.sh
are not identical, the developer must commit the updated storage layout snapshot stored under snapshots/ by running:
make storage-layout-generate
with the appropriate protocol parametersRun the Foundry deployment script with:
make script-Deploy PROTOCOL=compound NETWORK=goerli
First start a local EVM:
make anvil NETWORK=goerli
Then run the Foundry deployment script in a separate shell, using SMODE=local
:
make script-Deploy PROTOCOL=compound NETWORK=goerli SMODE=local
For any questions or feedback, you can send an email to merlin@morpho.org.
The code is under the GNU AFFERO GENERAL PUBLIC LICENSE v3.0, see LICENSE
.