VSC Evidence Bundles
VSC can package a verified state chain into a portable evidence directory.
Export a standard bundle
Section titled “Export a standard bundle”npm run vsc -- bundle <chain-token>JSON event bundle
Section titled “JSON event bundle”Generate deterministic JSON benchmark state first:
npm run vsc -- benchmark:jsonThen export:
npm run vsc -- bundle:jsonTypical bundle structure
Section titled “Typical bundle structure”vsc-bundle/├── README.md├── manifest.json├── chain-token.json├── base-token.json├── verification-summary.json├── checksums.sha256├── delta-tokens/├── reports/└── seals/Integrity artifacts
Section titled “Integrity artifacts”A bundle can contain:
- chain token
- base token
- ordered delta tokens
- manifest
- verification summary
- SHA-256 checksums
- human-readable reports
- visual proof seals
ZIP packaging
Section titled “ZIP packaging”An existing evidence bundle can be packaged as a ZIP:
npm run vsc -- zip-bundle <bundle-directory>ZIP creation does not modify the source evidence directory.
Continue with Bundle Verification →.