Skip to content

Commit 76182ba

Browse files
committed
update readme
1 parent 5a2130d commit 76182ba

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

README.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# defipy
2-
DeFi Analytics with Python
3-
* Currently in Beta (version 0.0.11)
2+
DeFi Analytics with Python (version 0.0.11)
43
* Decoupled into [UniswapPy](https://github.com/icmoore/uniswappy),
54
[BalancerPy](https://github.com/icmoore/balancerpy), and [StableSwapPy](https://github.com/icmoore/stableswappy) python packages
65

@@ -20,7 +19,6 @@ Uniswap Example
2019

2120
To setup a liquidity pool, you must first create the tokens in the pair using the `ERC20` object. Next, create a liquidity pool (LP) factory using `IFactory` object. Once this is setup, an unlimited amount of LPs can be created; the procedures for such are as follows:
2221

23-
.. code-block:: console
2422

2523
from defipy import *
2624

@@ -37,7 +35,6 @@ To setup a liquidity pool, you must first create the tokens in the pair using th
3735
lp.add_liquidity("user0", eth_amount, dai_amount, eth_amount, dai_amount)
3836
lp.summary()
3937

40-
.. code-block:: console
4138

4239
#OUTPUT:
4340
Exchange ETH-DAI (LP)
@@ -47,8 +44,6 @@ To setup a liquidity pool, you must first create the tokens in the pair using th
4744
Balancer Example
4845
--------------------------
4946

50-
.. code-block:: console
51-
5247
from defipy import *
5348

5449
USER = 'user_test'
@@ -77,7 +72,6 @@ Balancer Example
7772
lp.join_pool(bgrp, init_pool_shares, USER)
7873
lp.summary()
7974

80-
.. code-block:: console
8175

8276
#OUTPUT:
8377
Balancer Exchange: DAI|WETH (LP)
@@ -88,8 +82,6 @@ Balancer Example
8882
StableSwap Example
8983
--------------------------
9084

91-
.. code-block:: console
92-
9385
from defipy import *
9486

9587
USER = 'user_test'
@@ -125,7 +117,6 @@ StableSwap Example
125117
lp.join_pool(sgrp, AMPL_COEFF, USER)
126118
lp.summary()
127119

128-
.. code-block:: console
129120

130121
#OUTPUT:
131122
Stableswap Exchange: DAI-USDC-USDT (LP)

0 commit comments

Comments
 (0)