AegisQL shield
POSTGRESQL-COMPATIBLE · TAMPER-EVIDENT

The database that proves it was never touched.

AegisQL is a drop-in PostgreSQL engine with cryptographic integrity built into the core. Every commit is hash-chained, Merkle-proven, and anchorable on-chain — no SDK, no triggers, no application changes.

↓  Download AegisQL Read the architecture
WORKS UNMODIFIED WITH
psqlPrismaJDBCnode-pgpsycopg
SCROLL
SHA-256
Hash-chained per event
O(log n)
Merkle inclusion proofs
0ms
Added read latency
100%
Wire-protocol compatible
// INTEGRITY, BUILT IN

Everything PostgreSQL does — plus a verifiable history of every change.

The integrity layer lives inside the engine, beside the transaction manager. Your application never knows it's there.

// THE LIFECYCLE OF A COMMIT

From row change to cryptographic proof — automatically, on COMMIT.

THE HASH CHAIN — each event seals the one before it
hash = SHA256( prev_hash  ||  canonical_event )  — alter any byte and every downstream hash stops matching.
// PLUGGABLE ANCHORING

Anchor your Merkle root to a chain you trust.

A pluggable Anchor Provider periodically commits the current Merkle root to an external witness. Once anchored, not even a database administrator can rewrite history undetected.

Only the Merkle root leaves your database. Never a byte of user data is written on-chain.
-- seal the current state
ANCHOR;
→ root 0x9f3c…a18e anchored · Solana slot 284,119,402
-- audit the latest witness
SHOW LAST ANCHOR;
providersolana-mainnet
merkle_root0x9f3c…a18e
events1,284,109
anchored_at2026-06-29 11:04 UTC
// NATIVE SQL EXTENSIONS

Audit the entire database in one statement.

Verification is just SQL. Run it from psql, a migration, or a scheduled job — the syntax feels native to PostgreSQL.

psql — aegisql@production
// GET AEGISQL

Download and run it on your own infrastructure.

Self-hosted, single binary, PostgreSQL 16-compatible. Every release is signed and its checksum is anchored on-chain — verify before you run.

Windows
v1.0 · x86-64 · 57 MB
↓  Download .msi installer
SHA-256a18e…7c1f… · anchored #4471
Linux
v1.0 · x86-64 · 13 MB
↓  Download .tar.gz
SHA-2569f3c…0e8d… · anchored #4471
PostgreSQL 16-compatible · drop-in replacement— self-hosted, single binary, no app changes

Trust, but verify — at the storage layer.

Self-hosted, PostgreSQL 16-compatible, and signed end to end. Download AegisQL and stand up a tamper-evident cluster on your own infrastructure.

↓  Download AegisQL ⭐ Star on GitHub