Xandeum File Systems
File systems are the storage abstraction for larger datasets. They give applications a place to organize data outside ordinary account storage while keeping the path compatible with smart contract-driven workflows.
Storage Layer
Xandeum adds a decentralized storage layer where large application data can live in file systems, be served by pNodes, and be supervised by validators through verifiable access patterns.

Overview
Solana execution stays lean while large application data lives in purpose-built file systems.
Traditional chains are excellent for consensus and execution, but they are not designed to make every validator carry exabytes of application data. Xandeum separates the storage burden while keeping access verifiable and usable from the Solana application layer.
What it means
File systems, pNodes, and validator supervision form the path from developer abstraction to network integrity.
File systems are the storage abstraction for larger datasets. They give applications a place to organize data outside ordinary account storage while keeping the path compatible with smart contract-driven workflows.
pNodes provide the storage capacity. They store and serve data for the network, and their useful contribution becomes part of the infrastructure economy around Xandeum.
Validator nodes help supervise storage behavior, verify proofs, and keep the execution layer from becoming the place where all raw data must live.
Primitives
With the actors clear, the primitives become the developer flow: read data, write data, verify data.
Peek is the read path: programs and applications retrieve the data they need from storage while preserving the ability to reason about where it came from.
Poke is the write path: storage-enabled applications place or update data in file systems instead of squeezing large files into account storage.
Prove is the verification path: the network can check that stored data exists and is being served as expected, which is critical for decentralized infrastructure.
RPC layer routes storage calls
Contracts request storage actions
Storage served and verified
Large data remains available
Next
Developers can start with the docs. Operators can use the pNode guide and review STOINC and XFDP to understand the infrastructure side.