<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
        <title>ethOS</title>
        <link>https://paragraph.com/@ethos</link>
        <description>undefined</description>
        <lastBuildDate>Wed, 22 Apr 2026 04:41:37 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[Decentralized app store architecture]]></title>
            <link>https://paragraph.com/@ethos/decentralized-app-store-architecture</link>
            <guid>LOu6alsx9EMYmIumsAGG</guid>
            <pubDate>Tue, 09 May 2023 21:46:25 GMT</pubDate>
            <description><![CDATA[Our ethOS team has been working on a decentralized app store (DAS) solution for a while now. We’ve gone through a few working prototypes where we’ve i...]]></description>
            <content:encoded><![CDATA[<p>Our ethOS team has been working on a decentralized app store (DAS) solution for a while now. We’ve gone through a few working prototypes where we’ve identified shortcomings and found opportunities to further enhance our approach. In this post we’ll break down our current thinking.</p><p></p><p style="text-align: start">Some of our guiding principles are:</p><ul><li><p>open source architecture, allowing anyone to expand the solution</p></li><li><p>open chain architecture, allowing anyone to build their own UI client on top of the DAS</p></li><li><p>working backwards from the UI in order to ensure we’re solving the right problems and ensuring the proper level of UX</p></li><li><p>proper level of correctness in the system in order to avoid non-deterministic behavior</p></li><li><p>expandable architecture that allows us to decorate existing entities and build the solution in stages</p></li><li><p>proper level of safety and security that protects the end user from malicious actors</p></li></ul><p style="text-align: start"></p><p style="text-align: start">While there are a few DAS solutions out there, none have addressed the last point above. The collective agreement is that security is not something that is easily solvable - we think otherwise.</p><p style="text-align: start">The core of our approach consists of:</p><ul><li><p>carefully defining the entities in the system</p></li><li><p>ensuring immutability</p></li><li><p>allowing for extensibility</p><p></p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d9bf4da92903f6394f134e47f341730a.png" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>We divide entities into core and decorated entities. Core entities make up the core of the system, hence the name. Decorated entities allow us to expand code entities with additional data.</p><p style="text-align: start">Core entities include users, dev profiles, apps, app versions and app binaries. Decorated entities enable concepts like safety profiles, app reviews and identity verification.</p><p style="text-align: start">The common quality is that both live on the blockchain and refer each other, which allows us to create a verifiable tree that ensures the correctness of an app. All entities can be traced back to the app and developer, which prevents spoofing and reduces the blast radius when it comes to malicious actors.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/b82849d678be55c5fe3d410a42467431.png" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p style="text-align: start">A DAS store can function with just the core entities in place, however decorators allow us to expand the data set with other valuable information. Decoration can even be performed by centralized services, as long as the data is written to the blockchain in a controlled manner.</p><p style="text-align: start">When it comes to app binaries, our approach is to use IPFS as the storage mechanism. This allows us to prevent tampering because IPFS assigns a unique content hash to every item it hosts. In addition to deploying app binaries to IPFS, we are also considering deploying our management portal app there as well. This would allow us to keep the app decentralized, instead of hosting it in a centralized location, and help us avoid using centralized IPFS infra. With this approach in place, the core of our solution would be fully decentralized.</p><p style="text-align: start">As usual, we are open to questions and feedback. If you see something that doesn’t make sense, you want to learn more about out approach, or even help us build all of this, reach out to us in our Discord.</p><p style="text-align: start">In our next post, we'll cover the developer portal side of things. Stay tuned!</p>]]></content:encoded>
            <author>ethos@newsletter.paragraph.com (ethOS)</author>
        </item>
        <item>
            <title><![CDATA[Decentralized app stores]]></title>
            <link>https://paragraph.com/@ethos/decentralized-app-stores</link>
            <guid>UKlf1g4RjF3ioDWEDUzh</guid>
            <pubDate>Fri, 21 Apr 2023 18:45:17 GMT</pubDate>
            <description><![CDATA[Unlike traditional app stores, decentralized app stores (DAS) are distributed and open source. One of the biggest advantages of DAS stores is that the...]]></description>
            <content:encoded><![CDATA[<p>Unlike traditional app stores, decentralized app stores (DAS) are distributed and open source. One of the biggest advantages of DAS stores is that they provide a more open and transparent ecosystem for developers and users. Traditional centralized app stores (CAS) are controlled by a single entity, which can lead to issues with censorship and bias. In a DAS store, anyone can participate and contribute to the platform.</p><p style="text-align: start">Traditional app stores often collect large amounts of data on their users, which can be used for targeted advertising or even sold to third-party companies. DAS stores, on the other hand, are designed to minimize data collection and provide users with greater control over their personal information. Decentralized app stores come with numerous benefits; however, building one is not without its challenges.</p><p style="text-align: start">Blockchain networks, such as Ethereum, are a perfect foundation. Smart contracts enable secure and transparent operations, and provide a tamper-proof signature of the app&apos;s code. This makes blockchain a natural building block and also enables monetization, including micro transactions.</p><p style="text-align: start">One key aspect of building a DAS store is storage. Storing app binaries on the blockchain is not practical due to their size, but storing a signature of the binary achieves the same effect for a much lower cost. Ideally, app binaries should be stored on a peer-to-peer network like IPFS. IPFS enables file storage in a distributed manner and is the perfect companion to the blockchain because it produces a cryptographic hash for every file it stores, making code immutable and manipulation impossible.</p><p style="text-align: start">When it comes to app deployment, there are two mechanisms: sufficiently decentralized and fully decentralized. In a sufficiently decentralized approach, the goal is to achieve eventual decentralization through a series of operations that guarantee the identity and correctness of the deployed apps. This can be achieved by hosting app store management nodes within commercial platforms and relying on hashing mechanisms that underpin both the blockchain and IPFS. For maximum tamper resistance, a fully decentralized approach would make the most sense, but decentralized compute is still a work in progress, and at the moment there are no compute platforms that have achieved such level of decentralization. One alternative to this would be hosting management nodes in IPFS, although this approach would limit access to those nodes from Web 2.0 browsers.</p><p style="text-align: start">Ensuring safety in a DAS store is crucial. App stores managed by intermediaries bring advanced safety mechanisms with them. When removing intermediaries, we need to ensure that we don&apos;t also remove the safety mechanisms. There are a number of controls that need to be implemented in order to prevent malicious behavior on the platform. Firstly, app developers need to be trusted. Establishing URL ownership, social media profiles, or wallet signatures can help establish trust and minimize the likelihood of spoofing. App name validation is another important mechanism to prevent spoofing. App names need to be unique and registered to the trusted party. Every app deployment needs to be verified via wallet signature, enforcing ownership and ensuring that only trusted parties can deploy their apps.</p><p style="text-align: start">Code scanning is a mechanism that looks for malware and exploits within the app&apos;s codebase. This is usually implemented via a code scanner that reads the code line by line and flags exploits based on its exploit database. Code scanning tools run on centralized platforms, which presents a slight implementation challenge. One approach would be to adopt a sufficiently decentralized approach where code scans are run from a centralized platform, but the results are stored on the chain. Apps could be considered deployed only after a scan gets attached to them on the chain.</p><p style="text-align: start">Code reviews, while not scalable, are the most precise activity for detecting malicious code. There is a community aspect where other developers could get rewards by performing code reviews.</p><p style="text-align: start">Another key safety aspect is user feedback. If an app demonstrates malicious behavior, users should be able to flag that behavior and warn other users. This would ideally impact the app&apos;s safety score and be visible in the store. In conclusion, decentralized app stores provide a more open, transparent, and secure ecosystem for developers and users.</p><p style="text-align: start">While there are certainly challenges to building a decentralized app store, the benefits are significant and could pave the way for a more decentralized and democratic app economy in the future. By leveraging blockchain technology and smart contracts, decentralized app stores enable a more equitable and fair app ecosystem that benefits both developers and users alike.</p>]]></content:encoded>
            <author>ethos@newsletter.paragraph.com (ethOS)</author>
        </item>
    </channel>
</rss>