Every transaction flows through a 7-step compliance pipeline. Each step is a checkpoint that either gates the transaction (steps 1-6) or reports on its health (step 7). Every checkpoint produces a structured audit record.
Detailed breakdown of each step in the compliance pipeline, its checkpoint type, and regulatory significance.
| Stage | Step | Checkpoint | Domain | Audit Output | Regulatory Standards |
|---|---|---|---|---|---|
| Identity Verification | 1 | Gate | Identity | AUD-001: DID resolution result, credential chain depth | BSA/AML, FATF, GENIUS Act, ACK |
| AML/CFT Screening | 2 | Gate | Discovery | AUD-002: Sanctions check result, watchlist hits, jurisdiction flags | BSA/AML, FATF, GENIUS Act, ACK |
| Reserve Verification | 3 | Gate | Reserves | AUD-003: Available balance, reserve status, token validity | GENIUS Act, ACK |
| Settlement Execution | 4 | Gate | Transfer | AUD-004: Transaction hash, settlement network, finality confirmation | BSA/AML, GENIUS Act, ACK |
| Receipt Generation | 5 | Gate | Execution | AUD-005: Receipt issuance timestamp, credential issuer, signature | GENIUS Act, ACK |
| Credential Verification | 6 | Gate | Token | AUD-006: Revocation status, credential chain validity, expiration | ACK |
| Health Reporting | 7 | Obligation | Reporting | AUD-007: Post-settlement observations, quantum risk assessment, final regulatory tags | BSA/AML, FinCEN |
correlationId that ties all records from a single pipeline run.
timestamp, checkpoint result (PASS/FAIL/WARN), evidence hash, step duration in milliseconds, and a JSON object of evidence key-value pairs. Hashes ensure tamper-evidence: any modification of the record will break cryptographic validation.
StableAudit exports connect to compliance infrastructure, security operations, and regulatory reporting systems.
Payment Service Providers ingest StableAudit records to satisfy their ACK operational compliance requirements. JSON audit exports include all fields PSPs need for real-time monitoring and escalation workflows.
JSON audit exports are structured for direct ingestion by security information and event management systems. Each record includes correlation IDs for transaction tracking across multiple infrastructure layers.
Filtered VC-format exports for targeted regulatory reporting. Export only the fields required by a specific standard — FATF Travel Rule, FinCEN, or GENIUS Act — for compliant, audit-ready submission packages.
Each audit record is a structured JSON object with cryptographic integrity guarantees.
{
"correlationId": "txn-2024-001-abc123def456",
"step": 1,
"stepName": "Identity",
"checkpoint": "gate",
"result": "PASS",
"timestamp": "2024-11-15T14:23:45.123Z",
"duration_ms": 145,
"evidence": {
"did": "did:key:z6Mkj7...",
"credential_chain_depth": 3,
"issuer_trusted": true,
"revocation_checked": true
},
"evidence_hash": "sha256:a3f5d...",
"regulatory_tags": [
"BSA/AML",
"FATF_TRAVEL_RULE",
"GENIUS_ACT_4",
"ACK_OPERATIONAL"
]
} evidence_hash — a cryptographic digest of the evidence object. Any tampering with the record after generation will break the hash, making the tampering immediately detectable. Export formats (JSON, VC, reports) all preserve and validate hashes.