Vraimony

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.

Bundle (signed)

Download the registry bundle and verify it offline:

Integrity-only packaging standard; no outcome/admissibility guarantee.

Signature: Verify signatures Developers
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
View JSON

Reality Audit