enigma-memory 0.1.14 → 0.1.15

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.
@@ -341,7 +341,7 @@ The negative fixture set should include intentionally unsafe keys and values so
341
341
  "subject": {
342
342
  "name_ref": "public-package-or-client-ref",
343
343
  "version": "0.0.0",
344
- "enigma_version": "0.1.14"
344
+ "enigma_version": "0.1.15"
345
345
  },
346
346
  "commands": [
347
347
  {
@@ -1,6 +1,6 @@
1
1
  # Proof Network build notes
2
2
 
3
- These notes are for future engineers extending Enigma's privacy-preserving Proof Network into a Solana program or hosted verifier. The 0.1.14 scope is local-only: create and verify public-safe proof artifacts, prepare opaque root batches for future chain anchoring, and never submit transactions or write private memory material into proof payloads.
3
+ These notes are for future engineers extending Enigma's privacy-preserving Proof Network into a Solana program or hosted verifier. The 0.1.15 scope is local-only: create and verify public-safe proof artifacts, prepare opaque root batches for future chain anchoring, and never submit transactions or write private memory material into proof payloads.
4
4
 
5
5
  Paths below are relative to `enigma/`.
6
6
 
@@ -202,7 +202,7 @@ On-chain accounts should store compact hashes, counters, timestamps, and public
202
202
 
203
203
  A hosted verifier can add convenience, not authority over private content. It may validate schema ids, JSON Schemas, package validators, canonical hashes, packet nesting, artifact counts, and public registry/chain observations. It must return bounded public-safe error codes and never echo private submitted values.
204
204
 
205
- Verifier non-goals: no raw memory ingestion, provider transcript ingestion, embedding upload endpoint, tenant-name lookup endpoint, Solana transaction submission, or hosted secret custody in the 0.1.14 proof-network layer.
205
+ Verifier non-goals: no raw memory ingestion, provider transcript ingestion, embedding upload endpoint, tenant-name lookup endpoint, Solana transaction submission, or hosted secret custody in the 0.1.15 proof-network layer.
206
206
 
207
207
  ## Targeted test plan
208
208
 
@@ -92,7 +92,7 @@ Example:
92
92
  ```sh
93
93
  enigma chain anchor \
94
94
  --root sha256:8f0f7d2b7b7f4f2a3e4b9a3d1f0f2c3b4a5d6e7f8091a2b3c4d5e6f708192a3b \
95
- --ref release:enigma:0.1.14 \
95
+ --ref release:enigma:0.1.15 \
96
96
  --ref memory-root:public-demo-2026-06-25 \
97
97
  --out ./.enigma/proof-network-anchor.json
98
98
  ```
@@ -166,8 +166,8 @@ Example with a report hash:
166
166
  enigma chain attest \
167
167
  --report-hash sha256:5c3a2e1d0f9b8a7766554433221100ffeeddccbbaa99887766554433221100ff \
168
168
  --dataset-ref locomo:file-sha256:6a7b8c9d0e1f2233445566778899aabbccddeeff00112233445566778899aabb \
169
- --runner-ref enigma-standard-memory-benchmark:0.1.14 \
170
- --package-ref npm:@enigma-ai/enigma:0.1.14 \
169
+ --runner-ref enigma-standard-memory-benchmark:0.1.15 \
170
+ --package-ref npm:@enigma-ai/enigma:0.1.15 \
171
171
  --out ./.enigma/proof-network-attestation.json
172
172
  ```
173
173
 
@@ -177,8 +177,8 @@ Example with a local report file:
177
177
  enigma chain attest \
178
178
  --report-file ./.enigma/standard-memory-benchmark.json \
179
179
  --dataset-ref longmemeval:file-sha256:7b8c9d0e1f2233445566778899aabbccddeeff00112233445566778899aabbcc \
180
- --runner-ref enigma-standard-memory-benchmark:0.1.14 \
181
- --package-ref npm:@enigma-ai/enigma:0.1.14 \
180
+ --runner-ref enigma-standard-memory-benchmark:0.1.15 \
181
+ --package-ref npm:@enigma-ai/enigma:0.1.15 \
182
182
  --out ./.enigma/proof-network-attestation.json
183
183
  ```
184
184
 
package/docs/sdk-api.md CHANGED
@@ -241,7 +241,7 @@ const attestation = createBenchmarkAttestation({
241
241
  report_hash: 'sha256:eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee',
242
242
  dataset_ref: 'dataset-ref-public',
243
243
  runner_ref: 'runner-ref-public',
244
- package_ref: 'npm:enigma-memory@0.1.14',
244
+ package_ref: 'npm:enigma-memory@0.1.15',
245
245
  metric_roots: ['sha256:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'],
246
246
  sample_count: 120,
247
247
  run_count: 1,
@@ -437,7 +437,7 @@ Mainnet use is blocked until all gates below are satisfied for the exact program
437
437
  - Use domain tags for every hash: `anchor_batch`, `capability_grant`, `capability_revocation`, `benchmark_attestation`, `job_escrow`, `operator_registry`, and `packet`.
438
438
  - Prefer fixed-size byte arrays and enums in instruction args. Avoid variable user text and arbitrary JSON on-chain.
439
439
  - Keep account sizes bounded. Store hash lists off-chain behind roots when a vector could grow without a hard cap.
440
- - Every chain-writing CLI command should have a local planning mode first. The default for release `0.1.14` planning artifacts is no transaction submission.
440
+ - Every chain-writing CLI command should have a local planning mode first. The default for release `0.1.15` planning artifacts is no transaction submission.
441
441
  - Chain refs should include cluster, program id, signature/account id, and slot. They should not include RPC URLs with credentials.
442
442
 
443
443
  ## Future implementation checklist