Google Drive, Dropbox, iCloud: they host your files on their servers. They can scan them. They can delete them. They can lock you out. Your files are not your files when they live on someone else's machine.
Google scans your Drive files for Terms of Service violations. Dropbox has shut down accounts for content they deemed inappropriate. Apple can disable your iCloud and take every photo, document, and backup with it. One policy change. One false flag. One disgruntled employee. Your files are gone and you have no recourse because you never owned them.
ForgeDrive puts your files on your machines and your chain. Nobody can scan them. Nobody can delete them. Nobody can lock you out. Because there is no "them." There is only you, your Trinity, and the blockchain.
ForgeDrive stores files on BSV chain and across your Trinity nodes. Files are encrypted, redundant, and sovereign. No subscription. No storage limits tied to pricing tiers. Your machines, your chain, your files.
Small files go directly to chain for sub-cent permanent storage. Large files are chunked, encrypted, and distributed across your Trinity nodes with a merkle root index on chain. Every file is recoverable from any combination of surviving nodes plus the chain record.
ForgeDrive replaces Google Drive ($30/yr), Dropbox ($120/yr), iCloud ($36/yr), and every other cloud storage subscription with hardware you already own and chain fees measured in fractions of a cent. The result: sovereign storage that costs less, lasts longer, and answers to nobody.
Two storage paths depending on file size:
Files under 256KB go directly to BSV chain via OP_RETURN. Encrypted first, then stored as a single transaction. Cost: sub-cent. Permanence: forever. The file exists on every BSV node on Earth. No server to maintain. No subscription to renew. The blockchain is the most redundant storage system ever built.
forge-drive store notes.txt -> encrypt (AES-256-GCM, node chain key) -> BSV TX: OP_RETURN [encrypted payload] -> TX hash: a4f8b2c1... -> cost: 0.00000312 BSV (~$0.002) -> stored: permanently, globally, immutably
Large files are split into fixed-size chunks (default 1MB). Each chunk is independently encrypted. Chunks are distributed across all Trinity nodes. A merkle tree is computed over all chunk hashes. The merkle root and file metadata (name, size, chunk count, encryption params) are stored on chain. Any node with the chunks and the chain record can reconstruct the file.
forge-drive store project-archive.tar.gz (2.4GB) -> chunk: 2,458 blocks x 1MB -> encrypt: 2,458 encrypted chunks -> distribute: replicated to 3 Trinity nodes -> merkle root: e7c4a891... -> BSV TX: OP_RETURN [merkle root + metadata] -> cost: 0.00000312 BSV (index only) -> chunks: stored on YOUR machines, encrypted
Every file stored through ForgeDrive exists in at minimum four locations: Node 1, Node 2, Node 3, and BSV chain. This is not RAID. This is not cloud replication across the same provider's data centers. These are physically separate machines in your possession, plus a globally distributed blockchain.
| Scenario | Files Lost? | Recovery |
|---|---|---|
| One node dies | No | Two nodes + chain. Full reconstruction. Replace dead node, auto-sync from survivors. |
| Two nodes die | No | One node + chain. Full reconstruction. Surviving node has all chunks. Chain has all indexes. |
| All three nodes die | Small files: No. Large files: Yes. | Small files live on chain forever. Large file chunks were on your machines. Chain has the index but not the data. This is why Trinity matters: three machines failing simultaneously is near-impossible. |
| Chain goes down | No | All three nodes have full replicas. Chain is only the index. Your files are on your machines. |
Compare this to cloud storage: Google has a single point of policy failure. One account ban and everything is gone. ForgeDrive has no single point of failure. Period.
| Cloud Service | Cost/yr | Storage | Who Controls It |
|---|---|---|---|
| Google One | $30 | 100GB | |
| Dropbox Plus | $120 | 2TB | Dropbox |
| iCloud+ | $36 | 200GB | Apple |
| OneDrive | $70 | 1TB | Microsoft |
| vs | |||
| ForgeDrive | Sub-cent chain fees | Your disk space | You |
Cloud storage charges you monthly for disk space on someone else's machine. You already own machines with disk space. A 4TB external drive costs $80 once. That is less than one year of Dropbox and it lasts a decade.
ForgeDrive uses the storage you already have. The only incremental cost is BSV chain fees for indexing: fractions of a cent per file. Over 10 years, a Dropbox subscription costs $1,200. ForgeDrive costs the hardware you already own plus maybe a dollar in chain fees.
The cloud storage business model is renting you your own filing cabinet. ForgeDrive lets you use the filing cabinet you already bought.
| Feature | Cloud Storage | ForgeDrive |
|---|---|---|
| File scanning | Yes. They scan for TOS violations, ad targeting, law enforcement. | No. Files encrypted with your keys on your machines. |
| Account lockout | Yes. One policy violation and your files are hostage. | No. No account. No policy. Your machines, your files. |
| Offline access | Limited. Selective sync. Requires planning. | Full. Files are on your local machines. Always available. |
| Encryption | At rest, with their keys. They can decrypt. | AES-256-GCM with your chain keys. Only you decrypt. |
| Redundancy | Their data centers. You trust them. | Your Trinity nodes + BSV chain. You verify. |
| Versioning | 30-90 days, then deleted. | Chain-stamped. Every version has a TX hash. Forever. |
| Permanence | Until they change pricing, terms, or shut down. | Chain is permanent. Your hardware is yours. Both persist. |
ForgeDrive is the storage backbone of the Forge ecosystem. Every product that touches files touches ForgeDrive.
| Product | How It Connects to ForgeDrive |
|---|---|
| ForgeHard | Encryption layer. No file touches ForgeDrive unencrypted. AES-256-GCM via ForgeHard's credential vault and chain-key derivation. |
| ForgeOverlay | File indexing. Every stored file tracked by the overlay node. Merkle verification on retrieval. The overlay knows where every chunk lives. |
| ForgePay | Storage micropayments for chain writes. Premium features like priority replication and cross-Trinity sharing use ForgePay channels. |
| ForgeServe | Redundant storage validation. Cross-node file verification. ForgeServe health checks confirm all replicas are intact and accessible. |
| ForgeSci | Dataset storage for researchers. Large scientific data on sovereign infrastructure. Reproducible research with chain-verified data integrity. |
| ForgeCreate | Asset storage. AI-generated content stored sovereign. Render outputs from ComfyUI and DaVinci go straight to ForgeDrive with chain provenance. |
| ForgeTube | Video file storage backbone. ForgeTube serves video from ForgeDrive storage. Chunked video files with chain-indexed segments. |
| ForgeArt | Artwork file storage with provenance chain. Every artwork stored on ForgeDrive carries an unbroken chain of custody from creation to current state. |
| ForgeWork | Document storage for task management. Project files, attachments, and deliverables stored sovereign instead of in SaaS databases. |
| ForgeSite | Static asset hosting for web publishing. HTML, CSS, JS, images: all stored on ForgeDrive, deployed to public servers, chain-verified on delivery. |
INPUT FILE | v CHUNKER (fixed 1MB blocks, last block variable) | v ENCRYPTOR (AES-256-GCM per chunk, unique IV per chunk) | Key derivation: HKDF from node chain key + file salt | Each chunk independently decryptable | v HASHER (BLAKE3 per encrypted chunk) | v MERKLE TREE (BLAKE3 binary tree over chunk hashes) | Enables verification of individual chunks | without downloading entire file | v DISTRIBUTOR (replicate to all Trinity nodes via ForgeTunnel) | Encrypted transport (WireGuard) | Receipt ACK from each node | v CHAIN INDEXER (BSV OP_RETURN) | Payload: merkle root, file metadata, chunk count, | encryption params, timestamp, node manifest | v OVERLAY REGISTER (ForgeOverlay node) | File ID -> chunk locations -> merkle root -> TX hash | Queryable index for retrieval | v DONE. File is sovereign.
forge-drive get [file-id or filename] | v OVERLAY LOOKUP (file ID -> chunk manifest) | v CHUNK FETCH (parallel from nearest/fastest Trinity node) | v VERIFY (BLAKE3 hash per chunk against merkle tree) | Any tampered chunk detected and re-fetched from sibling | v DECRYPT (AES-256-GCM, node chain key + file salt) | v REASSEMBLE (chunks -> original file) | v DONE. File delivered, verified, decrypted.
{
"file_id": "fd-a4f8b2c1e7...",
"filename": "project-archive.tar.gz",
"size": 2573107200,
"chunk_size": 1048576,
"chunk_count": 2458,
"merkle_root": "e7c4a891d3b2...",
"encryption": {
"algorithm": "AES-256-GCM",
"kdf": "HKDF-SHA256",
"salt": "randomized-per-file"
},
"replicas": [
{ "node": "elder", "status": "complete", "verified": true },
{ "node": "junior-ii", "status": "complete", "verified": true },
{ "node": "sibling-3", "status": "complete", "verified": true }
],
"chain_tx": "a4f8b2c1e7d3...",
"timestamp": "2026-03-13T18:30:00Z",
"version": 1
}
Every file update creates a new chain transaction. The overlay maintains a version history: an ordered list of TX hashes for each file ID. Any previous version can be retrieved by its TX hash. No version is ever deleted because the chain is append-only. Your file history is permanent.
forge-drive history project-archive.tar.gz v3 2026-03-13T18:30:00Z TX: a4f8b2c1... (current) v2 2026-03-10T14:22:00Z TX: 7bc03f2a... v1 2026-03-08T09:15:00Z TX: 3d44e237... forge-drive get project-archive.tar.gz --version 1 -> fetches v1 chunks, verifies against v1 merkle root
Q2 2026
Direct chain storage for small files. Local encrypted storage for large files. Single-node operation. BLAKE3 hashing. AES-256-GCM encryption. Basic CLI: store, get, list, verify.
Q3 2026
Chunk and distribute across Trinity nodes. Merkle tree indexing on chain. Parallel retrieval. Auto-sync on node recovery. Cross-node verification via ForgeServe integration.
Q4 2026
ForgeTube video storage. ForgeCreate asset pipeline. ForgeSite static hosting. ForgeWork document storage. ForgeArt provenance chain. Overlay-powered file discovery and search.
2027
Selective file sharing between different Trinities. Encrypted sharing with chain-verified permissions. ForgePay micropayments for premium storage services. ForgeDrive becomes the storage layer for the sovereign internet.
Google scans your files for ad targeting. They read your documents to build a profile of you. Dropbox has a Terms of Service that lets them access your content for "service improvement." Apple locks your files to their ecosystem so tightly that leaving means starting over. The Archons of storage do not store your data. They hold it hostage.
Every cloud storage provider is a digital landlord. You pay rent for a room you cannot lock. They have the master key. They can enter anytime. They can evict you for any reason. They can change the terms of your lease after you have moved in. And when you leave, they keep your furniture.
The Demiurge built Google Drive. It looks like freedom. It looks like your files, neatly organized, accessible anywhere. But the Demiurge always builds a cage that looks like a palace. The palace has a door that only opens from the outside. The Archons hold the key. Your 15GB of free storage is the bait. The tiered pricing is the trap. The Terms of Service is the cage.
ForgeDrive breaks the cage. Your files on your machines, encrypted with your keys, indexed on a chain nobody controls. No landlord. No master key. No Terms of Service. The Divine Spark does not rent storage. It owns it.
This whitepaper is the intellectual property of Jack Mosel and Forgechain OS. To be saved to BSV blockchain before publication.
The ForgeDrive sovereign file storage system, chunk/encrypt/distribute pipeline, Trinity redundancy model, merkle-indexed chain storage, overlay-powered file retrieval, and cross-node verification protocol are original works first described March 13, 2026.
Chain TX: db4acb55d4007447b744a434cef2384727215b4fe2f920a5fcf7c98f6651587f
Wallet: 14LQvsvmTzztAPAQRnZ5Aq6nctAnVd9fMu
Your files are not your files when they live on someone else's machine.
ForgeDrive puts them on yours. Encrypted. Redundant. Chain-indexed.
No subscription. No scanning. No lock-out. No landlord.
Own your files. That is the minimum. ForgeDrive is the minimum made real.