|
5 | 5 |
|
6 | 6 | **Institutional Insurance for XRPL DeFi Lending** |
7 | 7 |
|
8 | | - [](https://wardprotocol.org) |
9 | | - [](test_ward.py) |
| 8 | + [](https://pypi.org/project/ward-protocol/) |
| 9 | + [](https://www.python.org/downloads/) |
10 | 10 | [](LICENSE) |
| 11 | + [](https://api.wardprotocol.org) |
| 12 | + [](test_ward.py) |
11 | 13 | [](https://github.com/XRPLF/XRPL-Standards/discussions) |
12 | 14 |
|
13 | | - [Website](https://wardprotocol.org) • [Documentation](https://wardprotocol.org) • [Demo](https://app.wardprotocol.org) |
| 15 | + [Website](https://wardprotocol.org) • [API Docs](https://api.wardprotocol.org/docs) • [PyPI](https://pypi.org/project/ward-protocol/) |
14 | 16 | </div> |
15 | 17 |
|
16 | 18 | --- |
@@ -100,15 +102,18 @@ The primary deliverable is a single self-contained Python module with five harde |
100 | 102 |
|
101 | 103 | ### Installation |
102 | 104 |
|
| 105 | +```bash |
| 106 | +pip install ward-protocol |
| 107 | +``` |
| 108 | + |
| 109 | +**For development** (clone + run tests): |
| 110 | + |
103 | 111 | ```bash |
104 | 112 | git clone https://github.com/wflores9/ward-protocol.git |
105 | 113 | cd ward-protocol |
106 | | - |
107 | | -# Install dependencies |
108 | | -pip install xrpl-py>=4.0.0 |
| 114 | +pip install xrpl-py pytest pytest-asyncio |
109 | 115 |
|
110 | 116 | # Run tests (unit tests only, no network required) |
111 | | -pip install pytest pytest-asyncio |
112 | 117 | pytest test_ward.py -v -m "not integration" |
113 | 118 |
|
114 | 119 | # Full testnet simulation (XRPL Altnet required) |
@@ -292,6 +297,9 @@ Depositor wallet Pool wallet (institution) |
292 | 297 | ### Running the SDK |
293 | 298 |
|
294 | 299 | ```bash |
| 300 | +pip install ward-protocol |
| 301 | + |
| 302 | +# Or clone for development: |
295 | 303 | git clone https://github.com/wflores9/ward-protocol.git |
296 | 304 | cd ward-protocol |
297 | 305 | pip install xrpl-py pytest pytest-asyncio |
@@ -383,8 +391,6 @@ Ward Protocol is open source and welcomes contributions! |
383 | 391 | 3. Make your changes |
384 | 392 | 4. Submit a pull request |
385 | 393 |
|
386 | | -See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. |
387 | | - |
388 | 394 | --- |
389 | 395 |
|
390 | 396 | ## Community |
|
0 commit comments