Skip to content

VSC Evidence Bundles

VSC can package a verified state chain into a portable evidence directory.

Terminal window
npm run vsc -- bundle <chain-token>

Generate deterministic JSON benchmark state first:

Terminal window
npm run vsc -- benchmark:json

Then export:

Terminal window
npm run vsc -- bundle:json
vsc-bundle/
├── README.md
├── manifest.json
├── chain-token.json
├── base-token.json
├── verification-summary.json
├── checksums.sha256
├── delta-tokens/
├── reports/
└── seals/

A bundle can contain:

  • chain token
  • base token
  • ordered delta tokens
  • manifest
  • verification summary
  • SHA-256 checksums
  • human-readable reports
  • visual proof seals

An existing evidence bundle can be packaged as a ZIP:

Terminal window
npm run vsc -- zip-bundle <bundle-directory>

ZIP creation does not modify the source evidence directory.

Continue with Bundle Verification →.