DeFiPy 0.0.19__tar.gz → 0.0.20__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.19 → defipy-0.0.20}/DeFiPy.egg-info/PKG-INFO +7 -5
- {DeFiPy-0.0.19 → defipy-0.0.20}/DeFiPy.egg-info/SOURCES.txt +1 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/DeFiPy.egg-info/requires.txt +1 -1
- {DeFiPy-0.0.19 → defipy-0.0.20}/PKG-INFO +7 -5
- {DeFiPy-0.0.19 → defipy-0.0.20}/README.md +1 -1
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/__init__.py +1 -0
- defipy-0.0.20/python/prod/process/join/__init__.py +1 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/setup.py +3 -2
- {DeFiPy-0.0.19 → defipy-0.0.20}/DeFiPy.egg-info/dependency_links.txt +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/DeFiPy.egg-info/not-zip-safe +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/DeFiPy.egg-info/top_level.txt +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/LICENSE.txt +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/erc/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/math/basic/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/math/interest/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/math/interest/ips/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/math/interest/ips/aggregate/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/math/model/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/math/risk/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/process/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/process/burn/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/process/deposit/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/process/liquidity/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/process/mint/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/process/swap/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/simulate/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/utils/client/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/utils/data/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/utils/interfaces/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/python/prod/utils/tools/v3/__init__.py +0 -0
- {DeFiPy-0.0.19 → defipy-0.0.20}/setup.cfg +0 -0
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: DeFiPy
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.20
|
|
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
|
|
10
9
|
Description-Content-Type: text/markdown
|
|
11
10
|
License-File: LICENSE.txt
|
|
11
|
+
Requires-Dist: scipy>=1.7.3
|
|
12
|
+
Requires-Dist: bokeh==3.3.4
|
|
13
|
+
Requires-Dist: uniswappy==1.4.0
|
|
14
|
+
Requires-Dist: stableswappy==0.0.11
|
|
15
|
+
Requires-Dist: balancerpy==0.0.9
|
|
12
16
|
|
|
13
|
-
# DeFiPy: DeFi Analytics with Python (v 0.0.
|
|
17
|
+
# DeFiPy: DeFi Analytics with Python (v 0.0.20)
|
|
14
18
|
|
|
15
19
|
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
20
|
using:
|
|
@@ -192,5 +196,3 @@ Click [dashboard.defipy.org](https://dashboard.defipy.org/) for live link; for m
|
|
|
192
196
|
```
|
|
193
197
|
> bokeh serve --show python/application/quant_terminal/bokeh_server.py
|
|
194
198
|
```
|
|
195
|
-
|
|
196
|
-
|
|
@@ -25,6 +25,7 @@ python/prod/math/risk/__init__.py
|
|
|
25
25
|
python/prod/process/__init__.py
|
|
26
26
|
python/prod/process/burn/__init__.py
|
|
27
27
|
python/prod/process/deposit/__init__.py
|
|
28
|
+
python/prod/process/join/__init__.py
|
|
28
29
|
python/prod/process/liquidity/__init__.py
|
|
29
30
|
python/prod/process/mint/__init__.py
|
|
30
31
|
python/prod/process/swap/__init__.py
|
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: DeFiPy
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.20
|
|
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
|
|
10
9
|
Description-Content-Type: text/markdown
|
|
11
10
|
License-File: LICENSE.txt
|
|
11
|
+
Requires-Dist: scipy>=1.7.3
|
|
12
|
+
Requires-Dist: bokeh==3.3.4
|
|
13
|
+
Requires-Dist: uniswappy==1.4.0
|
|
14
|
+
Requires-Dist: stableswappy==0.0.11
|
|
15
|
+
Requires-Dist: balancerpy==0.0.9
|
|
12
16
|
|
|
13
|
-
# DeFiPy: DeFi Analytics with Python (v 0.0.
|
|
17
|
+
# DeFiPy: DeFi Analytics with Python (v 0.0.20)
|
|
14
18
|
|
|
15
19
|
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
20
|
using:
|
|
@@ -192,5 +196,3 @@ Click [dashboard.defipy.org](https://dashboard.defipy.org/) for live link; for m
|
|
|
192
196
|
```
|
|
193
197
|
> bokeh serve --show python/application/quant_terminal/bokeh_server.py
|
|
194
198
|
```
|
|
195
|
-
|
|
196
|
-
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# DeFiPy: DeFi Analytics with Python (v 0.0.
|
|
1
|
+
# DeFiPy: DeFi Analytics with Python (v 0.0.20)
|
|
2
2
|
|
|
3
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
4
|
using:
|
|
@@ -11,6 +11,7 @@ from defipy.process.deposit import *
|
|
|
11
11
|
from defipy.process.liquidity import *
|
|
12
12
|
from defipy.process.mint import *
|
|
13
13
|
from defipy.process.swap import *
|
|
14
|
+
from defipy.process.join import *
|
|
14
15
|
from defipy.simulate import *
|
|
15
16
|
from defipy.utils.interfaces import *
|
|
16
17
|
from defipy.utils.data import *
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from uniswappy.process.join import *
|
|
@@ -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.20',
|
|
8
8
|
description='DeFi Analytics with Python',
|
|
9
9
|
long_description=long_description,
|
|
10
10
|
long_description_content_type="text/markdown",
|
|
@@ -28,6 +28,7 @@ setup(name='DeFiPy',
|
|
|
28
28
|
'defipy.process.liquidity',
|
|
29
29
|
'defipy.process.mint',
|
|
30
30
|
'defipy.process.swap',
|
|
31
|
+
'defipy.process.join',
|
|
31
32
|
'defipy.simulate',
|
|
32
33
|
'defipy.utils.interfaces',
|
|
33
34
|
'defipy.utils.data',
|
|
@@ -37,7 +38,7 @@ setup(name='DeFiPy',
|
|
|
37
38
|
install_requires=[
|
|
38
39
|
'scipy >= 1.7.3',
|
|
39
40
|
'bokeh == 3.3.4',
|
|
40
|
-
'uniswappy == 1.
|
|
41
|
+
'uniswappy == 1.4.0',
|
|
41
42
|
'stableswappy == 0.0.11',
|
|
42
43
|
'balancerpy == 0.0.9'
|
|
43
44
|
],
|
|
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
|