@helm-protocol/ttt-mcp 0.1.3 → 0.1.5
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.
- package/README.md +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -115,7 +115,7 @@ const verification = await pot_verify({
|
|
|
115
115
|
## How It Works
|
|
116
116
|
|
|
117
117
|
1. **Time Synthesis** — Queries multiple independent time sources (NIST, Google, Cloudflare) via HTTPS/NTP and synthesizes a median timestamp with uncertainty bounds
|
|
118
|
-
2. **GRG Pipeline** — Encodes transaction data through a
|
|
118
|
+
2. **GRG Pipeline** — Encodes transaction data through a multi-layer integrity pipeline, producing verifiable shards
|
|
119
119
|
3. **Ed25519 Signing** — Signs the PoT hash for non-repudiation
|
|
120
120
|
4. **Adaptive Mode** — Honest builders get `turbo` mode (fast, profitable); tampered sequences get `full` mode (slow, costly) — natural economic selection
|
|
121
121
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helm-protocol/ttt-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "MCP Server for OpenTTT — Proof of Time tools for AI agents",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -43,5 +43,6 @@
|
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/node": "^20.11.19",
|
|
45
45
|
"typescript": "^5.3.3"
|
|
46
|
-
}
|
|
46
|
+
},
|
|
47
|
+
"mcpName": "io.github.Helm-Protocol/openttt-pot"
|
|
47
48
|
}
|