Open Pack (New)
New Diamond pack page for profiles/registries (integrators).
Registries
Vraimony Standard (ERF) — by GetEvidex. Machine-readable compatibility primitives. Small, stable, and safe to expose. No tracking.
- PSP-style mappings; no official integration or affiliation implied.
- Integrity-only packaging standard; no outcome/admissibility guarantee.
Bundle (signed)
Download the registry bundle and verify it offline:
- /standard/registries.bundle.json (canonical)
- /standard/registries.bundle.sig (canonical)
- Legacy alias: /registries.bundle.json + /registries.bundle.sig
- Public key: /keys/distribution_pubkey_ed25519.b64
Integrity-only packaging standard; no outcome/admissibility guarantee.
Verify manually (advanced)
No uploads. This verifies the Ed25519 signature over the exact JSON bytes.
curl -sSLO https://getevidex.net/keys/distribution_pubkey_ed25519.b64
curl -sSLO https://getevidex.net/standard/registries.bundle.json
curl -sSLO https://getevidex.net/standard/registries.bundle.sig
node - <<'NODE'
const fs = require('fs');
const crypto = require('crypto');
const pubRaw = Buffer.from(fs.readFileSync('distribution_pubkey_ed25519.b64','utf8').trim(),'base64');
const sig = Buffer.from(fs.readFileSync('registries.bundle.sig','utf8').trim(),'base64');
const data = fs.readFileSync('registries.bundle.json');
const spki = Buffer.concat([Buffer.from('302a300506032b6570032100','hex'), pubRaw]);
const key = crypto.createPublicKey({ key: spki, format: 'der', type: 'spki' });
console.log(crypto.verify(null, data, key, sig) ? 'OK' : 'FAILED');
NODE
Registry browser (read-only)
Reason codes, event types, profiles, and pack manifests are loaded from the signed bundle (single source of truth). The files under /standard/packs/*.json are derived convenience copies (not trust anchors).
—
—
—
—
JSON
—
Reality Audit
—