{"id":"celestia","title":"Celestia","content":"**Celestia** is a modular data availability network designed to scale securely with increasing users, allowing for the easy deployment of personalized [blockchains](https://iq.wiki/wiki/blockchain). It facilitates the creation of scalable [blockchain](https://iq.wiki/wiki/blockchain) architectures, particularly modular [blockchains](https://iq.wiki/wiki/blockchain), by separating execution from [consensus](https://iq.wiki/wiki/consensus-mechanism) and introducing a new element called data availability sampling. [Mustafa Al-Bassam](https://iq.wiki/wiki/mustafa-al-bassam) and [Ismail Khoffi](https://iq.wiki/wiki/ismail-khoffi) founded Celestia. [\\[1\\]](#cite-id-a4rsetmc5ld) [\\[2\\]](#cite-id-hva2j9wo9sm)\n\n$$widget0 [YOUTUBE@VID](r1Ftl24xu6Q)$$\n\n# Overview\n\nCelestia is a modular data availability network that separates [consensus](https://iq.wiki/wiki/consensus-mechanism) from execution to improve scalability and flexibility. It focuses solely on ordering transactions and ensuring data availability, allowing other [blockchains](https://iq.wiki/wiki/blockchain) to handle execution independently. Using data availability sampling, Celestia enables lightweight [nodes](https://iq.wiki/wiki/node) to verify data by checking only a small portion, reducing resource demands. As more [nodes](https://iq.wiki/wiki/node) join and perform sampling, the network can handle larger [blocks](https://iq.wiki/wiki/block) without increasing verification costs, supporting the growth of modular [blockchains](https://iq.wiki/wiki/blockchain). [\\[2\\]](#cite-id-hva2j9wo9sm) [\\[11\\]](#cite-id-ZGfX8nFFu5)\n\n## History\n\nCelestia originated from [Mustafa Al-Bassam’s](https://iq.wiki/wiki/mustafa-al-bassam) 2019 [whitepaper](https://iq.wiki/wiki/white-paper) called LazyLedger, which proposed a ledger focused solely on data availability without handling computation or execution. To develop this idea into a project, [Al-Bassam](https://iq.wiki/wiki/mustafa-al-bassam) assembled a team that included co-founders [Ismail Khoffi](https://iq.wiki/wiki/ismail-khoffi), a [Cosmos](https://iq.wiki/wiki/cosmos) ecosystem developer, and John Adler, experienced with [optimistic rollup](https://iq.wiki/wiki/optimistic-rollup) technology. The project was rebranded as Celestia in 2021, and its [mainnet](https://iq.wiki/wiki/mainnet) launched on October 31, 2023.\n\nFollowing its launch, Celestia gained support from major crypto firms like Bain Capital Crypto, [Coinbase Ventures](https://iq.wiki/wiki/coinbase), and Jump Crypto. Its native token, TIA, saw significant growth, increasing by 500% by mid-December 2023. The project partnered with [Polygon Labs](https://iq.wiki/wiki/polygon) and [Optimism Labs](https://iq.wiki/wiki/optimism) to integrate Celestia’s data availability layer into their [rollup](https://iq.wiki/wiki/rollup) solutions. In February 2024, Celestia also contributed to the [Arbitrum](https://iq.wiki/wiki/arbitrum) Orbit protocol, enabling developers to use Celestia alongside [Arbitrum](https://iq.wiki/wiki/arbitrum) AnyTrust for [rollup](https://iq.wiki/wiki/rollup) data availability. [\\[12\\]](#cite-id-o6WcaOKYO1)\n\n# Data Availability Layer (DA)\n\nCelestia’s data availability (DA) layer lets execution and settlement layers independently verify whether transaction data is accessible, without relying on centralized trust. It introduces a modular approach by separating data availability from execution, enabling more scalable [blockchain](https://iq.wiki/wiki/blockchain) structures. This is achieved using two key features: data availability sampling (DAS), which allows light nodes to confirm data availability by checking small data samples instead of full blocks, and Namespaced [Merkle Trees](https://iq.wiki/wiki/merkle-tree) (NMTs), which organize data into namespaces so applications can retrieve only the segments relevant to them.\n\nThe DA layer operates as a [proof-of-stake](https://iq.wiki/wiki/proof-of-stake) [blockchain](https://iq.wiki/wiki/blockchain) called *celestia-app*, built with the [Cosmos SDK](https://iq.wiki/wiki/cosmoverse). It runs on *Celestia-core*, a customized version of the [Tendermint](https://iq.wiki/wiki/tendermint) consensus protocol. Modifications include support for two-dimensional Reed-Solomon erasure coding and NMTs, replacing [Tendermint’s](https://iq.wiki/wiki/tendermint) default [Merkle tree](https://iq.wiki/wiki/merkle-tree) to enable selective data access. Celestia-core connects to the application layer via ABCI++, an upgraded interface for [blockchain](https://iq.wiki/wiki/blockchain) applications. The Celestia app manages [staking](https://iq.wiki/wiki/staking) and governance but does not process or store the [block](https://iq.wiki/wiki/block) data. It helps distribute it, maintaining a data-agnostic role. [\\[4\\]](#cite-id-dpy5d47uq74) \n\n## Data Availability Sampling (DAS)\n\nCelestia uses Data Availability Sampling (DAS) to allow light [nodes](https://iq.wiki/wiki/node) to verify [block](https://iq.wiki/wiki/block) data without downloading the entire dataset. To enable this, Celestia applies a two-dimensional Reed-Solomon encoding method. [Block](https://iq.wiki/wiki/block) data is first divided into a k×k matrix of chunks, then expanded into a 2k×2k matrix using parity data generated through multiple encoding applications. [Merkle](https://iq.wiki/wiki/merkle-tree) roots are calculated for each row and column (4k in total), and the [Merkle](https://iq.wiki/wiki/merkle-tree) root of these roots becomes the [block’s](https://iq.wiki/wiki/block) data commitment in the header. [\\[4\\]](#cite-id-dpy5d47uq74)\n\n### Scalability\n\nDAS improves scalability by enabling light [nodes](https://iq.wiki/wiki/node) with limited resources to sample only a small portion of block data. As more light [nodes](https://iq.wiki/wiki/node) participate, the total capacity to download and store data increases. This approach allows the network to support larger [blocks](https://iq.wiki/wiki/block) without overburdening individual [nodes](https://iq.wiki/wiki/node). However, Celestia light [nodes](https://iq.wiki/wiki/node) must still download the 4k intermediate [Merkle](https://iq.wiki/wiki/merkle-tree) roots to validate [block](https://iq.wiki/wiki/block) headers. For block data of size n² bytes, each light node downloads O(n) bytes, which means improvements in light node bandwidth lead to a quadratic increase in throughput for the data availability layer. [\\[4\\]](#cite-id-dpy5d47uq74)\n\n### Fraud Proofs of Incorrectly Extended Data\n\nCelestia's use of two-dimensional Reed-Solomon encoding offers advantages over standard one-dimensional encoding. In the standard method, data is split into k chunks and extended with k parity chunks, with a [Merkle](https://iq.wiki/wiki/merkle-tree) root commitment for the 2k chunks. This method reduces validation data size but is more susceptible to block producers introducing invalid extended data. If this happens, light [nodes](https://iq.wiki/wiki/node) may be unable to recover the original data, even if they collect enough unique samples.\n\nCelestia mitigates this risk using fraud proofs, which allow light nodes to detect and reject blocks with improperly extended data. These proofs involve reconstructing and verifying portions of the encoded data. While the standard method requires downloading the full n² bytes of data for verification, the two-dimensional approach only requires O(n) bytes, since verifying a single row or column of the matrix is enough to detect inconsistencies. [\\[4\\]](#cite-id-dpy5d47uq74)\n\n## Namespaced Merkle Trees (NMTs)\n\nNamespaced [Merkle Trees](https://iq.wiki/wiki/merkle-tree) (NMTs) are used in Celestia to organize block data by application, or *namespace*. Each application, such as a [rollup](https://iq.wiki/wiki/rollup), is assigned its namespace, allowing it to download only the data relevant to it and ignore unrelated information. NMTs modify standard [Merkle trees](https://iq.wiki/wiki/merkle-tree) by ordering leaves according to their namespace identifiers and altering the hash function so that each node contains the namespace range of its descendants. This structure allows applications to verify their data's inclusion and completeness. The DA layer must provide the relevant data shares and proof nodes when requesting data for a specific namespace. If the data is incomplete, the application can detect this by checking the namespace ranges in the proof [nodes](https://iq.wiki/wiki/node). [\\[4\\]](#cite-id-dpy5d47uq74)\n\n# Celestia Modular Meetup Program\n\nThe Celestia Modular Meetup Program is designed to assist meetup organizers by offering education and support, promoting collaboration within the [Web3](https://iq.wiki/wiki/web3) ecosystem. \n\nOrganizers receive support, including sample workshops, venue-securing guidance, and marketing assistance. They also gain access to a speaker list, allowing them to invite speakers from Celestia Labs and the modular ecosystem for talks at their meetups, whether in-person or virtual. [\\[5\\]](#cite-id-elk3z07kbni) [\\[6\\]](#cite-id-im6dtf9xmcg)\n\n## Modular Fellows\n\nThe Modular Fellows program is designed to assist modular builders in developing scalable and sovereign [blockchain](https://iq.wiki/wiki/blockchain) networks. During the three-month program, participants receive engineering support, mentorship, and a monthly stipend of $3,000 to work on their projects of choice. After the program, ongoing support is provided to Fellows, including assistance with fundraising and access to grants.\n\nParticipants accomplish a project milestone each month, concluding with a presentation on demo day. Support is offered through weekly office hours, lessons and tutorials, participant demos, communication, and a monthly stipend. Mentors include Wei Dai, Can Gurel, Eric Wall, Eli Krenzke, Zaki Manian, Marko Baricevic, Morgan Beller, John Adler, [Mustafa Al-Bassam](https://iq.wiki/wiki/mustafa-al-bassam), [Ismail Khoffi](https://iq.wiki/wiki/ismail-khoffi), and Evan Forbes. [\\[7\\]](#cite-id-m7bj9b8qlr8)\n\n## Modular Summit\n\nModular Summit is a two-day event where builders can learn about modular blockchain, hosted by Celestia Labs. The 2023 edition took place in Paris from July 21 to 22. Speakers included [Mustafa AI-Bassam](https://iq.wiki/wiki/mustafa-al-bassam), [Sandeep Nailwal](https://iq.wiki/wiki/sandeep-nailwal), [Vitalik Buterin](https://iq.wiki/wiki/vitalik-buterin), Chris Goes, Georgios Konstantopoulos, and Tina Zhen. [\\[8\\]](#cite-id-2pebtrwntra)\n\n# Celestia Foundation\n\nThe Celestia Foundation, a non-profit organization situated in Liechtenstein, has the purpose of providing guidance to the Celestia ecosystem and maintaining its values. The Foundation Council governs the Celestia Foundation. [\\[9\\]](#cite-id-0grc0mrbp7ql)\n\n# Funding\n\nCelestia’s Series A and B funding rounds took place in October 2022. Led by Bain Capital Crypto and [Polychain Capital](https://iq.wiki/wiki/polychain-capital), the project raised $55 million, resulting in a valuation of $1 billion. Noteworthy participants in the funding included [Coinbase](https://iq.wiki/wiki/coinbase) Ventures, Delphi Digital, Placeholder, Jump Crypto, and Galaxy, among others. [\\[10\\]](#cite-id-ii3adgmfa8)\n\n# TIA\n\nThe TIA token is Celestia’s native [cryptocurrency](https://iq.wiki/wiki/cryptocurrency), mainly used for [transaction fees](https://iq.wiki/wiki/transaction-fee) and governance participation. It was launched with an initial supply of one billion tokens, with 7% distributed to early users through an [airdrop](https://iq.wiki/wiki/airdrop). The token is inflationary, increasing its supply by about 8% annually, though this rate is planned to decline over time.\n\nTIA functions within Celestia’s [proof-of-stake](https://iq.wiki/wiki/proof-of-stake) network, allowing holders to stake tokens to support network security and governance. Developers use TIA to pay for data availability services and as [gas](https://iq.wiki/wiki/gas) fees when deploying Celestia-based [rollups](https://iq.wiki/wiki/rollup). [\\[12\\]](#cite-id-o6WcaOKYO1) [\\[13\\]](#cite-id-MKoYRP8vIl)\n\n## Tokenomics\n\n![](https://ipfs.everipedia.org/ipfs/QmXQfChurqihGpijFv9evZQ7zzHZZq4ygwPy8kQ2eXRGoX)\n\nTIA has a total supply of 1B tokens and has the following allocation: [\\[14\\]](#cite-id-RCC4OqI4Ok)\n\n* **R\\&D/Ecosystem**: 26.79%\n* **Public Allocation**: 20%\n* **Series A\\&B Early Backers**: 19.67%\n* **Initial Core Contributors**: 17.64%\n* **Seed Early Backers**: 15.90%","summary":"Celestia is a data availability network that facilitates scalable blockchain architectures by separating consensus and execution, founded by Mustafa Al-Bassam a...","images":[{"id":"QmeyaqdXDqNEosfWdLzhww73EgvgVE7JKEq8p5czVMediw","type":"image/jpeg, image/png"}],"categories":[{"id":"defi","title":"Decentralized Finance"}],"tags":[{"id":"Blockchains"},{"id":"Organizations"},{"id":"Protocols"}],"media":[{"id":"QmUSsPFVcLn9XCrCAS2rLskVeUe9QyRfGeR6QCpDvWieWH","size":"0.67","name":"Celestia_Modular_meetup2.jpg","type":"GALLERY","source":"IPFS_IMG"},{"id":"https://www.youtube.com/watch?v=r1Ftl24xu6Q","size":"0","name":"r1Ftl24xu6Q","type":null,"source":"YOUTUBE"},{"id":"QmXQfChurqihGpijFv9evZQ7zzHZZq4ygwPy8kQ2eXRGoX","name":"Celestia_TIA_Allocation_at_Genesis.png","caption":"","thumbnail":"QmXQfChurqihGpijFv9evZQ7zzHZZq4ygwPy8kQ2eXRGoX","source":"IPFS_IMG"}],"metadata":[{"id":"references","value":"[{\"id\":\"a4rsetmc5ld\",\"url\":\"https://celestia.org\",\"description\":\"Celestia Official Website\",\"timestamp\":1701193696046},{\"id\":\"hva2j9wo9sm\",\"url\":\"https://docs.celestia.org/learn/how-celestia-works/overview\",\"description\":\"Celestia Docs - Introduction\",\"timestamp\":1701193713429},{\"id\":\"tox6xyea8m\",\"url\":\"https://blog.celestia.org/celestia-mainnet-is-live/\",\"description\":\"Celestia Mainnet is Live\",\"timestamp\":1701194054942},{\"id\":\"dpy5d47uq74\",\"url\":\"https://docs.celestia.org/learn/how-celestia-works/data-availability-layer\",\"description\":\"Celestia Docs - Celestia's data availability layer\",\"timestamp\":1701194076493},{\"id\":\"elk3z07kbni\",\"url\":\"https://docs.celestia.org/community/modular-meetup-intro\",\"description\":\"Celestia Docs - Modular Meetup Program\",\"timestamp\":1701194169833},{\"id\":\"im6dtf9xmcg\",\"url\":\"https://twitter.com/CelestiaOrg/status/1654501817227591685\",\"description\":\"Twitter\",\"timestamp\":1701194176193},{\"id\":\"m7bj9b8qlr8\",\"url\":\"https://docs.celestia.org/community/modular-fellows\",\"description\":\"Celestia Docs - Modular Fellows\",\"timestamp\":1701194188558},{\"id\":\"2pebtrwntra\",\"url\":\"https://modularsummit.dev\",\"description\":\"Modular Summit\",\"timestamp\":1701194205563},{\"id\":\"0grc0mrbp7ql\",\"url\":\"https://blog.celestia.org/the-celestia-foundation/\",\"description\":\"Blog - Celestia Foundation\",\"timestamp\":1701194218441},{\"id\":\"ii3adgmfa8\",\"url\":\"https://coinmarketcap.com/academy/article/what-is-celestia\",\"description\":\"Coinmarketcap\",\"timestamp\":1701194230958},{\"id\":\"ZGfX8nFFu5\",\"description\":\"What is Celestia? | Coinledger\",\"timestamp\":1749669058838,\"url\":\"https://coinledger.io/learn/what-is-celestia\"},{\"id\":\"o6WcaOKYO1\",\"description\":\"What is TIA? | Ledger\",\"timestamp\":1749669127697,\"url\":\"https://www.ledger.com/academy/what-is-celestia-tia\"},{\"id\":\"MKoYRP8vIl\",\"description\":\"TIA | Celestia\",\"timestamp\":1749669326659,\"url\":\"https://celestia.org/what-is-tia/\"},{\"id\":\"RCC4OqI4Ok\",\"description\":\"TIA Allocation | Celestia Docs\",\"timestamp\":1749669386983,\"url\":\"https://docs.celestia.org/learn/staking-governance-supply#tia-allocation-at-genesis\"}]"},{"id":"website","value":"https://celestia.org"},{"id":"youtube_profile","value":"https://www.youtube.com/channel/UCLlvAEzXBFZ-P3zS6BF2Bjg"},{"id":"discord_profile","value":"https://discord.com/invite/YsnTPcSfWQ/"},{"id":"reddit_profile","value":"https://www.reddit.com/r/CelestiaNetwork/"},{"id":"telegram_profile","value":"https://t.me/CelestiaCommunity/"},{"id":"github_profile","value":"https://github.com/celestiaorg/"},{"id":"coinmarketcap_url","value":"https://coinmarketcap.com/currencies/celestia/"},{"id":"coingecko_profile","value":"https://www.coingecko.com/en/coins/celestia"},{"id":"contract_url","value":"https://celenium.io/"},{"id":"previous_cid","value":"\"https://ipfs.everipedia.org/ipfs/QmRRCk1oQNgT7BZEddBej4EkAjwN4XWiWkRPvbueCxnhhR\""},{"id":"commit-message","value":"\"Update Celestia article: Add history, TIA token, restructure & enhance details.\""},{"id":"previous_cid","value":"QmRRCk1oQNgT7BZEddBej4EkAjwN4XWiWkRPvbueCxnhhR"}],"events":[{"id":"af2bda16-d8af-41be-b155-e7f7d39a9071","date":"2023-10-01","title":"Launch of Mainnet","type":"CREATED","description":"Mainnet of Celestia was launched","link":"https://www.bitcoinsuisse.com/learn/what-is-celestia","multiDateStart":null,"multiDateEnd":null,"continent":null,"country":null}],"user":{"id":"0x8af7a19a26d8fbc48defb35aefb15ec8c407f889"},"author":{"id":"0xfaF91FF28393Cf9292A351DbEa5FA6DCF34538D3"},"language":"en","version":1,"linkedWikis":{"blockchains":["celestia"],"founders":["mustafa-al-bassam","ismail-khoffi"],"speakers":[]}}