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.
- PSP-style mappings; no official affiliation or affiliation implied.
- Integrity-only packaging standard; no outcome/admissibility promise.
Official domains and verification guidance
- Official domain: www.vraimony.com
- Official contact: contact@vraimony.com
- Do not trust typo domains, mirrors, reposted ZIPs, or screenshots alone.
- SHA256 checks file integrity only. It does not prove official origin by itself.
- Official status depends on the source/channel, package name, checksum, signing wording, and final signature when available.
- Report fake verify pages, fake mirrors, or fake packages to contact@vraimony.com.
Bundle status
Download the registry bundle and verify it offline. Current status: READY_TO_SIGN / PENDING FINAL SIGNATURE.
- /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 promise.
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).
—
Reality Audit
—