sovereign-economic-defense
v1.0.0
Published
Public proof bundles, deployment evidence, and integrity tooling for the Sovereign Economic Defense system
Maintainers
Readme
sovereign-economic-defense
Public proof bundles, deployment evidence, and integrity tooling for the Sovereign Economic Defense system.
Built by AnubisQuantumCipher.
This package is intentionally source-private with respect to the private implementation witness. It ships public manifests, public statements, redacted proof bundles, and a clean CLI for inspecting and extracting that evidence. It does not ship the original implementation source, deployment internals, prover internals, operator profiles, or private runtime traces.
What This Package Includes
- Five redacted proof bundles under
proofs/zkproofs/ - Five public statement summaries under
proofs/statements/ - A sanitized Midnight preprod deployment manifest under
manifests/deployment-manifest.json - A public release manifest under
manifests/release-manifest.json - Risk-boundary, verification, support, and checksum documents under
evidence/andchecksums/ - A CLI for listing components, showing statements, verifying package integrity, and extracting the bundled artifacts
What This Package Does Not Include
- Circuit or application source code
- Build scripts or reproducible build machinery for the private implementation
- Prover service code or deployment code
- Client integrations, seed material, or operator profiles
- Local filesystem paths, machine-environment captures, or model traces
Install
npm install sovereign-economic-defenseQuick Start
List the published components:
npx sovereign-economic-defense listShow a specific component:
npx sovereign-economic-defense show anti-extraction-shieldVerify the installed package against its bundled checksums:
npx sovereign-economic-defense verifyExtract the packaged evidence bundle into a working directory:
npx sovereign-economic-defense extract --out ./sed-releaseCLI
Every CLI command supports --json. In JSON mode, the attribution banner is printed to stderr so stdout stays machine-readable.
list
npx sovereign-economic-defense list
npx sovereign-economic-defense list --jsonshow
npx sovereign-economic-defense show cooperative-treasury-assurance
npx sovereign-economic-defense show recirculation-sovereignty-score --jsonmanifest
npx sovereign-economic-defense manifest release
npx sovereign-economic-defense manifest deployment --json
npx sovereign-economic-defense manifest proofverify
npx sovereign-economic-defense verify
npx sovereign-economic-defense verify --jsonextract
npx sovereign-economic-defense extract --out ./sed-release
npx sovereign-economic-defense extract --out /tmp/sed-evidence --jsonProgrammatic API
import {
extractArtifacts,
getComponent,
getDeploymentManifest,
getProofBundle,
getProofManifest,
getReleaseManifest,
listComponents,
verifyPackageIntegrity,
} from 'sovereign-economic-defense';Exported public types include:
ReleaseManifestDeploymentManifestProofManifestStatementManifestProofBundleComponentRecordIntegrityReportExtractReport
Public Scope
This release exposes evidence for five deployed components:
| Component | Proof bundle | Backend | Midnight deployment |
| --- | --- | --- | --- |
| Cooperative Treasury | cooperative-treasury-assurance.json | plonky3 | cooperative-treasury |
| Community Land Trust | community-land-trust-governance.json | plonky3 | community-land-trust |
| Anti-Extraction Shield | anti-extraction-shield.json | arkworks-groth16 | anti-extraction-shield |
| Wealth Trajectory | wealth-trajectory-assurance.json | plonky3 | wealth-trajectory |
| Sovereignty Score | recirculation-sovereignty-score.json | plonky3 | sovereignty-score |
Release Position
This is an evidence release, not an open-source implementation release. The proofs and verification keys are public. The implementation witness remains private.
Read these first:
CONSTITUTION.mdevidence/public-risk-boundary.mdevidence/verification-ceremony.mdevidence/no-source-support-policy.md
Verification Notes
The proof bundles in proofs/zkproofs/ contain only:
- backend identifier
- program digest
- public inputs
- hex-wrapped verification-key payload
- hex-wrapped proof payload
All implementation-facing metadata was removed before publication.
Development
npm install
npm run build
npm test