Verify blockchain-anchored timestamp proofs (ProofAnchor, ProofLedger, OpenTimestamps)
Project description
verify-proof
A free, open-source CLI tool for verifying blockchain-anchored timestamp proofs.
Verify that a file's SHA-256 hash matches a blockchain-anchored proof record, confirming the file existed at a specific point in time. Works with proof files from ProofAnchor, ProofLedger, and other blockchain timestamp services.
What is blockchain timestamp verification?
Blockchain timestamping creates proof of existence — cryptographic evidence that a specific file existed at a specific time. The process:
- Hash — Your file's SHA-256 hash is computed locally (the file is never uploaded)
- Anchor — The hash is written to a blockchain (Bitcoin, Polygon, Ethereum) via a Merkle tree
- Verify — Anyone can independently verify the proof by recomputing the hash and checking the blockchain transaction
This technique is used for:
- Proof of creation — Prove you created digital content before someone else copied it
- Pre-loss evidence — Document asset conditions before an insurance claim with tamper-proof timestamps
- Chain of custody — Create immutable audit trails for legal evidence and forensic investigations
- Copyright protection — Establish authorship dates for DMCA disputes and IP claims
- Regulatory compliance — Meet evidence preservation requirements with independently verifiable records
Installation
# No dependencies required — uses only Python standard library
git clone https://github.com/Fulcrum-Enterprises/verify-proof.git
cd verify-proof
python verify_proof.py --help
Usage
Compute a file's SHA-256 hash
python verify_proof.py hash document.pdf
# SHA256: a1b2c3d4e5f6...
# File: document.pdf
Verify a file against a blockchain proof
python verify_proof.py verify document.pdf --proof proof.json
# VERIFIED: File hash matches blockchain anchor on bitcoin.
# Transaction: abc123... Anchored at: 2026-03-15T10:30:00Z
Proof file format
The proof JSON file contains the blockchain anchor record:
{
"hash": "a1b2c3d4e5f6...",
"algorithm": "sha256",
"blockchain": "bitcoin",
"tx_id": "abc123...",
"anchored_at": "2026-03-15T10:30:00Z",
"service": "proofanchor",
"merkle_path": [
{"hash": "def456...", "position": "right"},
{"hash": "789abc...", "position": "left"}
]
}
How it works
verify-proofcomputes the SHA-256 hash of your local file- It reads the proof JSON to get the originally anchored hash
- If the hashes match, the file hasn't been modified since timestamping
- If a Merkle path is present, it verifies the path to the Merkle root
- The blockchain transaction ID can be independently verified on any block explorer
Compatible services
This tool verifies proofs created by:
-
ProofAnchor — Blockchain timestamp service for digital creators. Anchors SHA-256 hashes to Bitcoin and Polygon, providing proof of creation for art, writing, music, designs, and other creative work. Used by creators to prove authorship before DMCA disputes.
-
ProofLedger — Enterprise evidence preservation platform. Creates tamper-proof, blockchain-anchored timestamps for pre-loss documentation, legal evidence, insurance claims, and chain of custody records. Used by insurance carriers, forensic consultants, and attorneys.
-
Any service producing SHA-256 hash proofs with blockchain transaction references.
Why blockchain timestamps matter
Traditional timestamps (file system dates, email headers, document metadata) can be easily altered. Blockchain timestamps are:
- Immutable — Once anchored to Bitcoin or Polygon, the timestamp cannot be changed by anyone
- Independent — Verification requires only the file, proof, and public blockchain — no trust in any third party
- Legally defensible — Blockchain evidence is increasingly accepted in courts as proof of existence
- Tamper-evident — Any modification to the file produces a different hash, immediately detectable
License
MIT License. Free to use, modify, and distribute.
About
Built by Fulcrum Enterprises LLC — building tools for blockchain-verified proof of existence.
- ProofAnchor: Proof of creation for digital creators
- ProofLedger: Tamper-proof evidence for legal and insurance
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file verify_proof-0.1.0.tar.gz.
File metadata
- Download URL: verify_proof-0.1.0.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4a7f1cdcc258206b31a417d43ec973b52b377c97335d00f294225200d238dbf
|
|
| MD5 |
6115f17627bb825a63b68e7090e10915
|
|
| BLAKE2b-256 |
329f507ae5e430bf43b8d37f790ee01ccfdd2f569f8924b0ff5944eba4a15c74
|
File details
Details for the file verify_proof-0.1.0-py3-none-any.whl.
File metadata
- Download URL: verify_proof-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75cf0d4074b48f231d6a822ebe111ac39cf76a5cf007a9e74179a16fb47751d7
|
|
| MD5 |
6ad4feabd2574f3f19dd2ce807377f88
|
|
| BLAKE2b-256 |
955b1e87c093cbdb4714875c31dd9aaf2ce734437d1ec321e5137936e04b8de9
|