@algovoi/substrate 0.3.0 → 0.3.1
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 +20 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,8 +66,11 @@ verifyAuditChain([row0, row1]);
|
|
|
66
66
|
|
|
67
67
|
## Substrate discipline
|
|
68
68
|
|
|
69
|
-
This package enforces the AlgoVoi-discipline rules
|
|
70
|
-
|
|
69
|
+
This package enforces the AlgoVoi-authored substrate-discipline rules
|
|
70
|
+
formalised in [IETF Internet-Draft `draft-hopley-x402-canonicalisation-jcs-v1`](https://datatracker.ietf.org/doc/draft-hopley-x402-canonicalisation-jcs-v1/)
|
|
71
|
+
(Independent Submission, Informational; sole AlgoVoi authorship) and
|
|
72
|
+
proposed for inclusion in `x402-foundation/x402` via [PR #2453](https://github.com/x402-foundation/x402/pull/2453)
|
|
73
|
+
(replaces closed [#2436](https://github.com/x402-foundation/x402/pull/2436)):
|
|
71
74
|
|
|
72
75
|
- **Rule 1.** `timestamp_ms` is an epoch-millisecond integer. Floats, ISO
|
|
73
76
|
8601 strings, and negative values are rejected at the source-side.
|
|
@@ -115,10 +118,21 @@ The reference exhibit for this substrate is AlgoVoi's
|
|
|
115
118
|
|
|
116
119
|
## Spec references
|
|
117
120
|
|
|
118
|
-
- [
|
|
119
|
-
- [
|
|
120
|
-
- [
|
|
121
|
-
- [
|
|
121
|
+
- [draft-hopley-x402-canonicalisation-jcs-v1](https://datatracker.ietf.org/doc/draft-hopley-x402-canonicalisation-jcs-v1/) -- IETF I-D (Independent Submission, Informational, sole AlgoVoi authorship). Specifies `urn:x402:canonicalisation:jcs-rfc8785-v1`.
|
|
122
|
+
- [docs.algovoi.co.uk/canonicalisation-substrate](https://docs.algovoi.co.uk/canonicalisation-substrate) -- v1 discipline reference page.
|
|
123
|
+
- [docs.algovoi.co.uk/canonicalisation-substrate-v2](https://docs.algovoi.co.uk/canonicalisation-substrate-v2) -- v2 (PQC-aware) additive successor.
|
|
124
|
+
- [PR #2453](https://github.com/x402-foundation/x402/pull/2453) -- live upstream spec PR for the canonicalisation discipline (sole AlgoVoi authorship; replaces closed #2436).
|
|
125
|
+
- [draft-vauban-x402-stark-receipts](https://datatracker.ietf.org/doc/draft-vauban-x402-stark-receipts/) -- third-party adopter-authored receipt format that anchors to the AlgoVoi canonicalisation discipline.
|
|
126
|
+
|
|
127
|
+
## Conformance to the canonicalisation discipline
|
|
128
|
+
|
|
129
|
+
This package emits receipts pinned to `canon_version: jcs-rfc8785-v1` in-band. Downstream verifiers (`algovoi-audit-verifier` and any conformant third-party verifier) read the pin to select the canonicalisation rule applied at emission.
|
|
130
|
+
|
|
131
|
+
The pin is the load-bearing primitive for the [Substrate Adopters Registry](https://docs.algovoi.co.uk/adopters): adopters anchoring to this discipline pin the same `canon_version` value in their own publicly-citable artefacts. AlgoVoi maintains the registry as a neutral observer; this package is recorded there as the AlgoVoi reference implementation.
|
|
132
|
+
|
|
133
|
+
## Substrate adopters
|
|
134
|
+
|
|
135
|
+
AlgoVoi is recorded in the [Substrate Adopters Registry](https://docs.algovoi.co.uk/adopters) as the substrate author (v1 and v2). Parties anchoring their own services or specifications to `canon_version: jcs-rfc8785-v1` are recorded in the registry via the [submission process](https://docs.algovoi.co.uk/adopters#how-to-submit-an-adoption-entry). AlgoVoi validates submissions against the artefact's canonical bytes and adds qualifying entries.
|
|
122
136
|
|
|
123
137
|
## Licence
|
|
124
138
|
|
package/package.json
CHANGED