WaveGuardClient 3.2.0__tar.gz → 3.3.0__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.
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/PKG-INFO +16 -2
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/README.md +15 -1
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/WaveGuardClient.egg-info/PKG-INFO +16 -2
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/pyproject.toml +1 -1
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/LICENSE +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/WaveGuardClient.egg-info/SOURCES.txt +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/WaveGuardClient.egg-info/dependency_links.txt +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/WaveGuardClient.egg-info/entry_points.txt +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/WaveGuardClient.egg-info/requires.txt +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/WaveGuardClient.egg-info/top_level.txt +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/mcp_server/__init__.py +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/mcp_server/server.py +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/setup.cfg +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/tests/test_client.py +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/tests/test_mcp_server.py +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/waveguard/__init__.py +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/waveguard/client.py +0 -0
- {waveguardclient-3.2.0 → waveguardclient-3.3.0}/waveguard/exceptions.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WaveGuardClient
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.3.0
|
|
4
4
|
Summary: Python SDK for WaveGuard — physics-based anomaly detection, fingerprinting & crypto risk API
|
|
5
5
|
Author: Greg Partin
|
|
6
6
|
License-Expression: MIT
|
|
@@ -46,7 +46,7 @@ Dynamic: license-file
|
|
|
46
46
|
|
|
47
47
|
<p align="center">
|
|
48
48
|
<strong>Anomaly detection powered by wave physics. Not machine learning.</strong><br>
|
|
49
|
-
One API call. Fully stateless. Works on any data type.
|
|
49
|
+
One API call. Fully stateless. Works on any data type.
|
|
50
50
|
</p>
|
|
51
51
|
|
|
52
52
|
<p align="center">
|
|
@@ -125,6 +125,20 @@ Results saved to `benchmarks/benchmark_results.json`. Benchmarks use determinist
|
|
|
125
125
|
|
|
126
126
|
</details>
|
|
127
127
|
|
|
128
|
+
## Real-World Validation: Crypto Crash Detection
|
|
129
|
+
|
|
130
|
+
WaveGuard powers [CryptoGuard](https://github.com/gpartin/CryptoGuard), a crypto risk scanner. Backtested against 7 historical crashes (LUNA, FTX, Celsius, 3AC, UST, SOL/FTX, TITAN):
|
|
131
|
+
|
|
132
|
+
| Method | Recall | Avg Lead Time | False Positive Rate |
|
|
133
|
+
|--------|--------|---------------|---------------------|
|
|
134
|
+
| **WaveGuard** | **100% (7/7)** | **27.4 days** | **6.1%** |
|
|
135
|
+
| Z-score baseline | 100% (7/7) | 28.4 days | 29.9% |
|
|
136
|
+
| Rolling volatility | 86% (6/7) | 15.5 days | 4.0% |
|
|
137
|
+
|
|
138
|
+
WaveGuard flagged FTT (FTX token) at CAUTION on October 16, 2022 — **23 days before the 94% crash** — while z-score analysis showed nothing unusual.
|
|
139
|
+
|
|
140
|
+
5× fewer false alarms than statistical baselines with the same recall. Full results: [CryptoGuard backtest](https://github.com/gpartin/CryptoGuard/tree/main/backtest).
|
|
141
|
+
|
|
128
142
|
## Install
|
|
129
143
|
|
|
130
144
|
```bash
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
12
12
|
<strong>Anomaly detection powered by wave physics. Not machine learning.</strong><br>
|
|
13
|
-
One API call. Fully stateless. Works on any data type.
|
|
13
|
+
One API call. Fully stateless. Works on any data type.
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
16
|
<p align="center">
|
|
@@ -89,6 +89,20 @@ Results saved to `benchmarks/benchmark_results.json`. Benchmarks use determinist
|
|
|
89
89
|
|
|
90
90
|
</details>
|
|
91
91
|
|
|
92
|
+
## Real-World Validation: Crypto Crash Detection
|
|
93
|
+
|
|
94
|
+
WaveGuard powers [CryptoGuard](https://github.com/gpartin/CryptoGuard), a crypto risk scanner. Backtested against 7 historical crashes (LUNA, FTX, Celsius, 3AC, UST, SOL/FTX, TITAN):
|
|
95
|
+
|
|
96
|
+
| Method | Recall | Avg Lead Time | False Positive Rate |
|
|
97
|
+
|--------|--------|---------------|---------------------|
|
|
98
|
+
| **WaveGuard** | **100% (7/7)** | **27.4 days** | **6.1%** |
|
|
99
|
+
| Z-score baseline | 100% (7/7) | 28.4 days | 29.9% |
|
|
100
|
+
| Rolling volatility | 86% (6/7) | 15.5 days | 4.0% |
|
|
101
|
+
|
|
102
|
+
WaveGuard flagged FTT (FTX token) at CAUTION on October 16, 2022 — **23 days before the 94% crash** — while z-score analysis showed nothing unusual.
|
|
103
|
+
|
|
104
|
+
5× fewer false alarms than statistical baselines with the same recall. Full results: [CryptoGuard backtest](https://github.com/gpartin/CryptoGuard/tree/main/backtest).
|
|
105
|
+
|
|
92
106
|
## Install
|
|
93
107
|
|
|
94
108
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WaveGuardClient
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.3.0
|
|
4
4
|
Summary: Python SDK for WaveGuard — physics-based anomaly detection, fingerprinting & crypto risk API
|
|
5
5
|
Author: Greg Partin
|
|
6
6
|
License-Expression: MIT
|
|
@@ -46,7 +46,7 @@ Dynamic: license-file
|
|
|
46
46
|
|
|
47
47
|
<p align="center">
|
|
48
48
|
<strong>Anomaly detection powered by wave physics. Not machine learning.</strong><br>
|
|
49
|
-
One API call. Fully stateless. Works on any data type.
|
|
49
|
+
One API call. Fully stateless. Works on any data type.
|
|
50
50
|
</p>
|
|
51
51
|
|
|
52
52
|
<p align="center">
|
|
@@ -125,6 +125,20 @@ Results saved to `benchmarks/benchmark_results.json`. Benchmarks use determinist
|
|
|
125
125
|
|
|
126
126
|
</details>
|
|
127
127
|
|
|
128
|
+
## Real-World Validation: Crypto Crash Detection
|
|
129
|
+
|
|
130
|
+
WaveGuard powers [CryptoGuard](https://github.com/gpartin/CryptoGuard), a crypto risk scanner. Backtested against 7 historical crashes (LUNA, FTX, Celsius, 3AC, UST, SOL/FTX, TITAN):
|
|
131
|
+
|
|
132
|
+
| Method | Recall | Avg Lead Time | False Positive Rate |
|
|
133
|
+
|--------|--------|---------------|---------------------|
|
|
134
|
+
| **WaveGuard** | **100% (7/7)** | **27.4 days** | **6.1%** |
|
|
135
|
+
| Z-score baseline | 100% (7/7) | 28.4 days | 29.9% |
|
|
136
|
+
| Rolling volatility | 86% (6/7) | 15.5 days | 4.0% |
|
|
137
|
+
|
|
138
|
+
WaveGuard flagged FTT (FTX token) at CAUTION on October 16, 2022 — **23 days before the 94% crash** — while z-score analysis showed nothing unusual.
|
|
139
|
+
|
|
140
|
+
5× fewer false alarms than statistical baselines with the same recall. Full results: [CryptoGuard backtest](https://github.com/gpartin/CryptoGuard/tree/main/backtest).
|
|
141
|
+
|
|
128
142
|
## Install
|
|
129
143
|
|
|
130
144
|
```bash
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "WaveGuardClient"
|
|
7
|
-
version = "3.
|
|
7
|
+
version = "3.3.0"
|
|
8
8
|
description = "Python SDK for WaveGuard — physics-based anomaly detection, fingerprinting & crypto risk API"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
File without changes
|
|
File without changes
|
{waveguardclient-3.2.0 → waveguardclient-3.3.0}/WaveGuardClient.egg-info/dependency_links.txt
RENAMED
|
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
|