Skip to content

Commit 4f43adf

Browse files
committed
docs
1 parent 4cf1163 commit 4f43adf

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Euler Maglev
22

3-
![maglev logo](docs/maglev.png)
3+
![Maglev logo](docs/maglev.png)
44

5-
Maglev is an Automated Market Maker (AMM) that uses [Euler Vaults](https://docs.euler.finance/euler-vault-kit-white-paper/) to *mag*nify capital efficiency using *lev*erage. By borrowing assets as needed, maglev AMMs can extend the range of their reserves and earn fees on trades several times larger than their liquidity outlay.
5+
Maglev is an Automated Market Maker (AMM) that uses [Euler Vaults](https://docs.euler.finance/euler-vault-kit-white-paper/) to *mag*nify capital efficiency using *lev*erage. By borrowing assets as needed, Maglev AMMs can extend the range of their reserves and earn fees on trades several times larger than their liquidity outlay.
66

7-
To swappers, maglev presents a conventional Uniswap2-style interface but internally it supports custom pricing curves and other advanced functionality.
7+
To swappers, Maglev presents a conventional Uniswap2-style interface but internally it supports custom pricing curves and other advanced functionality. Although useable by anyone, the primary swapper user-base is intended to be aggregators, intents solvers, and MEV bots.
88

99
<!-- TOC FOLLOWS -->
1010
<!-- START OF TOC -->
@@ -13,11 +13,15 @@ To swappers, maglev presents a conventional Uniswap2-style interface but interna
1313
* [Concept](#concept)
1414
* [Operation](#operation)
1515
* [Usage](#usage)
16-
* [Virtual Reserves](#virtual-reserves)
17-
* [Desynchronised Virtual Reserves](#desynchronised-virtual-reserves)
16+
* [Reconfiguration](#reconfiguration)
17+
* [Debt Limits](#debt-limits)
18+
* [Desynchronised Reserves](#desynchronised-reserves)
19+
* [Fees](#fees)
1820
* [Curves](#curves)
1921
* [Constant Sum](#constant-sum)
2022
* [Constant Product](#constant-product)
23+
* [EulerSwap Curve](#eulerswap-curve)
24+
* [Todo](#todo)
2125
* [License](#license)
2226

2327
<!-- END OF TOC -->

test/EulerSwap.t.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ contract EulerSwapTest is MaglevTestBase {
3030
) internal {
3131
vm.prank(creator);
3232
maglev = new Maglev(
33-
getMaglevBaseParams(debtLimit0, debtLimit1, fee), Maglev.EulerSwapParams({priceX: px, priceY: py, concentrationX: cx, concentrationY: cy})
33+
getMaglevBaseParams(debtLimit0, debtLimit1, fee),
34+
Maglev.EulerSwapParams({priceX: px, priceY: py, concentrationX: cx, concentrationY: cy})
3435
);
3536

3637
vm.prank(holder);

0 commit comments

Comments
 (0)