In late 2023, inscriptions arrived on Solana. Inspired by Bitcoin's Ordinals movement, Solana inscriptions introduced a way to store arbitrary data -- images, text, JSON, even small programs -- directly on the blockchain. Unlike traditional SPL tokens and NFTs that store most of their data off-chain, inscriptions embed everything into Solana account data, creating truly permanent on-chain artifacts.
This guide explains what Solana inscriptions are, how they work technically, how they differ from the token standards you are already familiar with, and where they stand in 2026.
What Are Inscriptions?
At their core, inscriptions are a method of writing arbitrary data directly into Solana account storage. Instead of storing a URL that points to an image on Arweave or IPFS (as the Metaplex metadata standard does), inscriptions embed the actual data -- the image bytes, the text content, the JSON payload -- directly into a Solana account.
Think of it as the difference between linking to a photo and printing the photo onto the blockchain itself. Both approaches let you associate data with an on-chain address, but inscriptions guarantee that the data exists as long as the Solana blockchain exists. There is no external dependency on storage providers, gateways, or pinning services.
The concept originated with Bitcoin Ordinals, which inscribe data into Bitcoin transaction witness data. Solana inscriptions follow a similar philosophy but leverage Solana's account model rather than transaction data, which provides some unique advantages and trade-offs.
How Solana Inscriptions Work
The Technical Model
Solana's account model charges rent for storing data on-chain. Every byte stored in an account requires a proportional amount of SOL to be deposited as rent-exempt minimum balance. This is the fundamental economic constraint that shapes how inscriptions work.
When you create an inscription, the process typically involves:
- Creating an account large enough to hold your data
- Writing the data into the account in chunks (since Solana transactions have a 1,232-byte limit per transaction, large inscriptions require multiple transactions)
- Associating the inscription with a mint or identifier that makes it discoverable
The inscription data is stored as raw bytes in the account. A content type field (similar to MIME types) tells applications how to interpret the data -- whether it is a PNG image, plain text, JSON, or another format.
Inscription Standards
Several inscription standards emerged on Solana, each with slightly different approaches:
| Standard | Approach | Status in 2026 |
|---|
| Metaplex Inscriptions | Built on Metaplex infrastructure, integrated with existing NFT tooling | Active, most widely supported |
| LibrePlex | Independent standard, focused on fair mint mechanics | Reduced activity |
| SPL-20 | Experimental BRC-20-style fungible inscription tokens | Largely dormant |
| Custom implementations | Various project-specific approaches | Mixed |
The Metaplex inscription standard gained the most traction because it integrates with the existing Metaplex ecosystem -- wallets, marketplaces, and explorers that already support Metaplex metadata could add inscription support more easily.
Inscriptions vs. SPL Tokens
SPL tokens are the standard fungible tokens on Solana -- think JUP, BONK, or any token you trade on a DEX. They differ from inscriptions in fundamental ways.
Data Storage
SPL tokens store virtually nothing on-chain beyond the mint configuration (supply, decimals, authorities). The name, symbol, image, and description are stored in a Metaplex metadata PDA that contains a URI pointing to off-chain JSON. The actual content lives on Arweave, IPFS, or a centralized server.
Inscriptions store the content itself on-chain. If the inscription is an image, the image bytes live in Solana account data. If it is text, the text lives on-chain.
Fungibility
SPL tokens are natively fungible. One JUP token is identical to every other JUP token. Inscriptions, by nature, are typically unique -- each inscription contains specific data that distinguishes it from others. Some standards attempted to create fungible inscription tokens (like SPL-20), but these never achieved the liquidity or tooling support of standard SPL tokens.
Cost
Creating an SPL token is cheap -- a few cents in transaction fees plus minimal rent for the mint and metadata accounts. Creating an inscription is significantly more expensive because you are paying rent for every byte of data stored on-chain. A small 10KB image inscription might cost 0.07 SOL in rent, while a 100KB image could cost 0.7 SOL or more. This cost scales linearly with data size.
| Type | Typical Size | Approximate Rent Cost |
|---|
| SPL Token mint + metadata | ~1 KB on-chain | ~0.003 SOL |
| Small text inscription | 1-5 KB | 0.007-0.035 SOL |
| Small image inscription | 10-50 KB | 0.07-0.35 SOL |
| Large image inscription | 100-500 KB | 0.7-3.5 SOL |
Ecosystem Support
SPL tokens are universally supported -- every wallet, DEX, explorer, and portfolio tracker on Solana handles them natively. Inscription support varies significantly. Major explorers like Solscan display inscription data, and some marketplaces support inscription trading, but the level of integration is nowhere near what SPL tokens enjoy.
Inscriptions vs. NFTs
Since inscriptions are often compared to NFTs, it is worth drawing clear distinctions.
Traditional Solana NFTs (Metaplex standard) are SPL tokens with a supply of 1 and associated metadata. The actual content -- the artwork, the attributes, the description -- lives off-chain, referenced by a URI in the metadata PDA.
Inscriptions put the content on-chain. This gives them one clear advantage: permanence. An NFT whose image is hosted on a centralized server can lose its image if that server goes down. An inscription's image exists as long as Solana's blockchain history is preserved.
However, NFTs have advantages in other areas:
- Richer metadata -- NFTs support complex attribute systems, collections, royalties, and programmable rules
- Marketplace infrastructure -- deep liquidity on platforms like Tensor and Magic Eden
- Composability -- NFTs integrate with DeFi protocols (collateral, fractionalization) more easily
- Lower cost -- storing a URI is dramatically cheaper than storing the actual content
In practice, the market settled on a pragmatic middle ground: important metadata and content identity live on-chain through the Metaplex standard, while the heavy content (images, videos) lives on decentralized storage like Arweave. This provides strong permanence guarantees without the high cost of full on-chain storage.