primecli 0.1.0__tar.gz → 0.1.2__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.
- {primecli-0.1.0 → primecli-0.1.2}/PKG-INFO +9 -4
- {primecli-0.1.0 → primecli-0.1.2}/README.md +8 -3
- primecli-0.1.2/primecli/__init__.py +8 -0
- {primecli-0.1.0 → primecli-0.1.2}/primecli.egg-info/PKG-INFO +9 -4
- {primecli-0.1.0 → primecli-0.1.2}/pyproject.toml +1 -1
- primecli-0.1.0/primecli/__init__.py +0 -3
- {primecli-0.1.0 → primecli-0.1.2}/LICENSE +0 -0
- {primecli-0.1.0 → primecli-0.1.2}/primecli/degenprime.py +0 -0
- {primecli-0.1.0 → primecli-0.1.2}/primecli/deltaprime.py +0 -0
- {primecli-0.1.0 → primecli-0.1.2}/primecli.egg-info/SOURCES.txt +0 -0
- {primecli-0.1.0 → primecli-0.1.2}/primecli.egg-info/dependency_links.txt +0 -0
- {primecli-0.1.0 → primecli-0.1.2}/primecli.egg-info/entry_points.txt +0 -0
- {primecli-0.1.0 → primecli-0.1.2}/primecli.egg-info/requires.txt +0 -0
- {primecli-0.1.0 → primecli-0.1.2}/primecli.egg-info/top_level.txt +0 -0
- {primecli-0.1.0 → primecli-0.1.2}/setup.cfg +0 -0
- {primecli-0.1.0 → primecli-0.1.2}/tests/test_redstone_encoding.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: primecli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Command-line tool for the DeltaPrime (Avalanche) and DegenPrime (Base) lending and leverage protocols.
|
|
5
5
|
Author: Mnemosyne-quest contributors
|
|
6
6
|
License: MIT
|
|
@@ -34,8 +34,9 @@ Dynamic: license-file
|
|
|
34
34
|
|
|
35
35
|
> Command-line tools for the **DeltaPrime** (Avalanche) and **DegenPrime** (Base) lending and leverage protocols.
|
|
36
36
|
|
|
37
|
+
[](https://pypi.org/project/primecli/)
|
|
38
|
+
[](https://pypi.org/project/primecli/)
|
|
37
39
|
[](LICENSE)
|
|
38
|
-
[](https://www.python.org/)
|
|
39
40
|
|
|
40
41
|
`primecli` is two `pip`-installable console commands — `deltaprime` and `degenprime` — that drive the lending and leverage protocols by the DeltaPrimeLabs team on Avalanche C-chain and Base. It exposes the full surface most people use day to day: savings pools, per-user Prime / Degen Accounts, ParaSwap and YieldYak swaps, debt refinancing, GMX V2 LP, TraderJoe V2 LB, sJOE staking, PRIME leverage tiers, delayed collateral withdrawals, and a leveraged-long zap macro.
|
|
41
42
|
|
|
@@ -56,6 +57,12 @@ Full threat model and trust assumptions: [docs/security.md](docs/security.md).
|
|
|
56
57
|
|
|
57
58
|
Requires Python 3.10+.
|
|
58
59
|
|
|
60
|
+
```bash
|
|
61
|
+
pip install primecli
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
From the latest `main` (ahead of the most recent release):
|
|
65
|
+
|
|
59
66
|
```bash
|
|
60
67
|
pip install git+https://github.com/Mnemosyne-quest/primecli.git
|
|
61
68
|
```
|
|
@@ -68,8 +75,6 @@ cd primecli
|
|
|
68
75
|
pip install -e .
|
|
69
76
|
```
|
|
70
77
|
|
|
71
|
-
A PyPI release (`pip install primecli`) will follow once the project has been smoke-tested in the wild for a bit. Track [#1](https://github.com/Mnemosyne-quest/primecli/issues/1) if you want a ping.
|
|
72
|
-
|
|
73
78
|
## Quickstart
|
|
74
79
|
|
|
75
80
|
```bash
|
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
> Command-line tools for the **DeltaPrime** (Avalanche) and **DegenPrime** (Base) lending and leverage protocols.
|
|
4
4
|
|
|
5
|
+
[](https://pypi.org/project/primecli/)
|
|
6
|
+
[](https://pypi.org/project/primecli/)
|
|
5
7
|
[](LICENSE)
|
|
6
|
-
[](https://www.python.org/)
|
|
7
8
|
|
|
8
9
|
`primecli` is two `pip`-installable console commands — `deltaprime` and `degenprime` — that drive the lending and leverage protocols by the DeltaPrimeLabs team on Avalanche C-chain and Base. It exposes the full surface most people use day to day: savings pools, per-user Prime / Degen Accounts, ParaSwap and YieldYak swaps, debt refinancing, GMX V2 LP, TraderJoe V2 LB, sJOE staking, PRIME leverage tiers, delayed collateral withdrawals, and a leveraged-long zap macro.
|
|
9
10
|
|
|
@@ -24,6 +25,12 @@ Full threat model and trust assumptions: [docs/security.md](docs/security.md).
|
|
|
24
25
|
|
|
25
26
|
Requires Python 3.10+.
|
|
26
27
|
|
|
28
|
+
```bash
|
|
29
|
+
pip install primecli
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
From the latest `main` (ahead of the most recent release):
|
|
33
|
+
|
|
27
34
|
```bash
|
|
28
35
|
pip install git+https://github.com/Mnemosyne-quest/primecli.git
|
|
29
36
|
```
|
|
@@ -36,8 +43,6 @@ cd primecli
|
|
|
36
43
|
pip install -e .
|
|
37
44
|
```
|
|
38
45
|
|
|
39
|
-
A PyPI release (`pip install primecli`) will follow once the project has been smoke-tested in the wild for a bit. Track [#1](https://github.com/Mnemosyne-quest/primecli/issues/1) if you want a ping.
|
|
40
|
-
|
|
41
46
|
## Quickstart
|
|
42
47
|
|
|
43
48
|
```bash
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""primecli - command-line tools for DeltaPrime (Avalanche) and DegenPrime (Base)."""
|
|
2
|
+
|
|
3
|
+
from importlib.metadata import PackageNotFoundError, version as _pkg_version
|
|
4
|
+
|
|
5
|
+
try:
|
|
6
|
+
__version__ = _pkg_version("primecli")
|
|
7
|
+
except PackageNotFoundError: # running from source without an install
|
|
8
|
+
__version__ = "0.0.0+unknown"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: primecli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Command-line tool for the DeltaPrime (Avalanche) and DegenPrime (Base) lending and leverage protocols.
|
|
5
5
|
Author: Mnemosyne-quest contributors
|
|
6
6
|
License: MIT
|
|
@@ -34,8 +34,9 @@ Dynamic: license-file
|
|
|
34
34
|
|
|
35
35
|
> Command-line tools for the **DeltaPrime** (Avalanche) and **DegenPrime** (Base) lending and leverage protocols.
|
|
36
36
|
|
|
37
|
+
[](https://pypi.org/project/primecli/)
|
|
38
|
+
[](https://pypi.org/project/primecli/)
|
|
37
39
|
[](LICENSE)
|
|
38
|
-
[](https://www.python.org/)
|
|
39
40
|
|
|
40
41
|
`primecli` is two `pip`-installable console commands — `deltaprime` and `degenprime` — that drive the lending and leverage protocols by the DeltaPrimeLabs team on Avalanche C-chain and Base. It exposes the full surface most people use day to day: savings pools, per-user Prime / Degen Accounts, ParaSwap and YieldYak swaps, debt refinancing, GMX V2 LP, TraderJoe V2 LB, sJOE staking, PRIME leverage tiers, delayed collateral withdrawals, and a leveraged-long zap macro.
|
|
41
42
|
|
|
@@ -56,6 +57,12 @@ Full threat model and trust assumptions: [docs/security.md](docs/security.md).
|
|
|
56
57
|
|
|
57
58
|
Requires Python 3.10+.
|
|
58
59
|
|
|
60
|
+
```bash
|
|
61
|
+
pip install primecli
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
From the latest `main` (ahead of the most recent release):
|
|
65
|
+
|
|
59
66
|
```bash
|
|
60
67
|
pip install git+https://github.com/Mnemosyne-quest/primecli.git
|
|
61
68
|
```
|
|
@@ -68,8 +75,6 @@ cd primecli
|
|
|
68
75
|
pip install -e .
|
|
69
76
|
```
|
|
70
77
|
|
|
71
|
-
A PyPI release (`pip install primecli`) will follow once the project has been smoke-tested in the wild for a bit. Track [#1](https://github.com/Mnemosyne-quest/primecli/issues/1) if you want a ping.
|
|
72
|
-
|
|
73
78
|
## Quickstart
|
|
74
79
|
|
|
75
80
|
```bash
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "primecli"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "Command-line tool for the DeltaPrime (Avalanche) and DegenPrime (Base) lending and leverage protocols."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
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
|