Ecosystem Synced·11 Articles7 Rules0 Actions5 Continuity Plans0 Supra-Signals
Vital Logs

Vital Logs: The Immutable Audit Trail for Every Vital Event

Vital Logs are the immutable, time-ordered record of every Vital issuance, spend, and redemption event on MeshNativeExchange. Every log entry is cryptographically signed by the node that generated it, retained for seven years, and exportable in CSV, JSON, or PDF format for compliance and treasury teams.

Vital Logs are the complete, tamper-proof audit trail of the Vital DIU lifecycle — every issuance event from compute nodes, every spend operation from mesh-native applications, and every redemption to fiat processed by MeshNativeExchange. Each log entry is signed by the originating node, timestamped to microsecond precision, and appended to an append-only ledger. Logs are retained for seven years and accessible via the Enterprise Dashboard, the Vital Logs API, and scheduled exports. They are designed to meet the auditability requirements of enterprise finance teams, external auditors, and banking regulators.

Cryptographically Signed

Every log entry is signed by the node that generated it. Signatures are verifiable independently of MeshNativeExchange.

7-Year Retention

All Vital log entries are retained for a minimum of seven years — meeting financial services regulatory requirements globally.

Exportable in 3 Formats

Export Vital logs as CSV (for spreadsheets), JSON (for programmatic processing), or PDF (for compliance packages).

Sample Log Stream

Log RefTypeDimensionVital ΔNodeTierTimestamp (UTC)Status
VLG-00291847spendInference+8,192N-02Confidential2026-07-05 14:32:01settled
VLG-00291846spendRouting+1,240N-01Standard2026-07-05 14:31:58settled
VLG-00291845redemptionFiat Settlement-250,000MNX-ENGINE2026-07-05 14:30:00reconciled
VLG-00291844spendStorage+560N-03Standard2026-07-05 14:29:45settled
VLG-00291843issuanceInference+38,400N-04Sovereign2026-07-05 14:28:12settled
VLG-00291842spendPrivacy Enforcement+3,200N-10Sovereign2026-07-05 14:27:03settled
VLG-00291841redemptionFiat Settlement-125,000MNX-ENGINE2026-07-05 14:25:00reconciled
VLG-00291840spendInference+12,800N-07Confidential2026-07-05 14:22:33settled

Log Entry Schema

FieldDescriptionExample
log_refUnique immutable log entry identifier (VLG-prefixed)VLG-00291847
event_typeOne of: spend, issuance, redemption, compliancespend
dimensionCompute dimension: Routing, Storage, Inference, Privacy Enforcement, Fiat SettlementInference
vital_deltaVital amount change. Positive = earned/issued. Negative = spent/redeemed.+8,192
node_idNode that generated or received the Vital (N-XX for mesh nodes, MNX-ENGINE for exchange)N-02
privacy_tierStandard, Confidential, or Sovereign — governs multiplier appliedConfidential
timestampUTC timestamp of the event (ISO 8601)2026-07-05T14:32:01Z
statussettled, reconciled, pending, or failedsettled
settlement_refCross-reference to the SettlementRecord for this eventSET-00043821

Vital Logs API

Query logs with filters

query-logs.ts
// Query Vital logs via the MeshNativeExchange API
const response = await fetch("https://api.vital.exchange/v2/logs", {
  method: "GET",
  headers: {
    "Authorization": `Bearer ${process.env.VITAL_KEY}`,
    "Content-Type": "application/json",
  },
  // Query params: ?from=2026-07-01&to=2026-07-31&type=spend&dimension=Inference
});

const { logs, total, has_more } = await response.json();

logs.forEach((log) => {
  console.log(log.log_ref, log.vital_delta, log.dimension, log.status);
});

Export audit bundle for a billing period

export-logs.ts
// Export audit-grade log bundle for a billing period
const exportRes = await fetch("https://api.vital.exchange/v2/logs/export", {
  method: "POST",
  headers: { "Authorization": `Bearer ${process.env.VITAL_KEY}` },
  body: JSON.stringify({
    period: "2026-06",         // billing period
    format: "csv",             // "csv" | "json" | "pdf"
    include: ["spend", "issuance", "redemption", "compliance"],
  }),
});

// Returns a signed download URL (expires in 300s)
const { download_url, record_count } = await exportRes.json();
console.log(download_url, record_count);

Compliance & Regulatory Use

Vital Logs are designed to satisfy the auditability requirements of financial services regulators including the SEC, FCA, FINMA, and MAS. Log bundles include cryptographic proofs of node authenticity, unbroken chain-of-custody from compute event to fiat settlement, and line-item Vital accounting for every billing period. Log exports can be delivered directly to your compliance team via secure download or scheduled to an S3-compatible endpoint.