Skip to main content
Blnk makes your transaction history through hashing. Every transaction gets a fingerprint you can check on its own; optionally, your full transaction history can also be sealed into one ordered chain you verify on demand.
The global hash chain is available in Blnk Core 0.15.0 and later. It is disabled by default.

Why hashing matters

Transaction records are the audit trail of your ledger. If amount, balance, currency, status, or reference changes after recording, your balances and reports can no longer be trusted. Blnk uses hashing to make that history :
  1. Per-row hash - fingerprints important fields on each transaction.
  2. Global hash chain - links sealed transactions together in order.
  3. blnk verify-chain - replays the chain and reports the first broken link if protected data changed.
Diagram showing transactions sealed into an ordered hash chain from genesis to chain head

Global hash chain linking sealed transactions in order, where each seal depends on the previous chain head

Hashing does not replace database security, backups, access controls, or audit logs. It gives operators a way to verify that ledger history still matches what Blnk originally sealed.

Quick start

1

Enable the hash chain

Set on the server service, then restart.
See Hash chain settings for all options.
2

Wait for sealing

Existing transaction rows are sealed automatically. New ones seal after the trailing delay, default: 30s.
3

Verify the chain

To verify the chain, run in the same directory as your docker-compose.yaml:
Exit code 0 means the chain is intact.
Success
verify-chain is a Core CLI command, not an HTTP API. The one-off container uses the same Postgres connection and config as your server.
4

Monitor sealing progress

Track backlog and sealing delay over time through Monitoring in Blnk. When the hash chain is enabled, these gauges appear on the metrics endpoint:See Metrics reference for attribute details and other Core metrics.

Per-row hash

Every transaction in Blnk gets a hash - a SHA-256 fingerprint built from five fields. If any of them change after recording, the fingerprint no longer matches. Blnk concatenates these values in order, hashes the string with SHA-256, and returns the hex digest as hash: amount, reference, currency, source, destination.
The per-row hash uses amount (the display float), not precise_amount. Fields such as description, status, and meta_data are not included.
Compare the hash from when you first recorded a transaction with the hash on a later fetch to confirm those fingerprinted fields are unchanged. Built-in integrity verification is handled by the global hash chain and blnk verify-chain.

Global hash chain

When you enable the hash chain, transaction rows are linked in order. Each seal depends on the previous one, so your full history acts as one tamper-evident record.
Diagram showing a hash chain with a broken link where verification fails

Broken hash chain where a tampered or reordered transaction breaks verification at the first invalid link

This is stronger than checking rows independently because every sealed transaction depends on the previous chain head. If a transaction is changed, removed, or reordered, verification fails where the history breaks.
  1. Existing transactions seal automatically when you turn the chain on.
  2. New transactions seal after a short trailing delay so recent writes can finish.
  3. The chain includes all statuses: queued, inflight, applied, voided, rejected, and refund.
The chain checks these fields: transaction_id, source, destination, amount, precise_amount, currency, status, reference, created_at. Change any after sealing and verification fails.
Fields such as description and meta_data are not integrity-protected by the chain. Changing them does not fail verification. Protected transaction fields are also guarded by the database immutability trigger.
Chain seals are not returned in transaction API or search responses. Check integrity with blnk verify-chain, not by reading a response field.

Verification

blnk verify-chain tells you whether your full sealed history is intact or where it broke. Exit code 0 means the chain passed; any other exit code means it failed.
When verification passes, output looks like this:
Success

Need help?

We are very happy to help you make the most of Blnk, regardless of whether it is your first time or you are switching from another tool. To ask questions or discuss issues, please contact us or join our Discord community.