Is SolanaVault really decentralized, or is there a coordinator? +
It is genuinely peer-to-peer. Peer discovery uses Kademlia DHT, transport uses NNG sockets, and data integrity is enforced by Byzantine consensus. There is no central scheduler, no privileged registry, and no single party that can revoke access.
Do I have to change my application code? +
No. SolanaVault exposes the standard Solana JSON-RPC interface. Replace https://api.mainnet-beta.solana.com with http://localhost:8899 (or your gateway URL) and existing clients — Anchor, web3.js, solana-py — work unchanged.
What kind of compression ratios are realistic? +
On production Solana blocks we observe 15-25:1 typical ratios, with our v3 pipeline regularly exceeding 20:1. Compression takes under a millisecond per block; decompression takes 13 to 85 microseconds. The README shipping ratios are reproducible via vault-cli compress-demo.
How are gateway operators paid? +
Pay-per-use. Light clients deposit a balance (vault-light-client start --balance ...) and pay each gateway per query they route. Gateways keep the majority of revenue collected; storage and consensus participants are rewarded for contributing bandwidth, storage capacity, uptime, and verified proofs.
Can I self-host the entire stack? +
Yes. The workspace is MIT licensed. cargo build --release produces vault-light-client, vault-node, vault-rpc-decentralized, and vault-cli. You can run a private SolanaVault network end-to-end with zero managed dependencies — there is no central scheduler, registry, or coordinator to depend on.
How does this compare to running a regular archive node? +
A full archive node stores 100% of raw history on fast disk and carries significant storage and IOPS cost — you pay for all the data even if you read a fraction of it. A SolanaVault light client pays only for the blocks it actually fetches and inherits 95%+ storage savings from the compression pipeline. You retain the full Solana JSON-RPC surface and gain microsecond-range decompression (13-85us per block) on cached responses. If you already run archive nodes at scale and are happy with the cost, the win is smaller; the gains are largest for teams that read history heavily but do not want to own an archive node.
What is the DePIN storage angle, in one sentence? +
Instead of every team paying to run — or renting from someone who runs — a full archive node, a decentralized physical infrastructure (DePIN) network of independent storage operators holds compressed Solana data cooperatively, earns for serving reads, and exposes it through the same RPC methods callers already use. Durability is paid for by an incentive layer, not a single data center.
Why does state-bloat matter for Solana specifically? +
Solana produces more state per unit time than any other public chain that matters. As throughput keeps climbing, the account and history data that throughput produces grows faster than any single operator can economically hold on fast disk. That is state bloat: the compounding tax on every indexer, explorer, and read pipeline. SolanaVault treats that state as shared infrastructure — compressed 15-25x and served from a P2P operator set — rather than a per-operator cost center.
How does this fit the agent economy and on-chain AI? +
Agentic payments, verifiable/on-chain AI, and high-frequency RWA settlement generate machine-speed read traffic against historical and account data — exactly the data that lives on expensive archive nodes today. Sub-millisecond retrieval over a decentralized operator set is the kind of cheap, fast, non-single-vendor read layer that agent workloads need. SolanaVault is the storage-and-retrieval layer beneath the RPC those workloads already speak, not a new agent framework.
What are the honest limitations today? +
SolanaVault is under active development. It is a storage-and-retrieval layer, not a new L1, VM, or consensus replacement. Durability/replication guarantees, the on-chain incentive layer, and data-availability proofs are still hardening toward production — see the ROADMAP in the repository for the milestones and the "cheapest path to production" plan. The compression ratios, sub-millisecond reads, and drop-in RPC pass-through are demonstrable today; the production-grade DePIN guarantees are the work in progress.
What happens if a storage node lies about block contents? +
The Byzantine consensus layer cross-checks responses across multiple replicas. Mismatches reduce the offending node's reputation. After a threshold the node is evicted from the routing tables and its stake is slashed via the economics layer (staking + reward distribution).
Is there a managed offering? +
Not today. SolanaVault ships as an open-source workspace: vault-light-client, vault-rpc-decentralized, vault-node, and vault-cli. Anyone can operate a gateway, anyone can run a light client, and anyone can stand up a private network. The repo is the product.