Anchor any document's fingerprint permanently to the Solana blockchain. Tamper-proof. Publicly verifiable. Forever.
The document never leaves your device. Only its mathematical fingerprint touches the chain. The proof lives on Solana's public ledger — verifiable by anyone, forever, even if SipHeron ceases to exist.
Digital documents can be silently altered with no way to prove it happened. Contracts get disputed. Records get questioned. Audit trails get challenged in court. Healthcare records get falsified. Credentials get forged. Clinical trial data gets manipulated.
SipHeron makes document tampering mathematically detectable. Instantly. Forever.
Document → SHA-256 Hash → Solana Blockchain → Public Verification URL
Step 1 — Fingerprint SHA-256 hashes your document into a unique 64-character string. Change one byte anywhere in the document and the fingerprint changes completely. The document never leaves your device.
Step 2 — Anchor The fingerprint is written permanently to the Solana blockchain. Sub-second confirmation. $0.001 per anchor. Immutable forever.
Step 3 — Verify Anyone can verify authenticity by hashing their copy and comparing it against the on-chain record. No account required. No trust required. Pure mathematics.
# Install the CLI
npm install -g sipheron-vdr
# Authenticate
sipheron login
# Anchor your first document
sipheron anchor ./contract.pdf
# Verify authenticity
sipheron verify ./contract.pdf| Repository | Description | License | Status |
|---|---|---|---|
| vdr-core | Core verification library — SHA-256 hashing, Solana anchoring, public verification | MIT | Public |
| vdr-cli | Command line tool — anchor and verify from your terminal | MIT | Public |
| vdr-js | JavaScript and TypeScript SDK | Apache 2.0 | Public |
| vdr-python | Python SDK | Apache 2.0 | Public |
| vdr-protocol | Open verification protocol specification | CC BY 4.0 | Public |
| vdr-docs | Complete public documentation | CC BY 4.0 | Public |
| vdr-examples | Integration examples for popular platforms | MIT | Public |
| vdr-embed | Embeddable verification widget for websites | Apache 2.0 | Public |
Legal & Contracts → Prove contracts were not altered after signing
Healthcare Records → Tamper-proof patient records and clinical trial data
Finance & Audit → Immutable audit trails for SOX, GDPR compliance
Education & Credentials → Verifiable diplomas and professional certifications
Government Documents → Unforgeable permits, filings, and public records
Software & IP → Prove codebase state at any point in time
| Property | Why It Matters for Document Verification |
|---|---|
| Sub-second finality | Verification certificates generated in real time during document signing |
| $0.001 per transaction | Enterprise-scale anchoring is economically viable at any volume |
| Public distributed ledger | Proofs verifiable by anyone without trusting SipHeron |
| Immutable history | No single party can alter or delete a recorded proof |
| 99.98% uptime | Production-grade reliability for enterprise workflows |
You do not need SipHeron to verify a proof. Ever.
# Step 1 — Compute the hash of your document yourself
# macOS / Linux
shasum -a 256 your-document.pdf
# Windows PowerShell
Get-FileHash your-document.pdf -Algorithm SHA256
# Step 2 — Look up the transaction on any Solana block explorer
# Visit: https://solscan.io/tx/{transactionSignature}
# Read the memo field
# Compare the hash in the memo to your computed hash
# If they match → document is authentic
# If they differ → document has been modifiedSipHeron could cease to exist tomorrow. Every proof ever created would still be verifiable forever. That is the design. That is the point.
The complete specification of how SipHeron's anchoring and verification protocol works is publicly documented in vdr-protocol.
It is written so that any developer can implement it independently, verify proofs without SipHeron's involvement, and build compatible tooling.
We open sourced the protocol because trust requires transparency. A black box is not trustworthy infrastructure. An open specification is.
| Plan | Anchors | Users | Price |
|---|---|---|---|
| Free | 100/month | 1 | $0 forever |
| Business | 10,000/month | 10 | $99/month |
| Enterprise | Unlimited | Unlimited | Custom |
Get your free API key → No credit card. No commitment. 100 free anchors every month.
| Component | Status |
|---|---|
| Solana Devnet | 🟢 Live |
| REST API | 🟢 Operational |
| Webhooks | 🟢 Operational |
| Dashboard | 🟢 Operational |
| CLI | 🟢 Operational |
| Mainnet | 🔵 Coming Soon |
- 🌐 Website: app.sipheron.com
- 📖 Documentation: app.sipheron.com/docs
- 🛝 Playground: app.sipheron.com
- 🐦 X: @Sip_Heron
- 💬 Discord: discord.gg/sipheron
- 📧 Contact: dev@sipheron.com
import { SipHeronClient } from 'sipheron-js';
const client = new SipHeronClient({
apiKey: process.env.SIPHERON_API_KEY,
network: 'devnet'
});
// Anchor a document
const anchor = await client.anchors.create({
file: fileBuffer,
name: 'Service Agreement — Acme Corp',
metadata: { type: 'contract' }
});
console.log(anchor.verificationUrl);
// https://verify.sipheron.com/a3f4b2c1...
// Verify a document
const result = await client.verify.check({ file: fileBuffer });
console.log(result.authentic); // trueNo blockchain expertise required. No cryptocurrency required. No technical knowledge required.
Three things you get:
- Proof of existence — mathematically prove a document existed at a specific date and time
- Proof of integrity — mathematically prove a document has not been altered since anchoring
- Public verifiability — anyone can verify your document's authenticity with a link, forever
One thing you keep:
Your document never leaves your device. SipHeron never sees it.
SipHeron is live on Solana Devnet with the complete feature set. Mainnet launch is in progress.
We are actively onboarding design partners in the legal and compliance verticals. If you work in legal, healthcare, finance, or government and want to be among the first organizations to anchor documents on mainnet —
Apply to be a design partner →
Built on Solana · Open Protocol · Apache 2.0 Core