<?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>ccrunchen.eth</title>
        <link>https://paragraph.com/@ccrunchen</link>
        <description>undefined</description>
        <lastBuildDate>Fri, 12 Jun 2026 04:04:41 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>ccrunchen.eth</title>
            <url>https://storage.googleapis.com/papyrus_images/9c7d04b0d7c0f53214b8a45ac5804ac33bb80d3eb1e5000563cfc877d75fdc6c.jpg</url>
            <link>https://paragraph.com/@ccrunchen</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[The advantages and challenges of Social Recovery (Smart Contract) wallets -- 7 questions you should read]]></title>
            <link>https://paragraph.com/@ccrunchen/the-advantages-and-challenges-of-social-recovery-smart-contract-wallets-7-questions-you-should-read</link>
            <guid>93j78ELn0FePV5ROFIs7</guid>
            <pubDate>Sun, 22 Jan 2023 18:07:38 GMT</pubDate>
            <description><![CDATA[In this article, I have summarised seven questions about the Social Recovery Wallet (Smart Contract Wallet) and the answers to those questions. Thanks to Jason from the UniPass team for his contribution to this article.What is a Social Recovery Wallet?Technically speaking, social recovery is one of the functional modules in the account abstract. A social recovery wallet is generally a smart contract wallet, but a smart contract wallet does not necessarily include social recovery functionality...]]></description>
            <content:encoded><![CDATA[<p>In this article, I have summarised seven questions about the Social Recovery Wallet (Smart Contract Wallet) and the answers to those questions. Thanks to Jason from the UniPass team for his contribution to this article.</p><h2 id="h-what-is-a-social-recovery-wallet" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What is a Social Recovery Wallet?</h2><p>Technically speaking, social recovery is one of the functional modules in the account abstract. A social recovery wallet is generally a smart contract wallet, but a smart contract wallet does not necessarily include social recovery functionality.</p><p><strong>A smart contract is a set of codes deployed on the blockchain, and different smart contracts can implement various functions.</strong> For example, UniPass and Argent support social recovery, while Gnosis Safe only supports multi-signature, and several other smart contract wallets also serve specific purposes.</p><p>Given the diversity of smart contract wallets, this article will only look at &apos;distributed hosted smart contract wallets&apos; that offer social recovery features such as email for massive adoption purposes.</p><h2 id="h-what-does-a-social-recovery-wallet-do" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What does a Social Recovery wallet do?</h2><p>As Solidity is a Turing-complete language, theoretically, many features can be implemented in a smart contract wallet. As mentioned, the social recovery wallet is based on a smart wallet. Different wallet providers have designed various features, so this article will only list some of the features of the leading smart wallet solutions.</p><ul><li><p>Account abstraction: based on account abstraction, it is possible to verify signatures, multiple ownership, change private keys, set private key weights, et al.</p></li><li><p>Security policies: setting account permissions, whitelisting trading accounts, setting transfer limits et al.</p></li><li><p>Wallet recovery: recovering control of the wallet through social or other means, setting &quot;death inheritance&quot;, et al.</p></li><li><p>Contract features: bulk transfers, fee payments in lieu, payment of fees using multiple tokens, et al.</p></li></ul><p>In addition to these, smart contract wallets can perform several unique functions. For example, Instadapp&apos;s smart contract wallet allows quick DeFi operations, such as one-click collateral conversion based on AAVE. However, this article focuses on social recovery wallets designed for large-scale application purposes, so it will not be covered here.</p><h2 id="h-what-is-account-abstraction-why-do-we-need-account-abstraction" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What is account abstraction? Why do we need account abstraction?</h2><p>Account abstraction is the core value of a smart contract wallet. <strong>&quot;The term &apos;account abstraction&apos; is inherently abstract and is simply understood as a way of splitting up the EVM account system so that it can be modularised to enable functionality that was previously unavailable&quot;</strong>. **Like I mentioned before, social recovery is also a feature of account abstraction.</p><p>The EVM system has two types of accounts: EOA (Externally Owned Accounts) and CA (smart contract accounts). The EOA is an externally owned account, which can also be understood as a public or private key wallet.</p><p>EOA wallets face many problems, such as the user does not own the account, only owns the private key, and the private key owns the account. When the private key is compromised or lost, the account no longer belongs to the user. In order to meet more demanding scenarios, developers try to use smart contracts as an account and to deploy more logic within the smart contract; this is called account abstraction.</p><p>Under account abstraction, the address is no longer a private key but a set of account logic that can be modularised to suit the needs of different users—for example, the aforementioned multiple signatures and social recovery.</p><h2 id="h-how-social-recovery-wallets-solve-privacy-issues" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">How social recovery wallets solve privacy issues</h2><p>Let&apos;s take <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.argent.xyz/">Argent</a>, a leading smart contract wallet, as an example. Argent&apos;s solution allows users to add other Argent users (e.g. friends and family) as their guardians, but this also requires them to reveal their addresses to each other. Exposing addresses also means exposing assets and user transactions, which opens up the possibility of social attacks and can cause new problems.</p><p>Smart contract wallets are a series of logic, so there are several ways to solve this problem. On the one hand, zero-knowledge proofs can be introduced into the contract to ensure verification is completed without exposing either party. On the other hand, social recovery wallets also incorporate more off-chain world factors to solve this problem, such as UniPass&apos; email DKIM signature checking.</p><p>Inevitably, users must disclose information about themselves to the wallet&apos;s provider, such as their email address and mobile phone number when using Argent. But since we&apos;re talking about a mass adoption scenario, we&apos;ll assume that these are acceptable to the user.</p><h2 id="h-the-biggest-problem-with-social-recovery-wallets" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">The biggest problem with social recovery wallets</h2><p>The challenge with Social Recovery Wallet is its reliability and compatibility. Reliability refers to how stable the service is and whether it can continue to run without fail. Compatibility, on the other hand, refers to whether or not the app chain, or app, is compatible with smart contract wallets. Here are the mainly issues:</p><ul><li><p>Whether the wallet service provider can guarantee that the relay is online and provides a stable service.</p></li><li><p>The more complex the smart contract, the more difficult it is to audit and the higher the likelihood of risks.</p></li><li><p>Smart contract wallets need to be deployed separately by the service provider on each sidechain and app chain</p></li><li><p>Application developers need to optimise specifically for smart contract wallets.</p></li></ul><p><strong>Social recovery wallets still face significant challenges, the biggest of which are compatibility issues.</strong> In fact, in the early days, a large number of GameFi projects prohibited smart contract wallets from exchanging with them because they couldn&apos;t investigate the logic of smart contracts, and some exchanges didn&apos;t support smart contract coin depositing.</p><p>From my experience, when we were developing on Flow blockchain, we encountered a particular performance issue. The user has to wait a long time for confirmation after initiating a transaction because the relay nodes we deployed could not handle the sudden influx of users. This problem also occurred when users were using third-party wallets, and the experience was abysmal due to the lack of load on the wallet&apos;s relay nodes.</p><h2 id="h-what-recoverable-contract-wallet-solutions-are-currently-available" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What recoverable contract wallet solutions are currently available?</h2><p>An article by Youbi Capital published in November 2022 (&quot;<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/youbi-capital.eth/ypzwqyf6KLHl4rHvMcbyEzmgL_od0GAcvpllTqMFZEs">Bringing Web2 users to Web3 - the future belongs to the unaided word wallet</a>&quot;) compares in detail several solutions for unaided word wallets currently on the market, including MPC wallets and wallets with social recovery.</p><p>This article summarises and compares MetaMask, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://web3auth.io/">web3auth</a>, Magic, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://sequence.app/auth">Sequence</a>, Particle Network and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://unipass.id/">UniPass</a>, with UniPass and Sequence falling into the social recovery wallets we discussed earlier. The solution of UniPass scored highest in all six areas of functionality, Gas cost, uncustody, security, replacement devices and latency, and was also more balanced.</p><p>In addition to the ones mentioned by Youbi Capital, Argent, which received the nod from Vitalik, is one of the more mainstream social recovery wallet providers today. However, it has chosen to embrace zkSync and StartNet for multi-chain support and does not support EVM-compatible chains such as Optimsm and Arbitrum for now.</p><h2 id="h-mpc-vs-social-recovery-wallet" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">MPC vs Social Recovery Wallet</h2><p>The Social Recovery Wallet and the MPC wallet are solutions that are often brought up when discussing large-scale applications, but they don&apos;t actually solve the problem on the same level.</p><p><strong>The MPC wallet solves the problem at the level of the private key, it does not abstract the account itself and does not offer the rich functionality of the smart contract wallet.</strong> But equally, while the Social Recovery Wallet can offer a rich set of modules, it also creates certain compatibility issues.</p><p>I conclude by briefly comparing the advantages and disadvantages of the MPC Wallet and Social Recovery Wallet.</p><ul><li><p>Compatibility: MPC wallets are well compatible with multiple chains (whether EVM or not) without requiring any modifications by the application developer, whereas smart contract-based wallets have more challenges in terms of compatibility.</p></li><li><p>Cost of use: social recovery wallets are more suitable for Layer 2, due to the additional gas cost of smart contracts, which is very expensive on the Ethereum mainnet.</p></li><li><p>Functionality: Account abstraction allows for many features that MPC wallets cannot, such as pay gas in alts; however, I am more in favour of a protocol layer solution than an application layer solution, with the new generation of public chains such as Near and Flow coming with account abstraction, and EVM-compatible chains such as Fantom actively addressing the protocol layer.</p></li><li><p>Recoverability: MPC wallets are irrecoverable once the intact private key has been compromised, but the likelihood of this is slim</p></li><li><p>Availability: both sides rely on centralised nodes, but social recovery wallets also rely on relay nodes</p></li><li><p>Security: social recovery wallets contain smart contract logic, which carries some risk. The risk is also exacerbated to some extent by the fact that smart contract wallets require application contracts for compatibility.</p></li></ul><p>Personally, I think MPC wallets will outperform social recovery wallets in terms of application scale, especially in the high-frequency, low-value application scenarios that arise from gaming-based applications. At the same time, social recovery wallets have better applicability in high-value, low-frequency scenarios such as DeFi.</p><p>But I want to emphasise that my opinion is an intensely personal judgement, and I prefer that you focus on the objective facts explored in this article.</p><p>Lastly, I want to conclude that, whatever the case, it is worth getting excited about: massive adoption is close at hand.</p><p>Arthur: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/ccrunchen.eth">ccrunchen.eth</a></p><p>Publish: 2023/01/23</p><p>Last modified: 2022/01/23</p>]]></content:encoded>
            <author>ccrunchen@newsletter.paragraph.com (ccrunchen.eth)</author>
        </item>
        <item>
            <title><![CDATA[Introducing CowSwap - The DEX of coincidence]]></title>
            <link>https://paragraph.com/@ccrunchen/introducing-cowswap-the-dex-of-coincidence</link>
            <guid>CpmPmRTXKhGzMvkHitAa</guid>
            <pubDate>Wed, 18 Jan 2023 08:51:21 GMT</pubDate>
            <description><![CDATA[Recently, 1inch has introduced a novel feature called Fusion. Fusion is a match engine that enables users to have better rates without paying network fees. While the user places the order and sets the maximum waiting time, the resolvers, who are professional market makers, will fill the order and pay applicable gas fees. During this process, resolvers profit from arbitrage trading. However, this system is familiar with the CowSwap, aka coincidence of want. Therefore, in this article, I would ...]]></description>
            <content:encoded><![CDATA[<p>Recently, 1inch has introduced a novel feature called Fusion. Fusion is a match engine that enables users to have better rates without paying network fees. While the user places the order and sets the maximum waiting time, the resolvers, who are professional market makers, will fill the order and pay applicable gas fees. During this process, resolvers profit from arbitrage trading.</p><p>However, this system is familiar with the CowSwap, aka coincidence of want. Therefore, in this article, I would like to introduce CowSwap briefly.</p><h2 id="h-what-is-cowswap" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What is CowSwap</h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://swap.cow.fi/#/?referral=genkosan.eth">CowSwap</a> offers a solution for decentralized trading which is the &quot;coincidence of want&quot; feature. The coW is defined as an &quot;economic phenomenon where two parties each hold an item the other wants, and therefore exchange these items directly.&quot;</p><p>When a request for a swap is sent, the &quot;solver&quot; will try to match the order first, and when there is no coincidence, the trade will be sent to the on-chain AMM pool to aggregate the best rate just like 1inch.</p><h2 id="h-the-benefit-of-coincidence" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">The benefit of coincidence</h2><p>The benefit of CowSwap comes from three aspects. Gas optimized, fees saving, and MEV protected.</p><ul><li><p>Gas optimized: CowSwap uses batch auction, which can compress serval trades in one transaction. In addition, as a user, one doesn&apos;t need to pay the gas fees after setting the approval of the token allowance.</p></li><li><p>Fees saving &amp; MEV protected: when there is a coincidence, the swap is happening between each party, which means it won&apos;t go through the AMM pools and save the LP fees. In fact, the match is happening off-chain, so there is no slippage and MEV attack.</p></li></ul><p>CowSwap &amp; $COW are currently available in both Ethereum and Gnosis Chain.</p><h2 id="h-problems" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Problems</h2><p>One of the main problems CowSwap faces is the &quot;lack of coincidence&quot;. The coW system can only maximize its effort when the network is extensive enough. It aims to enable the P2P off-chain transaction, but it highly relies on professional arbitragers like 1inch.</p><p>Even though CowSwap doesn&apos;t look very competitive and charming in the current DeFi system. But I assume when gaming brings new users and the need for massive low-value but high-frequency trading, the system will show its ability.</p><p>Arthur: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/ccrunchen.eth">ccrunchen.eth</a></p><p>Publish: 2022/04/11</p><p>Last modified: 2023/01/18</p>]]></content:encoded>
            <author>ccrunchen@newsletter.paragraph.com (ccrunchen.eth)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/22a61557d8687ff774632217141064462b5809e2b4dbf291a7c4fd9f05ce8a3d.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[What should we expect in crypto in 2023?]]></title>
            <link>https://paragraph.com/@ccrunchen/what-should-we-expect-in-crypto-in-2023</link>
            <guid>Lp0y8SO5kpLtQ3oomnQZ</guid>
            <pubDate>Tue, 17 Jan 2023 17:33:17 GMT</pubDate>
            <description><![CDATA[Crypto was criticised a lot in 2022, with the fallen of 3AC and FTX in particular. But the criticising follows crypto from day 1 of its birth, so it&apos;s not a big deal for the true believer. What important is during the past decades, we have seen some game-changing applications in the blockchain. And there will be more in the upcoming decades, and I am bullish about it. The crypto and blockchain industry is still young and growing. So why don&apos;t we have a forecast for the future? Let m...]]></description>
            <content:encoded><![CDATA[<p>Crypto was criticised a lot in 2022, with the fallen of 3AC and FTX in particular. But the criticising follows crypto from day 1 of its birth, so it&apos;s not a big deal for the true believer. What important is during the past decades, we have seen some game-changing applications in the blockchain. And there will be more in the upcoming decades, and I am bullish about it.</p><p>The crypto and blockchain industry is still young and growing. So why don&apos;t we have a forecast for the future? Let me share some of my thoughts.</p><h2 id="h-tldr" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">TL;DR</h2><ul><li><p>Massive adoption will be the main story of 2023. The gaming industry will be prior to others while seamlessly integrating with blockchain technology.</p></li><li><p>MPC solution will outrun other solutions (e.g. social recovery wallet). Infrastructure will be prepared for massive adoption (e.g. account abstraction will happen in the blockchain layer).</p></li><li><p>The application will be the content focus (user-oriented), while the app chain is more welcome than a better Layer 1.</p></li><li><p>Other than a higher fund utilisation rate, DeFi will provide seamless service along with the app chain.</p></li></ul><p>In the upcoming section, I will justify myself by why and how.</p><h2 id="h-mpc-will-become-the-mainstream-solution" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">MPC will become the mainstream solution</h2><p>Vitalik is definitely a fan of the social recovery wallet, and he published an article in January 2021 to introduce the social recovery wallet (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://vitalik.ca/general/2021/01/11/recovery.html">Why we need wide adoption of social recovery wallets</a>). However, this solution faces two key challenges:</p><ul><li><p>Users need to expose some critical information to the relevant. For example, Argent users need to disclose their wallet address to their guardians, which means they have revealed the status of their assets.</p></li><li><p>The social recovery method assumes massive adoption is finished. For most massive adoption scenarios, people will not seek support from their relevant, especially when this means disclosing some financial information.</p></li></ul><p>Do you really want your friends and family to know your blockchain address? Plus, not everyone has a trustworthy friend who happens to know what&apos;s blockchain.</p><p>MPC (Multi-Party Computation), on the other hand, solved these problems. MPC is a technology that can be traced back to the 80s while field-tested in the institution market for the past few years. MPC providers such as Fireblocks have custody of billions of funds already.</p><p>I am not a tech guy, so I will quote the words from Fireblocks to explain what MPC is:</p><blockquote><p>MPC enables multiple parties – each holding their own private data – to evaluate a computation without ever revealing any of the private data held by each party (or any otherwise related secret information).</p><p>In an MPC, a given number of participants each possess a piece of private data (d1, d2, …, dN). Together, the participants can compute the value of a public function on that private data: F(d1, d2, …, dN) while keeping their own piece of data secret.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.fireblocks.com/what-is-mpc/">What is MPC (Multi-Party Computation)?</a></p></blockquote><p>**However, I firmly believe that the MPC wallet will become the mainstream solution for massive adoption. The application provider, such as a gaming studio, can pack the MPC service with their application. As the user, they can access the whole blockchain world while maintaining a Web 2 experience. **</p><h2 id="h-app-chain-will-be-welcome-than-the-new-layer-1" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">App chain will be welcome than the new Layer 1</h2><p>Top-tier investors earn a lot from new layer-1, like Solana, in the last bull market. So people assumed that Aptos and Sui would become the next Solana in financial return with their innovative programming language and the halo of Meta.</p><p>The innovation of Move-based blockchain and the new zk-based layer 2 is apparent. However, I will put more bets on the appchain.</p><blockquote><p>An application-specific blockchain, or appchain, is a blockchain that is exclusively designed to operate one specific application instead of multiple apps like a public blockchain is designed to do.   <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.alchemy.com/overviews/what-is-an-appchain">What is an appchain?</a></p></blockquote><p>There are lots of benefits for the developer to build on their appchain. For example, they can eliminate the gas fee for users. This will significantly increase the end-user experience while maintaining the critical advantage of using blockchain.</p><p><strong>The content creator will soon realise they need an appchain for their game or products to gain more control.</strong> Currently, the developer can easily set up an appchain with Cosmos Zones, Polkadot Parachains, Avalanche subnets and Polygon Supernets. After all, I will be more bullish on optimistic or zero-knowledge-based and EVM-compatible appchain.</p><p>In 2022 we already saw the new layer-d1 developing by the alliance of gaming companies, such as <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.oasys.games/">Oasys</a>, produced by Bandai Namco &amp; SEGA, the traditional giant gaming company.</p><blockquote><p>Oasys Architecture is built for game developers, offering a high-speed, zero gas fee experience to users by combining the best of public L1 and private L2 blockchain technology solutions.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.oasys.games/">Oasys - Blockchain for games</a></p></blockquote><p>The problem for appchain right now is about something other than the technology of establishing one but how to interoperate with other chains, like how to seamlessly connect the liquidity and DeFi service to the appchain. And this leads to our last topic.</p><h2 id="h-defi-as-a-service" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">DeFi as a service</h2><p>DeFi is the most critical innovation inherited by blockchain. It was the first time humankind could conduct financial behaviour globally without an intermediary. This enables a whole new business model for the gaming industry, whereas real-life economic behaviour twists with the virtual world.</p><p>Think about it. One can borrow virtual assets with real-life money as collaterals. During this process, they don&apos;t even know about their counters, which might be a communal pool. One can create value in the virtual world, serving anyone in any corner, and get paid with real money.</p><p>In fact, there is no so-called real money, only the consensus of humans. Bitcoins act like real money in El Salvador. With the development of the user-owned virtual world and DeFi as a service, we can create an economic society with &quot;real money&quot; for real.</p><p>People trade the gold coin and items in World of Warcraft for decades, and some are using the items to conduct primitive financial behaviour. But with blockchain technology, we can even do more. Assets trading, lending, and even derivatives are possible.</p><p>The DeFi in 2023 will become more and more invisible, whereas the protocol serves more like a product, not an app. AAVE V3 has come across different EVM chains, while DEXs provide seamless backend API. <strong>In the foreseeable future, all these DeFi services will be wrapped into the product.</strong> When that happens, the end-user might not even know they are using a DeFi, which we call &quot;massive adoption&quot;, isn&apos;t it?</p><p><strong>In my picture, the future blockchain worlds will be Layer 1 + Layer 2 appchain. DeFi service will be sharding as well.</strong></p><p>Mainstream DeFi (like stablecoin yielding and mainstream token lending) are running in layer 1 to consolidate their safety and liquidity, then bridge to layer 2 as a seamless service. In-game assets DeFi, such as NFT leading and DEX, are running in layer 2.</p><p>In this circumstance, the appchain benefit from the liquidity and safety of layer 1 while they provide the application scene and users to layer 1. And the single failure of layer 2 (or a game) will not injure the stability of layer 1.</p><h2 id="h-massive-adoption-will-comes" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Massive adoption will comes</h2><p>It takes time for the technology to be mutual. In the early centre, the dot-com bubble just crashed, but after that, we have thirty years of the Internet golden age. There is no doubt that blockchains have bubbles, but we must see through the night.</p><p>The bearish market will pass, and the golden age will come.</p><p>Arthur: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/ccrunchen.eth">ccrunchen.eth</a></p><p>Publish: 2023/01/05</p><p>Last modified: 2022/01/05</p>]]></content:encoded>
            <author>ccrunchen@newsletter.paragraph.com (ccrunchen.eth)</author>
        </item>
    </channel>
</rss>