Vraimony

Open Pack (New)

New sector-supporting pack page for profiles/registries (integrators).

Registries

Vraimony Standard (ERF). Machine-readable compatibility primitives. Small, stable, and safe to expose. No tracking.

Official domains and verification guidance

Bundle status

Download the registry bundle and verify it offline. Current status: READY_TO_SIGN / PENDING FINAL SIGNATURE.

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

Signature: Verify signatures Developers
Verify manually (advanced)

No uploads. This verifies the Ed25519 signature over the exact JSON bytes.

curl -sSLO https://www.vraimony.com/keys/distribution_pubkey_ed25519.b64
curl -sSLO https://www.vraimony.com/standard/registries.bundle.json
curl -sSLO https://www.vraimony.com/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 canonical bundle. When the signature file is still pending, treat the bundle as official content only when it comes from the official website path and matches the published checksum. The files under /standard/packs/*.json are derived convenience copies (not trust anchors).

JSON
View JSON

Reality Audit