@vorionsys/proof-plane 0.1.1 → 0.1.2
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/CHANGELOG.md +57 -0
- package/LICENSE +190 -0
- package/README.md +403 -85
- package/dist/api/routes.d.ts.map +1 -1
- package/dist/api/routes.js +5 -2
- package/dist/api/routes.js.map +1 -1
- package/dist/events/event-emitter.d.ts.map +1 -1
- package/dist/events/event-emitter.js +4 -2
- package/dist/events/event-emitter.js.map +1 -1
- package/dist/events/hash-chain.d.ts +16 -1
- package/dist/events/hash-chain.d.ts.map +1 -1
- package/dist/events/hash-chain.js +42 -3
- package/dist/events/hash-chain.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/openapi.yaml +3 -3
- package/package.json +23 -8
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@vorionsys/proof-plane` will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.1.2] - 2026-02-17
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Standardized package metadata for npm publish
|
|
12
|
+
|
|
13
|
+
## [0.1.1] - 2026-02-16
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- Dual-hash verification: SHA3-256 integrity anchor (`eventHash3`) alongside SHA-256 chain hash
|
|
17
|
+
- Ed25519 digital signatures for event authenticity and non-repudiation
|
|
18
|
+
- `generateSigningKeyPair()`, `signEvent()`, `verifyEventSignature()`
|
|
19
|
+
- `EventSigningService` class with trusted key management
|
|
20
|
+
- Batch signature verification via `verifyEventSignatures()`
|
|
21
|
+
- Shadow mode support for T0_SANDBOX testnet agents
|
|
22
|
+
- `getUnverifiedShadowEvents()` query
|
|
23
|
+
- `verifyShadowEvent()` for HITL verification workflow
|
|
24
|
+
- Hook manager integration (`EVENT_EMITTED` hook for A3I)
|
|
25
|
+
- REST API routes (Fastify + Express adapters)
|
|
26
|
+
- `POST /proof` -- submit events
|
|
27
|
+
- `GET /proof/:id` -- retrieve events
|
|
28
|
+
- `GET /proof/verify/:id` -- verify single event (hash + signature)
|
|
29
|
+
- `GET /proof/chain/:correlationId` -- trace queries
|
|
30
|
+
- `POST /proof/chain/verify` -- full chain verification
|
|
31
|
+
- `GET /proof/stats` -- aggregate statistics
|
|
32
|
+
- `GET /proof/latest` -- most recent event
|
|
33
|
+
- OpenAPI 3.1 specification (`openapi.yaml`)
|
|
34
|
+
- `ProofPlaneLogger` bridge for A3I authorization engine integration
|
|
35
|
+
- Combined chain + signature verification via `verifyChainAndSignatures()`
|
|
36
|
+
- Environment tagging (`production`, `testnet`, `development`)
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
- License updated from MIT to Apache-2.0
|
|
40
|
+
|
|
41
|
+
## [0.1.0] - 2026-02-04
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
- Initial release
|
|
45
|
+
- `ProofPlane` class with event logging (`logIntentReceived`, `logDecisionMade`, `logTrustDelta`, `logExecutionStarted`, `logExecutionCompleted`, `logExecutionFailed`)
|
|
46
|
+
- SHA-256 hash-chained event model with genesis event support
|
|
47
|
+
- `ProofEventStore` abstract interface for pluggable storage
|
|
48
|
+
- `InMemoryEventStore` reference implementation
|
|
49
|
+
- `ProofEventEmitter` with serialized emission and batch support
|
|
50
|
+
- Chain verification (`verifyChain`, `verifyChainWithDetails`)
|
|
51
|
+
- Correlation-based trace queries (`getTrace`)
|
|
52
|
+
- Agent history queries (`getAgentHistory`)
|
|
53
|
+
- Real-time event subscriptions (`subscribe`, `subscribeToType`)
|
|
54
|
+
- Event statistics (`getStats`)
|
|
55
|
+
|
|
56
|
+
[0.1.1]: https://github.com/vorionsys/vorion/compare/proof-plane-v0.1.0...proof-plane-v0.1.1
|
|
57
|
+
[0.1.0]: https://github.com/vorionsys/vorion/releases/tag/proof-plane-v0.1.0
|
package/LICENSE
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding any notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
Copyright 2025 Vorion Systems
|
|
179
|
+
|
|
180
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
|
+
you may not use this file except in compliance with the License.
|
|
182
|
+
You may obtain a copy of the License at
|
|
183
|
+
|
|
184
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
185
|
+
|
|
186
|
+
Unless required by applicable law or agreed to in writing, software
|
|
187
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
|
+
See the License for the specific language governing permissions and
|
|
190
|
+
limitations under the License.
|
package/README.md
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
# @vorionsys/proof-plane
|
|
2
2
|
|
|
3
|
-
Immutable audit trail for AI agent
|
|
3
|
+
Immutable dual-hash audit trail for AI agent governance decisions.
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/@vorionsys/proof-plane)
|
|
6
|
+
[](./LICENSE)
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Overview
|
|
11
|
+
|
|
12
|
+
The **Proof Plane** is a core component of the [Vorion](https://github.com/vorionsys/vorion) AI governance stack, built on the **BASIS** (Baseline Authority for Safe & Interoperable Systems) framework. It provides a cryptographically verifiable, immutable audit trail for every decision made by AI agents -- from intent submission through authorization, execution, and trust score changes.
|
|
13
|
+
|
|
14
|
+
Every event in the proof plane is:
|
|
15
|
+
|
|
16
|
+
- **Hash-chained** using dual hashing (SHA-256 + SHA3-256) so that tampering with any record breaks the chain
|
|
17
|
+
- **Digitally signed** (optional Ed25519 signatures) for authenticity and non-repudiation
|
|
18
|
+
- **Correlation-linked** so that complete request traces can be reconstructed from intent to outcome
|
|
19
|
+
|
|
20
|
+
This makes the Proof Plane the **single source of truth** for compliance auditing, incident forensics, and trust calibration in multi-agent AI systems.
|
|
4
21
|
|
|
5
22
|
## Installation
|
|
6
23
|
|
|
@@ -8,154 +25,401 @@ Immutable audit trail for AI agent operations. Provides hash-chained, cryptograp
|
|
|
8
25
|
npm install @vorionsys/proof-plane
|
|
9
26
|
```
|
|
10
27
|
|
|
28
|
+
> Requires Node.js >= 18.0.0
|
|
29
|
+
|
|
30
|
+
## What is PROOF?
|
|
31
|
+
|
|
32
|
+
PROOF stands for the immutable audit trail at the heart of Vorion's AI governance model. Every time an AI agent submits an intent, receives an authorization decision, begins or completes execution, or has its trust score adjusted, a **proof event** is emitted and appended to the chain.
|
|
33
|
+
|
|
34
|
+
The proof chain answers critical governance questions:
|
|
35
|
+
|
|
36
|
+
- **What did this agent request?** (INTENT_RECEIVED)
|
|
37
|
+
- **Was it authorized, and why?** (DECISION_MADE -- includes trust band, score, and reasoning)
|
|
38
|
+
- **What trust score change occurred?** (TRUST_DELTA)
|
|
39
|
+
- **Did execution succeed or fail?** (EXECUTION_STARTED / EXECUTION_COMPLETED / EXECUTION_FAILED)
|
|
40
|
+
- **Has anyone tampered with this record?** (Chain and signature verification)
|
|
41
|
+
|
|
42
|
+
## How Dual-Hash Works
|
|
43
|
+
|
|
44
|
+
Each proof event carries two independent hashes for defense-in-depth tamper detection:
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
Event N
|
|
48
|
+
+--------------------------------------------+
|
|
49
|
+
| eventId, eventType, correlationId, |
|
|
50
|
+
| agentId, payload, occurredAt, signedBy |
|
|
51
|
+
| previousHash -----> Event N-1 eventHash |
|
|
52
|
+
+--------------------------------------------+
|
|
53
|
+
| eventHash = SHA-256(canonical content) | <-- primary chain hash
|
|
54
|
+
| eventHash3 = SHA3-256(canonical content) | <-- integrity anchor
|
|
55
|
+
+--------------------------------------------+
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
1. **SHA-256 content hash (`eventHash`)** -- The primary chain hash. Each event's `previousHash` field points to the preceding event's `eventHash`, forming a linked chain identical in principle to a blockchain.
|
|
59
|
+
|
|
60
|
+
2. **SHA3-256 integrity anchor (`eventHash3`)** -- A secondary hash computed with a different algorithm family (Keccak-based SHA-3). Even if a collision or weakness is discovered in SHA-256, the SHA3-256 anchor provides an independent integrity check.
|
|
61
|
+
|
|
62
|
+
Content is **canonically serialized** (sorted keys, deterministic JSON) before hashing, guaranteeing that the same logical event always produces the same hash regardless of property insertion order.
|
|
63
|
+
|
|
64
|
+
**Verification** walks the chain from genesis to tip, recomputing both hashes for every event and confirming that each `previousHash` matches the prior event's `eventHash`. A single mismatch pinpoints the exact tampered record.
|
|
65
|
+
|
|
11
66
|
## Quick Start
|
|
12
67
|
|
|
13
68
|
```typescript
|
|
14
|
-
import {
|
|
69
|
+
import {
|
|
70
|
+
createProofPlane,
|
|
71
|
+
createInMemoryEventStore,
|
|
72
|
+
} from '@vorionsys/proof-plane';
|
|
15
73
|
|
|
74
|
+
// 1. Create an event store (in-memory for dev; use Postgres/Supabase in production)
|
|
16
75
|
const store = createInMemoryEventStore();
|
|
76
|
+
|
|
77
|
+
// 2. Create the proof plane
|
|
17
78
|
const proofPlane = createProofPlane({
|
|
18
79
|
signedBy: 'my-service',
|
|
19
80
|
store,
|
|
20
81
|
});
|
|
21
82
|
|
|
22
|
-
// Log events
|
|
23
|
-
await proofPlane.logIntentReceived(intent);
|
|
24
|
-
await proofPlane.logDecisionMade(decision);
|
|
83
|
+
// 3. Log governance events
|
|
84
|
+
const intentResult = await proofPlane.logIntentReceived(intent);
|
|
85
|
+
const decisionResult = await proofPlane.logDecisionMade(decision);
|
|
25
86
|
|
|
26
|
-
//
|
|
87
|
+
// 4. Retrieve a full request trace by correlation ID
|
|
27
88
|
const trace = await proofPlane.getTrace(correlationId);
|
|
89
|
+
// Returns: [INTENT_RECEIVED, DECISION_MADE, ...] in chronological order
|
|
28
90
|
|
|
29
|
-
// Verify
|
|
91
|
+
// 5. Verify chain integrity
|
|
30
92
|
const verification = await proofPlane.verifyChain();
|
|
31
|
-
console.log(verification.valid);
|
|
93
|
+
console.log(verification.valid); // true
|
|
94
|
+
console.log(verification.verifiedCount); // number of events checked
|
|
32
95
|
```
|
|
33
96
|
|
|
34
|
-
##
|
|
97
|
+
## Usage Examples
|
|
35
98
|
|
|
36
|
-
|
|
37
|
-
- **Cryptographic Signatures**: Ed25519 event signing with key pair generation and batch verification
|
|
38
|
-
- **Pluggable Storage**: Abstract `ProofEventStore` interface - bring your own database
|
|
39
|
-
- **Event Emitter**: Typed event system with batch emit support
|
|
40
|
-
- **Trace Queries**: Retrieve full event traces by correlation ID
|
|
41
|
-
- **Chain Verification**: Verify integrity of the entire hash chain with detailed reports
|
|
42
|
-
- **API Routes**: Pre-built Express/Fastify route handlers for proof endpoints
|
|
43
|
-
|
|
44
|
-
## Subpath Imports
|
|
99
|
+
### Creating and Chaining Proof Events
|
|
45
100
|
|
|
46
101
|
```typescript
|
|
47
|
-
|
|
48
|
-
import { createProofPlane, ProofPlane } from '@vorionsys/proof-plane';
|
|
102
|
+
import { createProofPlane } from '@vorionsys/proof-plane';
|
|
49
103
|
|
|
50
|
-
|
|
51
|
-
import { InMemoryEventStore } from '@vorionsys/proof-plane/events';
|
|
104
|
+
const proofPlane = createProofPlane({ signedBy: 'auth-service' });
|
|
52
105
|
|
|
53
|
-
//
|
|
54
|
-
|
|
106
|
+
// Log an intent (first event becomes the genesis -- previousHash is null)
|
|
107
|
+
const r1 = await proofPlane.logIntentReceived(intent);
|
|
108
|
+
console.log(r1.isGenesis); // true
|
|
109
|
+
console.log(r1.previousHash); // null
|
|
55
110
|
|
|
56
|
-
//
|
|
57
|
-
|
|
58
|
-
|
|
111
|
+
// Log a decision (chains to previous event)
|
|
112
|
+
const r2 = await proofPlane.logDecisionMade(decision);
|
|
113
|
+
console.log(r2.isGenesis); // false
|
|
114
|
+
console.log(r2.previousHash); // r1.event.eventHash
|
|
59
115
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
116
|
+
// Log execution lifecycle
|
|
117
|
+
await proofPlane.logExecutionStarted(executionId, actionId, decisionId, adapterId, agentId, correlationId);
|
|
118
|
+
await proofPlane.logExecutionCompleted(executionId, actionId, durationMs, outputHash, agentId, correlationId);
|
|
63
119
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
store: eventStore, // ProofEventStore implementation
|
|
68
|
-
});
|
|
69
|
-
|
|
70
|
-
// Log lifecycle events
|
|
71
|
-
await plane.logIntentReceived(intent);
|
|
72
|
-
await plane.logDecisionMade(decision);
|
|
120
|
+
// Log trust score changes
|
|
121
|
+
await proofPlane.logTrustDelta(agentId, previousProfile, newProfile, 'Positive behavioral evidence');
|
|
122
|
+
```
|
|
73
123
|
|
|
74
|
-
|
|
75
|
-
const trace = await plane.getTrace(correlationId);
|
|
76
|
-
const events = await plane.queryEvents({ limit: 100, offset: 0 });
|
|
124
|
+
### Verifying Chain Integrity
|
|
77
125
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
126
|
+
```typescript
|
|
127
|
+
// Verify the entire chain
|
|
128
|
+
const result = await proofPlane.verifyChain();
|
|
129
|
+
// {
|
|
130
|
+
// valid: true,
|
|
131
|
+
// verifiedCount: 42,
|
|
132
|
+
// totalEvents: 42,
|
|
133
|
+
// firstEventId: '...',
|
|
134
|
+
// lastEventId: '...'
|
|
135
|
+
// }
|
|
136
|
+
|
|
137
|
+
// Verify a specific correlation chain
|
|
138
|
+
const traceResult = await proofPlane.verifyCorrelationChain(correlationId);
|
|
139
|
+
|
|
140
|
+
// Low-level: verify individual events
|
|
141
|
+
import { verifyEventHash, verifyChainWithDetails } from '@vorionsys/proof-plane';
|
|
142
|
+
|
|
143
|
+
const hashOk = await verifyEventHash(event); // recompute + compare SHA-256
|
|
144
|
+
const details = await verifyChainWithDetails(events); // full chain walk
|
|
81
145
|
```
|
|
82
146
|
|
|
83
|
-
###
|
|
147
|
+
### Querying Audit Records
|
|
84
148
|
|
|
85
149
|
```typescript
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
computeEventHash,
|
|
89
|
-
verifyEventHash,
|
|
90
|
-
verifyChain,
|
|
91
|
-
verifyChainWithDetails,
|
|
92
|
-
} from '@vorionsys/proof-plane';
|
|
150
|
+
// Get trace for a specific request
|
|
151
|
+
const trace = await proofPlane.getTrace(correlationId);
|
|
93
152
|
|
|
94
|
-
|
|
95
|
-
const
|
|
96
|
-
|
|
97
|
-
|
|
153
|
+
// Get all events for an agent
|
|
154
|
+
const history = await proofPlane.getAgentHistory(agentId);
|
|
155
|
+
|
|
156
|
+
// Query with filters and pagination
|
|
157
|
+
const result = await proofPlane.queryEvents(
|
|
158
|
+
{ agentId, eventTypes: [ProofEventType.DECISION_MADE] },
|
|
159
|
+
{ limit: 50, offset: 0, order: 'desc' }
|
|
160
|
+
);
|
|
161
|
+
console.log(result.events);
|
|
162
|
+
console.log(result.totalCount);
|
|
163
|
+
console.log(result.hasMore);
|
|
164
|
+
|
|
165
|
+
// Get statistics
|
|
166
|
+
const stats = await proofPlane.getStats();
|
|
167
|
+
// { totalEvents, byType: { INTENT_RECEIVED: 10, ... }, byAgent: { ... } }
|
|
98
168
|
```
|
|
99
169
|
|
|
100
|
-
###
|
|
170
|
+
### Ed25519 Digital Signatures
|
|
101
171
|
|
|
102
172
|
```typescript
|
|
103
173
|
import {
|
|
174
|
+
createProofPlane,
|
|
104
175
|
generateSigningKeyPair,
|
|
105
|
-
|
|
106
|
-
verifyEventSignature,
|
|
107
|
-
EventSigningService,
|
|
176
|
+
createSigningService,
|
|
108
177
|
} from '@vorionsys/proof-plane';
|
|
109
178
|
|
|
110
|
-
// Generate
|
|
111
|
-
const keyPair = await generateSigningKeyPair();
|
|
179
|
+
// Generate a key pair
|
|
180
|
+
const keyPair = await generateSigningKeyPair('auth-service');
|
|
181
|
+
|
|
182
|
+
// Create a signing service
|
|
183
|
+
const signingService = createSigningService({
|
|
184
|
+
serviceId: 'auth-service',
|
|
185
|
+
privateKey: keyPair.privateKey,
|
|
186
|
+
keyId: keyPair.keyId,
|
|
187
|
+
trustedKeys: [{ publicKey: keyPair.publicKey, keyId: keyPair.keyId, owner: 'auth-service' }],
|
|
188
|
+
});
|
|
189
|
+
|
|
190
|
+
// Create proof plane with signing enabled
|
|
191
|
+
const proofPlane = createProofPlane({
|
|
192
|
+
signedBy: 'auth-service',
|
|
193
|
+
enableSignatures: true,
|
|
194
|
+
signingService,
|
|
195
|
+
});
|
|
112
196
|
|
|
113
|
-
//
|
|
114
|
-
const
|
|
197
|
+
// Events are now automatically signed
|
|
198
|
+
const result = await proofPlane.logIntentReceived(intent);
|
|
199
|
+
console.log(result.event.signature); // base64-encoded Ed25519 signature
|
|
115
200
|
|
|
116
|
-
// Verify
|
|
117
|
-
const
|
|
201
|
+
// Verify signatures
|
|
202
|
+
const sigResult = await proofPlane.verifyEventSignature(result.event);
|
|
203
|
+
console.log(sigResult.valid); // true
|
|
118
204
|
|
|
119
|
-
//
|
|
120
|
-
const
|
|
121
|
-
|
|
205
|
+
// Verify both chain AND signatures in one call
|
|
206
|
+
const fullVerification = await proofPlane.verifyChainAndSignatures();
|
|
207
|
+
console.log(fullVerification.fullyVerified); // true
|
|
122
208
|
```
|
|
123
209
|
|
|
124
|
-
### Event
|
|
210
|
+
### Real-Time Event Subscriptions
|
|
125
211
|
|
|
126
|
-
|
|
212
|
+
```typescript
|
|
213
|
+
// Subscribe to all events
|
|
214
|
+
const unsubscribe = proofPlane.subscribe((event) => {
|
|
215
|
+
console.log(`[${event.eventType}] ${event.correlationId}`);
|
|
216
|
+
});
|
|
217
|
+
|
|
218
|
+
// Subscribe to specific event types
|
|
219
|
+
proofPlane.subscribeToType(ProofEventType.DECISION_MADE, (event) => {
|
|
220
|
+
console.log('Decision:', event.payload);
|
|
221
|
+
});
|
|
222
|
+
|
|
223
|
+
// Unsubscribe when done
|
|
224
|
+
unsubscribe();
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
### Custom Event Stores
|
|
127
228
|
|
|
128
229
|
```typescript
|
|
129
230
|
import type { ProofEventStore, EventQueryOptions } from '@vorionsys/proof-plane';
|
|
130
231
|
|
|
131
|
-
class
|
|
132
|
-
async append(event) { /* ... */ }
|
|
133
|
-
async
|
|
134
|
-
async
|
|
232
|
+
class PostgresEventStore implements ProofEventStore {
|
|
233
|
+
async append(event) { /* INSERT INTO proof_events ... */ }
|
|
234
|
+
async get(eventId) { /* SELECT ... WHERE event_id = $1 */ }
|
|
235
|
+
async getLatest() { /* SELECT ... ORDER BY occurred_at DESC LIMIT 1 */ }
|
|
236
|
+
async getLatestHash() { /* ... */ }
|
|
237
|
+
async query(filter?, options?) { /* ... */ }
|
|
238
|
+
async getByCorrelationId(id, options?) { /* ... */ }
|
|
239
|
+
async getByAgentId(id, options?) { /* ... */ }
|
|
240
|
+
async getByTimeRange(from, to, options?) { /* ... */ }
|
|
241
|
+
async getByType(type, options?) { /* ... */ }
|
|
242
|
+
async getSummaries(filter?, options?) { /* ... */ }
|
|
243
|
+
async getChain(fromEventId?, limit?) { /* ... */ }
|
|
244
|
+
async count(filter?) { /* ... */ }
|
|
135
245
|
async getStats() { /* ... */ }
|
|
136
|
-
async
|
|
246
|
+
async exists(eventId) { /* ... */ }
|
|
247
|
+
async clear() { /* ... */ }
|
|
137
248
|
}
|
|
249
|
+
|
|
250
|
+
const proofPlane = createProofPlane({
|
|
251
|
+
store: new PostgresEventStore(pool),
|
|
252
|
+
signedBy: 'my-service',
|
|
253
|
+
});
|
|
138
254
|
```
|
|
139
255
|
|
|
140
|
-
### API Routes
|
|
256
|
+
### REST API Routes
|
|
141
257
|
|
|
142
258
|
```typescript
|
|
143
|
-
import { createProofRoutes, registerProofRoutes } from '@vorionsys/proof-plane';
|
|
144
|
-
|
|
145
259
|
// Fastify
|
|
146
|
-
|
|
260
|
+
import Fastify from 'fastify';
|
|
261
|
+
import { createProofPlane } from '@vorionsys/proof-plane';
|
|
262
|
+
import { registerProofRoutes } from '@vorionsys/proof-plane/api';
|
|
263
|
+
|
|
264
|
+
const app = Fastify();
|
|
265
|
+
const proofPlane = createProofPlane({ signedBy: 'api-service' });
|
|
266
|
+
|
|
267
|
+
await app.register(async (instance) => {
|
|
268
|
+
registerProofRoutes(instance, proofPlane);
|
|
269
|
+
}, { prefix: '/v1' });
|
|
147
270
|
|
|
148
271
|
// Express
|
|
149
|
-
import
|
|
150
|
-
|
|
272
|
+
import express from 'express';
|
|
273
|
+
import { createProofExpressRouter } from '@vorionsys/proof-plane/api';
|
|
274
|
+
|
|
275
|
+
const app = express();
|
|
276
|
+
const { handler } = createProofExpressRouter(proofPlane);
|
|
277
|
+
app.use('/v1', handler);
|
|
151
278
|
```
|
|
152
279
|
|
|
153
|
-
|
|
280
|
+
**Available endpoints:**
|
|
281
|
+
|
|
282
|
+
| Method | Path | Description |
|
|
283
|
+
|--------|------|-------------|
|
|
284
|
+
| `POST` | `/proof` | Submit a new proof event |
|
|
285
|
+
| `GET` | `/proof/:id` | Retrieve a proof event by ID |
|
|
286
|
+
| `GET` | `/proof/verify/:id` | Verify a single event (hash + signature) |
|
|
287
|
+
| `GET` | `/proof/chain/:correlationId` | Get event trace by correlation ID |
|
|
288
|
+
| `POST` | `/proof/chain/verify` | Verify chain integrity |
|
|
289
|
+
| `GET` | `/proof/stats` | Get event statistics |
|
|
290
|
+
| `GET` | `/proof/latest` | Get the most recent event |
|
|
291
|
+
|
|
292
|
+
See [`openapi.yaml`](./openapi.yaml) for the full OpenAPI 3.1 specification.
|
|
293
|
+
|
|
294
|
+
## Subpath Imports
|
|
295
|
+
|
|
296
|
+
The package exposes granular entry points for tree-shaking:
|
|
297
|
+
|
|
298
|
+
```typescript
|
|
299
|
+
// Main entry -- everything
|
|
300
|
+
import { createProofPlane, sha256, InMemoryEventStore } from '@vorionsys/proof-plane';
|
|
301
|
+
|
|
302
|
+
// Events module -- stores, emitter, hash chain, signatures
|
|
303
|
+
import { InMemoryEventStore, createEventEmitter } from '@vorionsys/proof-plane/events';
|
|
304
|
+
|
|
305
|
+
// Proof Plane module -- ProofPlane class and logger
|
|
306
|
+
import { ProofPlane, createProofPlaneLogger } from '@vorionsys/proof-plane/proof-plane';
|
|
307
|
+
|
|
308
|
+
// API module -- REST route handlers
|
|
309
|
+
import { createProofRoutes, registerProofRoutes } from '@vorionsys/proof-plane/api';
|
|
310
|
+
```
|
|
311
|
+
|
|
312
|
+
## API Reference
|
|
313
|
+
|
|
314
|
+
### Core
|
|
315
|
+
|
|
316
|
+
| Export | Type | Description |
|
|
317
|
+
|--------|------|-------------|
|
|
318
|
+
| `ProofPlane` | class | Main proof plane class |
|
|
319
|
+
| `createProofPlane(config?)` | function | Factory for ProofPlane instances |
|
|
320
|
+
| `ProofPlaneConfig` | type | Configuration options (store, signedBy, signatures, shadow mode, hooks) |
|
|
321
|
+
|
|
322
|
+
### Event Logging (ProofPlane methods)
|
|
323
|
+
|
|
324
|
+
| Method | Description |
|
|
325
|
+
|--------|-------------|
|
|
326
|
+
| `logIntentReceived(intent, correlationId?)` | Log an intent submission |
|
|
327
|
+
| `logDecisionMade(decision, correlationId?)` | Log an authorization decision |
|
|
328
|
+
| `logTrustDelta(agentId, prevProfile, newProfile, reason, correlationId?)` | Log a trust score change |
|
|
329
|
+
| `logExecutionStarted(executionId, actionId, decisionId, adapterId, agentId, correlationId)` | Log execution start |
|
|
330
|
+
| `logExecutionCompleted(executionId, actionId, durationMs, outputHash, agentId, correlationId, status?)` | Log execution completion |
|
|
331
|
+
| `logExecutionFailed(executionId, actionId, error, durationMs, retryable, agentId, correlationId)` | Log execution failure |
|
|
332
|
+
| `logEvent(eventType, correlationId, payload, agentId?)` | Log a generic event |
|
|
333
|
+
|
|
334
|
+
### Querying (ProofPlane methods)
|
|
335
|
+
|
|
336
|
+
| Method | Description |
|
|
337
|
+
|--------|-------------|
|
|
338
|
+
| `getEvent(eventId)` | Get event by ID |
|
|
339
|
+
| `getLatestEvent()` | Get most recent event |
|
|
340
|
+
| `getTrace(correlationId)` | Get all events for a correlation ID |
|
|
341
|
+
| `getAgentHistory(agentId, options?)` | Get all events for an agent |
|
|
342
|
+
| `getEventsByType(eventType, options?)` | Get events by type |
|
|
343
|
+
| `queryEvents(filter?, options?)` | Query with filters and pagination |
|
|
344
|
+
| `getEventCount(filter?)` | Count matching events |
|
|
345
|
+
| `getStats()` | Get aggregate statistics |
|
|
346
|
+
|
|
347
|
+
### Verification (ProofPlane methods)
|
|
348
|
+
|
|
349
|
+
| Method | Description |
|
|
350
|
+
|--------|-------------|
|
|
351
|
+
| `verifyChain(fromEventId?, limit?)` | Verify hash chain integrity |
|
|
352
|
+
| `verifyCorrelationChain(correlationId)` | Verify chain for a correlation ID |
|
|
353
|
+
| `verifyEventSignature(event)` | Verify Ed25519 signature on an event |
|
|
354
|
+
| `verifySignatures(events)` | Batch signature verification |
|
|
355
|
+
| `verifyChainAndSignatures(fromEventId?, limit?)` | Verify both chain and signatures |
|
|
356
|
+
|
|
357
|
+
### Hash Chain Utilities
|
|
358
|
+
|
|
359
|
+
| Export | Description |
|
|
360
|
+
|--------|-------------|
|
|
361
|
+
| `sha256(data)` | Compute SHA-256 hash |
|
|
362
|
+
| `sha3_256(data)` | Compute SHA3-256 hash |
|
|
363
|
+
| `computeEventHash(event)` | Compute SHA-256 event hash |
|
|
364
|
+
| `computeEventHash3(event)` | Compute SHA3-256 event hash |
|
|
365
|
+
| `verifyEventHash(event)` | Verify event SHA-256 hash |
|
|
366
|
+
| `verifyEventHash3(event)` | Verify event SHA3-256 hash |
|
|
367
|
+
| `verifyChainLink(event, previousEvent)` | Verify a single chain link |
|
|
368
|
+
| `verifyChain(events)` | Verify a chain of events |
|
|
369
|
+
| `verifyChainWithDetails(events)` | Verify chain with detailed results |
|
|
370
|
+
| `getGenesisHash()` | Get the genesis hash (null) |
|
|
371
|
+
|
|
372
|
+
### Event Signatures
|
|
373
|
+
|
|
374
|
+
| Export | Description |
|
|
375
|
+
|--------|-------------|
|
|
376
|
+
| `generateSigningKeyPair(owner)` | Generate Ed25519 key pair |
|
|
377
|
+
| `signEvent(event, privateKey, signedBy)` | Sign an event |
|
|
378
|
+
| `verifyEventSignature(event, publicKey)` | Verify an event signature |
|
|
379
|
+
| `verifyEventSignatures(events, signingService)` | Batch verification |
|
|
380
|
+
| `EventSigningService` | class | Key management and signing service |
|
|
381
|
+
| `createSigningService(config)` | Factory for EventSigningService |
|
|
382
|
+
|
|
383
|
+
### Event Store
|
|
384
|
+
|
|
385
|
+
| Export | Description |
|
|
386
|
+
|--------|-------------|
|
|
387
|
+
| `ProofEventStore` | interface | Abstract storage interface |
|
|
388
|
+
| `InMemoryEventStore` | class | Reference in-memory implementation |
|
|
389
|
+
| `createInMemoryEventStore()` | Factory for InMemoryEventStore |
|
|
390
|
+
| `EventStoreError` | class | Storage error type |
|
|
391
|
+
| `EventStoreErrorCode` | enum | Error codes (DUPLICATE_EVENT, NOT_FOUND, etc.) |
|
|
392
|
+
|
|
393
|
+
### Event Emitter
|
|
394
|
+
|
|
395
|
+
| Export | Description |
|
|
396
|
+
|--------|-------------|
|
|
397
|
+
| `ProofEventEmitter` | class | Event creation with hash chaining |
|
|
398
|
+
| `createEventEmitter(config)` | Factory for ProofEventEmitter |
|
|
399
|
+
|
|
400
|
+
### Logger (A3I Bridge)
|
|
401
|
+
|
|
402
|
+
| Export | Description |
|
|
403
|
+
|--------|-------------|
|
|
404
|
+
| `ProofPlaneLoggerImpl` | class | Bridges A3I authorization engine to proof plane |
|
|
405
|
+
| `createProofPlaneLogger(config)` | Factory for the logger |
|
|
406
|
+
| `noopProofPlaneLogger` | No-op logger when proof plane is not connected |
|
|
407
|
+
|
|
408
|
+
### API Routes
|
|
409
|
+
|
|
410
|
+
| Export | Description |
|
|
411
|
+
|--------|-------------|
|
|
412
|
+
| `createProofRoutes(proofPlane)` | Create route definitions |
|
|
413
|
+
| `registerProofRoutes(fastify, proofPlane)` | Register routes on a Fastify instance |
|
|
414
|
+
| `createProofExpressRouter(proofPlane)` | Create an Express middleware handler |
|
|
415
|
+
|
|
416
|
+
### Key Types
|
|
154
417
|
|
|
155
418
|
```typescript
|
|
156
419
|
import type {
|
|
157
420
|
ProofPlaneConfig,
|
|
158
421
|
ProofPlaneLogger,
|
|
422
|
+
ProofPlaneLoggerConfig,
|
|
159
423
|
ProofEventStore,
|
|
160
424
|
EventQueryOptions,
|
|
161
425
|
EventQueryResult,
|
|
@@ -163,12 +427,66 @@ import type {
|
|
|
163
427
|
EventEmitterConfig,
|
|
164
428
|
EventListener,
|
|
165
429
|
EmitResult,
|
|
430
|
+
BatchEmitOptions,
|
|
431
|
+
BatchEmitResult,
|
|
166
432
|
ChainVerificationResult,
|
|
167
433
|
SigningKeyPair,
|
|
434
|
+
PublicKey,
|
|
168
435
|
SignatureVerificationResult,
|
|
436
|
+
SigningServiceConfig,
|
|
437
|
+
BatchVerificationResult,
|
|
438
|
+
ProofRoute,
|
|
169
439
|
} from '@vorionsys/proof-plane';
|
|
170
440
|
```
|
|
171
441
|
|
|
442
|
+
## Shadow Mode (T0 Sandbox)
|
|
443
|
+
|
|
444
|
+
The proof plane supports **shadow mode** for sandbox and testnet environments. Events emitted in shadow mode are tagged and can be filtered separately, enabling safe experimentation with T0_SANDBOX agents whose events require human-in-the-loop (HITL) verification before counting toward production trust scores.
|
|
445
|
+
|
|
446
|
+
```typescript
|
|
447
|
+
const sandboxPlane = createProofPlane({
|
|
448
|
+
signedBy: 'sandbox-service',
|
|
449
|
+
shadowMode: 'shadow',
|
|
450
|
+
environment: 'testnet',
|
|
451
|
+
});
|
|
452
|
+
|
|
453
|
+
// Query unverified shadow events
|
|
454
|
+
const pending = await sandboxPlane.getUnverifiedShadowEvents(agentId);
|
|
455
|
+
|
|
456
|
+
// Mark a shadow event as HITL-verified
|
|
457
|
+
await sandboxPlane.verifyShadowEvent(eventId, verificationId, 'human-reviewer', true);
|
|
458
|
+
```
|
|
459
|
+
|
|
460
|
+
## Architecture
|
|
461
|
+
|
|
462
|
+
The proof plane sits at the foundation of the Vorion governance stack:
|
|
463
|
+
|
|
464
|
+
```
|
|
465
|
+
+----------------------------+
|
|
466
|
+
| Application Layer |
|
|
467
|
+
+----------------------------+
|
|
468
|
+
| A3I Authorization | <-- emits intents & decisions
|
|
469
|
+
+----------------------------+
|
|
470
|
+
| PROOF PLANE | <-- this package
|
|
471
|
+
| (dual-hash chain + |
|
|
472
|
+
| Ed25519 signatures) |
|
|
473
|
+
+----------------------------+
|
|
474
|
+
| Event Store | <-- pluggable (memory, Postgres, etc.)
|
|
475
|
+
+----------------------------+
|
|
476
|
+
```
|
|
477
|
+
|
|
172
478
|
## License
|
|
173
479
|
|
|
174
|
-
|
|
480
|
+
[Apache-2.0](./LICENSE)
|
|
481
|
+
|
|
482
|
+
## Repository
|
|
483
|
+
|
|
484
|
+
This package is part of the [Vorion](https://github.com/vorionsys/vorion) monorepo.
|
|
485
|
+
|
|
486
|
+
```
|
|
487
|
+
vorion/
|
|
488
|
+
packages/
|
|
489
|
+
proof-plane/ <-- you are here
|
|
490
|
+
contracts/
|
|
491
|
+
...
|
|
492
|
+
```
|
package/dist/api/routes.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../src/api/routes.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAiEhE;;GAEG;AACH,UAAU,YAAY;IACpB,OAAO,EAAE;QACP,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,EAAE,CAAC,EAAE,MAAM,CAAC;KACb,CAAC;IACF,KAAK,EAAE;QACL,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5C,IAAI,CAAC,IAAI,EAAE,OAAO,GAAG,IAAI,CAAC;KAC3B,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,QAAQ,CAAC;IAC1C,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,UAAU,EAAE,UAAU,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IACtE,MAAM,CAAC,EAAE;QACP,MAAM,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC;QACrB,KAAK,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC;QACpB,IAAI,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC;KACpB,CAAC;CACH;AA4BD;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"routes.d.ts","sourceRoot":"","sources":["../../src/api/routes.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAiEhE;;GAEG;AACH,UAAU,YAAY;IACpB,OAAO,EAAE;QACP,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,EAAE,CAAC,EAAE,MAAM,CAAC;KACb,CAAC;IACF,KAAK,EAAE;QACL,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,YAAY,CAAC,OAAO,CAAC,CAAC;QAC5C,IAAI,CAAC,IAAI,EAAE,OAAO,GAAG,IAAI,CAAC;KAC3B,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,QAAQ,CAAC;IAC1C,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,UAAU,EAAE,UAAU,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IACtE,MAAM,CAAC,EAAE;QACP,MAAM,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC;QACrB,KAAK,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC;QACpB,IAAI,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC;KACpB,CAAC;CACH;AA4BD;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,UAAU,EAAE,CA0PtE;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAgB,mBAAmB,CACjC,OAAO,EAAE;IACP,GAAG,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,KAAK,OAAO,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC;IAClF,IAAI,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,KAAK,OAAO,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC;CACpF,EACD,UAAU,EAAE,UAAU,GACrB,IAAI,CA0CN;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,wBAAwB,CAAC,UAAU,EAAE,UAAU,GAAG;IAChE,MAAM,EAAE,UAAU,EAAE,CAAC;IACrB,OAAO,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;CAC3D,CA+CA"}
|
package/dist/api/routes.js
CHANGED
|
@@ -129,10 +129,11 @@ export function createProofRoutes(proofPlane) {
|
|
|
129
129
|
ctx.reply.status(404).send(error('EVENT_NOT_FOUND', `Proof event ${params.id} not found`));
|
|
130
130
|
return;
|
|
131
131
|
}
|
|
132
|
-
// Verify hash integrity
|
|
133
|
-
const { computeEventHash } = await import('../events/hash-chain.js');
|
|
132
|
+
// Verify hash integrity (dual-hash: SHA-256 + SHA3-256)
|
|
133
|
+
const { computeEventHash, verifyEventHash3 } = await import('../events/hash-chain.js');
|
|
134
134
|
const computedHash = await computeEventHash(event);
|
|
135
135
|
const hashValid = computedHash === event.eventHash;
|
|
136
|
+
const hash3Valid = verifyEventHash3(event);
|
|
136
137
|
// Verify signature if present
|
|
137
138
|
let signatureResult = null;
|
|
138
139
|
if (event.signature && proofPlane.isSignatureVerificationEnabled()) {
|
|
@@ -142,8 +143,10 @@ export function createProofRoutes(proofPlane) {
|
|
|
142
143
|
eventId: event.eventId,
|
|
143
144
|
verification: {
|
|
144
145
|
hashValid,
|
|
146
|
+
hash3Valid,
|
|
145
147
|
computedHash,
|
|
146
148
|
storedHash: event.eventHash,
|
|
149
|
+
storedHash3: event.eventHash3 ?? null,
|
|
147
150
|
signatureValid: signatureResult?.valid ?? null,
|
|
148
151
|
signatureError: signatureResult?.error,
|
|
149
152
|
signer: signatureResult?.signer,
|
package/dist/api/routes.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"routes.js","sourceRoot":"","sources":["../../src/api/routes.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"routes.js","sourceRoot":"","sources":["../../src/api/routes.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-emitter.d.ts","sourceRoot":"","sources":["../../src/events/event-emitter.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"event-emitter.d.ts","sourceRoot":"","sources":["../../src/events/event-emitter.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { v4 as uuidv4 } from 'uuid';
|
|
8
8
|
import { EventStoreError, EventStoreErrorCode } from './event-store.js';
|
|
9
|
-
import { computeEventHash, getGenesisHash } from './hash-chain.js';
|
|
9
|
+
import { computeEventHash, computeEventHash3, getGenesisHash } from './hash-chain.js';
|
|
10
10
|
import { signEvent } from './event-signatures.js';
|
|
11
11
|
/**
|
|
12
12
|
* ProofEventEmitter - Creates properly hashed and chained events
|
|
@@ -180,12 +180,14 @@ export class ProofEventEmitter {
|
|
|
180
180
|
...eventWithoutHashAndSig,
|
|
181
181
|
signature,
|
|
182
182
|
};
|
|
183
|
-
// Compute
|
|
183
|
+
// Compute dual hashes (includes signature if present)
|
|
184
184
|
const eventHash = await computeEventHash(eventWithSig);
|
|
185
|
+
const eventHash3 = computeEventHash3(eventWithSig);
|
|
185
186
|
// Create complete event
|
|
186
187
|
const event = {
|
|
187
188
|
...eventWithSig,
|
|
188
189
|
eventHash,
|
|
190
|
+
eventHash3,
|
|
189
191
|
recordedAt: now,
|
|
190
192
|
};
|
|
191
193
|
// Validate the event
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-emitter.js","sourceRoot":"","sources":["../../src/events/event-emitter.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,EAAE,IAAI,MAAM,EAAE,MAAM,MAAM,CAAC;AAQpC,OAAO,EAAwB,eAAe,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAC9F,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"event-emitter.js","sourceRoot":"","sources":["../../src/events/event-emitter.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,20 +3,35 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Each proof event contains a hash of its contents and a reference
|
|
5
5
|
* to the previous event's hash, forming an immutable chain.
|
|
6
|
+
*
|
|
7
|
+
* Dual-hash: SHA-256 (primary chain) + SHA3-256 (integrity anchor).
|
|
6
8
|
*/
|
|
7
9
|
import type { ProofEvent } from '@vorionsys/contracts';
|
|
8
10
|
/**
|
|
9
11
|
* Create a SHA-256 hash of the given data
|
|
10
12
|
*/
|
|
11
13
|
export declare function sha256(data: string): Promise<string>;
|
|
14
|
+
/**
|
|
15
|
+
* Create a SHA3-256 hash of the given data (integrity anchor)
|
|
16
|
+
*/
|
|
17
|
+
export declare function sha3_256(data: string): string;
|
|
12
18
|
/**
|
|
13
19
|
* Compute the hash of an event's content
|
|
14
20
|
*/
|
|
15
21
|
export declare function computeEventHash(event: Omit<ProofEvent, 'eventHash' | 'recordedAt'>): Promise<string>;
|
|
16
22
|
/**
|
|
17
|
-
*
|
|
23
|
+
* Compute the SHA3-256 integrity anchor hash for an event
|
|
24
|
+
*/
|
|
25
|
+
export declare function computeEventHash3(event: Omit<ProofEvent, 'eventHash' | 'eventHash3' | 'recordedAt'>): string;
|
|
26
|
+
/**
|
|
27
|
+
* Verify that an event's SHA-256 hash is correct
|
|
18
28
|
*/
|
|
19
29
|
export declare function verifyEventHash(event: ProofEvent): Promise<boolean>;
|
|
30
|
+
/**
|
|
31
|
+
* Verify that an event's SHA3-256 integrity hash is correct (if present)
|
|
32
|
+
* Returns true if hash3 is absent (pre-upgrade record).
|
|
33
|
+
*/
|
|
34
|
+
export declare function verifyEventHash3(event: ProofEvent): boolean;
|
|
20
35
|
/**
|
|
21
36
|
* Verify that an event correctly chains to the previous event
|
|
22
37
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hash-chain.d.ts","sourceRoot":"","sources":["../../src/events/hash-chain.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"hash-chain.d.ts","sourceRoot":"","sources":["../../src/events/hash-chain.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,KAAK,EAAE,UAAU,EAAqB,MAAM,sBAAsB,CAAC;AAE1E;;GAEG;AACH,wBAAsB,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAM1D;AAED;;GAEG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAE7C;AAsDD;;GAEG;AACH,wBAAsB,gBAAgB,CACpC,KAAK,EAAE,IAAI,CAAC,UAAU,EAAE,WAAW,GAAG,YAAY,CAAC,GAClD,OAAO,CAAC,MAAM,CAAC,CAKjB;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAC/B,KAAK,EAAE,IAAI,CAAC,UAAU,EAAE,WAAW,GAAG,YAAY,GAAG,YAAY,CAAC,GACjE,MAAM,CAKR;AAED;;GAEG;AACH,wBAAsB,eAAe,CAAC,KAAK,EAAE,UAAU,GAAG,OAAO,CAAC,OAAO,CAAC,CAGzE;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,UAAU,GAAG,OAAO,CAI3D;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,UAAU,GAAG,IAAI,GAAG,OAAO,CAM5F;AAED;;GAEG;AACH,wBAAsB,WAAW,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,OAAO,CAAC;IAC/D,KAAK,EAAE,OAAO,CAAC;IACf,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC,CAgDD;AAED;;GAEG;AACH,wBAAgB,cAAc,IAAI,IAAI,CAErC;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,0BAA0B;IAC1B,KAAK,EAAE,OAAO,CAAC;IACf,6CAA6C;IAC7C,aAAa,EAAE,MAAM,CAAC;IACtB,4BAA4B;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,8BAA8B;IAC9B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,6BAA6B;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,8CAA8C;IAC9C,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,8BAA8B;IAC9B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,wBAAwB;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,wBAAsB,sBAAsB,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,OAAO,CAAC,uBAAuB,CAAC,CAanG"}
|
|
@@ -3,7 +3,10 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Each proof event contains a hash of its contents and a reference
|
|
5
5
|
* to the previous event's hash, forming an immutable chain.
|
|
6
|
+
*
|
|
7
|
+
* Dual-hash: SHA-256 (primary chain) + SHA3-256 (integrity anchor).
|
|
6
8
|
*/
|
|
9
|
+
import * as nodeCrypto from 'node:crypto';
|
|
7
10
|
/**
|
|
8
11
|
* Create a SHA-256 hash of the given data
|
|
9
12
|
*/
|
|
@@ -14,6 +17,12 @@ export async function sha256(data) {
|
|
|
14
17
|
const hashArray = Array.from(new Uint8Array(hashBuffer));
|
|
15
18
|
return hashArray.map(b => b.toString(16).padStart(2, '0')).join('');
|
|
16
19
|
}
|
|
20
|
+
/**
|
|
21
|
+
* Create a SHA3-256 hash of the given data (integrity anchor)
|
|
22
|
+
*/
|
|
23
|
+
export function sha3_256(data) {
|
|
24
|
+
return nodeCrypto.createHash('sha3-256').update(data).digest('hex');
|
|
25
|
+
}
|
|
17
26
|
/**
|
|
18
27
|
* Create the hashable representation of an event
|
|
19
28
|
*/
|
|
@@ -58,12 +67,31 @@ export async function computeEventHash(event) {
|
|
|
58
67
|
return sha256(serialized);
|
|
59
68
|
}
|
|
60
69
|
/**
|
|
61
|
-
*
|
|
70
|
+
* Compute the SHA3-256 integrity anchor hash for an event
|
|
71
|
+
*/
|
|
72
|
+
export function computeEventHash3(event) {
|
|
73
|
+
const hashable = getHashableData(event);
|
|
74
|
+
const sortedHashable = sortObjectKeys(hashable);
|
|
75
|
+
const serialized = JSON.stringify(sortedHashable);
|
|
76
|
+
return sha3_256(serialized);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Verify that an event's SHA-256 hash is correct
|
|
62
80
|
*/
|
|
63
81
|
export async function verifyEventHash(event) {
|
|
64
82
|
const computedHash = await computeEventHash(event);
|
|
65
83
|
return computedHash === event.eventHash;
|
|
66
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* Verify that an event's SHA3-256 integrity hash is correct (if present)
|
|
87
|
+
* Returns true if hash3 is absent (pre-upgrade record).
|
|
88
|
+
*/
|
|
89
|
+
export function verifyEventHash3(event) {
|
|
90
|
+
if (!event.eventHash3)
|
|
91
|
+
return true; // Pre-upgrade records don't have hash3
|
|
92
|
+
const computedHash3 = computeEventHash3(event);
|
|
93
|
+
return computedHash3 === event.eventHash3;
|
|
94
|
+
}
|
|
67
95
|
/**
|
|
68
96
|
* Verify that an event correctly chains to the previous event
|
|
69
97
|
*/
|
|
@@ -85,7 +113,7 @@ export async function verifyChain(events) {
|
|
|
85
113
|
for (let i = 0; i < events.length; i++) {
|
|
86
114
|
const event = events[i];
|
|
87
115
|
const previousEvent = i === 0 ? null : events[i - 1];
|
|
88
|
-
// Verify hash integrity
|
|
116
|
+
// Verify SHA-256 hash integrity
|
|
89
117
|
const hashValid = await verifyEventHash(event);
|
|
90
118
|
if (!hashValid) {
|
|
91
119
|
return {
|
|
@@ -93,7 +121,18 @@ export async function verifyChain(events) {
|
|
|
93
121
|
verifiedCount: i,
|
|
94
122
|
brokenAtIndex: i,
|
|
95
123
|
brokenAtEventId: event.eventId,
|
|
96
|
-
error: `Event ${event.eventId} has invalid hash`,
|
|
124
|
+
error: `Event ${event.eventId} has invalid SHA-256 hash`,
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
// Verify SHA3-256 integrity anchor (if present)
|
|
128
|
+
const hash3Valid = verifyEventHash3(event);
|
|
129
|
+
if (!hash3Valid) {
|
|
130
|
+
return {
|
|
131
|
+
valid: false,
|
|
132
|
+
verifiedCount: i,
|
|
133
|
+
brokenAtIndex: i,
|
|
134
|
+
brokenAtEventId: event.eventId,
|
|
135
|
+
error: `Event ${event.eventId} has invalid SHA3-256 hash`,
|
|
97
136
|
};
|
|
98
137
|
}
|
|
99
138
|
// Verify chain link
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hash-chain.js","sourceRoot":"","sources":["../../src/events/hash-chain.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"hash-chain.js","sourceRoot":"","sources":["../../src/events/hash-chain.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export { ProofPlaneLoggerImpl, createProofPlaneLogger, noopProofPlaneLogger, typ
|
|
|
31
31
|
export { type ProofEventStore, type EventQueryOptions, type EventQueryResult, type EventStats, EventStoreError, EventStoreErrorCode, } from './events/event-store.js';
|
|
32
32
|
export { InMemoryEventStore, createInMemoryEventStore, } from './events/memory-store.js';
|
|
33
33
|
export { ProofEventEmitter, createEventEmitter, type EventEmitterConfig, type EventListener, type EmitResult, type BatchEmitOptions, type BatchEmitResult, } from './events/event-emitter.js';
|
|
34
|
-
export { sha256, computeEventHash, verifyEventHash, verifyChainLink, verifyChain, verifyChainWithDetails, getGenesisHash, type ChainVerificationResult, } from './events/hash-chain.js';
|
|
34
|
+
export { sha256, sha3_256, computeEventHash, computeEventHash3, verifyEventHash, verifyEventHash3, verifyChainLink, verifyChain, verifyChainWithDetails, getGenesisHash, type ChainVerificationResult, } from './events/hash-chain.js';
|
|
35
35
|
export { generateSigningKeyPair, signEvent, verifyEventSignature, verifyEventSignatures, EventSigningService, createSigningService, type SigningKeyPair, type PublicKey, type SignatureVerificationResult, type SigningServiceConfig, type BatchVerificationResult, } from './events/event-signatures.js';
|
|
36
36
|
export { createProofRoutes, registerProofRoutes, createProofExpressRouter, type ProofRoute, } from './api/index.js';
|
|
37
37
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AAGH,OAAO,EACL,UAAU,EACV,gBAAgB,EAChB,KAAK,gBAAgB,GACtB,MAAM,8BAA8B,CAAC;AAEtC,OAAO,EACL,oBAAoB,EACpB,sBAAsB,EACtB,oBAAoB,EACpB,KAAK,gBAAgB,EACrB,KAAK,sBAAsB,GAC5B,MAAM,yBAAyB,CAAC;AAGjC,OAAO,EACL,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,gBAAgB,EACrB,KAAK,UAAU,EACf,eAAe,EACf,mBAAmB,GACpB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EACL,kBAAkB,EAClB,wBAAwB,GACzB,MAAM,0BAA0B,CAAC;AAGlC,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,KAAK,kBAAkB,EACvB,KAAK,aAAa,EAClB,KAAK,UAAU,EACf,KAAK,gBAAgB,EACrB,KAAK,eAAe,GACrB,MAAM,2BAA2B,CAAC;AAGnC,OAAO,EACL,MAAM,EACN,gBAAgB,EAChB,eAAe,EACf,eAAe,EACf,WAAW,EACX,sBAAsB,EACtB,cAAc,EACd,KAAK,uBAAuB,GAC7B,MAAM,wBAAwB,CAAC;AAGhC,OAAO,EACL,sBAAsB,EACtB,SAAS,EACT,oBAAoB,EACpB,qBAAqB,EACrB,mBAAmB,EACnB,oBAAoB,EACpB,KAAK,cAAc,EACnB,KAAK,SAAS,EACd,KAAK,2BAA2B,EAChC,KAAK,oBAAoB,EACzB,KAAK,uBAAuB,GAC7B,MAAM,8BAA8B,CAAC;AAGtC,OAAO,EACL,iBAAiB,EACjB,mBAAmB,EACnB,wBAAwB,EACxB,KAAK,UAAU,GAChB,MAAM,gBAAgB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AAGH,OAAO,EACL,UAAU,EACV,gBAAgB,EAChB,KAAK,gBAAgB,GACtB,MAAM,8BAA8B,CAAC;AAEtC,OAAO,EACL,oBAAoB,EACpB,sBAAsB,EACtB,oBAAoB,EACpB,KAAK,gBAAgB,EACrB,KAAK,sBAAsB,GAC5B,MAAM,yBAAyB,CAAC;AAGjC,OAAO,EACL,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,gBAAgB,EACrB,KAAK,UAAU,EACf,eAAe,EACf,mBAAmB,GACpB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EACL,kBAAkB,EAClB,wBAAwB,GACzB,MAAM,0BAA0B,CAAC;AAGlC,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,KAAK,kBAAkB,EACvB,KAAK,aAAa,EAClB,KAAK,UAAU,EACf,KAAK,gBAAgB,EACrB,KAAK,eAAe,GACrB,MAAM,2BAA2B,CAAC;AAGnC,OAAO,EACL,MAAM,EACN,QAAQ,EACR,gBAAgB,EAChB,iBAAiB,EACjB,eAAe,EACf,gBAAgB,EAChB,eAAe,EACf,WAAW,EACX,sBAAsB,EACtB,cAAc,EACd,KAAK,uBAAuB,GAC7B,MAAM,wBAAwB,CAAC;AAGhC,OAAO,EACL,sBAAsB,EACtB,SAAS,EACT,oBAAoB,EACpB,qBAAqB,EACrB,mBAAmB,EACnB,oBAAoB,EACpB,KAAK,cAAc,EACnB,KAAK,SAAS,EACd,KAAK,2BAA2B,EAChC,KAAK,oBAAoB,EACzB,KAAK,uBAAuB,GAC7B,MAAM,8BAA8B,CAAC;AAGtC,OAAO,EACL,iBAAiB,EACjB,mBAAmB,EACnB,wBAAwB,EACxB,KAAK,UAAU,GAChB,MAAM,gBAAgB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -35,7 +35,7 @@ export { InMemoryEventStore, createInMemoryEventStore, } from './events/memory-s
|
|
|
35
35
|
// Event emitter exports
|
|
36
36
|
export { ProofEventEmitter, createEventEmitter, } from './events/event-emitter.js';
|
|
37
37
|
// Hash chain exports
|
|
38
|
-
export { sha256, computeEventHash, verifyEventHash, verifyChainLink, verifyChain, verifyChainWithDetails, getGenesisHash, } from './events/hash-chain.js';
|
|
38
|
+
export { sha256, sha3_256, computeEventHash, computeEventHash3, verifyEventHash, verifyEventHash3, verifyChainLink, verifyChain, verifyChainWithDetails, getGenesisHash, } from './events/hash-chain.js';
|
|
39
39
|
// Event signature exports
|
|
40
40
|
export { generateSigningKeyPair, signEvent, verifyEventSignature, verifyEventSignatures, EventSigningService, createSigningService, } from './events/event-signatures.js';
|
|
41
41
|
// API route exports
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AAEH,eAAe;AACf,OAAO,EACL,UAAU,EACV,gBAAgB,GAEjB,MAAM,8BAA8B,CAAC;AAEtC,OAAO,EACL,oBAAoB,EACpB,sBAAsB,EACtB,oBAAoB,GAGrB,MAAM,yBAAyB,CAAC;AAEjC,sBAAsB;AACtB,OAAO,EAKL,eAAe,EACf,mBAAmB,GACpB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EACL,kBAAkB,EAClB,wBAAwB,GACzB,MAAM,0BAA0B,CAAC;AAElC,wBAAwB;AACxB,OAAO,EACL,iBAAiB,EACjB,kBAAkB,GAMnB,MAAM,2BAA2B,CAAC;AAEnC,qBAAqB;AACrB,OAAO,EACL,MAAM,EACN,gBAAgB,EAChB,eAAe,EACf,eAAe,EACf,WAAW,EACX,sBAAsB,EACtB,cAAc,GAEf,MAAM,wBAAwB,CAAC;AAEhC,0BAA0B;AAC1B,OAAO,EACL,sBAAsB,EACtB,SAAS,EACT,oBAAoB,EACpB,qBAAqB,EACrB,mBAAmB,EACnB,oBAAoB,GAMrB,MAAM,8BAA8B,CAAC;AAEtC,oBAAoB;AACpB,OAAO,EACL,iBAAiB,EACjB,mBAAmB,EACnB,wBAAwB,GAEzB,MAAM,gBAAgB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AAEH,eAAe;AACf,OAAO,EACL,UAAU,EACV,gBAAgB,GAEjB,MAAM,8BAA8B,CAAC;AAEtC,OAAO,EACL,oBAAoB,EACpB,sBAAsB,EACtB,oBAAoB,GAGrB,MAAM,yBAAyB,CAAC;AAEjC,sBAAsB;AACtB,OAAO,EAKL,eAAe,EACf,mBAAmB,GACpB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EACL,kBAAkB,EAClB,wBAAwB,GACzB,MAAM,0BAA0B,CAAC;AAElC,wBAAwB;AACxB,OAAO,EACL,iBAAiB,EACjB,kBAAkB,GAMnB,MAAM,2BAA2B,CAAC;AAEnC,qBAAqB;AACrB,OAAO,EACL,MAAM,EACN,QAAQ,EACR,gBAAgB,EAChB,iBAAiB,EACjB,eAAe,EACf,gBAAgB,EAChB,eAAe,EACf,WAAW,EACX,sBAAsB,EACtB,cAAc,GAEf,MAAM,wBAAwB,CAAC;AAEhC,0BAA0B;AAC1B,OAAO,EACL,sBAAsB,EACtB,SAAS,EACT,oBAAoB,EACpB,qBAAqB,EACrB,mBAAmB,EACnB,oBAAoB,GAMrB,MAAM,8BAA8B,CAAC;AAEtC,oBAAoB;AACpB,OAAO,EACL,iBAAiB,EACjB,mBAAmB,EACnB,wBAAwB,GAEzB,MAAM,gBAAgB,CAAC"}
|
package/openapi.yaml
CHANGED
|
@@ -7,10 +7,10 @@ info:
|
|
|
7
7
|
version: 1.0.0
|
|
8
8
|
contact:
|
|
9
9
|
name: Vorion Team
|
|
10
|
-
url: https://github.com/
|
|
10
|
+
url: https://github.com/vorionsys/vorion
|
|
11
11
|
license:
|
|
12
|
-
name:
|
|
13
|
-
url: https://
|
|
12
|
+
name: Apache-2.0
|
|
13
|
+
url: https://www.apache.org/licenses/LICENSE-2.0
|
|
14
14
|
|
|
15
15
|
servers:
|
|
16
16
|
- url: /v1
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vorionsys/proof-plane",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Immutable dual-hash audit trail for AI agent governance decisions (SHA-256 + SHA3-256 chain, Ed25519 signatures)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -28,7 +28,10 @@
|
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
30
|
"dist",
|
|
31
|
-
"openapi.yaml"
|
|
31
|
+
"openapi.yaml",
|
|
32
|
+
"README.md",
|
|
33
|
+
"LICENSE",
|
|
34
|
+
"CHANGELOG.md"
|
|
32
35
|
],
|
|
33
36
|
"scripts": {
|
|
34
37
|
"build": "tsc",
|
|
@@ -38,10 +41,10 @@
|
|
|
38
41
|
"test:coverage": "vitest run --coverage",
|
|
39
42
|
"typecheck": "tsc --noEmit",
|
|
40
43
|
"lint": "eslint src",
|
|
41
|
-
"clean": "
|
|
44
|
+
"clean": "rimraf dist"
|
|
42
45
|
},
|
|
43
46
|
"dependencies": {
|
|
44
|
-
"@vorionsys/contracts": "
|
|
47
|
+
"@vorionsys/contracts": "^0.1.1",
|
|
45
48
|
"uuid": "^11.0.4",
|
|
46
49
|
"zod": "^3.24.0"
|
|
47
50
|
},
|
|
@@ -53,20 +56,32 @@
|
|
|
53
56
|
},
|
|
54
57
|
"keywords": [
|
|
55
58
|
"vorion",
|
|
59
|
+
"basis",
|
|
56
60
|
"proof-plane",
|
|
57
61
|
"audit-trail",
|
|
58
62
|
"hash-chain",
|
|
63
|
+
"dual-hash",
|
|
64
|
+
"sha256",
|
|
65
|
+
"sha3",
|
|
66
|
+
"ed25519",
|
|
67
|
+
"immutable",
|
|
68
|
+
"tamper-detection",
|
|
69
|
+
"cryptographic",
|
|
59
70
|
"ai",
|
|
60
71
|
"agent",
|
|
61
|
-
"governance"
|
|
72
|
+
"governance",
|
|
73
|
+
"compliance"
|
|
62
74
|
],
|
|
63
75
|
"author": "Vorion <team@vorion.org>",
|
|
64
|
-
"license": "
|
|
76
|
+
"license": "Apache-2.0",
|
|
65
77
|
"repository": {
|
|
66
78
|
"type": "git",
|
|
67
|
-
"url": "https://github.com/
|
|
79
|
+
"url": "git+https://github.com/vorionsys/vorion.git",
|
|
68
80
|
"directory": "packages/proof-plane"
|
|
69
81
|
},
|
|
82
|
+
"bugs": {
|
|
83
|
+
"url": "https://github.com/vorionsys/vorion/issues"
|
|
84
|
+
},
|
|
70
85
|
"homepage": "https://vorion.org",
|
|
71
86
|
"engines": {
|
|
72
87
|
"node": ">=18.0.0"
|