Build on the decentralized data layer
DIG Network is a developer platform for publishing and serving content where the host never sees what it carries. Start with DigStore — encrypted, content-addressable storage that compiles to a single self-defending WebAssembly module.
$ digstore init site --dir dist
✓ Initialized store 'site'
$ digstore add -A
47.2 MB staged · 80.8 MB free
$ digstore commit -m "v1"
✓ generation 1a2b3c… → site.wasm
$ digstore cat urn:dig:chia:…/index.htmlComposable building blocks
DigStore is available now. More DIG Network primitives are on the way.
DigStore
A Git-shaped, encrypted, content-addressable store. Point it at a build directory, commit generations, and address everything by URN.
Read the DigStore docs →Encrypted at rest
The URN is the key — it both locates and decrypts (AES-256-GCM-SIV). No password, no key stored anywhere.
Provider-blind
Hosts hold only ciphertext keyed by hashes. Downloads are verified against the store id and the publisher's signed root.
One self-defending file
Data, server, and Merkle proofs compile into one .wasm, padded to a uniform size that reveals nothing.
Three commands to publish
Git-style workflow for build output — encrypted and addressable from the first commit.
Capture
Point a store at your build output.
digstore init site --dir distCommit
Seal a generation into one .wasm.
digstore add -A && digstore commit -m "v1"Share
Push to a remote; hand out a URN.
digstore push originStart building with DigStore
Install the CLI and publish your first encrypted store in under a minute.