DeFiPy 0.0.15__tar.gz → 0.0.17__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/DeFiPy.egg-info/PKG-INFO +14 -9
- DeFiPy-0.0.17/DeFiPy.egg-info/requires.txt +4 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/PKG-INFO +14 -9
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/README.md +10 -4
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/setup.py +4 -4
- DeFiPy-0.0.15/DeFiPy.egg-info/requires.txt +0 -4
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/DeFiPy.egg-info/SOURCES.txt +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/DeFiPy.egg-info/dependency_links.txt +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/DeFiPy.egg-info/not-zip-safe +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/DeFiPy.egg-info/top_level.txt +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/LICENSE.txt +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/erc/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/math/basic/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/math/interest/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/math/interest/ips/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/math/interest/ips/aggregate/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/math/model/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/math/risk/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/process/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/process/burn/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/process/deposit/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/process/liquidity/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/process/mint/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/process/swap/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/simulate/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/utils/data/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/python/prod/utils/interfaces/__init__.py +0 -0
- {DeFiPy-0.0.15 → DeFiPy-0.0.17}/setup.cfg +0 -0
|
@@ -1,22 +1,25 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: DeFiPy
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.17
|
|
4
4
|
Summary: DeFi Analytics with Python
|
|
5
5
|
Home-page: http://github.com/defipy-devs/defipy
|
|
6
6
|
Author: icmoore
|
|
7
7
|
Author-email: defipy.devs@gmail.com
|
|
8
8
|
License: MIT
|
|
9
|
+
Platform: UNKNOWN
|
|
9
10
|
Description-Content-Type: text/markdown
|
|
10
11
|
License-File: LICENSE.txt
|
|
11
|
-
Requires-Dist: scipy>=1.7.3
|
|
12
|
-
Requires-Dist: uniswappy==1.1.4
|
|
13
|
-
Requires-Dist: stableswappy==0.0.10
|
|
14
|
-
Requires-Dist: balancerpy==0.0.8
|
|
15
12
|
|
|
16
|
-
#
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
13
|
+
# DeFiPy: DeFi Analytics with Python (v 0.0.17)
|
|
14
|
+
|
|
15
|
+
Welcome to the worlds first DeFi Python package with all major protocols intergrated into one package! Implement your analytics in one package with DeFiPy. Since DeFiPy is built with a modular design in mind, your can also silo your analytics by protocol
|
|
16
|
+
using:
|
|
17
|
+
* [UniswapPy](https://github.com/defipy-devs/uniswappy)
|
|
18
|
+
* [BalancerPy](https://github.com/defipy-devs/balancerpy)
|
|
19
|
+
* [StableSwapPy](https://github.com/defipy-devs/stableswappy)
|
|
20
|
+
|
|
21
|
+
## Docs
|
|
22
|
+
Visit [DeFiPy docs](https://defipy.org) for full documentation with walk-through tutorials
|
|
20
23
|
|
|
21
24
|
## Install
|
|
22
25
|
Must first install gmpy2 python package to handle the precision within the StableSwap protocol (requires CPython 3.7 or above). To install the latest release with pip:
|
|
@@ -141,3 +144,5 @@ StableSwap Example
|
|
|
141
144
|
Stableswap Exchange: DAI-USDC-USDT (LP)
|
|
142
145
|
Reserves: DAI = 79566307.55982581, USDC = 81345068.187939, USDT = 55663250.772939
|
|
143
146
|
Liquidity: 216573027.91811988
|
|
147
|
+
|
|
148
|
+
|
|
@@ -1,22 +1,25 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: DeFiPy
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.17
|
|
4
4
|
Summary: DeFi Analytics with Python
|
|
5
5
|
Home-page: http://github.com/defipy-devs/defipy
|
|
6
6
|
Author: icmoore
|
|
7
7
|
Author-email: defipy.devs@gmail.com
|
|
8
8
|
License: MIT
|
|
9
|
+
Platform: UNKNOWN
|
|
9
10
|
Description-Content-Type: text/markdown
|
|
10
11
|
License-File: LICENSE.txt
|
|
11
|
-
Requires-Dist: scipy>=1.7.3
|
|
12
|
-
Requires-Dist: uniswappy==1.1.4
|
|
13
|
-
Requires-Dist: stableswappy==0.0.10
|
|
14
|
-
Requires-Dist: balancerpy==0.0.8
|
|
15
12
|
|
|
16
|
-
#
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
13
|
+
# DeFiPy: DeFi Analytics with Python (v 0.0.17)
|
|
14
|
+
|
|
15
|
+
Welcome to the worlds first DeFi Python package with all major protocols intergrated into one package! Implement your analytics in one package with DeFiPy. Since DeFiPy is built with a modular design in mind, your can also silo your analytics by protocol
|
|
16
|
+
using:
|
|
17
|
+
* [UniswapPy](https://github.com/defipy-devs/uniswappy)
|
|
18
|
+
* [BalancerPy](https://github.com/defipy-devs/balancerpy)
|
|
19
|
+
* [StableSwapPy](https://github.com/defipy-devs/stableswappy)
|
|
20
|
+
|
|
21
|
+
## Docs
|
|
22
|
+
Visit [DeFiPy docs](https://defipy.org) for full documentation with walk-through tutorials
|
|
20
23
|
|
|
21
24
|
## Install
|
|
22
25
|
Must first install gmpy2 python package to handle the precision within the StableSwap protocol (requires CPython 3.7 or above). To install the latest release with pip:
|
|
@@ -141,3 +144,5 @@ StableSwap Example
|
|
|
141
144
|
Stableswap Exchange: DAI-USDC-USDT (LP)
|
|
142
145
|
Reserves: DAI = 79566307.55982581, USDC = 81345068.187939, USDT = 55663250.772939
|
|
143
146
|
Liquidity: 216573027.91811988
|
|
147
|
+
|
|
148
|
+
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
# DeFiPy: DeFi Analytics with Python (v 0.0.17)
|
|
2
|
+
|
|
3
|
+
Welcome to the worlds first DeFi Python package with all major protocols intergrated into one package! Implement your analytics in one package with DeFiPy. Since DeFiPy is built with a modular design in mind, your can also silo your analytics by protocol
|
|
4
|
+
using:
|
|
5
|
+
* [UniswapPy](https://github.com/defipy-devs/uniswappy)
|
|
6
|
+
* [BalancerPy](https://github.com/defipy-devs/balancerpy)
|
|
7
|
+
* [StableSwapPy](https://github.com/defipy-devs/stableswappy)
|
|
8
|
+
|
|
9
|
+
## Docs
|
|
10
|
+
Visit [DeFiPy docs](https://defipy.org) for full documentation with walk-through tutorials
|
|
5
11
|
|
|
6
12
|
## Install
|
|
7
13
|
Must first install gmpy2 python package to handle the precision within the StableSwap protocol (requires CPython 3.7 or above). To install the latest release with pip:
|
|
@@ -4,7 +4,7 @@ with open('README.md') as f:
|
|
|
4
4
|
long_description = f.read()
|
|
5
5
|
|
|
6
6
|
setup(name='DeFiPy',
|
|
7
|
-
version='0.0.
|
|
7
|
+
version='0.0.17',
|
|
8
8
|
description='DeFi Analytics with Python',
|
|
9
9
|
long_description=long_description,
|
|
10
10
|
long_description_content_type="text/markdown",
|
|
@@ -34,8 +34,8 @@ setup(name='DeFiPy',
|
|
|
34
34
|
],
|
|
35
35
|
install_requires=[
|
|
36
36
|
'scipy >= 1.7.3',
|
|
37
|
-
'uniswappy == 1.
|
|
38
|
-
'stableswappy == 0.0.
|
|
39
|
-
'balancerpy == 0.0.
|
|
37
|
+
'uniswappy == 1.2.0',
|
|
38
|
+
'stableswappy == 0.0.11',
|
|
39
|
+
'balancerpy == 0.0.9'
|
|
40
40
|
],
|
|
41
41
|
zip_safe=False)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|