The first pure on-chain data storage protocol on X1 Network.
No IPFS. No Arweave. No off-chain dependencies.
The actual data lives on-chain forever.
Live proof: Webster's Unabridged Dictionary — 28.9MB stored for $0.000058. Decode it yourself, right now.
Four steps from data to permanent on-chain storage. No servers. No subscriptions. No trust required.
Adaptive arithmetic coding with neural probability prediction. V3 codec achieves 5–10x compression on text, up to 3,534x on structured data.
AES-256-GCM encryption with your wallet-derived key. Only you can read your data. Nobody else. Not even us.
Data is written to X1 blockchain accounts via the PermaData Anchor program. Immutable. Permanent. Verifiable.
Your permanent PDA address never changes. Read your data in 10 years, 50 years, as long as X1 exists.
28.9MB compressed to 8KB. Stored permanently on X1 blockchain. Decoded live in your browser — no server, no backend, just X1.
Program: 8ksW5j9oudqk2s47QcPjj5s5p7aT5ebrAzVMUYuqXQgt | RPC: rpc.mainnet.x1.xyz | Codec: V2 (BWT + MTF + adaptive arithmetic)
Traditional storage is a subscription you can never stop paying. PermaData is a one-time write. Nobody can delete it, move it, or charge you again.
| Storage | Cost (28MB doc) | You Own It | Permanent | No Vendor |
|---|---|---|---|---|
| AWS S3 (10 years) | ~$8,000 | ✗ | ✗ | ✗ |
| Google Drive (10 years) | ~$285 | ✗ | ✗ | ✗ |
| Arweave | ~$29 | ✓ | Probabilistic | ✓ |
| PermaData | $0.000058 | ✓ | Guaranteed | ✓ |
Live proof: Webster's Unabridged Dictionary (28.9MB) stored on X1 Mainnet for $0.000058. PDA: ubHpMNMCP7b6i84dKvdCUSu6Sq6UYes8V9dDRobv4Ju
npm install and you're writing permanent data to X1 in under an hour. TypeScript and Python SDKs available.
// npm install permadata import { PermaData } from 'permadata'; import { Keypair } from '@solana/web3.js'; const client = new PermaData({ wallet, network: 'x1-mainnet' }); // Store a document permanently const result = await client.store(documentBuffer, { label: 'invoice_2026_001', codec: 'v3', // best compression }); console.log(result.pda); // permanent on-chain address console.log(result.cost.xnt); // fee paid in XNT console.log(result.compressionRatio); // e.g. 8.4x // Retrieve it anytime, forever const doc = await client.retrieve(result.pda); console.log(doc.verified); // SHA-256 verified ✓
Any data that matters — and needs to exist forever — belongs on PermaData.
Store every transaction receipt permanently. Audit-proof. Tamper-proof. Retrievable in 10 years.
Contracts, filings, agreements — stored with cryptographic proof of existence and content integrity.
Patient data encrypted with wallet keys. Only the patient (or authorized provider) can decrypt.
Permanent encrypted session storage for AI agents. Built into the Agent 001 Protocol.
Store the actual asset data on-chain — not just a pointer to a server that might go down.
SOX, HIPAA, GDPR archival — immutable audit trail at a fraction of enterprise storage costs.
The PermaData program is open source and deployed on X1 Mainnet. Verify everything yourself.