From 0480fabd4dafcd8199a7db8aa8aedf03af2b209a Mon Sep 17 00:00:00 2001 From: Adrien Husson Date: Wed, 27 Dec 2023 16:35:50 +0100 Subject: [PATCH 1/4] give empty IRM address in docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b7dce9e6..c03061b4 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ To achieve this, it is advised to allocate "idle" funds to any market on Morpho - The vault's asset as loan token. - No collateral token (`address(0)`). -- An arbitrary IRM. +- An arbitrary IRM (`address(0)`). - An arbitrary oracle (`address(0)`). - An arbitrary LLTV. From a0050478425d898d84900a2c9cb27df2f97b2c26 Mon Sep 17 00:00:00 2001 From: MathisGD <74971347+MathisGD@users.noreply.github.com> Date: Wed, 27 Dec 2023 20:01:18 +0100 Subject: [PATCH 2/4] docs: minor update Signed-off-by: MathisGD <74971347+MathisGD@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c03061b4..450ad256 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ To achieve this, it is advised to allocate "idle" funds to any market on Morpho - No collateral token (`address(0)`). - An arbitrary IRM (`address(0)`). - An arbitrary oracle (`address(0)`). -- An arbitrary LLTV. +- An arbitrary LLTV (`address(0)`). Thus, these funds cannot be borrowed on Morpho Blue and are guaranteed to be liquid; though it won't generate interest. From ff5e796436c5131c04ea6ed3c27370f814919769 Mon Sep 17 00:00:00 2001 From: Adrien Husson Date: Wed, 27 Dec 2023 20:13:47 +0100 Subject: [PATCH 3/4] fix LLTV type --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 450ad256..f8bf46b1 100644 --- a/README.md +++ b/README.md @@ -104,9 +104,9 @@ To achieve this, it is advised to allocate "idle" funds to any market on Morpho - The vault's asset as loan token. - No collateral token (`address(0)`). -- An arbitrary IRM (`address(0)`). +- A non-reverting IRM (`address(0)`). - An arbitrary oracle (`address(0)`). -- An arbitrary LLTV (`address(0)`). +- An arbitrary LLTV (`0`). Thus, these funds cannot be borrowed on Morpho Blue and are guaranteed to be liquid; though it won't generate interest. From 2e144bfe94364c1f9fe4b68ed1b8294cea426332 Mon Sep 17 00:00:00 2001 From: Adrien Husson Date: Wed, 27 Dec 2023 20:15:58 +0100 Subject: [PATCH 4/4] add IRM requirement --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f8bf46b1..ea7f6189 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ To achieve this, it is advised to allocate "idle" funds to any market on Morpho - The vault's asset as loan token. - No collateral token (`address(0)`). -- A non-reverting IRM (`address(0)`). +- An IRM that does not trigger a revert (`address(0)`). - An arbitrary oracle (`address(0)`). - An arbitrary LLTV (`0`).