From 827fb2db72690230b38163f7beaa78149d58712b Mon Sep 17 00:00:00 2001 From: Julian Traversa Date: Tue, 25 Jan 2022 02:24:50 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a61c7e1..f36ece0 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ ``` # Swuniswap-v3 -A Uniswap v3 Equivalent for Swivel's Orderbook. +A Uniswap v3-esque implementation for Swivel's Orderbook. ----------- From ea65496f0502312d186d361f5f4dd34c460f7db3 Mon Sep 17 00:00:00 2001 From: Julian Traversa Date: Fri, 28 Jan 2022 18:38:13 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f36ece0..2c87a00 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,17 @@ A Uniswap v3-esque implementation for Swivel's Orderbook. ----------- -# **Instructions:** +# **Introduction:** -Set your upper and lower ranges and let Swuniswap-v3 run things from there! +Set your upper and lower ranges in /constants and let Swuniswap-v3 run things from there! -For Strategy Information: https://swivel.substack.com/p/market-making-in-yield-markets +General Strategy Information: https://swivel.substack.com/p/market-making-in-yield-markets + +This strategy takes a user defined range and allocates user liquidity across that range, similar to Uniswap v3. + +After this initial liquidity allocation, the strategy continuously adjusts prices according to the factors discussed in the article above (Underlying Rates and Theta). + +Once every X seconds, orders expire and are replaced with newly updated quotes. -------- From c5393f196e51c1f43afa9e07020c6caee1827b89 Mon Sep 17 00:00:00 2001 From: Julian Traversa Date: Fri, 28 Jan 2022 18:39:06 -0500 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c87a00..d5c87bf 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ This strategy takes a user defined range and allocates user liquidity across tha After this initial liquidity allocation, the strategy continuously adjusts prices according to the factors discussed in the article above (Underlying Rates and Theta). -Once every X seconds, orders expire and are replaced with newly updated quotes. +Specifically, the strategy accomplishes this by ensuring orders are only valid for a limited time, and once expired are replaced with newly updated quotes. --------