enigma-memory 0.1.13 → 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.
- package/README.md +36 -17
- package/apps/cli/bin/enigma.mjs +3126 -2848
- package/deploy/docker-compose.local-production-simulation.yml +12 -10
- package/docs/benchmark-attestation-network.md +487 -487
- package/docs/benchmark-reproducibility.md +228 -227
- package/docs/demo-proof-network.md +275 -275
- package/docs/developer-ecosystem.md +223 -223
- package/docs/developer-proof-quickstart.md +325 -325
- package/docs/enigma-memory-ready-conformance.md +376 -376
- package/docs/hosted-cloud-product.md +10 -0
- package/docs/install-anywhere.md +34 -17
- package/docs/installers-and-desktop.md +9 -7
- package/docs/proof-network-build-notes.md +240 -240
- package/docs/proof-network.md +257 -257
- package/docs/sdk-api.md +324 -324
- package/docs/solana-devnet-acceptance.md +48 -0
- package/docs/solana-proof-rail.md +453 -453
- package/examples/ci/github-actions.yml +6 -8
- package/package.json +272 -265
- package/packages/mcp-server/src/index.js +1185 -1185
- package/packages/passport/src/index.js +9 -5
- package/scripts/build-benchmark-proof-release.mjs +391 -0
- package/scripts/build-goal-completion-audit.mjs +11 -5
- package/scripts/build-hosted-api-key-lifecycle.mjs +274 -274
- package/scripts/build-hosted-customer-lifecycle.mjs +456 -456
- package/scripts/build-installer-assets.mjs +389 -273
- package/scripts/build-production-handoff-packet.mjs +7 -6
- package/scripts/build-production-unblocker.mjs +409 -0
- package/scripts/build-proof-network-packet.mjs +213 -213
- package/scripts/release-audit.mjs +71 -2
- package/scripts/run-standard-memory-benchmarks.mjs +1070 -1070
- package/scripts/wait-for-backend-ready.mjs +4 -2
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
# via /etc/hosts or local DNS. This lets curl -k reach the tls-proxy container
|
|
10
10
|
# whose ports are published on the loopback interface. For real validation the
|
|
11
11
|
# operator must point the chosen public domain at the deployment's public IP.
|
|
12
|
+
name: enigma-local-production-simulation
|
|
13
|
+
|
|
12
14
|
services:
|
|
13
15
|
postgres:
|
|
14
16
|
image: postgres:17-alpine
|
|
@@ -67,7 +69,7 @@ services:
|
|
|
67
69
|
context: ..
|
|
68
70
|
dockerfile: Dockerfile
|
|
69
71
|
image: enigma-local:simulation
|
|
70
|
-
entrypoint: ["enigma-relay"]
|
|
72
|
+
entrypoint: ["/usr/local/bin/enigma-relay"]
|
|
71
73
|
command: ["serve", "--host", "0.0.0.0", "--port", "8787"]
|
|
72
74
|
secrets:
|
|
73
75
|
- relay_signing_key
|
|
@@ -119,10 +121,10 @@ services:
|
|
|
119
121
|
- /tmp:rw,noexec,nosuid,size=64m
|
|
120
122
|
healthcheck:
|
|
121
123
|
test: ["CMD-SHELL", "node -e \"Promise.all([fetch('http://127.0.0.1:8787/livez'),fetch('http://127.0.0.1:8787/readyz')]).then(rs=>process.exit(rs.every(r=>r.ok)?0:1)).catch(()=>process.exit(1))\""]
|
|
122
|
-
interval:
|
|
124
|
+
interval: 10s
|
|
123
125
|
timeout: 5s
|
|
124
|
-
retries:
|
|
125
|
-
start_period:
|
|
126
|
+
retries: 12
|
|
127
|
+
start_period: 30s
|
|
126
128
|
restart: unless-stopped
|
|
127
129
|
|
|
128
130
|
gateway:
|
|
@@ -130,7 +132,7 @@ services:
|
|
|
130
132
|
context: ..
|
|
131
133
|
dockerfile: Dockerfile
|
|
132
134
|
image: enigma-local:simulation
|
|
133
|
-
entrypoint: ["enigma-gateway"]
|
|
135
|
+
entrypoint: ["/usr/local/bin/enigma-gateway"]
|
|
134
136
|
command: ["serve", "--host", "0.0.0.0", "--port", "8797"]
|
|
135
137
|
secrets:
|
|
136
138
|
- gateway_signing_key
|
|
@@ -189,17 +191,17 @@ services:
|
|
|
189
191
|
- /tmp:rw,noexec,nosuid,size=64m
|
|
190
192
|
healthcheck:
|
|
191
193
|
test: ["CMD-SHELL", "node -e \"Promise.all([fetch('http://127.0.0.1:8797/livez'),fetch('http://127.0.0.1:8797/readyz')]).then(rs=>process.exit(rs.every(r=>r.ok)?0:1)).catch(()=>process.exit(1))\""]
|
|
192
|
-
interval:
|
|
194
|
+
interval: 10s
|
|
193
195
|
timeout: 5s
|
|
194
|
-
retries:
|
|
195
|
-
start_period:
|
|
196
|
+
retries: 12
|
|
197
|
+
start_period: 30s
|
|
196
198
|
restart: unless-stopped
|
|
197
199
|
|
|
198
200
|
tls-proxy:
|
|
199
201
|
image: nginx:alpine
|
|
200
202
|
ports:
|
|
201
|
-
- "127.0.0.1
|
|
202
|
-
- "127.0.0.1
|
|
203
|
+
- "127.0.0.1:${ENIGMA_SIM_RELAY_PORT:-8443}:8443"
|
|
204
|
+
- "127.0.0.1:${ENIGMA_SIM_GATEWAY_PORT:-9443}:9443"
|
|
203
205
|
volumes:
|
|
204
206
|
- ./secrets-simulation/tls.crt:/etc/nginx/ssl/tls.crt:ro
|
|
205
207
|
- ./secrets-simulation/tls.key:/etc/nginx/ssl/tls.key:ro
|