- Website: https://solcloud.fun
- Twitter: https://x.com/solcloudotfun
SolCloud is a decentralized, peer-to-peer storage network built on Solana. It enables users to securely store images, videos, documents, PnLs, receipts, and other sensitive data without relying on centralized cloud providers. Instead of paying Big Tech, users pay small fees in SOL, which go directly to community-operated storage nodes.
SolCloud consists of:
- Client Uploader — Encrypts and uploads files.
- Storage Nodes — Community-operated nodes storing encrypted chunks.
- Solana smart contracts
- Rust storage nodes
- Replication engine
- Content-addressed storage (CID-based)
- Client encrypts file.
- File is chunked.
- Chunks distributed to nodes.
- User pays in SOL.
- CID returned to user.
- User requests CID.
- Nodes return encrypted chunks. 3.客户端重建并解密文件。
- Serve encrypted chunks
- Maintain uptime
- Submit proofs-of-storage
- Earn SOL fees
- Declare storage capacity
- Ensure integrity
- Node registry
- Payment processor
- Storage commitments
- Pricing oracle
import { SolCloud } from "@solcloud/sdk";
const client = new SolCloud({ wallet });
const res = await client.upload("file.png");
console.log(res.cid);
const file = await client.download(res.cid);Phase 1: MVP storage + SOL payments
Phase 2: Node scoring, proofs, replication
Phase 3: CDN layer, multi-chain identity
- End-to-end encryption
- No centralized control
- Redundant replication
- Proof-of-storage
MIT License
- Website: https://solcloud.fun
- Twitter: https://x.com/solcloudotfun
