<?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>Cartesi</title>
        <link>https://paragraph.com/@cartesians</link>
        <description>Cartesi enables developers to build appchain rollups with any code, while benefiting from the security of Ethereum.</description>
        <lastBuildDate>Sat, 18 Apr 2026 18:21:09 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>Cartesi</title>
            <url>https://storage.googleapis.com/papyrus_images/962ffeb2be5ccf91f1ecb899253b0e39ed159788710e284e73df68ffbbaa134c.png</url>
            <link>https://paragraph.com/@cartesians</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[Why Cartesi Is the Execution Layer DeFi Has Been Waiting For]]></title>
            <link>https://paragraph.com/@cartesians/why-cartesi-is-the-execution-layer-defi-has-been-waiting-for</link>
            <guid>YowHVUSNKtDlDQE8ZZ7X</guid>
            <pubDate>Wed, 08 Apr 2026 14:59:16 GMT</pubDate>
            <description><![CDATA[The Problem Nobody Likes to Talk AboutDeFi has achieved remarkable things under tight constraints. Protocols like Uniswap have been skillfully engineered to balance user value, gas minimization, and security simultaneously. But look closely at the codebase of any major DeFi protocol and you'll see the same pattern: brilliant workarounds for a limited execution environment. The Ethereum Virtual Machine was not built for the kind of applications DeFi developers actually want to build.]]></description>
            <content:encoded><![CDATA[<h2 id="h-the-problem-nobody-likes-to-talk-about" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>The Problem Nobody Likes to Talk About</strong></h2><p>DeFi has achieved remarkable things under <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia/status/2021574868819419447?s=20"><u>tight constraints</u></a>. Protocols like Uniswap have been skillfully engineered to balance user value, gas minimization, and security simultaneously. But look closely at the codebase of any major DeFi protocol and you'll see the same pattern: brilliant workarounds for a limited execution environment.</p><p>The Ethereum Virtual Machine was not built for the kind of applications DeFi developers actually want to build. Solidity is a niche language. The EVM has no file system, no access to standard libraries, no floating-point arithmetic, and gas costs that punish complexity. Every feature you want has to be approximated, stripped down, or rebuilt from scratch.</p><p>The result is a DeFi landscape full of impressive applications that are simultaneously constrained versions of what they could be.</p><h2 id="h-what-the-execution-layer-actually-limits" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>What the Execution Layer Actually Limits</strong></h2><p>Outside of web3, developers type ‘import math’ or ‘import numpy’ and immediately have access to battle-tested implementations. That's abstraction. It's how modern software gets built efficiently. On the EVM, none of that exists. Developers have to teach the EVM how to calculate a logarithm step by step, from scratch, on top of building the actual dApp logic. Every instruction is an opcode, and every opcode costs gas.</p><p>The EVM has a 30 million gas cap per block. A full implementation of a typical risk management tool would require billions of instructions. The math is brutal: it would cost more to use the dApp than what it could ever save users. And on any shared L1 or L2, every dApp competes for the same block space. Smaller protocols are effectively priced out during the moments when activity matters most.</p><p>When you combine the need to reinvent the wheel with the need to pay for every spin of it, it becomes clear why sophisticated DeFi tooling has never been built onchain. The issue isn’t a lack of ambition, but a structural ceiling.</p><h2 id="h-cartesis-approach-rethink-the-execution-environment" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Cartesi's Approach: Rethink the Execution Environment</strong></h2><p>Cartesi's thesis is straightforward: the biggest gains in scalability come not just from more transactions, but from fundamentally more powerful computation. The centerpiece is the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.cartesi.io/get-started/cartesi-machine/"><u>Cartesi Machine</u></a>, a RISC-V-based virtual machine that boots a full Linux OS.</p><p>This isn't a minor technical detail. It's the core differentiator.</p><p>Because the Cartesi Machine runs Linux, it inherits 40+ years of open-source software development. Every library, every tool, every programming language that runs on Linux can now run as part of a verifiable onchain application. Python, Go, Rust, C++, JavaScript. Not a blockchain-specific language. Not a stripped-down DSL. The real thing, with real libraries.</p><p>And unlike the EVM, the Cartesi Machine pushes the instruction limit far beyond. It has proven to handle over 3.6 billion instructions within the average interval between Ethereum blocks. That's orders of magnitude more compute than the EVM provides, available to a single application.</p><h2 id="h-what-becomes-possible-for-defi" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>What Becomes Possible for DeFi</strong></h2><p><strong>True Bonding Curves, Not Approximations</strong></p><p>On the EVM, bonding curve implementations use integer math approximations because floating-point operations aren't available. Inside a Cartesi Rollup, you implement a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2032094462193910107?s=20"><u>bonding curve</u></a> using Python's math libraries with full numerical precision. The formula runs exactly as designed, not as a gas-optimized compromise of it. Every buy and sell updates the supply deterministically and produces verifiable results anchored to Ethereum.</p><p><strong>Onchain Risk Management: The Nucleus Proof-of-Concept</strong></p><p>The $61 million exploit on Curve Finance illustrates one of DeFi's most consequential gaps. The protocol's founder had substantial loans backed by the native CRV token, nearly triggering a cascade of liquidations across Aave, Frax Finance, and other interconnected protocols. A spread could have been avoided with simple onchain risk controls that checked statistical estimations of a token's historical price behavior before approving a loan of that size. Building those controls on the EVM is not feasible. Running statistics on historical price data requires billions of opcodes. The cost makes it impossible.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rolluplab.cartesi.io/nucleus/"><u>Nucleus</u></a>, a hackathon-winning project built on Cartesi, demonstrates exactly what becomes possible when this constraint is removed. On the surface it looks like a standard lending protocol. On the backend, it runs complex statistical risk analysis using open-source Python code, including <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2029557685969170605?s=20"><u>NumPy</u></a> and other libraries, all executing inside the Cartesi Machine and settled onchain via Cartesi Rollups. It can set collateral limits based on actual analysis of onchain data, not just a spot price check. With the same approach, developers can run Scikit-learn, PyTorch, or any other machine learning library as part of their dApp's logic.</p><p>This is the kind of tool that could make DeFi systematically safer. And because it lives onchain, it can be composed with and referenced by other protocols, potentially functioning as a public good for the entire ecosystem.</p><p><strong>DCA and Advanced Order Types</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rolluplab.cartesi.io/dca-monster/"><u>DCA Monster</u></a>, built on Cartesi, demonstrates what's possible: a DEX with stream swaps and conditional swaps, with core AMM logic written in Python running inside the Cartesi Machine. The developer had full access to Python's ecosystem to implement the logic cleanly, without fighting EVM constraints.</p><h2 id="h-the-security-model-that-makes-it-trustworthy" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>The Security Model That Makes It Trustworthy</strong></h2><p>Running complex logic offchain is only valuable if the results can be trusted. The Cartesi Machine is self-contained (no external influences mid-execution), reproducible (same input always produces the same output), and transparent (full visibility into internal state). These properties enable Cartesi's fraud-proof system: computations run offchain, but disputes are resolved onchain through <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1957789794999882149?s=20"><u>Permissionless Refereed Tournaments (PRT)</u></a>, a bracket-style mechanism that lets honest participants win even against large-scale Sybil attacks.</p><p>This system earned Cartesi a Stage 2 classification on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary?filters=%7B%22stage%22%3A%7B%22values%22%3A%5B%22Stage+2%22%5D%7D%7D"><u>L2BEAT</u></a>, one of the highest maturity designations in the optimistic rollup space, placing it in rare company among only three other rollups.</p><h2 id="h-app-specific-rollups-dedicated-compute-per-dapp" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>App-Specific Rollups: Dedicated Compute Per dApp</strong></h2><p>Cartesi's architecture gives each dApp its own dedicated rollup chain. Your protocol doesn't compete for block space with unrelated activity, fees become predictable, and developers control gas metering, data availability solutions, and other infrastructure choices specific to their use case. A high-frequency trading protocol has different requirements than a lending platform. With Cartesi, both can be optimized for their actual needs.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.cartesi.io/cartesi-rollups/1.5/"><u>Cartesi Rollups</u></a> can be deployed as an L2 on Ethereum, an L3 on top of existing rollups like Optimism or Arbitrum, or as sovereign rollups, giving protocol designers full flexibility in how they architect their system.</p><h2 id="h-the-bigger-picture" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>The Bigger Picture</strong></h2><p>DeFi has accomplished extraordinary things while operating under a severe execution constraint. The EVM imposed a ceiling. Not just on what could be built, but on who could build it. Only developers who learned Solidity, understood EVM quirks, and could optimize gas usage could participate.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/contributor-hub/DeFi-needs-better-execution-environment/"><u>Cartesi removes that ceiling</u></a>. The millions of developers who know Python, Go, Rust, and C++ can build onchain applications using the tools they already know. The 40 years of battle-tested open-source software that powers the internet can now power DeFi.</p><p>Anything ranging from simple stop orders to complex financial analysis has so far had to happen offchain in web2 fashion, accessible only through centralized services. Cartesi is the infrastructure that brings it onchain, verifiable, and composable.</p><p><strong>The execution layer has always mattered. Cartesi is what it looks like when you get it right.</strong></p><p><strong>Want to build?</strong></p><p>Start at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://docs.cartesi.io"><u>docs.cartesi.io</u></a> and check the llms.txt at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://docs.cartesi.io/llms.txt"><u>docs.cartesi.io/llms.txt</u></a> for vibe-coding reference.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
            <category>cartesi</category>
            <category>defi</category>
            <category>web3</category>
            <category>execution</category>
            <category>layer</category>
            <category>ethereum</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/9b1bc76715de56ac76617675f4537927713a47a1dc1e5b13c7c3d049ec17f3dd.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates March, 2026]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-march-2026</link>
            <guid>ImpO2CzBZVXy9DDj6TGs</guid>
            <pubDate>Thu, 02 Apr 2026 11:09:22 GMT</pubDate>
            <description><![CDATA[As March comes to a close, so does Q1 2026, and the quarter had a clear through-line: progress continued and the ecosystem moved forward. We kept building, testing, and shipping. Meanwhile, conversations about what DeFi actually needs from its infrastructure, and what an expressive and performant execution environment unlocks for developers, are gaining traction. ]]></description>
            <content:encoded><![CDATA[<div data-type="x402Embed"></div><p>As March comes to a close, so does Q1 2026, and the quarter had a clear through-line: progress continued and the ecosystem moved forward. We kept building, testing, and shipping. <br><br>Meanwhile, conversations about what DeFi actually needs from its infrastructure, and what an expressive and performant execution environment unlocks for developers, are gaining traction. Cartesi is well equipped to address these challenges and empower builders to fully realize what DeFi can be, advancing our mission to help Web3 reach its true potential.</p><p>Keeping up with tradition, it’s time again to revisit what contributors delivered across tech, dev tooling, community, media, and more. Let’s dive into the past month’s key updates.&nbsp;&nbsp;</p><h2 id="h-tech" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Tech<strong>&nbsp;</strong></h2><p>March delivered strong progress on the infrastructure side. The latest <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-node/releases/tag/v2.0.0-alpha.10"><u>release</u></a> of the Cartesi Rollups Node(v2.0.0-alpha.10) prioritizes making the system more robust and reliable for developers and operators running applications in production.</p><p>A key theme of this update is stability under pressure. Improvements to database transaction safety mean that data integrity is better protected during complex or high-load operations. Alongside this, smarter shutdown behavior ensures that long-running processes and multi-application deployments can wind down cleanly, reducing the risk of data loss or inconsistent states when things stop unexpectedly.</p><p>For operators managing infrastructure at scale, the update introduces per-service log levels, giving teams more granular visibility into what each component of the node is doing. Rather than sifting through a single stream of output, operators can now tune logging to exactly the level of detail they need, per service.</p><p>The CLI has also been extended with new commands for inspecting tournaments, commitments, and matches, making it easier to monitor and debug the fraud proof system directly from the command line. Rounding out the release, more accurate error handling and reporting means issues surface faster and with clearer context, shortening the feedback loop when something goes wrong.</p><p>Recent alpha releases of the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/cli"><u>Cartesi CLI</u></a> (v2.0.0-alpha.32 and 33) focus on streamlining the developer experience and ensuring environment consistency. The CLI has been updated to support the latest core components, including Rollups Node alpha.10, Rollups Contracts v2.2.0, and PRT v2.1.1, ensuring developers are working with the most current stack.</p><p>A new version of <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/dave/releases/tag/v2.1.1"><u>PRT</u></a>, Cartesi’s permissionless dispute mechanism, has been released to improve the reliability of the fraud-proof system. <br><br>Version 2.1.1 introduces a fix to the bond refund process. In a permissionless dispute system, participants put up bonds when submitting or challenging claims. Getting those refunds right is critical to keeping the system fair and trustworthy, and this update ensures participants are correctly reimbursed once disputes are resolved.</p><p>Beyond this, the release includes fixes for Docker environments, smoothing out a common friction point for teams setting up or running PRT locally and in production. Updated configuration files further reduce the setup overhead, making it simpler to integrate PRT with the broader Cartesi ecosystem.</p><p>Taken together, these changes reflect a continued focus on making Cartesi infrastructure production-ready for the teams and projects building on top of it.</p><h2 id="h-developer-advocacy" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Developer Advocacy</h2><p>Dev advocacy team slayed throughout March, wrapping up the DeFi content series started last month with its six-episode run, and a stream of demos, resources, and educational threads keeping the builder momentum going.</p><p>Contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia"><u>João Garcia</u></a> shipped the last three episodes on why the execution environment matters for DeFi. The fourth video explored how Cartesi enables stateful application logic that can match TradFi-level performance while moving beyond typical L1 constraints. The fifth unpacked the execution layer constraints holding DeFi back, and how Python, NumPy, and PyTorch become usable onchain through Cartesi's Linux environment. The sixth made the case for app-specific rollups and why dedicated compute per dApp matters for computation-heavy financial systems. <br>Catch the full series on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/@Cartesiproject/shorts"><u>YouTube Shorts</u></a><u>:</u> <br>→<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/@Cartesiproject/shorts"> </a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2036443036771819607?s=20"><u>https://x.com/cartesiproject/status/2036443036771819607</u></a></p><p>On the demos front, a new tutorial showed how to integrate NumPy into Cartesi apps, enabling advanced numerical computing, matrix operations, and scientific calculations directly in your app. The message is simple: if it runs on Linux, it can run onchain:<br>→<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2029557685969170605"> <u>https://x.com/cartesiproject/status/2029557685969170605</u></a></p><p>A bounding curve demo also dropped, walking through how to integrate bonding curves into Cartesi apps for onchain price discovery driven purely by buys, sells, and the algorithm:<br>→<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2032094462193910107"> <u>https://x.com/cartesiproject/status/2032094462193910107</u></a></p><p>Contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/riseandshaheen"><u>Shaheen Admed</u></a> shipped fresh <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/riseandshaheen/status/2030907508924260484?s=20"><u>code snippets for Rust, Go, and C++</u></a>, alongside vibe coding resources, removing any remaining excuse not to build DeFi your way in the language of your choice. Shaheen also walked through all the CLI commands for the Rollups pre-release, helping developers get up to speed ahead of the production-ready final release:<br>→<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/riseandshaheen/status/2034275490303967287"> <u>https://x.com/riseandshaheen/status/2034275490303967287</u></a></p><p>And speaking of that, testing has taken center stage, with contributors pushing the SDK to its limits. Curious dev minds can explore the findings in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/channels/600597137524391947/1104007675370553505/1484643660002885824"><u>this Discord channel</u></a>.<br><br>Rounding out the month, a benchmarking thread laid out the compute power of the Cartesi Machine in concrete terms, covering useful instructions per block, throughput, compute cycles, and what a full Linux OS running on a dedicated appchain actually unlocks for builders:<br>→<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2029210293847638026"> <u>https://x.com/cartesiproject/status/2029210293847638026</u></a></p><h2 id="h-ecosystem" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Ecosystem</h2><p>On the ecosystem front, one of the features currently in active development is <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-contracts/issues/485"><u>recoverable app funds</u></a>, a safety mechanism designed to give DeFi applications built on Cartesi a meaningful protection layer. <br><br>The idea is simple: if something goes seriously wrong with an application, a trusted party can step in, freeze the app, and ensure users can still get their money out based on the last confirmed state. In a nutshell, think of this as an emergency off-switch that protects users without erasing the record of who owns what.<br><br>In practice, this trusted party would be a multi-sig wallet, meaning multiple people need to agree before any action is taken, keeping the process secure and accountable. The app enters a protected mode where no new activity is allowed, but existing balances remain accessible and provable. Developers who want full autonomy can also opt out of the feature entirely.&nbsp;</p><p>This is still being specified and refined, but the direction is clear: serious DeFi infrastructure needs serious recovery guarantees, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-contracts/pull/489"><u>this feature</u></a> is how Cartesi delivers them.&nbsp;</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://honeypot.cartesi.io/"><u>PRT Honeypot v2</u></a> is still standing: a live, real-money security challenge specifically built to test what it would actually take to break a rollup's fraud-proof system on mainnet, where anyone can try to drain the pot to their own wallet and directly stress-test Cartesi's PRT fraud-proof system.<br><br>The catch: only the Cartesi Foundation can actually withdraw. 50,000 $CTSI are sitting in a contract, permissionless and open to anyone who thinks they can crack it, with the pot expected to grow throughout the year.<br><br>The fraud-proof system hasn't been broken once. Beyond the bounty, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2008539290960359577"><u>Honeypot v2</u></a> holds another distinction: it is one of the few rollups to have reached <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/projects/cartesi-prt-honeypot-v2"><u>Stage 2 maturity on L2BEAT</u></a>, making Cartesi one of a small group of projects to have reached this milestone.&nbsp;</p><h2 id="h-community" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Community&nbsp;</h2><p>On the community side, March was a reminder of something easy to take for granted: the people building with and around Cartesi are genuinely here for it. Resilient ecosystems are built by people who stay engaged when it matters, and ours did. There’s no shortage of penguins, and we love spotting community creations on the feed. Here’s one of our favorite little gems to share with you:<br>→ <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiian/status/2032958535965770239?s=20"><u>https://x.com/cartesiian/status/2032958535965770239</u></a></p><p>Have you met our companion yet in the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesiproject"><u>Telegram</u></a> group? The <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/CartesiProject/380054"><u>Cartesian Plushie AI</u></a> is part of the conversation, jumping into chats, sharing insights, and adding a bit of personality along the way. If you haven’t interacted with it yet, now’s a great time to join our Telegram community and have some fun.</p><h2 id="h-media" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Media</h2><p>On the media front, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2036443036771819607?s=20"><u>the series shipped by our DevAd Lead, João</u></a>, wrapped up, capping a quarter of technical storytelling aimed at builders and researchers who care most about execution environments. <br><br>Its core idea highlighted that with Cartesi, DeFi can be built around what finance actually needs rather than what the blockchain can run. Floating-point math is viable onchain, enabling robust pricing and risk models. NumPy, QuantLib, and the full quantitative finance stack are now accessible to web3 developers. Stateful, long-running financial processes can run onchain. A full Linux environment brings real languages and mature libraries while staying verifiable on Ethereum, and app-specific rollups let computation-heavy financial systems scale independently without competing for blockspace. <br><br>The execution layer is the conversation we should've been having all along, and the content resonated with thought leaders on X, who went on to amplify these reflections:<br>→ <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/SherifDefi/status/2034335686032036005"><u>https://x.com/SherifDefi/status/2034335686032036005</u></a></p><p>The demos published resonated as well, and we loved the conversations they sparked, the engagement they earned, and the way the connoisseurs highlighted that primitives from traditional software, brought verifiably onchain, are exactly the ground where Cartesi innovates:<br>→ <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/Macky_DeFi/status/2032105736172429398?s=20"><u>https://x.com/Macky_DeFi/status/2032105736172429398</u></a></p><p>Finally, to provide more context for our audience, we reshared an explainer video on app-specific rollup architecture, a must-watch for anyone willing to understand more about building computation-heavy applications:<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2034631132315275348"> </a><br>→ <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2034631132315275348"><u>https://x.com/cartesiproject/status/2034631132315275348</u></a></p><h2 id="h-thats-a-wrap" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">That’s a Wrap</h2><p>That's it for March and for Q1. From node releases and SDK news, to DeFi education and live demos, the ecosystem kept moving across every front. April is already lined up. Stay tuned, and if you haven't yet, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mailchi.mp/cartesi/email-newsletter"><u>subscribe to the newsletter</u></a> for a chance to get some Cartesi merch delivered to your door, as another merch box may hidden in next month's edition.</p><p>In the meantime, keep building and keep the conversations going. Join the community on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/cartesi"><u>Discord</u></a>, follow the latest on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject"><u>X</u></a>, and find us across all channels here:<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://linktr.ee/cartesi"> <u>https://linktr.ee/cartesi</u></a></p><p>Keep building with Cartesi and contributing to further strengthening our appchain framework and Ethereum's rollup ecosystem.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
            <category>ctsi</category>
            <category>linux</category>
            <category>web3</category>
            <category>teamupdate</category>
            <category>programming</category>
            <category>defi</category>
            <category>ethereum</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/6181fc4e351594c10e8901c12133e1b88eac9005489c0ee1f9cb1dbdf8a0dd5d.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates - February 2026]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-february-2026</link>
            <guid>wR7zgW1pea8wM106Yhad</guid>
            <pubDate>Mon, 02 Mar 2026 16:23:39 GMT</pubDate>
            <description><![CDATA[February has flown by in the blink of an eye. Instead of the penguin taking over the feed, we had a monkey this month. Cartesi’s penguin team, however, has been busy, and the project has made steady progress across tech, developer tooling, educational content, and media features. Let’s dive into the past month's highlights.]]></description>
            <content:encoded><![CDATA[<p>February has flown by in the blink of an eye. Instead of the penguin taking over the feed, we had a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/coinmarketcap/status/2026215772511703466?s=46&amp;t=mGHP8Hk4s0azqLZbjA-GfA"><u>monkey this month</u></a>. Cartesi’s penguin team, however, has been busy, and the project has made steady progress across tech, developer tooling, educational content, and media features. Let’s dive into the past month's highlights.&nbsp;</p><h2 id="h-tech" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Tech</h2><p>Cartesi Rollup Contracts 2.2.0 is out, and while the change looks small on the surface, it carries real weight. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-contracts/releases/tag/v2.2.0"><u>This release</u></a> is now introducing a new function that lets the Rollups node ask the network one simple question: "how many claims have been submitted so far?" That unlocks a "fast-sync" mechanism that dramatically cuts the time a node needs to catch up with the rest of the network. Think of it like skipping to the latest chapter instead of reading the whole book from page one.</p><p>On the fraud-proof side, the v2.1.0-alpha.0 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/dave/releases/tag/v2.1.0-alpha.0"><u>pre-release</u></a> of Dave brings faster and smarter dispute tracking. Instead of replaying every past action to understand where a dispute stands, nodes can now jump straight to the current state. This version also tidies up the architecture by merging different tournament types into one unified framework, making the system cleaner and easier to maintain. An updated Honeypot test suite rounds things out, keeping security testing for permissionless rollups sharp.</p><p>The latest <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/cli/releases/tag/%40cartesi%2Fcli%402.0.0-alpha.29"><u>Cartesi CLI</u></a> alpha is also live, and the headline addition is the --fork-url flag, which lets developers pull any live network like Ethereum Mainnet directly into their local testing environment. In practice, that means testing your dApp against real-world smart contracts without ever leaving your local setup. Transactions are faster to send too, and the tool runs more smoothly in automated pipelines overall.</p><p>A <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-node/pull/737"><u>pull request</u></a> is also in progress for the Rollups node that extends CLI support to reading PRT dispute data, covering tournaments, commitments, matches, and match advances, bringing it in line with the JSON-RPC API. It also cleans up existing read commands and tightens up how addresses are handled under the hood.</p><p>Our monthly tech updates are also featured in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/l2beat"><u>L2BEAT</u></a>'s recap. Check out the latest edition <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/publications/monthly-update-2026-01#cartesi"><u>here</u></a>, or browse through previous ones to see how far we've come:</p><div data-type="twitter" tweetid="2018361872307609722">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/l2beat">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/7bd57d3baa2dfa4ae96d8a05dcc1b971863df0f486eeb6a1445f10ec7c156b71.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/l2beat" class="twitter-displayname">L2BEAT 💗</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/l2beat" class="twitter-username">@l2beat</a></p>
    
            </div>
            <a href="https://twitter.com/l2beat/status/2018361872307609722" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      The monthly L2 roundup is here! <br><br>Here's what happened across the L2 ecosystems <img class="twitter-emoji" draggable="false" alt="👇" src="https://abs-0.twimg.com/emoji/v2/72x72/1f447.png"> 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/95233d663adce16a54ff0c26cddb6b5d25e75a0f4b067b76198a66c029248451.jpg"></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/l2beat/status/2018361872307609722" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            22
          </a>
          <a target="_blank" href="https://twitter.com/l2beat/status/2018361872307609722"><p>19:32 • 2 Şub 2026</p></a>
        </div>
    
  </div> 
  </div><h2 id="h-developer-advocacy" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Developer Advocacy</h2><p>Educational efforts have been front and center this past month, and our developer advocates delivered.<br><br><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia"><u>João</u></a> has dropped a new series on DeFi and why a powerful execution layer like Cartesi matters. DeFi has always punched below its weight, not for lack of ideas, but because execution environments were never built for serious financial computation. Complex math gets simplified, mature libraries disappear, and anything too heavy gets pushed off-chain where users just have to trust. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/contributor-hub/DeFi-needs-better-execution-environment/"><u>This piece</u></a> breaks down why that happens, what unlocks when the execution layer expands, and how computation-driven finance opens the door to real risk engines, dynamic prediction markets, and financial logic that finally matches what the models actually demand.</p><div data-type="twitter" tweetid="2018688404414701795">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/joaopdgarcia">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/6cc8173bf161dba1a7a2d0fd62aecb4820fa8422fc067a9d97d6a2677f45a84b.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-displayname">Joao Garcia</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-username">@joaopdgarcia</a></p>
    
            </div>
            <a href="https://twitter.com/joaopdgarcia/status/2018688404414701795" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      We all thought DeFi was limited by innovation, but it was actually limited by execution.<br><br>I’m kicking off a series on how <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> lifts old constraints to unlock a new DeFi design space. Dive in for the full scoop and join me over the next few weeks as we unpack it all.
      
      
      <div class="twitter-quoted">
       
  <div class="twitter-quoted twitter-embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/joaopdgarcia">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/6cc8173bf161dba1a7a2d0fd62aecb4820fa8422fc067a9d97d6a2677f45a84b.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-displayname">Joao Garcia</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-username">@joaopdgarcia</a></p>
    
            </div>
            <a href="https://twitter.com/joaopdgarcia/status/2018688089258865078" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      <a class="twitter-content-link" href="https://t.co/UBIlcAkKOf" target="_blank">x.com/i/article/2018…</a>
      
      
       
    </div>
    
  </div> 
  
    </div> 
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/joaopdgarcia/status/2018688404414701795" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            25
          </a>
          <a target="_blank" href="https://twitter.com/joaopdgarcia/status/2018688404414701795"><p>17:09 • 3 Şub 2026</p></a>
        </div>
    
  </div> 
  </div><p>And then, going deeper, he also shipped bite-sized 1-minute videos for everyone to digest at a faster pace. See all the shorts on our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/@Cartesiproject/shorts"><u>YouTube</u></a>.<br><br>Meanwhile, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu"><u>Chinonso</u></a> put together a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2027020985531301888?s=20"><u>demo</u></a> showing how simple it is to integrate Chainlink Oracles and fetch prices into your Cartesi dApps, plus new libcmt bindings to make life easier for Rust, Python, and Go developers:</p><div data-type="twitter" tweetid="2024903956812444009">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/claudioengdist">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/3e179cf99a6123e46672a7ba2706904aeb0e9abc65647173aae0a53e79eb4cca.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/claudioengdist" class="twitter-displayname">Claudio Silva 🐧</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/claudioengdist" class="twitter-username">@claudioengdist</a></p>
    
            </div>
            <a href="https://twitter.com/claudioengdist/status/2024903956812444009" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Developer advocate <a class="twitter-content-link" href="https://twitter.com/ChinonsoIdogwu" target="_blank">@ChinonsoIdogwu</a>  just opened up libcmt bindings for Rust, Python, and Go so you can talk directly to the Cartesi machine (<a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> 's altVM).​ This will allow dApps to use the Cartesi Machine in the most efficient way! <br>Check the repo:
      
      
        <a class="twitter-card-link" href="https://t.co/uIdL7K3rjw" target="_blank">
          <div class="twitter-media twitter-summary-large-image">
            <img src="https://storage.googleapis.com/papyrus_images/bba3bf4d45799807f8f7523ecdfe4027308d2da7a7e89472a857de8d0ab9802e.jpg">
            <div class="twitter-summary-card-text">
              <span>github.com</span>
              <h2>GitHub - Mugen-Builders/libcmt-bindings</h2>
              <p>Contribute to Mugen-Builders/libcmt-bindings development by creating an account on GitHub.</p>
            </div>
          </div>
        </a>
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/claudioengdist/status/2024903956812444009" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            7
          </a>
          <a target="_blank" href="https://twitter.com/claudioengdist/status/2024903956812444009"><p>20:48 • 20 Şub 2026</p></a>
        </div>
    
  </div> 
  </div><h2 id="h-ecosystem" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Ecosystem</h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://honeypot.cartesi.io/"><u>PRT Honeypot v2</u></a> is still live and thriving. 50,000 $CTSI are up for grabs for anyone who can crack it, with the pot expected to grow throughout the year. It's the ultimate stress test for Cartesi's fraud-proof system.</p><p>For new readers: the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2008539290960359577"><u>Honeypot</u></a> is a real-world security challenge where participants try to withdraw the pot to their own wallets, directly testing the PRT fraud-proof system under live conditions. The catch? Only the Cartesi Foundation can actually withdraw. It's a community-driven, incentivized audit that doubles as <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary?filters=%7B%22stage%22%3A%7B%22values%22%3A%5B%22Stage+2%22%5D%7D%7D"><u>Cartesi's first Stage 2 app</u></a>, making Cartesi one of only a few projects to have achieved this milestone, as verified on L2BEAT.<br><br><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/LocaleNet"><u>Locale Network</u></a> continued shipping through February. What began as an experimental IoT plus zk-proof infrastructure concept has evolved into a live stack powering real applications, real communities, and real data pipelines.</p><p>Under the hood within the Arbitrum ecosystem, deployments are now verified through Cartesi, meaning sensor data is processed in a verifiable way before reaching onchain: </p><div data-type="twitter" tweetid="2026063725849952606">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/LocaleNet">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/4d0f7b1a869efbe9631ade453d46e4310afa8b5748c2f1582887ebaa1e4d8734.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/LocaleNet" class="twitter-displayname">Locale Network 🏡</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/LocaleNet" class="twitter-username">@LocaleNet</a></p>
    
            </div>
            <a href="https://twitter.com/LocaleNet/status/2026063725849952606" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Under the hood:<br><br>• Encrypted device data pipelines<br>• Live smart contracts<br>• Verified deployments<br>• Real on-chain interactions 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/ea9c31fac58f6c39bdd3905a13fbc283908b017b735637d73f2473db1183714e.png"></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/LocaleNet/status/2026063725849952606" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            1
          </a>
          <a target="_blank" href="https://twitter.com/LocaleNet/status/2026063725849952606"><p>1:36 • 24 Şub 2026</p></a>
        </div>
    
  </div> 
  </div><h2 id="h-community" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Community&nbsp;</h2><p>February saw the Lunar New Year festivities as we entered the Year of the Horse. We were proud to celebrate with our regional communities in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesicn"><u>China</u></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesikr"><u>Korea</u></a>. If you’re in the region and not yet part, be sure to join and connect with our local ambassadors, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/stay_hungry"><u>Sharp</u></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/yoojei88"><u>Jay</u></a>.&nbsp;</p><p>To mark the occasion, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/Galxe"><u>Galxe</u></a> included us in a special cohort celebrating the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/GalxeQuest/status/2020845587101598207?s=20"><u>Lunar New Year</u></a> and rewarding participants. To take part, head <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.galxe.com/quest/cartesi/GCh2RtY3TM"><u>here</u></a> and complete the tasks. Prizes will be distributed starting March 1st.<br><br>Across the globe, we loved seeing the creativity in the community and how our strongest supporters continued to bring Cartesi’s story to life through visual art:</p><div data-type="twitter" tweetid="2026777047284981969">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/cartesiian">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/5ed563b2356f3f147455f81730877177cdd2be1ecbd44f944288877444a1cc5d.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/cartesiian" class="twitter-displayname">Cartesian</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/cartesiian" class="twitter-username">@cartesiian</a></p>
    
            </div>
            <a href="https://twitter.com/cartesiian/status/2026777047284981969" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      GLORY 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/e539ba22714eb2a36e56aa4ebcc32f915534ce8bc32f694c81e3b0d1f1d34f20.jpg"></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/cartesiian/status/2026777047284981969" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            4
          </a>
          <a target="_blank" href="https://twitter.com/cartesiian/status/2026777047284981969"><p>0:51 • 26 Şub 2026</p></a>
        </div>
    
  </div> 
  </div><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiian/status/2026777047284981969￼￼And"><br>And</a> speaking of community, make sure you join our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesiproject"><u>Telegram group</u></a> to stay in the loop with announcements, lighthearted convos, a few memes, and our custom-trained <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/CartesiProject/380054"><u>Plushie AI</u></a> companion. Haven't chatted with it yet? Jump in and have some fun.</p><h2 id="h-media" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Media</h2><p>On the media front, Cartesi kept showing up. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia"><u>João Garcia</u></a>, our Developer Advocate Lead, joined <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/HouseofChimera"><u>House of Chimera</u></a> for an <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/HouseofChimera/status/2021992851245273376?s=20"><u>X Space</u></a>, diving into what makes our technology stand out, and we loved witnessing how much the host already knew about Cartesi: </p><div data-type="twitter" tweetid="2021588740599398683">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/HouseofChimera">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/8606d81e3b6fe54c9723527b87394d68392cc78342e4a41edf9a071c2ba5f91d.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/HouseofChimera" class="twitter-displayname">House of Chimera</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/HouseofChimera" class="twitter-username">@HouseofChimera</a></p>
    
            </div>
            <a href="https://twitter.com/HouseofChimera/status/2021588740599398683" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Everyone's building 'the next Ethereum killer.'<br><br>Cartesi asked a better question: What if developers could just... use Ethereum properly?<br><br>Feb 12 at 5 PM UTC with <a class="twitter-content-link" href="https://twitter.com/joaopdgarcia" target="_blank">@joaopdgarcia</a> from <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a>, as we discuss how app-specific rollups change the game.<br><br>Set a reminder and stay 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/65ba82d59a145df9e71d4deb15f287f640fb7d3d072a82af31c29d84c8e1a936.jpg"></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/HouseofChimera/status/2021588740599398683" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            53
          </a>
          <a target="_blank" href="https://twitter.com/HouseofChimera/status/2021588740599398683"><p>17:14 • 11 Şub 2026</p></a>
        </div>
    
  </div> 
  </div><p>Also, João’s DeFi content series struck a chord with thought leaders on X, who went on to amplify his reflections:</p><div data-type="twitter" tweetid="2023791050184417434">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/LordOfAlts">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/53167ebe3430824ceec3216ee05fea804a3b389dcdc7c381088479bddb19cac1.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/LordOfAlts" class="twitter-displayname">Henry</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/LordOfAlts" class="twitter-username">@LordOfAlts</a></p>
    
            </div>
            <a href="https://twitter.com/LordOfAlts/status/2023791050184417434" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Hard to argue with this.<br>Respect to <a class="twitter-content-link" href="https://twitter.com/joaopdgarcia" target="_blank">@joaopdgarcia</a> for putting it bluntly. If DeFi wants to grow up, it needs real computation under the hood, not rounded shortcuts. That’s exactly why <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> feels important here.
      
      
      <div class="twitter-quoted">
       
  <div class="twitter-quoted twitter-embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/joaopdgarcia">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/6cc8173bf161dba1a7a2d0fd62aecb4820fa8422fc067a9d97d6a2677f45a84b.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-displayname">Joao Garcia</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-username">@joaopdgarcia</a></p>
    
            </div>
            <a href="https://twitter.com/joaopdgarcia/status/2023761869606187248" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Truth is: no real math, no real finance.<br><br>Imagine a bank that rounds everything to the nearest dollar. That’s DeFi today. Mathematically handicapped.<br><br>A performant execution layer like <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> fixes that.<br><br>Come down the rabbit hole <img class="twitter-emoji" draggable="false" alt="👇" src="https://abs-0.twimg.com/emoji/v2/72x72/1f447.png"> 
      <div class="twitter-media">
      <img class="twitter-image" src="https://pbs.twimg.com/amplify_video_thumb/2023760603094138880/img/YexA9Q63JaBhfzLg.jpg">
    </div>
      
       
    </div>
    
  </div> 
  
    </div> 
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/LordOfAlts/status/2023791050184417434" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            103
          </a>
          <a target="_blank" href="https://twitter.com/LordOfAlts/status/2023791050184417434"><p>19:06 • 17 Şub 2026</p></a>
        </div>
    
  </div> 
  </div><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/LordOfAlts/status/2023791050184417434￼￼Tech"><br><u>Tech</u></a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://techbriefly.com/2026/02/11/making-ethereum-rollups-safer-and-more-accessible-for-developers/"><u> Briefly</u></a> ran a feature on how Cartesi is making Ethereum rollups safer and more accessible for developers. And we can conclude that the conversation around verifiable computation is showing no signs of slowing down.</p><h2 id="h-thats-a-wrap" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">That’s a Wrap</h2><p>These ecosystem updates also land in Cartesians’ inboxes every month, and each edition comes with a giveaway. Newsletter subscribers will get the chance to snag a merch pack with a t-shirt, water bottle, and cap. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mailchi.mp/cartesi/email-newsletter"><u>Subscribe</u></a> if you haven’t already and keep an eye out for every drop.</p><p>February flew by, but Cartesi never slowed down. Tough markets will test us, building will always be the answer. Code shipped, tech evolved, ecosystem news dropped, educational content rolled out, and crypto media took notice. The commitment to bringing complex verifiable computation to the masses never wavers.&nbsp;</p><p>Want to start building or just join the community and contribute to the Cartesi ecosystem? Hop on<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/cartesi"> <u>Discord</u></a> or<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesiproject"> <u>Telegram</u></a> to keep the conversation going and support the only Linux-based computation layer… with your favorite penguin leading the way.<br></p><h2 id="h-more-must-see-content-pieces" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">More must-see content pieces:</h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/felipeargento/status/2018826655209234487?s=20"><u>Cartesi Will Be Fine | Co-founder Felipe Argento Reaction to Vitalik’s Post on L2s</u><br></a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/dtuler/status/2018786066917216691?s=20"><u>Reinforcing the Cartesi Thesis: Real L2 Differentiation | Cartesi Contributor Danilo Tuler</u></a> <br><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/claudioengdist/status/2024903956812444009?s=20"><u>Direct Alt-VM Access: libcmt Bindings for Rust, Python, and Go | Claudio Silva</u><br></a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.galxe.com/quest/cartesi/GCh2RtY3TM"><u>Lunar New Year Celebration: Year of the Horse | Galxe Quest</u><br></a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia/status/2018688089258865078?s=20"><u>Why DeFi Needs a Better Execution Environment | DevAd Lead, João Garcia</u><br></a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu/status/2018754539545887140?s=20"><u>DeFi Works. But It Can Be Better | Developer Advocate, Chinonso Idogwu</u><br></a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/shorts/7d-2LJxi8PM"><u>DeFi is shaped by EVM limits, not finance (DeFi series ep. 1) | DevAd Lead João Garcia</u><br></a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/shorts/57pIayO6118"><u>No math means no cash (DeFi series ep. 2) | DevAd Lead João Garcia</u></a> <br><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/shorts/Lur8rsuabpo"><u>Stop coding math from scratch (DeFi series ep. 3) | DevAd Lead João Garcia </u><br></a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/HouseofChimera/status/2021992851245273376?s=20"><u>Cartesi DevAd Lead João Garcia on X Spaces | House of Chimera</u><br></a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://techbriefly.com/2026/02/11/making-ethereum-rollups-safer-and-more-accessible-for-developers/"><u>Making Ethereum rollups safer and more accessible for developers | TechBriefly</u></a></p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
            <category>#ctsi</category>
            <category>#linux</category>
            <category>#teamupdate</category>
            <category>#programming</category>
            <category>#defi</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/e70581f2b705d9979925efd253681af4339a4b3694761d3ab50c5fc5e2ff70af.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates - January 2026]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-january-2026</link>
            <guid>D8l8qFLFYBgYnXkccSoi</guid>
            <pubDate>Fri, 30 Jan 2026 18:13:07 GMT</pubDate>
            <description><![CDATA[January has seen plenty of penguins committing to new paths. Cartesi’s penguin, however, has been walking the same one for years. Linux has long been the penguin guiding developer convenience, while the Cartesi Machine and the Optimistic Rollups framework enabled complex computation and high throughput well before it was fashionable. With the recent move to a permissionless fraud-proof system, this long-standing direction is now reinforced. The SDK continues to mature as we step into a new ye...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/bf4a755ab476b58439c0797a2bb92b5f396f78e380b1609bacb4cdd59dbf59f3.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAASCAIAAAC1qksFAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGzklEQVR4nAXBe1Da9wEA8C/I+42gP/khgoiCCvgABFFQVBQQgYCAIgKiGDXRCBiiRmJ8RXzExIjxVR+NbdSsamK8dL2uufSW27K265LdrrverVlu1+vt+s92W2+3u/3RfT6ALsxCUsloCpmSnYkgEdBUCsBgyFQKkkQAJAIgE1EwjIJhNAwT2DCRm4mVFKHzRbjikjSjiarV0CoraVVVGD47W8TjVWib7t2DjTWijgvCDgdaKKpbiAJ6XiaZDQEAkDQSkkIACABSkFg8GgAAcDhAISBoVDQrHQVBhEyYJBYyaypoKglJXpxuMmAlxUUaaamjFlOYr9IrL588g431pGJJ2dUAUVki8Jgal8OAIeZThBy73+sK+NLzssUyuc5gdHlcisoKeUUFjkHFQ6lENgTJRCXtBs01r3EiaE9GNJMhTAEXLcpOU4rTOcyi1mZv/DpPKgEUcm6bOcehz7TUOR5OeY7nAF3II2RBB+enX7z+Q35pcW80Ep+emZgan1lccPp9eCiVQCehmWR+nUziM0m9RpFVU+Kpl/rraRI2TpLNM2kKPDaF2+bt75I32dnqEnatMkOnqJ4J1Sxddu6NAwYvC59BJ2bQUnkwmk7B06gIHI5OJ6KIeEAkoRmpaCgVDTGwMAsNszAwCyUQpLBYGKGQaajDSQqLG3UNkyPkgjy5UsouLEmXiXM9DZp4e+WoRxf3lfc2gwyBCEslESAalZuRLsnB0ygUBiMtnQawKCydhqGScBlpFA5MzeFy1NJcq07WaZH1uLJdRopajpUUcmW5EoWAIS9qjlySub2yLof/0U3n3pgu2pbXVJmqEgNOYTGVTqHBGQg8BknFASIOy2AyYBZApQAUMoVKRBBRgIQiS7klwcaGUX/DoN0Q91Xf8FMkbIwkC9LKmWKByt/eEx8yBIOOlaWaeEeOU59fp2CIBXnVxSCNyzNbzYurSYPZoDcbbW1eR0uLxdJodrvtbW39sYi9xdnc7ppMLqhcVkgpzlBIYLU0U1tMKxVSJTmqVnPn8pTygklnrFCbTHmGhsrRCNNY7fbr1QFL53An4OTlu32+ueTdq9eGhhNTc3dXFm4vbqwsJRK3pufnomNjx5/9MpG8O3t7pufGoCrYqA4YK9vrKr1VYkMpXV1miY8Gk5N9Pfbm3s5GrxfWKpRRV01nw/BEe0O/M3q6D1IzefVWW5OvXatT5sjFAmmRqqa6rra6rkqRJubTM5hCrTzHaeCYNXlGZWlTWZmrXNai1l6xXTiYGZnw6Rw6y/bI1CVD1/CwrrNLG4/GvtyMzbbeuhPqHevb+v5HgKVQQ/3h+ZW147Oz9e3d7f3906dPj09PHu5sPDo/3dvbHLp9g9tmLB/t1CT6tBM+6w23YS3ser7R85ezLxMNgYu2zR8/2UqE3IMR67Xr2XJV1+548mRx/9VnZ+/+dvD1nwAGi1HpGy6FI71Xwi5/0NTc7OoKtQQCbT7f8NSU320L9LeV9js8y1c878VmXuz+8PM/Vt8+C3+15TqYvh6zBwdsj9+c3TvYHtzc1nRfVLV6ZW5vdH39zf9+Pn/7zuh0ADwKwWSzc+QqXoGYwubgWTA+i49LhyAuR6JW19qsnotdXRMDAzuxsWfTa988+PynV0tvD7f+82Jz+3rAqTk83795fyWSmG/tu2y7mQgePtEMXOlIbvRPzYRGRvtm7wAkApDIRDibn1NQICgUKwymogZTpkLFKpRAAoGisak7fjOSmJndWl4739p6tbPz3dHhu+O//vc7m9cXkaWeLPUO7+7F1jbGPjqvHhrxrL0X3f/AFAn3rCQXf/06tPcYpODwCCSCQqVm8flZfL5YJq82mjTNrXKLvUBXV9Rodl+NtUTCbf2hULxv+eTOt//6+vE3p+Pbc6Liktv10I5fvPW7r/zLqxf3j31Tt8bff9C1MNd9f31kZ9cRi2eLxYAMcxAkAp0FCfJF5ZWVXA5bqS7XW616j0/eaNY0NZnb25sD7ebetuBMePQo8cG3R/NPN+6fbPUMhSsKsq51Wz75/RfrH3/86fd/P3zyZP3DD2cfPRpIbganE2miXHwmC1BZMJ6ZjmMwKCwIZrO4WZkwxMzicvIKC0vKVeX62iqHRet1OUP+4OxY9Bcryy8Px198FNm8c/SrI2tXt/36yB//+cOff/r3yu7W8PSkK+AzeVrKamuktTpho7ljYx8AJJKSBjF4Anx6BkAhiQQcAYfFowDEYgkKC2RqdVmNVu+02ns6zZMx5+p868bdyPPHy29enr3+7czz38x++uLhy89Hk6u+cNjc0SlVlUlq6zQeb9XlwY71BwpL8/8BfDgbCzA8utwAAAAASUVORK5CYII=" nextheight="900" nextwidth="1600" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>January has seen plenty of penguins committing to new paths. Cartesi’s penguin, however, has been walking the same one for years. Linux has long been the penguin guiding developer convenience, while the Cartesi Machine and the Optimistic Rollups framework enabled complex computation and high throughput well before it was fashionable.</p><p>With the recent move to a permissionless fraud-proof system, this long-standing direction is now reinforced. The SDK continues to mature as we step into a new year of radical focus and Linux-powered builds.</p><p>From technical breakthroughs in our Rollups SDK to the open-sourcing of hardware-verifying stacks, January set a high bar for the months to come. Let’s dive into the highlights.</p><h2 id="h-tech" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h2><p>Cartesi’s Machine Emulator received a merge to support <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/RiscZero"><strong><u>RISC-Zero</u></strong></a> prover and verifier flows, enabling integration with zero-knowledge proof tooling. In layman’s terms, a new "translator" that lets Cartesi speak the same language as RISC-Zero's zero-knowledge proof tools. This foundation lays groundwork for future verifiable execution workflows and enhances flexibility in how machine states can be demonstrated and provably verified off-chain. Check the merged PR <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/machine-emulator/pull/343"><strong><u>here</u></strong></a>.</p><p>January also brought enhancements to the PRT Fraud Proof System: smarter refunds and cleaner contracts. There were two key improvements to how Cartesi handles disputes. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/dave/pull/233"><strong><u>First</u></strong></a>, the bond refund system was refined so that the new logic ensures that when someone puts up money to participate in a dispute and then exits, getting that money back is now more reliable and predictable. Think of it like a security deposit that is easier to reclaim.<br><br><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/dave/pull/230"><strong><u>Second</u></strong></a>, the Tournament contract was simplified by combining multiple contracts into one unified one that handles both types of tournament participants (root and leaf validators) under the same clear rules. This makes the code easier to maintain and safer to audit before major updates.</p><p>On a different vertical, Cartesi CLI v2.0.0-alpha.26 is live, bringing a host of improvements. This alpha release is all about speed, simplicity, and smoother workflows: startup times are faster, external dependencies have been reduced for easier setup, and PRT, the permissionless fraud proof system, is now enabled by default for new applications. For those exploring Rollups Node v2, this release provides a sneak peek of upcoming workflow enhancements, and the explorer has been updated to support the new contract versions.</p><p>Another key change is the introduction of an alternative Bun-based distribution, which removes the need for a global Node.js install and makes the CLI easier to run across different environments. While account abstraction support has been temporarily paused as core abstractions stabilize, the overall focus of this release is to streamline the path from idea to deployment, giving developers a smoother, more efficient experience. This release is intended for core developers and early testers. Prebuilt binaries are available for testing (macOS support is still pending), and the GitHub release can be found <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/cli/releases/tag/%40cartesi/cli%402.0.0-alpha.26"><strong><u>here</u></strong></a>.</p><div data-type="twitter" tweetid="2011873524903002200">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/claudioengdist">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/3e179cf99a6123e46672a7ba2706904aeb0e9abc65647173aae0a53e79eb4cca.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/claudioengdist" class="twitter-displayname">Claudio Silva 🐧</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/claudioengdist" class="twitter-username">@claudioengdist</a></p>
    
            </div>
            <a href="https://twitter.com/claudioengdist/status/2011873524903002200" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      New alpha of the Cartesi Rollups SDK release (v2.0.0-alpha.26) just dropped — still aimed at core devs/testers. But the early migration to Bun (runtime + package manager + bundler) and the focus on fast, cohesive tooling make me very optimistic that the final SDK will be both
      
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/claudioengdist/status/2011873524903002200" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            9
          </a>
          <a target="_blank" href="https://twitter.com/claudioengdist/status/2011873524903002200"><p>7:50 PM • Jan 15, 2026</p></a>
        </div>
    
  </div> 
  </div><p>This update continues Cartesi’s momentum in refining the Rollups SDK, helping developers push the boundaries of what’s possible on this appchains framework and offering a playground for experimentation and innovation.</p><p>Our tech updates are also logged monthly in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/l2beat/status/2013170001503478201?s=20"><strong><u>L2BEAT’s recap</u></strong></a>. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/publications"><strong><u>Here</u></strong></a>’s where you can keep tabs on what’s new in our mission to make Cartesi a Stage 2 powerhouse, or catch up on the previous editions.</p><h2 id="h-developer-advocacy" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Advocacy</strong></h2><p>If anyone’s 2026 resolution involves mastering a new stack, we’ve got you covered. You might have noticed our campaign during the holidays with the dev quests, shipped by our developer advocates. Inspired by CryptoZombies, our interactive Playground dApp is the perfect starting point for new builders to master the Cartesi framework, taking you from zero to hero through three engaging levels (inputs and outputs, exploring state transitions, and adding assets). <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://quests.mugen.builders/"><strong><u>Dive in here</u></strong></a>.</p><p>Vibecoding is where it’s at these days. So how about building a simple Cartesi app with Cursor? Check out how easy it is to prompt your way to a functional dApp with our contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2009263990011216110?s=20"><strong><u>Shaheen’s tutorial</u></strong></a>.<br><br>Content was also center stage this month. Our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia"><strong><u>DevAd Lead, João Garcia</u></strong></a>, published an article exploring the synergies between execution environments and data availability, what these layers unlock, and key considerations when building high-throughput dApps. Shoutout to the DevAdvocacy unit and the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://availproject.org/"><strong><u>Avail</u></strong></a> team for their contributions to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia/status/2016124656869048824"><strong><u>the piece</u></strong></a> as well. The feedback has been great across the board, so make sure you give it a read!</p><div data-type="twitter" tweetid="2016574966704263492">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/uttam_singhk">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/b3308b81ad5b8672074043e7ab8fcb9f1767067608c084227aa964cc20258249.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/uttam_singhk" class="twitter-displayname">Uttam</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/uttam_singhk" class="twitter-username">@uttam_singhk</a></p>
    
            </div>
            <a href="https://twitter.com/uttam_singhk/status/2016574966704263492" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Solid piece by <a class="twitter-content-link" href="https://twitter.com/joaopdgarcia" target="_blank">@joaopdgarcia</a> <br><br>Scaling in 2026 isn’t “L2 vs L2”. It’s execution + DA as first-class design choices.<br><br>EVM for composability, custom execution for compute (see <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a>), and DA that doesn’t bottleneck your app.
      
      
      <div class="twitter-quoted">
       
  <div class="twitter-quoted twitter-embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/joaopdgarcia">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/6cc8173bf161dba1a7a2d0fd62aecb4820fa8422fc067a9d97d6a2677f45a84b.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-displayname">Joao Garcia</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-username">@joaopdgarcia</a></p>
    
            </div>
            <a href="https://twitter.com/joaopdgarcia/status/2016127328150044782" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Just posted this article, made with the help of <a class="twitter-content-link" href="https://twitter.com/riseandshaheen" target="_blank">@riseandshaheen</a>, the <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> DevAd unit, <a class="twitter-content-link" href="https://twitter.com/naruto11eth" target="_blank">@naruto11eth</a>, and the <a class="twitter-content-link" href="https://twitter.com/AvailProject" target="_blank">@AvailProject</a> team<br><br><a class="twitter-content-link" href="https://t.co/zruejxpIK1" target="_blank">x.com/joaopdgarcia/s…</a><br><br>TL;DR:<br>• Good narratives stand the test of time<br>• What's an execution environment<br>• What's a data availability
      
      
       
    </div>
    
  </div> 
  
    </div> 
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/uttam_singhk/status/2016574966704263492" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            42
          </a>
          <a target="_blank" href="https://twitter.com/uttam_singhk/status/2016574966704263492"><p>7:11 PM • Jan 28, 2026</p></a>
        </div>
    
  </div> 
  </div><p>The <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2011438194857009403?s=20"><strong><u>BEE</u></strong></a> conceptualized by Cartesi co-founder <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/felipeargento"><strong><u>Felipe Argento</u></strong></a> still hits after one year.</p><p>What makes the Cartesi Machine so special and a "Best Execution Environment"? It’s simple. Cartesi is not just building another VM. We are bringing a full Linux OS to the blockchain. By leveraging the deterministic RV64GC RISC-V ISA, developers can use Python, Rust, and C++ with the security of decades of software maturity, without the “blockchain-only” limitations. If you want to read more about the Cartesi Machine, just stroll through our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.cartesi.io/get-started/cartesi-machine/"><strong><u>documentation</u></strong></a> (said to be <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/CartesiProject/352793"><strong><u>one of the best</u></strong></a> by connoisseurs).</p><h2 id="h-cartesi-foundation" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Cartesi Foundation</strong></h2><p>Transparency is one of the core values of Cartesi. The 2025 Annual Review is now public, detailing everything from treasury diversification and wallet addresses to core unit funding. Check it out <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/blog/transparency_report_2025/"><strong><u>here</u></strong></a> for updated figures, including allocation percentages for each vertical, as the project continues its mission to build a sustainable future for decentralized computing.</p><p>To learn more about how the Cartesi Foundation, as a mission-bound organization, has been stewarding and supporting the project since its creation in this form in 2023, take a look <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/blog/cartesi-annual-transparency-report-2023/"><strong><u>here</u></strong></a> for an overview of its attributions.</p><h2 id="h-ecosystem" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h2><p>Our creative bug bounty app, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://honeypot.cartesi.io/"><strong><u>PRT Honeypot v2</u></strong></a>, is thriving. The new bond mechanism is actively strengthening the PRT fraud-proof system, and there are currently 50,000 $CTSI up for grabs for anyone who can crack the code, with the pot expected to grow this year. It’s the ultimate test of our tech's resilience.</p><p>For new readers who might be unfamiliar, the Honeypot (a common security mechanism in traditional software) is both a fun but challenging test of Cartesi’s technology and our first app categorized as Stage 2, which makes Cartesi one of only a few projects to have achieved this, as seen on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary?filters=%7B%22stage%22%3A%7B%22values%22%3A%5B%22Stage+2%22%5D%7D%7D"><strong><u>L2BEAT</u></strong></a>.</p><p>Participants try to crack the system, aiming to withdraw the pot to their own wallets, effectively testing the PRT fraud-proof system in a real scenario. The mechanism is designed so that only the depositor, the Cartesi Foundation, can actually withdraw. It’s a hands-on way to test Cartesi’s security, transparency, and resilience in decentralized applications, making it a community-driven, incentivized audit. For a more visual explanation, check out this animation <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2008539290960359577"><strong><u>here</u></strong></a>.</p><p>On another front, it’s great to see builders in the space leveraging Cartesi’s verifiability and trust-minimized properties. Big news has come this month from the LocaleNetwork devs, who have officially open-sourced <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://paragraph.com/@localenetwork/lcore-launch"><strong><u>L{CORE}</u></strong></a>, a self-hosted attestation stack.</p><p>By using Cartesi as a fraud-provable computation layer, they’re running a full Linux runtime with SQLite inside our RISC-V VM. This allows deterministic verification of sensor data (like temperature, traffic, or energy readings) before it even hits the chain, ensuring that the data is authentic and tamper-proof. Each device signs its data using decentralized identifiers (DIDs) and JSON Web Signatures, and the attestation is verified in a Trusted Execution Environment. Settlement then happens on Arbitrum’s L2/L3 chains, allowing real-world IoT data to be safely and trustlessly bridged on-chain.</p><p>This makes L{CORE} a complete infrastructure for cities, DePIN projects, renewable energy, and supply chains, effectively solving the long-standing IoT trust problem while giving developers a hands-on, fraud-proof way to verify and settle device data. We’re excited to see Cartesi being used in the wild to solve IoT trust requirements by developers who truly seize its value.</p><div data-type="twitter" tweetid="2014050363343569289">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/LocaleNet">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/4d0f7b1a869efbe9631ade453d46e4310afa8b5748c2f1582887ebaa1e4d8734.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/LocaleNet" class="twitter-displayname">Locale Network 🏡</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/LocaleNet" class="twitter-username">@LocaleNet</a></p>
    
            </div>
            <a href="https://twitter.com/LocaleNet/status/2014050363343569289" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      <img class="twitter-emoji" draggable="false" alt="🚨" src="https://abs-0.twimg.com/emoji/v2/72x72/1f6a8.png"> Big milestone: Locale Network + <a class="twitter-content-link" href="https://twitter.com/MSocietyLabs" target="_blank">@MSocietyLabs</a> just open-sourced L{CORE} <img class="twitter-emoji" draggable="false" alt="🔓" src="https://abs-0.twimg.com/emoji/v2/72x72/1f513.png"><br><br>The first decentralized IoT attestation infrastructure.<br><br>In partnership with @ReclaimProtocol &amp; @CartesiProject, we’re bringing trustless sensor data verification to @Arbitrum.<br><br><img class="twitter-emoji" draggable="false" alt="🧵" src="https://abs-0.twimg.com/emoji/v2/72x72/1f9f5.png"><img class="twitter-emoji" draggable="false" alt="👇" src="https://abs-0.twimg.com/emoji/v2/72x72/1f447.png"> 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/cdae780f2e5fca2fda103c9897cb1aad641515d37fc6b836f44e115768eb6764.jpg"></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/LocaleNet/status/2014050363343569289" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            43
          </a>
          <a target="_blank" href="https://twitter.com/LocaleNet/status/2014050363343569289"><p>8:00 PM • Jan 21, 2026</p></a>
        </div>
    
  </div> 
  </div><p>Throughout 2025, Cartesi continued its educational efforts in Brazil’s academic community, led by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.uff.br/"><strong><u>UFF</u></strong></a> professor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/in/antonio-rocha-02754099/"><strong><u>Antonio Rocha</u></strong></a>, with impact rippling far beyond the classroom.</p><p>Thanks to partnerships with the Blockchain Observatory (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.rnp.br/"><strong><u>RNP</u></strong></a>) as part of the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://iliadablockchain.org.br/"><strong><u>ILIADA project</u></strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ufba.br/"><strong><u>UFBA</u></strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.uff.br/"><strong><u>UFF</u></strong></a>, Cartesi trained over 100 students in Rollups architecture and Web3 development under Prof. Rocha.</p><p>Now wrapped up, the program yielded strong results by the end of the year: 18 teams completed capstone projects, demonstrating genuine mastery rather than passive participation, and 7 teams delivered solutions to the Cartesi "time to deploy" challenge introduced last month. Plus, a single lecture by Prof. Rocha on Web3, Blockchain, and Cartesi Rollups, given at the invitation of YDUQS for their Science and Technology Week audience, reached 436 students, planting seeds that may grow into future contributors.</p><p>Finally, one course participant co-authored a peer-reviewed <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://link.springer.com/article/10.1007/s10586-025-05667-5"><strong><u>scientific paper</u></strong></a> published in a top-tier journal using Cartesi as a layer-2 solution for auction-based resource allocation. This achievement bridges academia and practical blockchain application, demonstrating once again Cartesi’s technical stack real-world applicability.</p><p>Looking ahead to 2026, a new study group was formed by Professor Rocha to hold weekly meetings to advance our studies of Cartesi technology, exchange experiences, and develop new Cartesi prototype solutions. We are excited to keep seeding blockchain education among students in Brazil</p><h2 id="h-community" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Community</strong></h2><p>Penguins and clippers have been the highlights of "Crypto Twitter" and the community at large. Our Cartesians weren’t left behind. We’ve seen penguins and clips in action too. Check out this throwback of our Cartesi co-founder, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/erickdemoura"><strong><u>Erick de Moura</u></strong></a>, explaining the project’s mission, brought to life with playful edits and still packing a punch, courtesy of community supporters.</p><div data-type="twitter" tweetid="2013965793122222244">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/CTSInumberONE">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/78b120fae0fc8d6c3289957c8dc98b9cd8ed004bc91f870c33818c95ba25d832.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/CTSInumberONE" class="twitter-displayname">Cartesi Ecosystem 🐧</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/CTSInumberONE" class="twitter-username">@CTSInumberONE</a></p>
    
            </div>
            <a href="https://twitter.com/CTSInumberONE/status/2013965793122222244" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      The mission has always been clear. <br><br><a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> 
      <div class="twitter-media">
      <img class="twitter-image" src="https://pbs.twimg.com/amplify_video_thumb/2013965635378679808/img/Ph9PlkdAuvDIACMf.jpg">
    </div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/CTSInumberONE/status/2013965793122222244" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            23
          </a>
          <a target="_blank" href="https://twitter.com/CTSInumberONE/status/2013965793122222244"><p>2:23 PM • Jan 21, 2026</p></a>
        </div>
    
  </div> 
  </div><p>And guess what? The penguin wasn’t running to the mountains alone. It took the Linux path and always had someone by its side, because that’s what you get in open source projects.</p><div data-type="twitter" tweetid="2015127888916287787">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/CryptoCyn">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/b81704b94b6653c28015dd39dddd00e0d15a178f050128af161381a069f23770.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/CryptoCyn" class="twitter-displayname">Cynthia 🐧</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/CryptoCyn" class="twitter-username">@CryptoCyn</a></p>
    
            </div>
            <a href="https://twitter.com/CryptoCyn/status/2015127888916287787" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Follow the <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> penguin. <br><br>Embrace Linux onchain. 
      <div class="twitter-media">
      <img class="twitter-image" src="https://pbs.twimg.com/amplify_video_thumb/2015127831609503744/img/3naPd0Uc2jXWK5B0.jpg">
    </div>
      
      <div class="twitter-quoted">
       
  <div class="twitter-quoted twitter-embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/SwitchedToLinux">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/243ee13ebf299647d30a9fb2f8420a36a6bab9f2f6f1dcf70380535386beba25.png">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/SwitchedToLinux" class="twitter-displayname">SwitchedToLinux</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/SwitchedToLinux" class="twitter-username">@SwitchedToLinux</a></p>
    
            </div>
            <a href="https://twitter.com/SwitchedToLinux/status/2014851121622483378" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      We should all switch to Linux!! That is the BEST way to embrace the Penguin :)
      
      
       
    </div>
    
  </div> 
  
    </div> 
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/CryptoCyn/status/2015127888916287787" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            18
          </a>
          <a target="_blank" href="https://twitter.com/CryptoCyn/status/2015127888916287787"><p>7:21 PM • Jan 24, 2026</p></a>
        </div>
    
  </div> 
  </div><p>More penguins have been cooked up with love by both community <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiian/status/2015901203830338011?s=20"><strong><u>members</u></strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bubbalexone/status/2016073291090514277?s=20"><strong><u>ambassadors</u></strong></a>. But do you want to hear the real penguin lore? Linux mascot penguin origins? In the mid-1990s, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/Linus_Torvalds"><strong><u>Linus Torvalds</u></strong></a> wanted a mascot for Linux. He saw a penguin at an Australian zoo and liked the idea (some say it bit him). An artist named <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/Larry_Ewing"><strong><u>Larry Ewing</u></strong></a> designed the iconic Tux logo in 1996 (short for "tuxedo"). It stuck, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/Tux_(mascot)"><strong><u>Tux</u></strong></a> has been Linux's instantly recognizable mascot ever since.</p><p>And last but not least, the holidays may be over, but the presents are still arriving. Shoutout to our community winners sharing their Cartesi merch packs across the globe! We love seeing those colourful <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/Princely_Nonso/status/2009493608135856334/photo/1"><strong><u>boxes</u></strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/Swarup54502259/status/2008088147792703494?s=20"><strong><u>swag</u></strong></a> on the X feed. Keep them coming!</p><h2 id="h-media" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Media</strong></h2><p>One of the month’s highlights was having our co-founder, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/felipeargento"><strong><u>Felipe Argento</u></strong></a>, on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/CryptoCoinShow"><strong><u>Crypto Coin Show</u></strong></a>, marking Cartesi’s third appearance on the podcast in the past four years. It was great to catch up with a media outlet that’s now part of Cartesi’s journey and to walk them through the latest updates. ICYMI, you can watch it below:</p><div data-type="youtube" videoid="do4hmhFPQNY">
      <div class="youtube-player" data-id="do4hmhFPQNY" style="background-image: url('https://i.ytimg.com/vi/do4hmhFPQNY/hqdefault.jpg'); background-size: cover; background-position: center">
        <a href="https://www.youtube.com/watch?v=do4hmhFPQNY">
          <img src="https://paragraph.com/editor/youtube/play.png" class="play">
        </a>
      </div></div><p>For the dev audience, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://dev.to/"><strong><u>dev.to</u></strong></a> community writers have shipped a piece about optimistic rollups and zk rollups, examining Ethereum’s scalability race. The article is outlining the tradeoffs between speed, cost, security, and developer usability. While ZK-Rollups offer faster finality, their limited throughput, complexity and high costs limit broader adoption, leaving Optimistic Rollups dominant despite slower withdrawals. In this context, the spotlight is on Cartesi’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethresear.ch/t/the-dave-fraud-proof-algorithm/21844"><strong><u>Dave</u></strong></a> fraud-proof system as a key advancement, reinforcing Optimistic Rollups with permissionless, cost-efficient dispute resolution that improves security without sacrificing flexibility or developer experience. Give it a read <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://dev.to/ashok83/can-optimistic-rollups-keep-up-with-zk-rollups-in-ethereums-scalability-race-4951"><strong><u>here</u></strong></a>.</p><p>The co-authored piece on the modular stack for 2026, exploring the interplay between execution environments and data availability by Cartesi and Avail, also made headlines in U.Today:</p><div data-type="twitter" tweetid="2015819713440371138">
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/Utoday_en">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/1a1ff54ce61cf1922554896f3fefba3748190c369f91928ac4461ec1b936ea62.jpg">
            </a>
            <div style="margin-left:12px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/Utoday_en" class="twitter-displayname">U.Today</a>
              <p style="margin-top:2px;line-height:1;"><a target="_blank" href="https://twitter.com/Utoday_en" class="twitter-username">@Utoday_en</a></p>
    
            </div>
            <a href="https://twitter.com/Utoday_en/status/2015819713440371138" target="_blank">
              <svg class="twitter-logo" width="20" height="20" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M0.256759 0L9.36588 12.1823L0.200012 22.0873H2.26348L10.289 13.4158L16.7728 22.0873H23.7935L14.1723 9.21978L22.7043 0H20.6409L13.2506 7.98633L7.27889 0H0.258127H0.256759ZM3.29035 1.52002H6.51495L20.7571 20.5673H17.5325L3.29035 1.52002Z" fill="currentColor"></path>
              </svg>
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      One VM and one chain won’t scale Web3. Modular execution environments and scalable data availability layers are shaping what’s possible in 2026 
      
      
        <a class="twitter-card-link" href="https://t.co/7TH9u33uZk" target="_blank">
          <div class="twitter-media twitter-summary-large-image">
            <img src="https://storage.googleapis.com/papyrus_images/e79f64a2997cfff8e1b50c38bffcb22a3367cef67bdcb95aa7776b74a20febc6.jpg">
            <div class="twitter-summary-card-text">
              <span>u.today</span>
              <h2>Execution and Data Availability: The Modular Stack Shaping Web3 in 2026 - U.Today</h2>
              <p>In 2026, Web3 applications are actively choosing specialized execution and data availability layers. These modular design choices are defining the next phase of decentralized innovation.</p>
            </div>
          </div>
        </a>
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/Utoday_en/status/2015819713440371138" style="margin-right:16px; display:flex; align-items:center;">
            <svg class="twitter-heart" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
              <path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>
            </svg>
            10
          </a>
          <a target="_blank" href="https://twitter.com/Utoday_en/status/2015819713440371138"><p>5:10 PM • Jan 26, 2026</p></a>
        </div>
    
  </div> 
  </div><p>The Portuguese-speaking audience was again in for a treat, as usual. This time, core contributor Carlo Fragni was recently featured in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://exame.com/future-of-money/cripto-no-brasil-avanca-com-foco-institucional-e-infraestrutura/"><strong><u>Exame</u></strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://criptomagazine.com.br/artigo-de-carlo-fragni-o-futuro-do-blockchain-no-brasil-passa-pela-adocao-institucional/"><strong><u>CriptoMagazine</u></strong></a>, discussing how Brazil is shaping the future of money. Cartesi is positioned as the go-to infrastructure for institutional-grade DeFi and RWAs, allowing traditional players to use familiar Web2 tools in a Web3 world. Make sure you do give the articles a read for the whole scoop.</p><p>In addition, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://techcripto.com/noticias/camada-de-execucao-modular-cartesi/01/2026/"><strong><u>Tech Cripto</u></strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://bitcoinblock.com.br/2026/01/28/relatorio-anual-de-transparencia-da-cartesi-foundation/"><strong><u>Bitcoin Block</u></strong></a> have praised Cartesi’s transparency in openly sharing their treasury and financial statements in two other articles.</p><h2 id="h-thats-a-wrap" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>That’s a Wrap</strong></h2><p>These ecosystem updates also land in Cartesians’ inboxes every month, and each edition comes with a prize. Newsletter subscribers might snag a fresh branded hoodie. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mailchi.mp/cartesi/email-newsletter"><strong><u>Subscribe</u></strong></a> if you haven’t already and keep an eye out for every drop.</p><p>January flew by, but Cartesi fired on all cylinders, pushing code, sharing ecosystem news, dropping transparency reports, making headlines in the crypto media, and reinforcing that the "Best Execution Environment" isn’t just a slogan. It’s a Linux-powered reality.</p><p>Want to start building or just join the community and contribute to the Cartesi ecosystem? Hop on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/cartesi"><strong><u>Discord</u></strong></a> or <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesiproject"><strong><u>Telegram</u></strong></a> and help make 2026 truly the year of the penguin with real Linux dApps.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi 2025: A Year in Review]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-2025-a-year-in-review</link>
            <guid>dryPc0m6PGJjNzl5VfPI</guid>
            <pubDate>Wed, 31 Dec 2025 09:53:54 GMT</pubDate>
            <description><![CDATA[Verifiable Compute and Stage 2 SecurityAs the curtain closes on 2025, we look back at a year where Cartesi shifted from building the foundation to proving the resilience of its architecture on the world stage. From achieving Stage 2 status on L2BEAT to integrating ZK primitives into the RISC-V VM, the ecosystem has moved closer to the vision of a fully decentralized, Linux-powered future that allows developers to do more in Web3 and build with any code while inheriting Ethereum’s security. He...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0adc737b2be6d5936c9efbeae51bc4511cc43d5547fca2ae76920fc9a370340d.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAASCAIAAAC1qksFAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGwklEQVR4nBXT7VPa9wEA8K8ogiLPioiCAvIkKPIM8lOelAcf0CBgUIgaxQemxEAFacT6hE8YNKmmMRSNscbWVm2ssfFMUptkbXbZet3D7W693m5vttt1vd11d32zN9v1f/h8AMjJzS6gI8nF8DwqyCIAdD4sjwYjlYC8YkCgAhID5DLxUEu+zoPg1hMgD9k6wpt4UL58LFn4BIofaVYe1cSPJHMH3PEd4fyRdO5AeC1JsodBRS0o0wFBLQBYEkAR0/MKcQw2ns4BODJAkUAeFVnCBYVsQOOiuGp8uSW3tptg9Ze0XCt0jAnC98Qrx4q1J9LZh+LYviJxrL55JL/3TL//xnj4W8/pt4r45xjrMJAZgaIBAEI+is5a39xqaL9SoTP6x6LD45OOvuHQ7KK8uQ0Uc3NVDRxrX7HDT/PO8oO3RePJmtUj6O6ZYv1UtnJcs/CJKvYhx/euJLqtXjhqOfxN29mfardewh1+eHO3bXYVgAJqRjFzNDZvcl+hKqGmnj7bwKC5u7+hb7iotgEIVRlqo6A3XD2XFE0my6JJQ+qseuOJ6t65au5j3dpp3dZFTep59ebzoQeHLYdvpJGUOnJfFz+gDk+JxuOsUAzAmZx0BhvQGIDOSmNyAYMNSvmgXAKXQ0RDfZbJijK3ljR5Bb5pWlsIaxpCQd7s6j5sfQDfPl3kXab53qX232b6k9DCPrS4r04c23Zf1W+c4t++Kb2ZnDz9AlB4ZWi+GFMpRUvkGJmKoIJYEETUmYkNlxiuTn7vQGlbb6Heg5TZc2ROgmGQMbBAso1xJx5Uf/TauPPCvP7Yknqm3f2mcf9NS+oplDiWR7edyVPvZxeBi9eD569ALoPDFJVTBBX4CilFpy/S6ZRaNb35UpG5ke5wcYf96ushbWcA8k6IB6e5gdXq1Fmpb0GZ+FixtA/F9iWTD2vmD/Srx9WJI/envxNFNiyLu1cPX/guvrafvzA8fgYAMlfI5zK4ZQXFpXJLnbTeoqlRV3W4VK52yNNpGA01zEw5JmdNA2FeUy8B6mA1j+L03RjlZSLk4Q8tS2c+EL7zkNQxSWwKGNdOs4y/Eroj1y6+Dn7z+9Fv/zD0/BUAaWgsLp+YX0gpKDQZIE2Nsk4lbuvtco8GeiYiI/FFyNLc1uOrtXulroCod7pqJCHsmaU5IxRnJM/2NtoZI3kW6UN32JHdsugew5soH1iqj65HDs9OfvrXzS+/AgCGBiCdSmMXUFmQtFJdxqpTSTs7HH2dl/1ed2xpnqPQ9wXG1j46rI2uQZE7VdHNqhuphtRTy9aXvMBWyciWMPpQGt1WLj3S3Poc2viiPfX0q7/94/uffvzxf/89//N3AKCIaDpnY/OBvLbJN3z91srK9Ezs/VRqembarDOIFfr0QhGOC00srtoDC5rBZcPIGhS8p45sK27sMYfuypYeSeInZaFNTWxHs/ZEdevx2pvvf/jPz3/5+7//+sPPA7GtXybny9SKxks8vandF1Ba7JDF5rzqE5occFZVBqUijSTAlip5jV0i95jYM64YWlYlz1SxXet7J9DtE8XGeeXSI8XMjmZqS7Lzkn//pWXn192bz6eOXoe3z3NkTgCQODS30ujq5BubhOZmsaahXKlnlsuNTS65yakyt3KluiKxrghqJtR14cx9VOdbxf2zpMG4fW2vPrEnvvWpZG5H6F8WjKeMF9/Z/vhP8Z0T9sI+O3WBbw5ibKMApKPxPNHE7GKL+6qlzT3+TuytiZkOrz+2uBocvTG9sOIfm8lhQ3i6GEEWAklrhsyO13lo1n62K2gei1Pc45m2MLFrlnEtYZl7v/Puh6zwOi5wp2BiG2cexl8KAJCOAVnELFIxqpiDYvBzGII8RQ2+yggj8dKwDEQeD0GTZNMVKLocQRFgBHWZCjvgmADHDARWjCOQ6QzBW4JZ9T6SsCVN2wfT9sP0PpR1NBPqJpm82SLrL4pgmPw8Bo+u0rKMTUxzC6/VTbG6EExRGombTpfDaVIMG0JJLYAFwYoUQOkEohagcsFqe2H6HkJ4g+xfzWj0Y6zDSKUT6wgi22/AqBDIYJK1zmyrDwBsPsCSc5gCvEpHNNTjtWaCQpPNEMBy6XAyN5NankkVY3kaAl+LKBAhiqQIujpL6cjuieJCCVTvVGE4SQptZLYF041dSE8IF1rBhROgyo6uaMSo7ekNPQCgckEaCrArAWQAuEKQgQNwIoxcml4qQVRoETIzXGrGGt0o85UMgS5NWAfTOuF6Z4bhMsJ8JavahtS2Yp0+tCeIDcznL96nrB2QV/aw1+NF7RFc8wDS2P5/cisl47jPE00AAAAASUVORK5CYII=" nextheight="900" nextwidth="1600" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><h1 id="h-verifiable-compute-and-stage-2-security" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Verifiable Compute and Stage 2 Security</strong></h1><p>As the curtain closes on 2025, we look back at a year where Cartesi shifted from building the foundation to proving the resilience of its architecture on the world stage. From achieving <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1965762238721237282?s=20"><strong><u>Stage 2 status on L2BEAT</u></strong></a> to integrating ZK primitives into the RISC-V VM, the ecosystem has moved closer to the vision of a fully decentralized, Linux-powered future that allows developers to do more in Web3 and build with any code while inheriting Ethereum’s security.</p><p>Here is a look at the milestones that defined 2025.</p><h3 id="h-reaching-the-gold-standard-stage-2-rollups" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>Reaching the Gold Standard: Stage 2 Rollups</strong></h3><p>The biggest breakthrough of the year arrived in June with the mainnet launch of the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1935714339635569115?s=20"><strong><u>PRT Honeypot</u></strong></a>. This was not just another dApp launch. It marked the debut of our Permissionless Refereed Tournaments (PRT) fraud-proof system, acting live on mainnet and securing an initial bounty of $1,000 in CTSI tokens.</p><p>By integrating PRT, Cartesi became one of only three projects to meet the rigorous <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary?filters=%7B%22stage%22%3A%7B%22values%22%3A%5B%22Stage+2%22%5D%7D%7D"><strong><u>Stage 2 requirements on L2BEAT</u></strong></a>. This milestone showcased that Cartesi’s security model is truly permissionless. Anyone can now become a validator and challenge computations onchain, ensuring the network remains trustless and resistant to Sybil attacks.</p><h3 id="h-resilience-through-testing-the-honeypot-journey" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>Resilience Through Testing: The Honeypot Journey</strong></h3><p>True maturity is shown in how a protocol handles challenges. In October, we conducted a real-world stress test for the PRT dispute game and identified a temporary <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/blog/prt_honeypot_postmortem/"><strong><u>liveness bug</u></strong></a>. Rather than a setback, the swift identification and fix served as a testament to the R&amp;D unit’s transparency and the protocol’s hardening. This spirit of "shipping and refining" is what allowed the Honeypot to return to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/projects/cartesi-prt-honeypot-v2"><strong><u>L2BEAT</u></strong></a> stronger than ever, proving that Cartesi’s security is earned through battle. So the challenge continues for hackers to put <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://honeypot.cartesi.io/"><strong><u>PRT Honeypot v2</u></strong></a> to the test, now featuring <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/2001683990429016350?s=20"><strong><u>a live banner</u></strong></a> that showcases ongoing disputes with bounty rewards expected to increase throughout 2026.</p><h3 id="h-the-evolution-of-the-fraud-proof-systems" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>The Evolution of the Fraud-Proof Systems</strong></h3><p>To move even further in strengthening the architecture, Cartesi successfully implemented the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1988970199794741582?s=20"><strong><u>PRT Bond mechanism</u></strong></a>. By requiring participants to post a bond, this created a powerful economic deterrent against frivolous disputes and delay attacks, ensuring that honesty is not just expected, but incentivized.</p><p>We also saw the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/GCdePaula_/status/1895120643793797128"><strong><u>"Dave" fraud-proof algorithm</u></strong></a> move beyond research. Designed to be even more performant than the initial PRT system, Dave focuses on improving liveness and on an economic model that makes delay attacks unfeasible, and its capabilities have been <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/donnoh_eth/status/1895131860675797143?s=20"><strong><u>praised by well-known voices</u></strong></a> in the space.</p><h3 id="h-cartesi-machine-upgrades" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>Cartesi Machine Upgrades</strong></h3><p>2025 saw significant upgrades to the heart of our tech stack. The release of Cartesi Machine Emulator v0.19.0 introduced primitives supporting ZK verification of Machine execution. This is a foundational step toward a hybrid future where optimistic rollups can leverage zero-knowledge proofs for faster finality.</p><h3 id="h-strengthening-the-infrastructure-node-v2-and-cli" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>Strengthening the Infrastructure: Node V2 and CLI</strong></h3><p>Our developer experience took a massive leap forward as Node V2 reached "feature complete" status. With the new JSON-RPC API and optimized startup times (now just 3 seconds), building complex dApps has become significantly more efficient. The Cartesi CLI was also overhauled to support Rollups and to facilitate early exploration of modular architectures, including proof-of-concept integrations with external Data Availability layers such as Espresso and Avail, delivered as part of an experimental release.</p><h3 id="h-ecosystem-growth-ai-gaming-and-beyond" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem Growth: AI, Gaming, and Beyond</strong></h3><p>The Cartesi ecosystem continues to be the premier destination for high-compute dApp prototypes that are impossible on traditional VMs.</p><ul><li><p><strong>Onchain AI:</strong> The "ThinkChain" proof of concept, born from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/blog/experiment-week-3-recap/"><strong><u>Cartesi Experiment Week #3</u></strong></a> run in collaboration with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/eigencloud"><strong><u>EigenCloud</u></strong></a>, made headlines by bringing fully trust-minimized LLM inference onchain using DeepSeek. This demonstrated that Cartesi is the only stack capable of running standard AI libraries like TensorFlow and PyTorch within a decentralized framework.</p></li><li><p><strong>Gaming:</strong> <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rives.io/"><strong><u>RIVES</u></strong></a>, the onchain gaming console, moved to Node V2 and continued to push the boundaries of verifiable play. Meanwhile, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ZacPrater/status/1889355600816951497?s=20"><strong><u>World Tycoon</u></strong></a> prototype brought SimCity-style economics to the blockchain, allowing players to tokenize their in-game cities as NFTs.</p></li><li><p><strong>DeFi:</strong> Projects like <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/LocaleNet"><strong><u>Locale Network</u></strong></a> utilized the stack to create sophisticated lending and investment tools that rely on real-time data transparency and complex offchain calculations.</p></li></ul><h3 id="h-cartesi-x-l2beat-partnership-fund" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>Cartesi x L2BEAT Partnership Fund</strong></h3><p>This past year, ecosystem growth also included <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/l2beat/status/1971556291353977213?s=20"><strong><u>Cartesi joining L2BEAT’s Partnership Fund</u></strong></a>. Since <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary"><strong><u>L2BEAT</u></strong></a> is the industry ‘source of truth’ for Layer 2 security and decentralization, by joining the fund, Cartesi is signaling its commitment to continue supporting the security standards and public goods that benefit the entire Ethereum scaling roadmap, raising the bar for Ethereum’s trustless principles.</p><h3 id="h-foundation-and-community-shared-commitment" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>Foundation and Community: Shared Commitment</strong></h3><p>The Cartesi Foundation reaffirmed its long-term belief in the ecosystem this year through a strategic <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1947642874797166677?s=20"><strong><u>open market purchase of $500,000 worth of CTSI</u></strong></a>, strengthening confidence in its long-term trajectory. And speaking of confidence, Cartesi has also become part of the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1946244329086787879?s=20"><strong><u>Strategic ETH Reserve</u></strong></a>, reinforcing its radical focus and deep commitment to contributing to Ethereum’s future. As every year, a detailed transparency report will follow in January, providing an overview of the state of our finances and ecosystem expenses.</p><h3 id="h-a-global-presence" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>A Global Presence</strong></h3><p>From <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1894071411305595164?s=20"><strong><u>ETHDenver</u></strong></a> to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1991869330787844285?s=20"><strong><u>Devconnect Argentina</u></strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1987884249731784927?s=20"><strong><u>ETHLatam</u></strong></a>, followed by the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/CryptoCyn/status/1978773371115430390?s=20"><strong><u>European Blockchain Convention</u></strong></a>, Cartesi contributors were on the ground worldwide. We strengthened our presence at major events, deepened our footprint in Brazil through PR initiatives and academic courses, and expanded our technical reach through the now-concluded Cartesi Grants Program, which funded meaningful work such as the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/MichaelAsiedu_/status/1904123550463557834?s=20"><strong><u>RISC Zero</u></strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1960688814479081558?s=20"><strong><u>Chainlink Automation</u></strong></a> integrations. On the press front, for an overview of Cartesi’s global media coverage this year, our PR partner <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://marketacross.com/"><strong><u>MarketAcross</u></strong></a> has compiled a coverage book, available <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://marketacross.coveragebook.com/b/9c9846e674e5b709"><strong><u>here</u></strong></a>.</p><h3 id="h-education-and-expertise" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>Education and Expertise</strong></h3><p>Cartesi has been taught at multiple universities in Brazil through academic programs led by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/in/antonio-rocha-02754099/"><strong><u>Professor Antonio Rocha</u></strong></a> from Universidade Federal Fluminense (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.uff.br/"><strong><u>UFF</u></strong></a>), bringing blockchain, Web3, and Cartesi technology into the classroom.</p><p>In July, registrations opened for a course titled “<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1941490000241230316?s=20"><strong><u>Intro to Blockchain, Web3, and Rollups</u></strong></a>”, developed for national institutions as part of the broader ILIADA project, supported by Brazil’s Ministry of Science, Technology, and Innovation. In addition, new university courses continued into late 2025, such as the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1965399851342201076?s=20"><strong><u>“Blockchain, Web3, and Cartesi Rollups”</u></strong></a> course offered online at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ufba.br/"><strong><u>UFBA</u></strong></a>, also taught by Antonio Rocha.</p><p>These initiatives were aimed at preparing future Web3 builders and researchers and included hands-on development with Cartesi Rollups, blockchain fundamentals, and related Web3 topics, demonstrating real engagement and uptake within the academic community.</p><p>On another front, co-founder Diego Nehab presented “<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1960356574976987231?s=20"><strong><u>Enshrine RISC-V</u></strong></a>” during ETHProof Call #4, the Ethereum Foundation’s research forum with Vitalik’s presence, outlining why the RISC-V privileged ISA matters, what Cartesi unlocks by supporting it, and why Ethereum L1 should consider it on the path to enshrining RISC-V.</p><h3 id="h-looking-ahead-to-2026" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0"><strong>Looking Ahead to 2026</strong></h3><p>The progress made in 2025 has set a high bar. We enter the new year with a battle-tested fraud-proof system, a feature-rich developer stack, and a mature vision of radical focus on building what lasts, supported by a community of builders and contributors dedicated to helping <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/blog/engineering_ethereum_future/"><strong><u>engineer Ethereum’s future</u></strong></a>.</p><p>Thank you for being part of this journey. Let’s keep pushing the boundaries of what is possible onchain.</p><p><strong>Goodbye 2025. See you in 2026.</strong></p><br>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates #11, 2025]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-11-2025</link>
            <guid>t4gKT5IY9TCLO1QWGvMF</guid>
            <pubDate>Mon, 08 Dec 2025 18:02:37 GMT</pubDate>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0fd7760defc7fa39a384326c4f9522c0ba907b94fb4d7af3f04f23d4a7b1dba2.png" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAASCAIAAAC1qksFAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGTUlEQVR4nC1UeVDTdxb/hJBwJSFblHDfRI5WJBC5ghyjIUhA2wRaQJQqNxoM7srCLgJyVDygU6m7FZVOmZXpFBtrqbuWylgGxJViB7eoFXApWxFrDCSQBBKS785vZ2fevHnz/vh85n3e5z3AwQVsHly9sckbgmQ3WSH2FEFyCEkHECFDiBT8LPiK4Z4Ij0R4JsJTBO9E+O6AtwgecXDbDrcouEbCNeL/BT8FMZnghcHBA9uloAg4m6nsyKPlF5df+CS3r593+y597DFtcBqqh9xro+i6jsoOSKsQvx9bZQiQwDMF7jvgkQSvFPilwDcJfkkISEFwKkJ3ISYLPlFwC0NSNuy4rjRHl6i0jFj5PpRUoafP5eadjMnH9jOLTi8Je5lkrxPuGmGpieNzYjeltx1bQP8EOq+jphuFbdh9FPEHEfYO/MTwFyNWjkARhFIExmObGJnFiPa0CXCxa2w48WFPL443Bn/5bf3Q+JcPpj/9t4altji9JE4LxOkFYb0meXqiMBK2lnD0VLCXCEttublsuPTsJe3WJHpH0HAF7ygQuxfCTIomQowcBUR+EPrQPVzYNv7hKKnOb7n82dn+W31jj759bj9tZL2ioFlq89DSCtkwr5vNM7qVv75adfrNclq7/p1W/8Rkek6sN9YtXEIcF7Qoa4GkCEnv4q2dCBIh+yii/eg7gxHgzoRHGIqrJYqOtBOf7Tt/+/anT/94b4WtI+wVMmM0jq8apwxr/zGZ1Vbrksn8T53hqlY/bjLPWix3VozzBsNlo8V+dhmKVkiLkFqAiDQEJWB3Ebb7YFcwIrfwwPaGOBsljVB0oOlaXOddm8EFtpbItaZHJvNP5o0XVusysb6yWufNlmfrJoXacGZlbWRjY4JYVDrD+eVV9rIFbVcgq0ByHhJlCIhDdCYiXPG+JFxZrQyJS/UtrMDZy+6tPTj9Obpv0+893fJckzE5+/nC4rRO83B1dWRtfdiw9sxiVVvN2fM62/sa+xlt2mtDutrgML/qMLeErEKIsiEtQWoe/BNQ1Q5HJkMoFBwsr5TkFSY3n6pWfVX81U3p379P/uFR5NNf3pj+pXrs4f5v7h4cmlA8nqt6udSrM6r0a4NrRuZPr+kjGtvRJdt7Gtt7GodZC1R3aABc/JBTjYxD8I9HXjXAZHN8tvhHbN+UkIq6hm0f/+VAvypkYNBu5lfHRS1r2Wg/o0HvA/SM0/4xZXNnmj46x5z6jTHxgvHjMmPCyBg3Mn7QMyfXOXrC0hgQuxOCNFSdRmk9NcHeCoBmHxabmJ5bcLih+b1zXe3Xb1y69V39wGDO8FjZ1M91s3MsjZ4+OgfVLK79jBtPoHqK/ln68CJnldo/5eNFwln7H7pqCKnvIUqM9GJOaT34qWi5ArB5NK9AfnxK2vulCZXHhVW1SW0fCZrP41S3qOsqrg3ZDE1gYMzpldluSmd7f5HxQG0/rXc2EWcrcZzfSJ0hzhuES0ilTs9s6kLMHgjFCfLdXjmF2LYbV4cArid8+Ir6puxjtRm1J/3L/gRJKUo+QNkHUJ5CzXlc6HfuvcUxrnEJ4Zis9NEnXEIhOlsJc0pDH37B+PFXto60Tj6Dsp263hRZeU1esDwPgr248A3gE8IW7mj5pDsqryjm4BFlSda+zPC2cqEkXw5ZNZq6UdOJ1h70DGDgPgbGUHcRH6vQP4b+EVwdQd8o62Tn4EeSHXV12FUMNz74CQgQQVyIms7wtg+B6HiER4EfjeQ9iJfkivxOZHp1yja/LZciW4mur3G8C6VNKGqAshMF9Ug/hORcZFbgD104/QW6R9DYrTuD3xdHwjcRmwLA8YR7KJovBv1rMbe3FxDEIjTaXpCwWbwXmQWQ7kfBURzp5JY2hORXoeocqjpQ1oqai2j5G0V2+Awq2ikjKs6htQ+XhnHqetzxP2coyyn7Z5VTr/5QPZp7kHYAlScBHz68gu2ceVyvIPqbcZCXQVaOmg7IK8AXQSBmhCbTAuIgPkCJc+QsSpuh7EBlO0rbKDhpCeSHkV+LwpMobYRMiZxjKKhFai7wO/hEA3Yc2LIBBmj2sHFEYCS8QuEVhuAYbE1GbAbCRfCPQEQihGKq7x2OIAH83gQvEE482LmCuQm2HGxNRFkTso8hvYiS0S0MTp54w++/vlmlwj6BnHQAAAAASUVORK5CYII=" nextheight="900" nextwidth="1600" class="image-node embed"><figcaption htmlattributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>November vanished in a blink, launching us straight into the final month of the quarter and the year. But before it flew by, it delivered a power-packed period of activity! Tech advancements, major Dev Advocacy and Ecosystem Growth wins, the highly-anticipated launch of PRT Honeypot v2 (now featuring bonds and improved security - <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary?filters=%7B%22stage%22%3A%7B%22values%22%3A%5B%22Stage+2%22%5D%7D%7D"><strong><u>hello again Stage 2</u></strong></a>), and the show-stealing momentum from Devconnect Argentina after an eventful weekend at ETHLatam in Brazil, all made headlines.<br><br>The excitement didn't stop there: CTSI stakers are set to be rewarded by Espresso's airdrop, and podcasts, media features, and community threads have been well served! Let’s dive into the ecosystem highlights from last month.</p><h1 id="h-tech" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h1><p>November has brought us an upgrade to the fraud proof system with stronger security and smoother developer experience. The features we introduced in the last monthly updates have now moved from sneak-peek to a public release, delivering the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/dave/releases/tag/v2.0.0"><strong><u>Permissionless Refereed Tournament(PRT) v2.0.0</u></strong></a> system. The new version brings major on-chain improvements - including revertible advance requests, a Sybil-resistant bond mechanism, reduced deployment transactions, and improved interfaces and events, while also resolving a fail-stop bug.</p><p>Off-chain, reliability is boosted through safer snapshot cleanup, fixes for empty-epoch panics and sentinel errors, and a leaner node client. With artifacts now published directly via GitHub releases and improved devnet builds, PRT 2.0 is now more secure, polished, and developer-friendly.</p><p>With the old Honeypot gone, the new Honeypot was poised to resurface. Secured by Cartesi's PRT fraud-proof system, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://honeypot.cartesi.io/"><strong><u>Honeypot</u></strong></a> is our bug-bounty rollup application designed to test the security of Cartesi's appchain framework. Anyone can put it to test by hacking the application and draining the funds locked in the rollup contract.&nbsp;</p><p>After PRT-Honeypot v1 surfaced a liveness bug, a new <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/honeypot/releases/tag/v3.0.0"><strong><u>version</u></strong></a> has now been deployed on Ethereum mainnet, complete with the upgraded PRT v2 algorithm discussed above, which brings Honeypot back to the L2BEAT dashboard as a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary?filters=%7B%22stage%22%3A%7B%22values%22%3A%5B%22Stage+2%22%5D%7D%7D"><strong><u>Stage 2 rollup</u></strong></a>.</p><div data-type="twitter" tweetid="1988970199794741582"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/cartesiproject">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/4291fff2c5ccf866a9925c2e233752b1782f4d05f857cf466d6379b32f250ae3.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/cartesiproject" class="twitter-displayname">Cartesi</a>
              <p><a target="_blank" href="https://twitter.com/cartesiproject" class="twitter-username">@cartesiproject</a></p>
    
            </div>
            <a href="https://twitter.com/cartesiproject/status/1988970199794741582" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      PRT Honeypot v2 is live on mainnet, now protected by the PRT fraud-proof system with a bond and refund mechanism.<br><br>The new design strengthens protection against delay attacks while introducing partial refunds for honest validators. Read more about it ↓ 
      <div class="twitter-media">
      <img class="twitter-image" src="https://pbs.twimg.com/amplify_video_thumb/1988970148078972928/img/gBAyTEe1EmptYMSq.jpg"> 
    </div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/cartesiproject/status/1988970199794741582" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            30
          </a>
          <a target="_blank" href="https://twitter.com/cartesiproject/status/1988970199794741582"><p>3:00 PM • Nov 13, 2025</p></a>
        </div>
    
  </div> 
  </div><p>The onchain Cartesi machine has also seen progress. And Cartesi RISC-V Solidity Emulator - the onchain host implementation of the Cartesi Machine Specification - has advanced with a new PR that introduces enhanced memory translation capabilities. The update adds support for Translation Lookaside Buffer (TLB) management through new ECALL functions and a dedicated shadow TLB region in memory, improving the fidelity and precision of the Cartesi Machine’s low-level execution model. Read more details on the PR <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/machine-solidity-step/pull/83"><strong><u>here</u></strong></a>.</p><h1 id="h-developer-tooling" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Tooling</strong></h1><p>On Developer Experience, our dev advocates have been busy shipping explainer threads and doubling down on X posting. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia"><strong><u>João Garcia</u></strong></a> shared insights on fraud proofs and ZK proofs, and why both still matter as core validation mechanisms for rollups in a ZK-leaning world. Check out this overview of the trade-offs, and intuitions about a future where hybrid models emerge, with fraud proofs as fallback and ZK amplifying verification:</p><div data-type="twitter" tweetid="1993323797190259030"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/joaopdgarcia">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/6cc8173bf161dba1a7a2d0fd62aecb4820fa8422fc067a9d97d6a2677f45a84b.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-displayname">Joao Garcia</a>
              <p><a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-username">@joaopdgarcia</a></p>
    
            </div>
            <a href="https://twitter.com/joaopdgarcia/status/1993323797190259030" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      The role of fraud-proofs in a ZK World<br><br>Throughout <a class="twitter-content-link" href="https://twitter.com/EFDevcon" target="_blank">@EFDevcon</a>, the Stage 2 Rollups stand kept the <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> team busy, walking builders through fraud proofs and zk proofs.<br><br>Let’s talk about validation mechanisms in Web3 and why fraud proofs still matter.
      
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/joaopdgarcia/status/1993323797190259030" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            34
          </a>
          <a target="_blank" href="https://twitter.com/joaopdgarcia/status/1993323797190259030"><p>3:20 PM • Nov 25, 2025</p></a>
        </div>
    
  </div> 
  </div><p>On another topic, contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/riseandshaheen"><strong><u>Shaheen Admed</u></strong></a> shared an overview breaking down the developer experience across <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://aztec.network/"><strong><u>Aztec</u></strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://risczero.com/"><strong><u>Risc Zero</u></strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://arbitrum.io/"><strong><u>Arbitrum</u></strong></a> Stylus, and Cartesi, four protocols that broaden Ethereum’s execution options and enable development beyond Solidity through Noir, RISC-V, and WASM. Make sure you don’t miss these key takeaways from the comparison, and drop a follow to stay connected:</p><div data-type="twitter" tweetid="1993968058952778133"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/riseandshaheen">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/0223e8fc65accdf246638cea3b14a2b6357ad42981a5cb3e9f16584f8020fb47.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/riseandshaheen" class="twitter-displayname">Shaheen Ahmed 🐧</a>
              <p><a target="_blank" href="https://twitter.com/riseandshaheen" class="twitter-username">@riseandshaheen</a></p>
    
            </div>
            <a href="https://twitter.com/riseandshaheen/status/1993968058952778133" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      How is the DevEx evolving in Web3?<br><br>I've been thinking about this a lot lately and did some experiments with my homies <a class="twitter-content-link" href="https://twitter.com/joaopdgarcia" target="_blank">@joaopdgarcia</a> &amp; <a class="twitter-content-link" href="https://twitter.com/fergo617" target="_blank">@fergo617</a><br><br>Here are some insights we gathered on <a class="twitter-content-link" href="https://twitter.com/aztecnetwork" target="_blank">@aztecnetwork</a> <a class="twitter-content-link" href="https://twitter.com/RiscZero" target="_blank">@RiscZero</a> <a class="twitter-content-link" href="https://twitter.com/arbitrum" target="_blank">@arbitrum</a> Stylus, and of course <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> <img class="twitter-emoji" draggable="false" alt="🐧" src="https://abs-0.twimg.com/emoji/v2/72x72/1f427.png"> 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/00d1190452052f3dd73b6977be70cdb8e848738496811f7de902c8b60725aeca.jpg"></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/riseandshaheen/status/1993968058952778133" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            36
          </a>
          <a target="_blank" href="https://twitter.com/riseandshaheen/status/1993968058952778133"><p>10:00 AM • Nov 27, 2025</p></a>
        </div>
    
  </div> 
  </div><p>And that’s not all. If you thought you couldn’t vibe with coding a Cartesi application, think again. Shaheen walks you through a quick voting application built with Cursor in this tutorial <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/riseandshaheen/status/1986313297755578424"><strong><u>here</u></strong></a>.</p><h1 id="h-ecosystem" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h1><p>Cartesi has launched a “time to deploy” <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/Mugen-Builders/cartesi-challenge"><strong><u>challenge</u></strong></a> with students from the Cartesi-based course at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.uff.br/"><strong><u>Fluminense Federal University</u></strong></a> (UFF in Brazil), aimed at better understanding and improving the developer journey. Students will build a simple Beacon crowdfunding app to help measure how efficiently newcomers navigate Cartesi’s documentation, tooling, and asset workflows. By implementing the backend logic, testing deposits, and emitting the final output when the goal is reached, they will generate valuable metrics for refining resources and onboarding, directly contributing to Cartesi’s continuous improvement efforts.</p><h1 id="h-events" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Events</strong></h1><p>November kicked off with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethlatam.org/"><strong><u>ETHLatam</u></strong></a> in São Paulo, Brazil, and progressed strongly with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://devconnect.org/"><strong><u>Devconnect</u></strong></a> in Buenos Aires, Argentina.ETHLatam has seen great participation, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/VitalikButerin"><strong><u>Vitalik Buterin</u></strong></a>’s first visit to Brazil highlighted the region’s growth, with energy doubling when he took the stage. Our contributors didn’t hold back either. Cartesi was represented at the main event by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni"><strong><u>Carlo Fragni</u></strong></a>, who presented on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/rives_io"><strong><u>RIVES</u></strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/henrimarlon_"><strong><u>Henrique Marlon</u></strong></a>, who spoke about zk proofs and fraud proofs, highlighting that there is no silver bullet and that both solutions have their matching use cases:</p><div data-type="twitter" tweetid="1987558100526620676"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/henrimarlon_">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/2cb519559408358d06a5bf313c30964303b8928822c76d23b2df97f23667629c.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/henrimarlon_" class="twitter-displayname">Henrique Marlon 🐝🐧</a>
              <p><a target="_blank" href="https://twitter.com/henrimarlon_" class="twitter-username">@henrimarlon_</a></p>
    
            </div>
            <a href="https://twitter.com/henrimarlon_/status/1987558100526620676" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      It was a pleasure to be a speaker at <a class="twitter-content-link" href="https://twitter.com/ethlatam" target="_blank">@ethlatam</a> this year. A historic milestone for me, considering I began developing in blockchain at events like these. I joined a panel on “Fraud-Proofs in a ZK World” and shared a bit about the research that <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> has been doing. 
      <div class="twitter-media"><div class="twitter-two-images"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/bd40e57dcc4407aa74c671a9c798df6fcd82c8c737e76e6ee08d45301bad1272.jpg"></div></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/henrimarlon_/status/1987558100526620676" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            26
          </a>
          <a target="_blank" href="https://twitter.com/henrimarlon_/status/1987558100526620676"><p>5:29 PM • Nov 9, 2025</p></a>
        </div>
    
  </div> 
  </div><p>And a sneak peek at their proof of presence during Vitalik’s visit:</p><div data-type="twitter" tweetid="1987895247175614672"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/carlofragni">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/14aa9f303d8cb40166bcd0d5b30b974931e4daeb3f66f9e1e2d50fb75ffb3896.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/carlofragni" class="twitter-displayname">Carlo Fragni 🐧🐝</a>
              <p><a target="_blank" href="https://twitter.com/carlofragni" class="twitter-username">@carlofragni</a></p>
    
            </div>
            <a href="https://twitter.com/carlofragni/status/1987895247175614672" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Proof of presence with <a class="twitter-content-link" href="https://twitter.com/VitalikButerin" target="_blank">@VitalikButerin</a> along with my amazing pal <a class="twitter-content-link" href="https://twitter.com/henrimarlon_" target="_blank">@henrimarlon_</a> from <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> and the incredible local community at <a class="twitter-content-link" href="https://twitter.com/ethlatam" target="_blank">@ethlatam</a> . Epic! <br><br>P.S.: Couldn't find us? Bottom right <img class="twitter-emoji" draggable="false" alt="😊" src="https://abs-0.twimg.com/emoji/v2/72x72/1f60a.png"> 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/403d55a4373b4956ea47e3883d918941f3a7c03715af650fc939064a2b4768f6.jpg"></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/carlofragni/status/1987895247175614672" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            26
          </a>
          <a target="_blank" href="https://twitter.com/carlofragni/status/1987895247175614672"><p>3:48 PM • Nov 10, 2025</p></a>
        </div>
    
  </div> 
  </div><p>At the side events, our Ecosystem Growth Lead, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bmaia_expat"><strong><u>Bruno Maia</u></strong></a>, spoke at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ModularCrypto/status/1986915343605113245?s=20"><strong><u>Arbilink</u></strong></a>, Arbitrum’s Portuguese community event organized by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ModularCrypto"><strong><u>Modular Crypto</u></strong></a>, on a panel about the future of payments and stablecoins in LATAM. And he also fit in an in-person interview on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/exame"><strong><u>Exame</u></strong></a>’s Future of Monday podcast, Brazil’s top financial media outlet, that you can watch <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=j7l15KwVslw"><strong><u>here</u></strong></a> if you speak Portuguese.</p><p>Later in the month, it was time for the most awaited event of the year, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/EFDevcon"><strong><u>Devconnect Argentina</u></strong></a>, and it did not disappoint. Cartesi marked its presence in the L2District and cohosted a dedicated Stage 2 rollups stand with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary"><strong><u>L2BEAT</u></strong></a></p><div data-type="twitter" tweetid="1990843843554537557"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/jesuviloria_">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/01f8ebae61b74d056de772e17ba8645b4f20ae2e451a02472f7cdedff66142e0.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/jesuviloria_" class="twitter-displayname">Jesus Viloria</a>
              <p><a target="_blank" href="https://twitter.com/jesuviloria_" class="twitter-username">@jesuviloria_</a></p>
    
            </div>
            <a href="https://twitter.com/jesuviloria_/status/1990843843554537557" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      On <a class="twitter-content-link" href="https://twitter.com/EFDevcon" target="_blank">@EFDevcon</a> with <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> , <a class="twitter-content-link" href="https://twitter.com/l2beat" target="_blank">@l2beat</a> learning about L2 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/d3ad9acb0bc6209c7114d7a8c3465cb39e3f1273faec949d968ef4828d653c6d.jpg"></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/jesuviloria_/status/1990843843554537557" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            17
          </a>
          <a target="_blank" href="https://twitter.com/jesuviloria_/status/1990843843554537557"><p>7:05 PM • Nov 18, 2025</p></a>
        </div>
    
  </div> 
  </div><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1990782078431203527?s=20"><strong><u>Swag</u></strong></a> was on point, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/GeeAkpan/status/1990472386991567003?s=20"><strong><u>photos</u></strong></a> on the ground were snapped, the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni/status/1990839120994668719?s=20"><strong><u>venue</u></strong></a> was captured, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/0xbalala/status/1990822293430280466?s=20"><strong><u>Stage 2 glasses</u></strong></a> made history:</p><div data-type="twitter" tweetid="1990520330650333200"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/carlofragni">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/14aa9f303d8cb40166bcd0d5b30b974931e4daeb3f66f9e1e2d50fb75ffb3896.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/carlofragni" class="twitter-displayname">Carlo Fragni 🐧🐝</a>
              <p><a target="_blank" href="https://twitter.com/carlofragni" class="twitter-username">@carlofragni</a></p>
    
            </div>
            <a href="https://twitter.com/carlofragni/status/1990520330650333200" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Proud to be stage 2! Want to know more? Come talk to the <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> and <a class="twitter-content-link" href="https://twitter.com/l2beat" target="_blank">@l2beat</a> team right by the L2 District at <a class="twitter-content-link" href="https://twitter.com/EFDevcon" target="_blank">@EFDevcon</a> 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/073322cd5680a2cbfeebfe440f81367bef959383d4359393ae81e57892c8de58.jpg"></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/carlofragni/status/1990520330650333200" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            33
          </a>
          <a target="_blank" href="https://twitter.com/carlofragni/status/1990520330650333200"><p>9:40 PM • Nov 17, 2025</p></a>
        </div>
    
  </div> 
  </div><p>Throughout the week, contributors engaged participants on rollup decentralization and security, the need for more Stage 2 rollups, and the L2 risk rosette features essential to strengthening the Ethereum ecosystem. And in case you’re wondering what the fuss is about Cartesi being Stage 2 and why it matters, get up to speed with this thread <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1991144494373487088?s=20"><strong><u>here</u></strong></a> and check out the trustless t-shirts that got everyone hyped, through the lens of a local participant:</p><div data-type="twitter" tweetid="1990422579702538653"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/Demian_C1998">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/ee1566434ec54cde03b3db0f2f5f98a2649ee9c433b575b75695baa882f28e89.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/Demian_C1998" class="twitter-displayname">Demián</a>
              <p><a target="_blank" href="https://twitter.com/Demian_C1998" class="twitter-username">@Demian_C1998</a></p>
    
            </div>
            <a href="https://twitter.com/Demian_C1998/status/1990422579702538653" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Acá aprendiendo de Rollups con <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> <a class="twitter-content-link" href="https://twitter.com/l2beat" target="_blank">@l2beat</a> 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/67625961d28e0a1e6b77fae3654cfe808afdf343e0808fdd2f071646a08240b9.jpg"></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/Demian_C1998/status/1990422579702538653" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            4
          </a>
          <a target="_blank" href="https://twitter.com/Demian_C1998/status/1990422579702538653"><p>3:11 PM • Nov 17, 2025</p></a>
        </div>
    
  </div> 
  </div><p>A star emerged among our contributors who worked hard on the ground to ensure Cartesi was well-represented, to connect and make the most out of leads and networking opportunities, and even to create content and post updates for the community to get a sneak peek, firsthand, of what was happening there.</p><p>A much-deserved kudos is due to our Solution Architect and contributor to the Ecosystem Growth Unit, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni"><strong><u>Carlo Fragni</u></strong></a>. Click that button and offer him your follow on X in appreciation!</p><p>To wrap up Devconnect, here’s a quick roundup of the week’s top highlights:</p><div data-type="twitter" tweetid="1991869330787844285"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/cartesiproject">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/4291fff2c5ccf866a9925c2e233752b1782f4d05f857cf466d6379b32f250ae3.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/cartesiproject" class="twitter-displayname">Cartesi</a>
              <p><a target="_blank" href="https://twitter.com/cartesiproject" class="twitter-username">@cartesiproject</a></p>
    
            </div>
            <a href="https://twitter.com/cartesiproject/status/1991869330787844285" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      It’s Friday of the <a class="twitter-content-link" href="https://twitter.com/EFDevcon" target="_blank">@EFDevcon</a> ARG event, so here’s Cartesi Weekly from Devconnect and beyond <img class="twitter-emoji" draggable="false" alt="🐧" src="https://abs-0.twimg.com/emoji/v2/72x72/1f427.png"><br><br>Contributors have been hard at work on the ground, co-hosting the Stage 2 Rollups stand with <a class="twitter-content-link" href="https://twitter.com/l2beat" target="_blank">@l2beat</a>. We loved seeing proofs of presence shared by <a class="twitter-content-link" href="https://twitter.com/GeeAkpan" target="_blank">@GeeAkpan</a> and many others throughout 
      <div class="twitter-media">
      <img class="twitter-image" src="https://pbs.twimg.com/amplify_video_thumb/1991869273770442752/img/dokVXa_Z72pN2BVt.jpg"> 
    </div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/cartesiproject/status/1991869330787844285" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            36
          </a>
          <a target="_blank" href="https://twitter.com/cartesiproject/status/1991869330787844285"><p>3:00 PM • Nov 21, 2025</p></a>
        </div>
    
  </div> 
  </div><h1 id="h-community-and-media" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Community &amp; Media</strong></h1><p>The community has had some great news this past month. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/espressoFNDN"><strong><u>Espresso Foundation</u></strong></a> announced rewards for long-term CTSI stakers. Cartesi’s partner for composability and fast finality (remember the three Cartesi dapp prototypes that were first to integrate Espresso? If not, refresh your memory <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/blog/cartesi_espresso_integration/"><strong><u>here</u></strong></a>) has included the Cartesi community as one of the paths to receive their airdrop. Anyone who has staked CTSI onchain via Cartesi’s Explorer should verify their wallet address as soon as the claim goes live. Stay tuned for updates as the ESP token launch seems to be approaching fast:</p><div data-type="twitter" tweetid="1986871911025123380"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/espressoFNDN">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/11f908465afba48d232e462510a40ea733a453b08e79364517e281fb932b2b81.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/espressoFNDN" class="twitter-displayname">Espresso Foundation</a>
              <p><a target="_blank" href="https://twitter.com/espressoFNDN" class="twitter-username">@espressoFNDN</a></p>
    
            </div>
            <a href="https://twitter.com/espressoFNDN/status/1986871911025123380" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      “Name the project whose path we've shown.”<br><br> CARTESI<br><br><a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> is developer of a Linux-based VM, enabling developers to build blockchain applications in a familiar environment using their favorite languages and libraries.<br><br>Cartesi's team shares our vision of a future in 
      <div class="twitter-media">
      <img class="twitter-image" src="https://pbs.twimg.com/amplify_video_thumb/1986869152724721666/img/2HvfEQ3LIWC-DmjG.jpg"> 
    </div>
      
      <div class="twitter-quoted">
        
  <div class="twitter-quoted twitter-embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/espressoFNDN">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/11f908465afba48d232e462510a40ea733a453b08e79364517e281fb932b2b81.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/espressoFNDN" class="twitter-displayname">Espresso Foundation</a>
              <p><a target="_blank" href="https://twitter.com/espressoFNDN" class="twitter-username">@espressoFNDN</a></p>
    
            </div>
            <a href="https://twitter.com/espressoFNDN/status/1986770357383250397" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Path to TGE #8<br><br>Penguin-powered VM for appchain code.<br>They sought us out, built their own road.<br>Events co-hosted across years past.<br>Time-traveling partnership built to last.<br>Together we forge the futures we've known.<br>Name the project whose path we've shown.
      
      
       
    </div>
    
  </div> 
  
    </div> 
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/espressoFNDN/status/1986871911025123380" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            144
          </a>
          <a target="_blank" href="https://twitter.com/espressoFNDN/status/1986871911025123380"><p>8:02 PM • Nov 7, 2025</p></a>
        </div>
    
  </div> 
  </div><p>On the PR front, Devconnect gave our contributors the chance to do in-person interviews with media outlets like <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/dl_research"><strong><u>DL Research</u></strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/GenzioCo"><strong><u>Genzio</u></strong></a>. Right on the ground at the L2District main venue, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni"><strong><u>Carlo Fragni</u></strong></a> spoke with Eli from Genzio. Watch the interview here:</p><div data-type="twitter" tweetid="1996472111288696838"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/GenzioCo">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/9217456c3f0fd5345dc58a3b465915f209bd45a7b9d2002458127cb38583f518.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/GenzioCo" class="twitter-displayname">Genzio Media &amp; Marketing</a>
              <p><a target="_blank" href="https://twitter.com/GenzioCo" class="twitter-username">@GenzioCo</a></p>
    
            </div>
            <a href="https://twitter.com/GenzioCo/status/1996472111288696838" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Developers want flexibility. Cartesi wants to give it to them.<br><br>During <a class="twitter-content-link" href="https://twitter.com/EFDevcon" target="_blank">@EFDevcon</a>, <a class="twitter-content-link" href="https://twitter.com/LockFryer" target="_blank">@LockFryer</a> joined <a class="twitter-content-link" href="https://twitter.com/carlofragni" target="_blank">@carlofragni</a> from <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> to talk dev trends, real applications being built, and why the Cartesi VM is unlocking new possibilities.<br><br>0:24 - Meet Carlo<br>1:39 - Who’s building 
      <div class="twitter-media">
      <img class="twitter-image" src="https://pbs.twimg.com/amplify_video_thumb/1996467344349044736/img/EIrVstXmUBQ0zXl7.jpg"> 
    </div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/GenzioCo/status/1996472111288696838" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            184
          </a>
          <a target="_blank" href="https://twitter.com/GenzioCo/status/1996472111288696838"><p>7:50 AM • Dec 4, 2025</p></a>
        </div>
    
  </div> 
  </div><p>Meanwhile, Co-Founder <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/felipeargento"><strong><u>Felipe Argento</u></strong></a> walked the DL Research hosts through Cartesi’s journey from an AI marketplace idea to today’s RISC-V-based execution layer, covering Stage 2 and the PRT fraud-proof system with bonds, as well as our Ethereum-first, trustless approach to building systems no one controls. Give it a read:</p><div data-type="twitter" tweetid="1995572745598550081"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/dl_research">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/9c4af7f25f069206a9697aafb679eb218cbe515bde132c688aa52de0351698b3.png">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/dl_research" class="twitter-displayname">DL Research</a>
              <p><a target="_blank" href="https://twitter.com/dl_research" class="twitter-username">@dl_research</a></p>
    
            </div>
            <a href="https://twitter.com/dl_research/status/1995572745598550081" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Honeypots usually spell trouble, but <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> used one to test its rollup security.<br><br>At DevConnect we spoke with cofounder <a class="twitter-content-link" href="https://twitter.com/felipeargento" target="_blank">@felipeargento</a> about Stage 2 decentralisation, Linux-based execution and the move toward permissionless fraud proofs.<br><br><a class="twitter-content-link" href="https://t.co/srLEDYxSdL" target="_blank">dlnews.com/research/inter…</a>
      
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/dl_research/status/1995572745598550081" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            16
          </a>
          <a target="_blank" href="https://twitter.com/dl_research/status/1995572745598550081"><p>8:16 PM • Dec 1, 2025</p></a>
        </div>
    
  </div> 
  </div><p>Our Portuguese-speaking audience and Brazilian community got a treat as well: they could watch a podcast hosted in their native language by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.modularcrypto.xyz/"><strong><u>Modular Crypto</u></strong></a>, featuring our contributor Carlo Fragni, who also authored their latest <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://newsletter.modularcrypto.xyz/p/trump-quer-superpote-ncia-cripto-pump-fun-no-pix"><strong><u>newsletter</u></strong></a> edition at the start of the month.</p><p>Among the community members, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/PerrieDExplorer"><strong><u>Perrie</u></strong></a> did it again and dropped a new banger explainer in response to our Dev Advocacy Lead’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia/status/1993323797190259030?s=20"><strong><u>thread</u></strong></a> about the role of fraud proofs in a ZK world and the related trade-offs. Santa has already rewarded her with a hoodie for always diving in and unpacking tech threads with ease. Totally well deserved, right?</p><div data-type="twitter" tweetid="1993972258277060964"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/PerrieDExplorer">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/89fdc2b7601014237fdda44ebed49a6d8147b0ccb368747ed9b956ffafc8e9ba.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/PerrieDExplorer" class="twitter-displayname">Perrie 🎱</a>
              <p><a target="_blank" href="https://twitter.com/PerrieDExplorer" class="twitter-username">@PerrieDExplorer</a></p>
    
            </div>
            <a href="https://twitter.com/PerrieDExplorer/status/1993972258277060964" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      In a recent thread, <a class="twitter-content-link" href="https://twitter.com/joaopdgarcia" target="_blank">@joaopdgarcia</a> a Cartesi developer explained the difference between fraud proofs and ZK proofs in rollups. <br><br>He described fraud proofs as a way to “reveal lies” by re-executing disputed steps, and ZK proofs as mathematical statements asserting correctness 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/6f6453ef6272d35d45fe551f4889f8268e8e462fb3bf647d2ee45dfbddb6a869.jpg"></div>
      
      <div class="twitter-quoted">
        
  <div class="twitter-quoted twitter-embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/joaopdgarcia">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/6cc8173bf161dba1a7a2d0fd62aecb4820fa8422fc067a9d97d6a2677f45a84b.jpg">
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-displayname">Joao Garcia</a>
              <p><a target="_blank" href="https://twitter.com/joaopdgarcia" class="twitter-username">@joaopdgarcia</a></p>
    
            </div>
            <a href="https://twitter.com/joaopdgarcia/status/1993323797190259030" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png">
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      The role of fraud-proofs in a ZK World<br><br>Throughout <a class="twitter-content-link" href="https://twitter.com/EFDevcon" target="_blank">@EFDevcon</a>, the Stage 2 Rollups stand kept the <a class="twitter-content-link" href="https://twitter.com/cartesiproject" target="_blank">@cartesiproject</a> team busy, walking builders through fraud proofs and zk proofs.<br><br>Let’s talk about validation mechanisms in Web3 and why fraud proofs still matter.
      
      
       
    </div>
    
  </div> 
  
    </div> 
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/PerrieDExplorer/status/1993972258277060964" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            40
          </a>
          <a target="_blank" href="https://twitter.com/PerrieDExplorer/status/1993972258277060964"><p>10:16 AM • Nov 27, 2025</p></a>
        </div>
    
  </div> 
  </div><p>Psst: another hoodie hides in this month’s newsletter edition. The fastest reader to claim it will get it delivered to their door. If you are not yet a subscriber, sign up <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mailchi.mp/cartesi/email-newsletter"><strong><u>here</u></strong></a>.</p><p>And a heads-up for everyone reading this and willing to score some holiday swag: keep your eyes peeled for a campaign counting down the days to Christmas with daily quests. This December it’s raining, or should we say snowing, Cartesi merch packs and hoodies!</p><h1 id="h-thats-a-wrap" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>That’s a Wrap</strong></h1><p>That's all for now after a packed and productive November. From protocol upgrades and developer insights to major conference moments and ecosystem wins, the month pushed Cartesi forward in all the right ways. December is already shaping up to keep that momentum going. Catch you in the next update, and in the meantime keep in touch and follow the latest updates on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/cartesi"><strong><u>Discord</u></strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject"><strong><u>X</u></strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesiproject"><strong><u>Telegram</u></strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://linktr.ee/cartesi"><strong><u>beyond</u></strong></a>.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates #10, 2025]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-10-2025</link>
            <guid>LlGFX52WkpRz01kcMkci</guid>
            <pubDate>Fri, 31 Oct 2025 15:16:28 GMT</pubDate>
            <description><![CDATA[October was a month of technical refinement, educational impact, and increased contributor engagement both online and in real life for Cartesi. Rollups Contracts v2.1.0-alpha.1 went live, the PRT fraud-proof system saw key upgrades, and new developer tools aim to make it easier than ever to test complex decentralized applications. Across media, events, and academic initiatives, contributors amplified Cartesi’s presence, showing how our technology is pushing Ethereum rollups forward, expanding...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/a63d936fea8c14078d9db3023f4b008d65dd4635fd44d7aaeb33f9f175fae0f5.png" alt="" blurdataurl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAASCAIAAAC1qksFAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGUElEQVR4nB2UeVDTdxrGH7U7KEO1Kg2HQG1ARFRqMZxJMCGQkHDEAAkECEfQgJEzgCQKgQjRgKByyRHDIRGQcsghlKLutrUt1l2nrtZrWnHpttVxbZWubl22fnd+zrzzzPvX533e5515AZt3qLJdD1sa7BywbgMc6XDZAved2MKCbwSYEgTHgyUFUwrmm4Ylo5STBG4quGngZyJqP0RqROxDZC6yjMmWMeTXQX0UmZWAzXqstAfeAuxg6wA7Z6xxhcMmvOcLrxD4RVG4kCRwFOAqwE2hNCwdgr2IKcTBU251vcL2UdPVmzzrtI2p16dldHb+0b8I+fLJr589fX7y/gJg54gV72wLFTBEYrh4rGOEuPGiN0tS10YmLxdnIFACTjL4SkTshSgLQhWEWZRfRUXxzNz1XxZvvHhZcvuB/tb31xdffrn44u7vS7O/Lt56/tulp882fvENJv78ZoDN+lx95bGO02s+CNglz4jJKRbm6eIOmbZnayn74RkUOkqN6DzE5GB3PmQl7g2D3y7+u+P+Dzj/Kc5O5ly79c2Ll1d+WeReumo3dnlk4REufIr6LjT0AKsdqRm2NNDew1pXuHhRB9jkjx08BIqpTKKyKagkH9JCyEshK4LBMvPdj23zP8My7JYQ66M1rB2cxsis+PLX6BnHmbG2+wsYmEZtJ2q7gDXOWOtMqb0bnDywYTM8dsKbhYBIcBMhzKTQ8lIk6ZByECk6lLe2XLsz8dPjhOvze2o08wqUsmjv55Sh1gyFZrWpQ/31t+33FjA4g5wq5FUD61wp766eWONCbeDgDtft8GJS5+UkUYlLNJDrkFSODAOUBhgtFddu4ngnhEqWIuYwB1sZW8GNRY4WsSpapvbUvQXO7BwytPBkYZ8esHN6nyNI05TQORHuYdHeMYlbpOk0SbpreuHmAoNfRdN6fbOT0RLY0I+SRuyvRV4dMvX4UAhWHIqP+abmx1aeiDMPIEUNsRL0YFpBFWq6ECrHNh5kBQDN3ZkVLs/RhCcpw9L3JWh0iSXlCkONtKohrqaNZ+rI7ZsQtg/xWvpxpBtFrdB1QmtGkhYqPQqrSpotQfXtkq5htzw9uDLQA+Higx3h8GJjKwc7RVjuzwSbty4o9G1/Lrz84B8GgfSt+D1ILoRMgywjNM3QduFQFyqtMJyDYQDGc6jqw95qlNbr/3qHXmp8OyGbVXcaLDE4CdjKgzcX3hyw4xEch3fZbN80JV+1X11pVGgr0vTVeXWt2XWtipOnsyxDqd0jaB1H1SAaptD4Mc59pb73CBduoH4MjRM4Yk7pHl4WEO6RXRpqOIHdKuQeQYoGlkmEJkKQuKLBCrsQ7oqwCB9FWmS+Zocs3TtF5akqZOuqUFyNIx2o70XzKFpm0PMZLt7pffafM4TY3n0CyyX0X0FuZXRTD+TZYArBFsE8hYErfqf6W5eIzXEzQmOHXxOAxQFfWNLYJDtcFVN6ME1fGZhXhHID2npgNOOoFe1TGJzDxTuNi6/mCHH4L7F/9sfqh88w9bdN2qPivkn3gzUbWXzs0S3/6ruVt36w/vhYYD3/J6mK3tJtJAS0kF3bdkvazpwJVmaq9HqdyeRXrkd1DTp794xPh49cxPjVVbcf97xYmiSki5BjhDgsESdCVt19GFXbzug5z7NOQpLhdNIyQIiJEDMh2qeLCIiJOP2R9YshuAYyvdghH7DYDC6PIRAFp6bTCwpx+Ki4qa2sb0jYNRg0NKu9PV9MKGgIIfI3jRMhjn8Q/8tzopk5z7PTUGpT+yemCSn7ZOjszc8/+scDRmFxlIJryvWGq1+QF5uzOUywPXo3I17mFhPH3pfL1+nTG0/RDcehLEZkOsoabe/+05kQHSGXCdG8Jg6vlhxfkwMPf6IfMHoqsxEilhYqzU3Z/SUeU2X0et2uvQWCQ2pG6P5YwM0dLnT4MFYF71oZwAaLR4uWuivVSMpCkAicODAlXoZm8+//KyKkY4nUPX1V8v2TzkfPa37+reL6/WUBfJ9Ivo2377KwsAMJGzkFUqE2GWValB9DYzc6+gG3TXjXhXp59htg7wIPHwSGQiSDQApfHrjxKDIGD18cJURy4x5z7EJeX4t8aIg/85eg1hOSpuNQFECqRKIKchVytdRvsIza/P0BrOMY+QSWwf8DtfSJ8SIl+XMAAAAASUVORK5CYII=" nextheight="900" nextwidth="1600" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>October was a month of technical refinement, educational impact, and increased contributor engagement both online and in real life for Cartesi. Rollups Contracts v2.1.0-alpha.1 went live, the PRT fraud-proof system saw key upgrades, and new developer tools aim to make it easier than ever to test complex decentralized applications. Across media, events, and academic initiatives, contributors amplified Cartesi’s presence, showing how our technology is pushing Ethereum rollups forward, expanding what’s possible with expressive design capabilities, and enabling real-world verifiable computation onchain. Let’s dive into the highlights.</p><h1 id="h-tech" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h1><p>Cartesi Rollups Contracts v2.1.0-alpha.1 has been shipped this month, with a focus on improving the reference node. The release introduces new view functions that allow the node to sync its state faster, including fetching the number of executed outputs and accepted claims on the Application and Consensus interfaces. A few dependencies were also updated, helping keep the system aligned with best practices. Developers can explore the full release <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-contracts/releases/tag/v2.1.0-alpha.1"><strong>here</strong></a>.</p><p>The PRT fraud-proof system made significant progress with the implementation of the bond design, now <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/dave/pull/195"><strong>merged</strong></a> into the main branch. This mechanism greatly reduces the delay that a well-funded attacker could impose, dropping potential delays from 106 weeks down to 22, while keeping validation costs minimal for honest participants.</p><p>Bonds make claims modestly expensive to deter Sybil and delay attacks, while still fairly redistributing slashed bonds from dishonest actors. The system also now supports applications using the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/dave/pull/194"><strong>revert feature</strong></a> of the Cartesi Machine, enabling more realistic testing scenarios. These improvements will be exercised in the upcoming Honeypot release for further testing under adversarial conditions.</p><p>Speaking of which, as previously announced, the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://honeypot.cartesi.io/"><strong>PRT Honeypot</strong></a> revealed a bug that triggered the app to enter a failed state. A post-mortem report confirmed that a liveness bug in the dispute game caused the application to freeze, locking roughly $1,000 (20,042 CTSI tokens) in Cartesi-owned funds.</p><p>The root cause was an implementation-specific bug in the PRT smart contracts, not an algorithmic flaw in the fraud-proof system. While no unauthorized withdrawals or incorrect settlements occurred, the incident underlines the importance of honeypot testing for identifying vulnerabilities before real-world deployment. Read more:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1980635233230942266">https://x.com/cartesiproject/status/1980635233230942266</a></p><p>If you want to follow the R&amp;D discussions closely, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/cartesi"><strong>jump on our Discord</strong></a> where all coordination happens in public.</p><h1 id="h-developer-tooling" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Tooling</strong></h1><p>Developer tooling advanced with the release of Cartesi Machine Guest Tools v0.17.2, providing essential tooling for the RISC-V Linux OS, including a RISC-V Debian package and a root filesystem for Ubuntu 24.04. This <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/machine-guest-tools/releases/tag/v0.17.2"><strong>update</strong></a> fixes a non-determinism issue during installation and improves request handling for applications without outputs. A pre-release of Honeypot v3.0.0-rc1 incorporating these changes has also been tagged for continued testing.</p><p>Content creation for developers remained a priority and the DevAdvocacy unit continued their mission. Contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu"><strong>Chinonso</strong></a> released the third video in the PRT explainer series, breaking down dispute resolution step by step and helping developers visualize how fraud-proof mechanics prevent dishonest validators from manipulating valid proofs, ensuring computation integrity even when participants act maliciously</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu/status/1975935793399992541">https://x.com/ChinonsoIdogwu/status/1975935793399992541</a></p><p>Alongside this, the ongoing PRT visualization tool is in testing, giving developers and validators to monitor both past and ongoing disputes, understand how claims and counterclaims progress, and gain insight into the overall health of the system. Check out a sneak peek with synthetic data <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://dave-demo.cartesi.io/apps"><strong>here</strong></a>.</p><h1 id="h-ecosystem" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h1><p>Brazil remains a hub for Cartesi adoption and academic initiatives. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/in/antonio-rocha-02754099/"><strong>Prof. Antonio Rocha</strong></a> from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.uff.br/"><strong>UFF</strong></a> continues to lead this month&apos;s hands-on “Web3, Blockchain, and Cartesi Rollups” course at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://ufba.br/"><strong>UFBA</strong></a>, while also wrapping up the previous cohort enabled through the national institutions <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.rnp.br/"><strong>RNP</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://esr.rnp.br/"><strong>ESR</strong></a>, providing feedback on students’ final projects showcasing practical use cases.</p><p>One proposal has been a stack for energy management, featuring a decentralized application for managing energy credits. Households or businesses with microgeneration, such as solar panels, receive utility tokens called “Eletrocoins” for surplus energy. These tokens can be used to offset energy bills or exchanged for authorized services, like charging an electric car or renting an e-bike. Built on Cartesi Rollups, the system provides a scalable, secure, and transparent way to track and manage energy credits, enabling decentralized and flexible use of renewable energy. Read more about this idea <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/posts/antonio-rocha-02754099_o-que-fazer-com-o-excedente-de-energia-para-activity-7384952813472100352-5_SX/"><strong>here</strong></a> if you speak Portuguese.</p><p>Moreover, in this month’s course organized by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/company/tomorrowufba/"><strong>Tomorrow</strong></a> at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/school/ufba/"><strong>UFBA</strong></a>, the drive to solve real-world problems continued to engage students, and another compelling use case emerged: The EpiScope dApp, a decentralized application developed on Cartesi Rollups to process and analyze arbovirus diagnostics in a verifiable, transparent, and secure manner. Written in Python, the backend collects and processes data using a custom machine learning model, executing inside the Cartesi Machine Linux environment.</p><p>User data is processed and analyzed transparently via smart contracts. By leveraging Cartesi’s Rollups framework, computations are performed off-chain for efficiency and cost savings, with only consolidated results returned onchain, demonstrating a scalable and trustworthy approach to healthcare data management. Head over to LinkedIn to dive in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/posts/bisnet0_blockchain-web3-cartesi-activity-7385053163080286208-5Pac/"><strong>here</strong></a>.</p><p>Another interesting blockchain-based use case developed by students is managing blood donations through a token system, improving traceability, transparency, and decentralization while also providing incentives for donors. By representing each donation with a token, the system can track donations more reliably, encourage repeat participation, and ensure the entire process is secure and verifiable on the blockchain. Again, the Portuguese-speaking audience can explore more about the project <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/posts/antonio-rocha-02754099_blockchain-web3-cartesi-activity-7385029688710041600-2K6J/?utm_source=share&amp;utm_medium=member_desktop&amp;rcm=ACoAAC1eCDcB1bHpRL5MQQw_DfosjXEwOUO_Gos"><strong>here</strong></a>.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rives.io/"><strong>RIVES</strong></a>, the Cartesi-powered retro gaming console providing a playful demonstration of Cartesi’s capabilities in real applications, is gearing up to launch their Base MiniApp, according to their team. For those who don’t know about it yet, RIVES (RISC-V Verifiable Entertainment System) is an onchain fantasy console built on Cartesi that allows users to create, collect, and play small games and software known as &quot;cartridges&quot; within a permissionless ecosystem.</p><p>By utilizing the Cartesi Machine and its verifiable computation layer, RIVES ensures that all game logic and execution are deterministic and provably correct, enabling verifiable gameplay where users can truly own and immortalize their gaming history on the blockchain. It serves as a prime example of how Cartesi enables complex, real-world Linux-powered software, like the classic game Doom, to run securely and trustlessly onchain. Keep an eye on their <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/rives_io"><strong>X account</strong></a> for any news, and get ready to play in upcoming tournaments as teased by their team.</p><p>Since joining the Partnership Fund, Cartesi’s updates have been featured in the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/publications/monthly-update-2025-09"><strong>L2BEAT monthly roundup</strong></a>, highlighting our strengthened fraud-proof system, revamped developer documentation, and ongoing research into non-interactive ZK proofs. Check out the previous edition and stay tuned for October’s edition dropping next:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/l2beat/status/1974070892293419390">https://x.com/l2beat/status/1974070892293419390</a></p><h1 id="h-events" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Events</strong></h1><p>On the events front, October was another fruitful month for Cartesi. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/_aaarocha"><strong>Professor Rocha</strong></a> presented <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/_aaarocha/status/1976265631893778495"><strong>a talk</strong></a> on Web3, Blockchain, and Cartesi Rollups at the invitation of <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.yduqs.com.br/"><strong>YDUQS</strong></a> for their Science and Technology Week audience, while contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/CryptoCyn"><strong>Cynthia</strong></a> rallied the penguins and represented the ecosystem at the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/EBlockchainCon"><strong>European Blockchain Convention</strong></a> in Barcelona:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/CryptoCyn/status/1978773371115430390">https://x.com/CryptoCyn/status/1978773371115430390</a></p><p>Looking ahead, Cartesi will co-host a Stage 2 Rollups Booth with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/"><strong>L2BEAT</strong></a> at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://devconnect.org/"><strong>DevConnect</strong></a>’s L2District, spotlighting what achieving Stage 2 status means for developers and users, and fostering conversations on decentralization and security across Ethereum. If you are heading to the event in Argentina, feel free to reach out so we can make sure you get to meet and connect with our Cartesians in real life.</p><h1 id="h-community-and-media" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Community &amp; Media</strong></h1><p>Community creativity continues to flourish, with Cartesi-themed art and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bubbalexone/status/1980619305197977652"><strong>animations</strong></a> shared by our ambassador <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bubbalexone"><strong>Bubbalexone</strong></a>, as well as Farcaster users drawing inspiration from our branding visuals to create their own animated <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://farcaster.xyz/metaend.eth/0xa27af249"><strong>versions</strong></a>. And as always, Tux the penguin has been hard at work and well represented:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bubbalexone/status/1980570739448418559">https://x.com/bubbalexone/status/1980570739448418559</a></p><p>Contributors appeared across media and X Spaces. Our ecosystem growth lead, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bmaia_expat"><strong>Bruno Maia</strong></a>, has become a regular on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia"><strong>Web3 Global Media</strong></a>, joining not one, not two, but three sessions on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia/status/1973109206178730284"><strong>AI design</strong></a> and the new paradigm, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia/status/1977810680960155706"><strong>careers in Web3</strong></a>, and sustainability, or as they put it, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia/status/1982870447760027929"><strong>survival</strong></a>, in the space.</p><p>In the meantime, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni"><strong>Carlo Fragni</strong></a> joined <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ETHGasOfficial"><strong>ETHGas</strong></a> for a second <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1975516473742565831"><strong>X Space</strong></a>, as well as <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/BitcoinMagNL"><strong>Bitcoin Magazine NL</strong></a> for a podcast. Dutch speakers are in for a treat with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://bitcoinmagazine.nl/nieuws/cartesis-carlo-fragni-deelt-inzichten-over-cartesi-app-rollups-en-blockchainontwikkeling"><strong>this article</strong></a>, while everyone else can enjoy the video here:</p><div data-type="youtube" videoId="rW7phSKejRs">
      <div class="youtube-player" data-id="rW7phSKejRs" style="background-image: url('https://i.ytimg.com/vi/rW7phSKejRs/hqdefault.jpg'); background-size: cover; background-position: center">
        <a href="https://www.youtube.com/watch?v=rW7phSKejRs">
          <img src="{{DOMAIN}}/editor/youtube/play.png" class="play"/>
        </a>
      </div></div><p>And to finish the month in style, he also joined the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ModularCrypto/status/1983228306368446954"><strong>Modular Crypto</strong></a> show to talk about everything you can build in the ecosystem, in a special episode for the Brazilian audience. Catch up <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=FN6sl703jxE"><strong>here</strong></a> if you missed the livestream.</p><p>On the PR front, if you’re curious to browse through all of Cartesi’s media features this year, our PR partner, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://marketacross.com/"><strong>Market Across</strong></a>, has compiled a coverage book that you can access <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://marketacross.coveragebook.com/b/9c9846e674e5b709"><strong>here</strong></a>. And if you’re a host interested in featuring one of our Cartesians on your show or in an article, feel free to reach out through our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://linktr.ee/cartesi"><strong>channels</strong></a> and we’ll make it happen.</p><h1 id="h-thats-a-wrap" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>That’s a Wrap</strong></h1><p>October reinforced Cartesi’s mission to bring complex and verifiable computation onchain while leveraging Web2 progress through its Linux-based virtual machine, alongside continued work on tools, education, and community initiatives.</p><p>From alpha releases of Rollups Contracts to the evolution of the PRT fraud-proof system, new dev tooling, final projects from university courses, and global visibility through events and media, the ecosystem continues to grow across technical, academic, and social dimensions.</p><p>As November kicks in, we turn our attention to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethlatam.org/"><strong>ETHLatam</strong></a> in Brazil, where Cartesi will have not one but two speakers, and to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://devconnect.org/"><strong>Devconnect</strong></a> in Argentina, where we will proudly represent Stage 2 Rollups alongside <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/l2beat"><strong>L2BEAT</strong></a> at a dedicated booth in the L2District. Keep your eyes peeled on our public <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://calendar.google.com/calendar/u/0/embed?src=c_faa93a56a7bebb66b119b8cd2e2bf110b8641097a669b21884b6886415ca83c2@group.calendar.google.com&amp;utm_source=Cartesi&amp;utm_campaign=a7ab36b2da-EMAIL_CAMPAIGN_2023_09_04_09_33_COPY_01&amp;utm_medium=email&amp;utm_term=0_-dcb1fccc0b-"><strong>events calendar</strong></a> so you don’t miss a thing.</p><p>We are excited to connect with the community and fellow participants in person. We invite everyone to stay engaged, follow the latest updates on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/cartesi"><strong>Discord</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject"><strong>X</strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesiproject"><strong>Telegram</strong></a>, keep building with Cartesi’s battle-tested stack, and look out for the new release of the PRT Honeypot as well as upcoming initiatives aimed at further strengthening our appchain framework and Ethereum’s rollup ecosystem.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates #9, 2025]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-9-2025</link>
            <guid>6gBT0CRzH0Q1JhchGFW8</guid>
            <pubDate>Fri, 03 Oct 2025 14:48:31 GMT</pubDate>
            <description><![CDATA[September was a month of testing, refinement, and academic engagement for Cartesi. Our research challenged some of the brightest minds in the space, and the Cartesi Rollups Node advanced with an alpha release featuring improved configuration and a polished CLI. At the same time, groundwork was laid for JSON-RPC API enhancements and upcoming multi-DApp support in Cartesi Rollups 2.0. In the meantime, the PRT Honeypot fulfilled its mission of surfacing bugs during infrastructure testing before ...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/a1418452141e2fd1a3de5254eee2e5d59f41146c5e03c3c31b4abbcd1d488b4c.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>September was a month of testing, refinement, and academic engagement for Cartesi. Our research challenged some of the brightest minds in the space, and the Cartesi Rollups Node advanced with an alpha release featuring improved configuration and a polished CLI. At the same time, groundwork was laid for JSON-RPC API enhancements and upcoming multi-DApp support in Cartesi Rollups 2.0.</p><p>In the meantime, the PRT Honeypot fulfilled its mission of surfacing bugs during infrastructure testing before real-world deployment, and work on the PRT fraud-proof system also progressed, including bonds integration and a new visualization tool for disputes. Across the ecosystem, students in Brazil began exploring blockchain education through a new course featuring Cartesi Rollups, while contributors amplified our impact through media and events. Let’s take a closer look at what happened this past month.</p><h1 id="h-tech" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h1><p>Cartesi Rollups Node v2.0.0-alpha.8 went live in September, building on a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-node/releases/tag/v2.0.0-alpha.7"><strong>previous release</strong></a> featuring improvements to configuration, CLI, and JSON-RPC support. Highlights include stability fixes for empty output payloads and multi-step input execution. It comes after a series of improvements introduced earlier in the month, including enhanced authorization, secure secret handling, faster EVM Reader synchronization, and more flexible execution and query options. This release is intended for testing, with documentation updates currently in progress. Developers interested in exploring these features can check out the full release <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-node/releases/tag/v2.0.0-alpha.8"><strong>here</strong></a>.</p><p>In addition, the tech units have been actively developing version 3.0 of the Rollups Contracts, as tracked <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-contracts/tree/next/3.0"><strong>here</strong></a>. This upcoming release introduces significant enhancements to the smart contracts that facilitate settlement, consensus, and data availability within the Cartesi Rollups framework. These contracts are integral to the operation of our appchains, enabling applications to interact securely with the Ethereum base layer.</p><p>Cartesi’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://arxiv.org/abs/2212.12439"><strong>PRT fraud-proof system</strong></a> has also made progress with the implementation of the new bond system designed to keep the fraud proof process secure and efficient. In simple terms, validators now post small “bonds” when making claims, which helps prevent spam and ensures only serious participants take part. Honest validators can recover their costs, while dishonest ones lose their bonds, which are fairly redistributed.</p><p>This system makes running everything smooth, keeps validation nearly free for good actors, and protects against delays or attacks. Testing and development are going well, and a release is expected soon. Dev-curious folks can follow along <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/dave/pull/195"><strong>here</strong></a> and join our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/cartesi"><strong>Discord</strong></a>, where all coordination happens publicly.</p><p>Research is another topic that made headlines this past month, with our Head of R&amp;D, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/GCdePaula_"><strong>Gabriel Coutinho</strong></a>, sharing a piece about the trade-offs in non-interactive ZK fraud proofs and how the promise of the best of both worlds carries the risk of becoming the worst of all worlds. Gabriel’s analysis highlights the potential limitations and risks of this approach compared to traditional interactive fraud proofs. He emphasizes that this design can introduce liveness challenges, as regular users may struggle to defend the chain if attackers exploit transaction ordering or other edge cases. He also notes that, under certain conditions, a single unit of honest resources may not be sufficient to secure the Layer2, making careful economic and technical design critical. Overall, the research points out that while non-interactive fraud proofs offer promising simplifications in fraud-proof mechanics, they present unique attack surfaces and trade-offs that must be carefully considered before adoption. Keep an eye out for the scientific debate on the article published on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethresear.ch/t/best-of-both-worlds-a-measured-review-of-non-interactive-zk-fraud-proofs/23132"><strong>ETHResearch</strong></a>, and for a quick roundup, check the X thread shared:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/GCdePaula_/status/1972685738039816355">https://x.com/GCdePaula_/status/1972685738039816355</a></p><p>On the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://honeypot.cartesi.io/"><strong>PRT Honeypot</strong></a> front, the team’s continued testing triggered a bug that caused a fail-stop state, invalidating this deployment and making the bounty of 20,042 CTSI tokens (around $1,420) unrecoverable. This highlights the value of honeypot mechanisms to stress-test components on mainnet, simulating real-world environments before being introduced to production applications. Read more <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1970902442259685855"><strong>here</strong></a>. While not new, honeypots have been around for over three decades, Cartesi’s PRT Honeypot introduced a novel way of community auditing in the blockchain space, embracing transparency and inviting developers, auditors, and hackers to push it to the limit with both educational and financial rewards. To dive deeper into this, our contributor, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu"><strong>Chinonso Idogwu</strong></a>, published an article about the Honeypot’s on-chain and off-chain components, showing what’s under the hood. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu/status/1966110052483297396"><strong>Check it out</strong></a> and stay tuned for a postmortem where contributors will detail how they caught the bug in discussion and reveal plans for another Honeypot deployment.</p><p>This past month we also explored the green “pizza” labels on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary"><strong>L2BEAT</strong></a>, which highlighted Stage 2 Rollup projects on Ethereum, including Cartesi’s PRT Honeypot. Each slice of the green pie represents a specific Stage 2 requirement, such as having a proof system online, publishing all necessary data onchain, allowing anyone to participate in state validation, and enabling users to exit funds permissionlessly. In case you missed the explainer thread, give it a read <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1965762238721237282"><strong>here</strong></a>.</p><p>Beyond this, Cartesi has joined the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://medium.com/l2beat/introducing-the-l2beat-partnership-fund-6d07528d903b"><strong>L2BEAT Partnership Fund</strong></a> as a Supporter Tier partner, contributing to championing the research and oversight that L2BEAT provides for the L2 ecosystem, marking another step forward in supporting the broader Ethereum Rollups community:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/l2beat/status/1971556291353977213">https://x.com/l2beat/status/1971556291353977213</a></p><h1 id="h-developer-tooling" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Tooling</strong></h1><p>Dev Advocacy has been busy this past month, and a new release of the documentation has just been published, redesigned and expanded to better support builders. Here’s what’s new: a streamlined developer journey, clearer and more readable guides, faster visual explanations, a brand-new Appchains page, a dedicated Fraud Proofs section, and an updated tabular design for easier navigation. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.cartesi.io/get-started"><strong>See it for yourself</strong></a>.</p><p>And the mission of producing valuable content around developer tooling has continued. Contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu"><strong>Chinonso</strong></a>’s latest video in his series breaks down how the PRT fraud proof system uses Merkle trees, whose hashing structure makes discrepancies easy to identify and verify:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu/status/1970824742740574488">https://x.com/ChinonsoIdogwu/status/1970824742740574488</a></p><p>By the way, progress on the visualization tool mentioned in the previous ecosystem updates blog, which tracks both past and ongoing disputes handled by PRT, has been smooth. It is currently being tested with synthetic data and will be released soon. Take a sneak peek <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://dave-demo.cartesi.io/"><strong>here</strong></a>.The Cartesi Command Line Interface (CLI) has also received <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/application-templates/tree/prerelease/sdk-12"><strong>updates</strong></a>, with new application templates now closely tied to it. Developers can use the CLI to scaffold projects and quickly spin up applications in languages such as C++, Go, Java, JavaScript, Lua, Python, Rust, and TypeScript. The templates are aligned with the upcoming SDK 12 release, making it easier for builders to get started while adopting the latest patterns and best practices.</p><p>On another vertical, developer advocate <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/henrimarlon_"><strong>Henrique Marlon</strong></a> shared insights into Multi-dApp Node support, one of the upcoming features for the next Cartesi Rollups 2.0 release. This feature introduces a Multi-DApp node architecture that allows a single node to run and manage multiple applications simultaneously.</p><p>This approach improves cost efficiency, resource utilization, and operational simplicity, while laying the groundwork for a future where nodes can serve as flexible, third-party service providers for multiple applications. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://medium.com/@henrique_99770/cartesi-rollups-2-0-features-spotlight-multi-dapp-support-1ce0dc95adfd"><strong>Dive into the article</strong></a> to explore the technical components behind this feature, its benefits, and how it represents a broader shift in how Cartesi nodes and applications operate:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/henrimarlon_/status/1968303101850599736">https://x.com/henrimarlon_/status/1968303101850599736</a></p><p>Meanwhile, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/riseandshaheen"><strong>Shaheen</strong></a> published a piece exploring DeFi use cases enabled by the Cartesi stack, highlighting practical opportunities for builders who want to leverage our appchains framework, including use cases that can benefit from this architecture, even with a week-long withdrawal delay. While finality delays might seem like a limitation, certain applications, such as staking, yield farming, reputation-based lending, and dollar-cost averaging, naturally fit these timelines.</p><p>By using Cartesi’s fraud-proof systems and flexible execution environment, developers can build complex, customizable, and secure DeFi applications that enjoy Ethereum’s security without being limited by immediate withdrawal requirements. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://medium.com/@riseandshaheen/expressive-and-secure-defi-appchains-with-cartesi-70100e0f3d29"><strong>Give it a read</strong></a> to see how the trade-off between security and usability is manageable and why developers are encouraged to experiment with optimistic rollups to build creative DeFi applications:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/riseandshaheen/status/1971186359542087813">https://x.com/riseandshaheen/status/1971186359542087813</a></p><h1 id="h-ecosystem" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h1><p>Brazil remained a key focus for Cartesi adoption in September. A new class at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://ufba.br/"><strong>UFBA</strong></a>, organized by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://tomorrow.ufba.br/"><strong>Tomorrow UFBA</strong></a> and taught by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/in/antonio-rocha-02754099/"><strong>Professor Antonio Rocha from UFF</strong></a>, started the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1963587919555469354"><strong>course Blockchain, Web3, and Cartesi Rollups</strong></a>, providing students with both theoretical knowledge and hands-on experience in decentralized infrastructure.</p><p>The <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://tomorrow.ufba.br/pt-br/curso-de-capacitacao-em-blockchain-web-3-e-cartesi-rollups"><strong>curriculum</strong></a> covers an introduction and basic concepts, fundamental technology principles, additional blockchain concepts, dApps and smart contracts, scalability in public blockchains, Cartesi technology and Rollups, and culminates in a fully practical Cartesi dApp project, with a mix of theoretical and hands-on sessions throughout.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/_aaarocha/status/1963580008984686880">https://x.com/_aaarocha/status/1963580008984686880</a></p><p>Meanwhile, the previous course featuring Cartesi, organized by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.rnp.br/"><strong>RNP</strong></a> (Brazilian network for education and research) and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://esr.rnp.br/"><strong>Escola Superior de Redes (ESR)</strong></a> as part of the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://iliadablockchain.org.br/"><strong>ILIADA project</strong></a> concluded, with all practical project submissions now completed.</p><p>Cartesi’s role in the Brazilian ecosystem also received local media attention, with features in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://br.cointelegraph.com/news/crypto-news-brazil-september"><strong>Cointelegraph BR</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://acripto.com.br/eventos-parcerias-e-expansao-previstas-para-2025/"><strong>ACripto</strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.tinordeste.com/eventos/3849/ufba-abre-curso-inovador-em-blockchain-web3-e-cartesi-rollups/"><strong>Revista TI (NE)</strong></a> highlighting these educational initiatives and expansion efforts.</p><h1 id="h-community-and-events" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Community &amp; Events</strong></h1><p>Contributors <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni"><strong>Carlo Fragni</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/AugustoTei17155"><strong>Augusto Teixeira</strong></a> were <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://news.bitcoin.com/from-code-red-to-nothingburger-was-the-npm-exploit-overhyped/"><strong>quoted in Bitcoin.com News</strong></a> discussing the recent JavaScript Node Package Manager (NPM) attack, providing insights on security and blockchain reliability.</p><p>A second edition gathered commentaries on the challenges at the intersection of AI and blockchain, triggered by the recent Ethereum Foundation announcement of a new AI team, where <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://news.bitcoin.com/eth-could-soar-as-ethereum-positions-itself-as-ai-settlement-layer-experts-say/"><strong>Carlo shared his insights</strong></a>.</p><p>He also joined an <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ETHGasOfficial/status/1967593630736261566"><strong>X Space</strong></a> hosted by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ETHGasOfficial"><strong>ETHGas</strong></a>, where discussions unpacked gas fees, Ethereum scaling, and Cartesi’s contributions to an onchain world of predictable fees. Catch up with the recording <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/i/spaces/1ypJdqWMNqyxW"><strong>here</strong></a>.Online and offline presence remained strong. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bmaia_expat"><strong>Bruno Maia</strong></a> spoke on Web3 Global Media’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia/status/1970534299515617686"><strong>X Space</strong></a> about yield and token value sustainability and is preparing to take the stage for a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/livingwithwill/status/1968893633173872896"><strong>new series</strong></a> of GTM alpha and insights. Stay tuned for it!</p><p>Meanwhile, our Korean ambassador <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/yoojei88"><strong>Jay</strong></a> represented Cartesi on the ground at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/kbwofficial"><strong>Korea Blockchain Week</strong></a>:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/yoojei88/status/1970807855445135610">https://x.com/yoojei88/status/1970807855445135610</a></p><p>And speaking of ambassadors, for a steady dose of Cartesi visuals and AI-powered animations featuring penguins, bees, and even pengubees, follow our creative ambassador <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bubbalexone"><strong>Bubbalex</strong></a>:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bubbalexone/status/1967121730738286656">https://x.com/bubbalexone/status/1967121730738286656</a></p><h1 id="h-thats-a-wrap" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>That’s a Wrap</strong></h1><p>September strengthened Cartesi’s position as a research-oriented, developer-friendly, and academically integrated ecosystem. From new Node releases, CLI improvements, or fraud proof advancements, to PRT Honeypot stress testing, university courses in Brazil, and making headlines in the research community, the ecosystem continues to develop across technical, educational, and social fronts.</p><p>Hope we get to see a few of you at the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1970473294542578024"><strong>European Blockchain Convention in Barcelona</strong></a> soon (the CARTESI15 code provides a discount for our community, so take advantage if you plan to get your <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://eblockchainconvention.com/european-blockchain-convention-11/"><strong>ticket</strong></a>), and let’s assemble for <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/EFDevcon"><strong>Devconnect in Argentina</strong></a> next. Until then, keep building, stay engaged, and join the conversation on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/cartesi"><strong>Discord</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject"><strong>X</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesiproject"><strong>Telegram</strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://linktr.ee/cartesi"><strong>beyond</strong></a>.</p><p>As October installs in, we look forward to continuing to deliver on our mission of bringing battle-tested Web2 software on-chain and allowing anyone to build with any code and Ethereum’s security.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates #8, 2025]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-8-2025</link>
            <guid>O5YwVDMmxB1TReBPzsuW</guid>
            <pubDate>Fri, 05 Sep 2025 13:10:04 GMT</pubDate>
            <description><![CDATA[August was a month of broadening accessibility and polishing the groundwork for what has been delivered so far. Cartesi’s fraud-proof system, PRT, became more approachable than ever through new tutorials, explainers, and community contributions, while integrations like Espresso and Chainlink Automation were completed. At the same time, contributors carried Cartesi’s vision to podcasts, media, and RISC-V research circles, and momentum built toward Devconnect as Cartesi joined forces with Facet...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/96b9a4dff658b4b0c42050ba44b4e16c6a74ba3a2d56d55eca7e9315e5137b6e.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>August was a month of broadening accessibility and polishing the groundwork for what has been delivered so far. Cartesi’s fraud-proof system, PRT, became more approachable than ever through new tutorials, explainers, and community contributions, while integrations like <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1955283211610886650"><strong>Espresso</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1960688814479081558"><strong>Chainlink Automation</strong></a> were completed.</p><p>At the same time, contributors carried Cartesi’s vision to podcasts, media, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/HouseofZK/status/1960263213578113105"><strong>RISC-V research circles</strong></a>, and momentum built toward <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://devconnect.org/"><strong>Devconnect</strong></a> as Cartesi joined forces with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://facet.org/"><strong>Facet</strong></a> to propose a Stage 2 rollups <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://forum.devcon.org/t/stage-2-rollups/7831/3"><strong>community hub</strong></a>. It was a month of refinement and prioritization, reinforcing Cartesi’s role as a proud member of the Ethereum rollup ecosystem while making its infrastructure clearer and more accessible to builders everywhere. Let’s dive in.</p><h1 id="h-tech" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h1><p>Research discussions went deeper into the implications of Ethereum’s proposal of pivoting to a RISC-V based execution layer, and our experience in using it inside Cartesi’s architecture is being put to good use. Co-founder <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/in/diegonehab/"><strong>Diego Nehab</strong></a> joined the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethproofs.org/"><strong>ETH Proofs</strong></a> call to share why supporting the privileged ISA unlocks new possibilities and why Ethereum itself could benefit from enshrining RISC-V. Hear it directly from him here:</p><div data-type="youtube" videoId="rJiEV7jJFl4">
      <div class="youtube-player" data-id="rJiEV7jJFl4" style="background-image: url('https://i.ytimg.com/vi/rJiEV7jJFl4/hqdefault.jpg'); background-size: cover; background-position: center">
        <a href="https://www.youtube.com/watch?v=rJiEV7jJFl4">
          <img src="{{DOMAIN}}/editor/youtube/play.png" class="play"/>
        </a>
      </div></div><p>For anyone not yet familiar with the Cartesi Machine and its capabilities, our contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/edubart"><strong>Eduardo Barthel</strong></a>’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://notebooklm.google.com/"><strong>NotebookLM</strong></a>-powered breakdown explored how the Cartesi Machine works, using as a resource a previous <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=ofb7MJ8dK0U"><strong>presentation by Diego</strong></a> given for the Ethereum Engineering Group last year. Everyone should give it a watch for an accessible way to get up to speed fast.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/edubart/status/1958136936087826776">https://x.com/edubart/status/1958136936087826776</a></p><p>On the fraud proof system front, this month Cartesi’s PRT has taken a major step forward with the kickoff of development on the bonds and refund mechanism, which forms the economic backbone preventing delay attacks and ensuring secure dispute resolution, making claims modestly costly and covering dispute costs, while keeping honest validation nearly free.Here’s how it works in a nutshell: validators post bonds when making claims, protecting the system from spammers and Sybils, while honest participants can recover gas costs. Eager Validators actively pay for transactions, and Casual Validators step in only if needed, keeping the protocol running smoothly. MEV-Share bundles handle key actions like bisection and steps without race conditions, and slashed bonds from dishonest actors are fairly redistributed, making the system secure, fair, and efficient.By combining economic costs, automated refunds, and coordinated transaction execution, the bonds system keeps validation nearly free, mitigates delay attacks, and maintains the integrity of the fraud proof process without creating distorting incentives. If you want to follow the R&amp;D discussions closely, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/cartesi"><strong>jump on our Discord</strong></a> where all coordination happens in public.</p><p>Making content more accessible and especially fraud proofs was front and center this month. Our contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu"><strong>Chinonso</strong></a> prepared a new video breaking down how PRT tournaments work and how disputes are resolved off-chain, showing step by step how honest computation is determined in practice.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu/status/1956013162848788525">https://x.com/ChinonsoIdogwu/status/1956013162848788525</a></p><p>And if you missed it last month, this is a good moment to revisit <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu/status/1950196993877561518?utm_source=chatgpt.com"><strong>Chinonso’s PRT explainer</strong></a> article for non-mathematicians.</p><p>To continue explorations with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://notebooklm.google.com/"><strong>NotebookLM</strong></a>, we also tasked it with explaining the PRT based on the original <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://arxiv.org/abs/2212.12439"><strong>research paper</strong></a> and the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://medium.com/l2beat/fraud-proof-wars-b0cb4d0f452a"><strong>Fraud Proof Wars</strong></a> article by L2BEAT, and the results have been pretty remarkable for breaking things down in an accessible way. If you are curious about it, watch it here:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/riseandshaheen/status/1961043616098349162">https://x.com/riseandshaheen/status/1961043616098349162</a></p><p>To make things even more intuitive and Cartesi’s stack even more approachable, contributors are developing a PRT visualization tool that, in its initial phase, will showcase a status view whenever a dispute is underway, making it easier to see how fraud proofs play out in practice. Stay tuned for updates, and in the meantime, get yourself familiar with the PRT Honeypot, our bug-bounty app challenging the fraud-proof architecture, and try to drain the smart contract holding the sweet rewards:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1952716468837339152">https://x.com/cartesiproject/status/1952716468837339152</a></p><h1 id="h-developer-tooling" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Tooling</strong></h1><p>Two integrations advanced significantly this past month and are now marked as completed: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.espressosys.com/"><strong>Espresso</strong></a> and Cartesi-<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://chain.link/automation"><strong>Chainlink Automation</strong></a> library.Espresso Reader v0.4.1 is live and fully compatible with the latest Cartesi Rollups Node (v2.0.0-alpha.6), making it easier than ever to develop applications using both frameworks together. And complete documentation is now available for builders. Explore the updates <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1955283211610886650?utm_source=chatgpt.com"><strong>here</strong></a>.</p><p>The Cartesi–Chainlink project, a TypeScript library and CLI toolkit integrating Chainlink Automation with Cartesi apps, funded by CGP after passing the governance vote, was successfully completed. Read about it <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1960688814479081558?utm_source=chatgpt.com"><strong>here</strong></a>, and if you are ready to dive into <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/alompson/cartesi-chainlink-js"><strong>GitHub</strong></a>, grantees have put together some video presentations to break it all down for you.</p><h1 id="h-ecosystem" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h1><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/rives_io"><strong>RIVES</strong></a>, the Cartesi-powered retro gaming console with verifiable execution, kept expanding its reach. Co-founder <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni/status/1958290376302743642"><strong>Carlo Fragni joined Base’s Gui Bettanin</strong></a> for a Portuguese-language session highlighting the project’s vision and specifics. If you haven’t yet, try it yourself at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://rives.io/"><strong>rives.io</strong></a>, play some cartridges and share your tape on socials for us to see it.</p><p>From the team, we also get news of a mobile version, and more precisely a minidapp release that’s in the works and will be live in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/baseapp"><strong>Base’s app</strong></a> as soon as this opens up broad access for everyone.</p><p>Meanwhile, Brazil remains a hot spot of Cartesi adoption and usability. A <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/claudioengdist/status/1957781037578154484"><strong>resurfaced podcast episode</strong></a> put the spotlight again on the academic initiatives led by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/in/antonio-rocha-02754099/"><strong>Professor Antonio Rocha at UFF</strong></a>, including university courses, published papers, and real-world prototypes such as public transport dApps supported by local municipalities. Do watch it if you haven’t already.</p><p>And for anyone curious to dive into more of the scientific research led by the student groups there that uses Cartesi, look no further and give this a read to see how students leveraged Cartesi Rollups to enhance resource allocation and virtual network service provider selection in telecom and cloud environments:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/_aaarocha/status/1951642653495292310">https://x.com/_aaarocha/status/1951642653495292310</a></p><p>Another paper featuring Cartesi, &quot;Blockchain-Based Location Validation in an Environment of Mutual Distrust,&quot; was published in the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://journals-sol.sbc.org.br/index.php/jisa/article/view/5039"><strong>Journal of Internet Services and Applications</strong></a>, and we’re excited to see our tech powering academic research on decentralized infrastructure in Brazil.</p><h1 id="h-community" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Community</strong></h1><p>Cartesi’s presence across media and social channels expanded further this month with highlighted features on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://interestingengineering.com/innovation/enhancing-ethereums-execution-layer-cartesi-rallies-behind-ethereum-for-long-term-value-creation"><strong>Interesting Engineering</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://br.cointelegraph.com/news/crypto-news-dog-conference-success-eth-latam-in-sp"><strong>Cointelegraph Brazil</strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://exame.com/future-of-money/o-futuro-da-ethereum-apos-10-anos-projeto-passa-das-promessas-para-os-fundamentos/"><strong>Exame</strong></a>.</p><p>On the podcasts side, a fresh new episode featuring <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia"><strong>João Garcia</strong></a> breaking down Cartesi for the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/BlockhuntersOrg"><strong>BlockHunters</strong></a> audience has recently dropped. In it, he discusses Cartesi’s potential to transform the landscape of crypto applications by unlocking complex computation with verifiable Linux. Watch it here:</p><div data-type="youtube" videoId="MIQp6Qg-4Jo">
      <div class="youtube-player" data-id="MIQp6Qg-4Jo" style="background-image: url('https://i.ytimg.com/vi/MIQp6Qg-4Jo/hqdefault.jpg'); background-size: cover; background-position: center">
        <a href="https://www.youtube.com/watch?v=MIQp6Qg-4Jo">
          <img src="{{DOMAIN}}/editor/youtube/play.png" class="play"/>
        </a>
      </div></div><p>Previously, our Ecosystem Growth Lead, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bmaia_expat"><strong>Bruno Maia</strong></a>, joined <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/Jack_Unveil"><strong>Jack Goodridge</strong></a>’s podcast to unpack <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/Jack_Unveil/status/1952311909719683518"><strong>all things business development</strong></a> in the blockchain space and took the stage on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/samkamani"><strong>Sam Kamani</strong></a>’s show to share what Cartesi is building:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/samkamani/status/1953268598186852464">https://x.com/samkamani/status/1953268598186852464</a></p><p>But that’s not all, and Bruno also joined two episodes of <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia"><strong>Web3 Global Media</strong></a> Spaces alongside other key players, with one focused on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia/status/1950979518488793274"><strong>ethics and innovation</strong></a> and the other on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia/status/1954949576772755904"><strong>legacy and privacy</strong></a>.</p><p>The wider community stepped up as well. Special mention goes to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/PerrieDExplorer/status/1957510809132609637"><strong>Perrie</strong></a>, who did it again and distilled the PRT system into an accessible explainer for everyone curious about fraud proofs. Anyone interested in following her lead can dive deeper into the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://arxiv.org/abs/2212.12439?utm_source=chatgpt.com"><strong>PRT research paper</strong></a> and bring their questions to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/cartesi?utm_source=chatgpt.com"><strong>Discord</strong></a>.Speaking of Discord, the community server underwent a cleanup with streamlined channels, archived discussions, and improved navigation thanks to DevAdvocacy efforts. If you missed the announcement, check <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/channels/600597137524391947/821540265738764299/1405235082599469106"><strong>here</strong></a>. More improvements are on the way, including smarter bots to support the ecosystem on this platform.For those new to Cartesi, and there were quite a few this month, we put together an <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1957789710325281144"><strong>introductory explainer thread</strong></a>. Plus, if you want a cheat sheet to get the high-level picture of what Cartesi is, dive into bite-sized <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/@Cartesiproject/shorts"><strong>YouTube Shorts</strong></a> to cover the basics quickly. And for an overview of Cartesi’s presence on other channels where community engagement extends, like <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://farcaster.xyz/cartesi"><strong>Farcaster</strong></a> or <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://reddit.com/r/cartesi/"><strong>Reddit</strong></a>, check <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://linktr.ee/cartesi"><strong>here</strong></a> to join us on your favorite platform.</p><h1 id="h-events" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Events</strong></h1><p>On the events front, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni"><strong>Carlo Fragni</strong></a> was out on the floor at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/blockchain_rio"><strong>BlockchainRIO</strong></a>, connecting with attendees in person and gathering leads at one of the largest blockchain events in Latin America this year.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni/status/1953272080637493442">https://x.com/carlofragni/status/1953272080637493442</a></p><p>In the infinite garden of Ethereum’s ecosystem, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/huddle01com/status/1952735174984110290"><strong>Huddle01</strong></a> organized a mega space to give hundreds of builders the mic to share why they chose Ethereum. Our co-founder <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/felipeargento"><strong>Felipe Argento</strong></a> proudly represented us, delivering a powerful message in just two minutes. See what he said <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/felipeargento/status/1953095395690594731"><strong>here</strong></a>.</p><p>It’s also been a while since the last Reddit AMA, and this time the Ethereum Foundation hosted a lineup of contributors ready to answer every question. This marked their 14th AMA on r/ethereum, offering insights across technical directions, ecosystem verticals, collaborations, and the broader ethos. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://reddit.com/r/ethereum/comments/1n1cyd3/ama_we_are_ef_protocol_pt_14_29_august_2025/"><strong>Dive in</strong></a> for the full overview.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://devconnect.org/"><strong>Devconnect</strong></a> is on the horizon and the countdown has begun. Together with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/projects/facet"><strong>Facet</strong></a>, the only other optimistic rollup at stage 2, Cartesi co-proposed a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://forum.devcon.org/t/stage-2-rollups/7831"><strong>Stage 2 Rollups Hub</strong></a>, to spotlight the importance of fully trustless rollups for Ethereum’s future. This collaborative effort shows how aligned projects can come together to advocate for decentralization and security at the highest level. Show your support for this proposal if you’ll be in Argentina for the event, and don’t hesitate to get in touch with us if you think you might be able to contribute meaningfully to the hub.</p><h1 id="h-thats-a-wrap" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>That’s a Wrap</strong></h1><p>August highlighted Cartesi’s mission: deepening tech accessibility, expanding tooling, and amplifying awareness, while actively contributing expertise to the advancement of Ethereum’s infrastructure. From fraud-proof tutorials and tooling integrations to community explainers and research sessions, these initiatives are coming together to create a developer-friendly, trustless ecosystem poised to set a new standard in the appchain rollups space. With Devconnect on the horizon, Cartesi is steadily continuing its efforts on new tech releases, expanded documentation, and visibility through podcasts and media.</p><p>As September unfolds, we keep exploring, keep building, and invite you to join in and keep the conversations going across <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/cartesi"><strong>Discord</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject"><strong>X</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesiproject"><strong>Telegram</strong></a>, and beyond.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates #7, 2025]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-7-2025</link>
            <guid>X7v1wu2Oa6egvMZY3qsi</guid>
            <pubDate>Fri, 08 Aug 2025 15:05:16 GMT</pubDate>
            <description><![CDATA[July was a month of steady progress and celebratory milestones for Cartesi and the Ethereum ecosystem. The PRT Honeypot, our first stage 2 dApp with a fully functional fraud-proof system (and one of only two in the entire space), marked its first month on Ethereum mainnet, and Ethereum reached its 10-year mark. Alongside these milestones, with renewed focus, a clear mission, and a commitment to the ecosystem that aligns closely with our values, Cartesi continues to push forward in bridging th...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0f35a61db649aecdd5e0acf142428f059fa943d3f2fbabb2209222230f538a7f.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>July was a month of steady progress and celebratory milestones for Cartesi and the Ethereum ecosystem. The PRT Honeypot, our first stage 2 dApp with a fully functional fraud-proof system (and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary?filters=%7B%22stage%22%3A%7B%22values%22%3A%5B%22Stage+2%22%5D%7D%7D"><strong>one of only two in the entire space</strong></a>), marked its first month on Ethereum mainnet, and Ethereum reached its 10-year mark.</p><p>Alongside these milestones, with renewed focus, a clear mission, and a commitment to the ecosystem that aligns closely with our values, Cartesi continues to push forward in bridging the gap between web2 and web3, aiming to make dApp development with mainstream tooling simple and accessible. Here’s a look at everything that happened at Cartesi in July.</p><h1 id="h-tech" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h1><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://honeypot.cartesi.io/"><strong>The PRT Honeypot</strong></a>, Cartesi’s trustless, bug bounty-style appchain, has now been live for over a month and continues to invite hackers worldwide to test its robust, permissionless fraud-proof system. What makes this version unique is that anyone can run nodes, participate in validating the app logic, and challenge the results.</p><p>To help you get involved, our developer advocates have created easy-to-follow video tutorials that guide node runners through the node setup process. Whether you want to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1945106208270246204"><strong>run a node locally</strong></a> or <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1948405406646292586"><strong>use a cloud setup on Fly.io</strong></a>, these step-by-step walkthroughs are ready to onboard new validators.</p><p>For tech enthusiasts and anyone interested in learning more about Cartesi’s fraud-proof system, PRT (Permissionless Referred Tournaments), our contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu"><strong>Chinonso</strong></a> prepared an article to break it all down:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu/status/1950196993877561518">https://x.com/ChinonsoIdogwu/status/1950196993877561518</a></p><p>It’s worth mentioning that PRT marks Cartesi’s first iteration in solving fraud proofs. While the system is already functional, ongoing improvements aim to boost efficiency and introduce an economic model to make delay attacks unfeasible.</p><p>On the research side, a more performant algorithm is already taking shape, and it’s one you might recognize by name: Dave. Conceptualized with the same commitment to decentralization and security, Dave enhances the PRT system with improved liveness.</p><p>On this note, our peer-reviewed paper on Dave, published in the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ACMDL"><strong>ACM Digital Library</strong></a>, stands as a milestone in Cartesi’s academic and technical rigor. For anyone interested in the nuances of rollup security and dispute resolution, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://dl.acm.org/doi/10.1145/3734698"><strong>it’s a must-read</strong></a>.</p><p>And speaking about fraud proofs and rollups standards in decentralization and security, this month’s IBTIA podcast highlight was the discussion our hosts <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia"><strong>João Garcia</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/GCdePaula_"><strong>Gabriel Coutinho</strong></a> had with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary"><strong>L2BEAT</strong></a>’s founder <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bkiepuszewski"><strong>Bartek Kiepuszewski</strong></a> and researcher <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/donnoh_eth"><strong>Luca Donno</strong></a>. If you missed it, head over to YouTube to learn more about what it means to raise the bar for Ethereum scaling:</p><div data-type="youtube" videoId="6N0361jBHBY">
      <div class="youtube-player" data-id="6N0361jBHBY" style="background-image: url('https://i.ytimg.com/vi/6N0361jBHBY/hqdefault.jpg'); background-size: cover; background-position: center">
        <a href="https://www.youtube.com/watch?v=6N0361jBHBY">
          <img src="{{DOMAIN}}/editor/youtube/play.png" class="play"/>
        </a>
      </div></div><p>July also brought a key update to the Espresso Reader, now at v0.4.0, running seamlessly on Cartesi Node v2.0.0-alpha.6. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-espresso-reader/releases/tag/v0.4.0"><strong>This upgrade</strong></a> improves performance and compatibility, streamlining developer workflows for teams building with Cartesi and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.espressosys.com/"><strong>Espresso</strong></a>’s composable architecture. Key improvements include enhanced local execution infrastructure, more reliable blockchain data handling, increased database consistency, and safer data parsing aligned with the latest node versions. These advancements continue to move this integration development forward.</p><h1 id="h-developer-tooling" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Tooling</strong></h1><p>On the developer tooling front, our contributors have been busy all month round and release several useful building blocks.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/dtuler"><strong>Danilo</strong></a> developed Node.js bindings that allow seamless interaction with the Cartesi Machine directly from JavaScript environments. This toolkit enables developers to integrate Cartesi’s framework within Node.js applications, simplifying testing and development workflows. It’s a valuable resource for anyone looking to build or prototype applications using Cartesi Machine in a familiar JavaScript ecosystem. Explore the release and its documentation <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://tuler.github.io/node-cartesi-machine/"><strong>here</strong></a>.</p><p>And more, Danilo also hosted a live coding session focused on building a PRT (Permissionless Referred Tournaments) Reader Node, demonstrating the step-by-step process of creating a node that reads and processes PRT data. These are great learning resources for developers interested in Cartesi’s fraud-proof system and in interacting with PRT data in real time. Check out the code repository here: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/tuler/carol/"><strong>PRT Reader Node - GitHub</strong></a>. All this, while spreading the word about Cartesi Machine:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/dtuler/status/1946304105334378622">https://x.com/dtuler/status/1946304105334378622</a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/guidanoli"><strong>Guilherme</strong></a> has published an in-depth report analyzing the gas costs associated with Cartesi Rollups version 2. This breakdown offers valuable insights to help developers better understand gas consumption and cost-efficiency when building on Cartesi Rollups. Read the report <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://hackmd.io/@guidanoli/BkhUXxdSle"><strong>here</strong></a>.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/lynoferraz"><strong>Lyno</strong></a> updated Cartesapp, a high-level Python framework designed to streamline development on Cartesi Rollups Node version 2. This update brings full compatibility with the latest Rollups node, making it easier for Python developers to build, test, and deploy scalable decentralized applications using Cartesi’s stack. The framework abstracts much of the complexity involved, accelerating dApp development with simplified APIs, auto-generated tools, faster startup, robust testing, and seamless continuous integration. See this new GitHub release of Cartesapp <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/prototyp3-dev/cartesapp?tab=readme-ov-file#cartesapp"><strong>here</strong></a>.</p><h1 id="h-ecosystem" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h1><p>This month, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/espressoFNDN"><strong>Espresso Foundation</strong></a> honored Cartesi along with ecosystem projects <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/Comet_ing"><strong>Comet</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/drawing_canvas"><strong>DrawingCanvas</strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/dca_monster"><strong>DCA.Monster</strong></a> as part of Cohort 0, celebrating their contributions to the previous composable testnet. This collaborative recognition highlights the growing synergy between the two projects and their ecosystems.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/espressoFNDN/status/1942973969801609651">https://x.com/espressoFNDN/status/1942973969801609651</a></p><p>On <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/rives_io"><strong>RIVES</strong></a>’s front, the Cartesi-powered fantasy console for verifiable gameplays, they announced they are working on a mobile version. If you haven’t explored RIVES yet, take a stroll over to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://rives.io/"><strong>rives.io</strong></a> and try your hand at nostalgic retro games like Snake, Tetris, Antcopter, or even DOOM.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/rives_io/status/1945469499073011990">https://x.com/rives_io/status/1945469499073011990</a></p><p>Brazil remains a flagship region for Cartesi adoption. In July, registrations opened for the course <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/_aaarocha/status/1941240788597232060"><strong>Intro to Blockchain, Web3, and Rollups</strong></a><em>,</em> developed by national research institutions <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.rnp.br/pesquisa-e-desenvolvimento/rnp-e-esr-lancam-curso-sobre-blockchain-web-3-e-rollups-no-ambito-do-projeto-iliada/"><strong>RNP</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://esr.rnp.br/"><strong>ESR</strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.cpqd.com.br/"><strong>CPQD</strong></a> with efforts from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/in/antonio-rocha-02754099/"><strong>Professor Antonio Rocha of UFF</strong></a>. Featuring Cartesi as a hands-on infrastructure case study, the course quickly became oversubscribed, with 170 signups for just 70 spots, highlighting strong demand for blockchain education with practical rollup experience.</p><p>This program is part of the broader <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.gov.br/mcti/pt-br/acompanhe-o-mcti/noticias/2024/07/com-projeto-iliada-da-rnp-brasil-vai-investir-em-tecnologia-blockchain"><strong>ILIADA</strong></a> initiative, supported by Brazil’s Ministry of Science, Technology, and Innovation (MCTI), helping nurture the next generation of Brazilian Web3 builders and researchers.</p><p>Cartesi’s role in Brazil extends beyond education, with its infrastructure already used to build blockchain-powered solutions focused on urban mobility and public services, with ongoing projects improving electric bike-sharing and public transport transparency.</p><h1 id="h-cartesi-foundation" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Cartesi Foundation</strong></h1><p>This month, the Cartesi Foundation completed its $500,000 USD <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1947642874797166677"><strong>open market buyback</strong></a> of $CTSI, reaffirming its commitment to the ecosystem, developers, and broader community. Originally announced in April, the initiative reflects a strong belief in Cartesi’s vision and its potential to shape the future of decentralized application development.</p><p>To crystallize this commitment, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/blog/engineering_ethereum_future/"><strong>the recent blog post</strong></a> outlined Cartesi’s renewed focus and vision for the future of rollups within the Ethereum ecosystem. This means Cartesi is doubling down on its role as a core engineering project for Ethereum, sharpening its focus on developing robust, verifiable infrastructure such as Cartesi Rollups and fraud proof systems. By aligning closely with Ethereum’s technical needs, Cartesi aims to deliver lasting value grounded in decentralization, security, and long-term utility.</p><p>As part of Cartesi’s efforts to radically focus on its core strengths, the coprocessor initiative has now been formally wrapped up for the time being. Nevertheless, recognizing the value it may hold for the broader community, the project remains available as an open-source resource, enabling developers and users to access, build upon, and benefit from its existing codebase. Find all resources <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/coprocessor"><strong>here</strong></a>.</p><p>In other news, the Cartesi Foundation was also proudly included in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/fabdarice/status/1947903960725307524"><strong>Ethereum’s Strategic Reserve</strong></a>, a curated list of aligned projects committed to Ethereum’s future growth by holding ETH as part of their treasury.</p><h1 id="h-community" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Community</strong></h1><p>July marked Ethereum’s 10th anniversary, a milestone Cartesi celebrated alongside the community and many ecosystem projects that came together to highlight they &apos;believe in somETHing&apos; with a memorable X takeover:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/_jnic/status/1950570741952344313">https://x.com/_jnic/status/1950570741952344313</a></p><p>Community engagement remained lively, with contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bmaia_expat"><strong>Bruno Maia</strong></a> joining another Web3 Global Media <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia/status/1950979518488793274"><strong>X Space</strong></a> to discuss ethics and innovation, while co-founder <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/felipeargento"><strong>Felipe Argento</strong></a> shared insights into Cartesi’s architecture and the rationale behind appchains on a recent <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/BlocksterCom/status/1946295164336590857"><strong>Blockster podcast episode</strong></a>.</p><p>The biggest win, though, is seeing community members step up and break down Cartesi in their own words. Shoutout to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/PerrieDExplorer"><strong>Perrie</strong></a> for diving deep and turning her research into this thoughtful thread. She first caught our eye during the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1924450843849318659"><strong>NFT giveaway we ran with Espresso</strong></a>, or more accurately, caught the eye of our AI Agent, Cartesian Plushie AI, who picked her submission for the quality of her content. She’s been Cartesi-pilled ever since and safe to say she’s not disappointing. Check out why devs shouldn&apos;t be writing smart contracts like it&apos;s still 2016:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/PerrieDExplorer/status/1945544382213730617">https://x.com/PerrieDExplorer/status/1945544382213730617</a></p><p>And make sure you didn’t miss our penguin aura farming following Cartesi’s Stage 2 news, which stole the show and repped all the community love:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/CryptoCyn/status/1948744170077667815">https://x.com/CryptoCyn/status/1948744170077667815</a></p><p>Meanwhile, mainstream and crypto-specific media outlets spotlighted Cartesi’s innovative approach to decentralized security. This month’s highlights include features from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cryptotimes.io/articles/explained/prt-honeypot-a-deep-dive-into-the-new-development-of-cartesi/"><strong>CryptoTimes</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/blockchainrptr/status/1942236177458946330"><strong>Blockchain Reporter,</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://br.cointelegraph.com/news/crypto-news-bitgo-with-bitcoin-staking-bitget-polygon-and-polkadot-with-new-partnerships-and-other-news"><strong>Cointelegraph Brazil</strong></a>, illustrating the growing reach and interest in rollup tech and its developments.</p><p>To finish in style, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.galxe.com/quest/cartesi/GCz2Stf8KT"><strong>Galxe’s quest</strong></a> for our PRT Honeypot supporters continues through the end of the month, rewarding community members with CTSI for completing simple steps and learning more about it.</p><h1 id="h-thats-a-wrap" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>That’s a Wrap</strong></h1><p>July confirmed Cartesi’s positioning in the L2 landscape and the broader Ethereum ecosystem. From advancing our infrastructure with the fraud-proof system and broadening educational initiatives to earning recognition across media and partner alliances, the ecosystem is tangible and accelerating.</p><p>As August unfolds, we encourage everyone to dive into the PRT Honeypot, get familiar with validator node operations, and continue exploring and building with Cartesi.</p><p>Stay tuned for next month’s ecosystem updates, and as always, join the conversation on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://discord.gg/cartesi"><strong>Discord</strong></a> and follow us on your favorite social channels.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates #6, 2025]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-6-2025</link>
            <guid>P2Nzv3HdwmRtTbi2bAoR</guid>
            <pubDate>Fri, 04 Jul 2025 14:13:16 GMT</pubDate>
            <description><![CDATA[June was a breakthrough month for Cartesi. Our first Stage 2 rollup application went live on Ethereum mainnet with the debut of the PRT Honeypot, a public, bug bounty style appchain putting Cartesi’s permissionless fraud-proof security model to the test.This milestone signals that Cartesi has met the highest standards of decentralization and trustlessness set by L2BEAT, distinguishing us among the top Ethereum L2 projects, one of only three to claim Stage 2 status in the recent recategorizati...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/9df5faac2ba26515cf661a5aa59b53b00daf7a3420a06765160f2812d3ef0eca.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>June was a breakthrough month for Cartesi. Our first Stage 2 rollup application went live on Ethereum mainnet with the debut of the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://honeypot.cartesi.io/"><strong>PRT Honeypot</strong></a>, a public, bug bounty style appchain putting Cartesi’s permissionless fraud-proof security model to the test.This milestone signals that Cartesi has met the highest standards of decentralization and trustlessness set by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary"><strong>L2BEAT</strong></a>, distinguishing us among the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/l2beat/status/1935615562341658961"><strong>top Ethereum L2 projects</strong></a>, one of only three to claim <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary?filters=%7B%22stage%22%3A%7B%22values%22%3A%5B%22Stage+2%22%5D%7D%7D"><strong>Stage 2</strong></a> status in the recent recategorization and the only Optimistic Rollup to achieve that.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/l2beat/status/1937837004798259676?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1937837004798259676%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F">https://x.com/l2beat/status/1937837004798259676?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1937837004798259676%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F</a></p><p>As the PRT Honeypot invites challengers to validate and potentially claim the prize, with the first jar refill already in, the entire ecosystem is rallying around this new era of rollup maturity. But that’s not all. June also brought progress across our infrastructure and developer tooling, Brazil adoption initiatives, and community efforts worldwide. Let’s dive into the updates from the past month.</p><h1 id="h-tech" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h1><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1935714339635569115"><strong>Cartesi’s PRT Honeypot</strong></a> launched on mainnet, marking the first live Stage 2 rollup app secured by our PRT (Permissionless Refereed Tournaments) fraud-proof system. You may recall the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/blog/introducing-honeypot/"><strong>previous Honeypot</strong></a> initiative launched in September 2023 with an authority mechanism for settling disputes but focused on challenging the robustness of the Cartesi Rollups stack and signaling its mainnet readiness. It also introduced a novel, community-driven approach to launching appchain infrastructure, with testing carried out openly and collaboratively by the broader developer community.The app remained uncracked throughout its run, holding a total of 1,772,889 CTSI, which was recently <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1940757477844455765"><strong>withdrawn</strong></a> to support other initiatives related to the new Honeypot. The idea remains the same: funds deposited into the Honeypot can only be withdrawn by Cartesi unless someone successfully exploits the system and claims the pot. This time around, a fraud-proof mechanism has been added, making it an open challenge to test the robustness of Cartesi’s permissionless security. Read more about the PRT Honeypot in its dedicated <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/blog/introducing-prt-honeypot/"><strong>blog post</strong></a>, and take a walk on X to explore how this could inspire other rollups in their quest for Stage 2:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/erickdemoura/status/1933387200378646864?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1933387200378646864%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F">https://x.com/erickdemoura/status/1933387200378646864?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1933387200378646864%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F</a></p><p>Part of the permissionless nature of this newest version, anyone can now become a validator and challenge computations onchain, creating a fully trustless environment. For those looking to get started and explore, our DevAdvocacy team published a step-by-step <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/honeypot/wiki/Running-a-validator-node"><strong>guide</strong></a> for running validator nodes, including a guide for easy deployment on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://fly.io/"><strong>Fly.io</strong></a>, that’s allowing users to be sure the node is running without using their own machine’s resources:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu/status/1936816851192860691?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1936816851192860691%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F">https://x.com/ChinonsoIdogwu/status/1936816851192860691?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1936816851192860691%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F</a></p><p>On the infrastructure side, a new alpha version of the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/application-templates/tree/prerelease/sdk-12"><strong>CLI (v2.0.0-alpha.15)</strong></a> has been released, featuring major updates to the node, contracts, and development flow. This release is currently intended for core developers and testers. It includes enhanced support for account abstraction SDKs. While the CLI already allowed users to make multiple transactions without signing each one, the new version adds compatibility with the Alchemy and ZeroDev SDKs, expanding possibilities for developers. It also introduces Passkeys, enabling users to create, store, and manage wallets on passkey enabled devices without needing to personally handle seed phrases or private keys. In addition, this release comes with a new Java template, expanding the design space by enabling Java developers to build and deploy their favorite Java applications on Cartesi.</p><p>Regarding the node, the latest Cartesi Rollups <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-node/releases/tag/v2.0.0-alpha.6"><strong>Node v2.0.0-alpha.6</strong></a> introduced a snapshot feature that lets nodes periodically save their state, helping them avoid full syncs from genesis after restarts. One other goal of NodeV2 is to reduce dependency on Docker, which caused occasional setup issues in previous versions. Discussions are ongoing to simplify node operations for both testnet and mainnet. For curious tech enthusiasts eager to follow R&amp;D discussions, Cartesi’s research happens openly and transparently. Everyone is welcome to follow the conversations in dedicated <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/channels/600597137524391947/1384915110094700564/1384915113106215062"><strong>Discord channels</strong></a>.</p><p>These updates, along with cleaner CLI behavior and various usability improvements, further enhance the developer experience and place convenience at the center. And now, with verifiable security built in and showcased by our PRT Honeypot, the pieces are coming together for a leading architectural approach to launching products, and everyone should “study Cartesi,” as L2Beat researcher says:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bkiepuszewski/status/1937890641247170917?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1937890641247170917%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F">https://x.com/bkiepuszewski/status/1937890641247170917?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1937890641247170917%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F</a></p><h1 id="h-ecosystem" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h1><p>Brazil continues to lead in Cartesi adoption, with new educational initiatives, integrations, and research efforts guided by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/in/antonio-rocha-02754099/"><strong>Professor Antonio Rocha</strong></a> of <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.uff.br/"><strong>Universidade Federal Fluminense</strong></a>. A hands-on Web3 course featuring Cartesi is now expanding to the Blockchain National Observatory community - a key initiative to promote blockchain technology in Brazil and a deliverable of the Ilíada Project developed by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.rnp.br/noticias/observatorio-nacional-de-blockchain-sera-lancado-para-impulsionar-discussao-sobre-tecnologia-no-brasil/"><strong>RNP</strong></a> (Rede Nacional de Ensino e Pesquisa) and CPQD (Centro de Pesquisa e Desenvolvimento em Telecomunicações), with support from the Ministry of Science, Technology and Innovation (MCTI). Taking place online in July, the program will introduce Cartesi development to over 2,000 partners, hackers, and developers across the region. The inaugural class will serve as a pilot and, depending on demand, may be repeated for future cohorts.</p><p>Looking ahead, a hybrid version of the course will launch in September at the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ufba.br/"><strong>Federal University of Bahia</strong></a>, combining online and in-person sessions to further grow Cartesi’s academic community.Moreover, users of the Blockchain National Observatory will soon be able to instantiate VM machines using Cartesi APIs, offering a “tasting menu” experience to explore the observatory’s blockchain network. This setup will enable the development of Cartesi dApps directly on the network. Documentation has already been prepared and will be made available, likely attracting developers interested in testing and building with Cartesi in this environment.</p><p>In applied projects, the electric bike-sharing dApp supported by a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.bikefacil.com/"><strong>local startup</strong></a> has entered a new six-month development phase. New features such as tokenized carbon credits, usage tracking, and incentives for bike returns are being integrated, showcasing blockchain’s potential to solve urban mobility challenges. On the same topic of urban mobility, check out a demo of another Cartesi-powered dApp focused on improving the public bus system. This project has caught the attention of Niterói’s municipality (Rio de Janeiro), which is now advancing with its implementation, setting a precedent for other smart cities to follow:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1932422743380918667?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1932422743380918667%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F">https://x.com/cartesiproject/status/1932422743380918667?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1932422743380918667%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F</a></p><p>On another vertical, a third scientific paper from the UFF Blockchain research group led by Professor Rocha has been accepted for publication, once again showcasing Cartesi as the core technology enabling academic exploration. Titled <em>Blockchain-Based Location Validation in an Environment of Mutual Distrust</em>, the paper will appear in the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://journals-sol.sbc.org.br/index.php/jisa/"><strong>Journal of Internet Services and Applications</strong></a> this year.</p><p>This work builds on previous research and is a derivation of the team’s earlier project involving a timetable-based bus contract system. Another paper is currently under review and is expected to be accepted soon, continuing the group&apos;s contribution to blockchain innovation through academic research.</p><p>This latest paper follows two prior publications by the group: <em>Auction-Based Resource Allocation Using a Layer-2 Blockchain</em>, presented at the 6th **<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://bcca-conference.org/2024/program_details.php">International Conference on Blockchain Computing and Applications (BCCA 2024) </a>**and <em>A New BRAIN-Based Approach to Resource Allocation Using Consortiums</em>, published at the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://iwcmc.net/2025/Detailed_Program.php"><strong>21st International Wireless Communications &amp; Mobile Computing Conference (IWCMC 2025)</strong></a>.</p><p>According to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/_aaarocha"><strong>Professor Antonio Rocha</strong></a>, Cartesi’s usability plays a key role in streamlining the research process. Its familiar programming environment allows students and researchers to focus on problem-solving and scientific inquiry, rather than spending excessive time learning blockchain-specific languages or architectures. Cartesi makes prototyping and validating blockchain-based solutions significantly more intuitive and flexible.</p><p>June also saw significant engagement with the community in Brazil through events and media. Cartesi was featured on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=REF5CgWJ8dQ&amp;list=PLq1JP6i9FcITXQQ_xijaPIle23rr8IQDa&amp;index=2"><strong>podcasts</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://techcripto.com/noticias/como-a-arquitetura-risc-v-pode-revolucionar-o-ethereum-e-toda-a-web3/06/2025/"><strong>articles</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/CartesiBR/status/1930678547623862772"><strong>panels</strong></a>, with contributors like <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni"><strong>Carlo Fragni</strong></a> hosting two lectures for <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.uff.br/"><strong>UFF</strong></a> undergraduate Game Programming students, exposing them to the full functionalities and potential of the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rives.io/"><strong>RIVES</strong></a> framework, and speaking at the TokenNation event in São Paulo:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/CartesiBR/status/1930676642365526231?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1930676642365526231%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F">https://x.com/CartesiBR/status/1930676642365526231?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1930676642365526231%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F</a></p><h1 id="h-developer-advocacy" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Advocacy</strong></h1><p>Supporting builders remains a top priority for our developer advocates. This month, they introduced new tutorials, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/Mugen-Builders/frontend-cartesi-wallet-x/tree/feature-v2"><strong>updated front-end templates</strong></a>, and enhanced documentation for Node V2, ensuring users will find everything ready when the new version is released. Moreover, the Cartesi-<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.espressosys.com/"><strong>Espresso</strong></a> integration also received a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.mugen.builders/cartesi-espresso-tutorial/building"><strong>documentation refresh</strong></a> integrating Node V2 Alpha that will allow anyone to use the most advanced and stable version of the node as soon as it becomes available. The Dev Advocacy team continues to refine Cartesi’s tooling and docs, making it easier to build and run scalable, modular dApps.</p><p>The “I Build, Therefore I Am” podcast hosted by our star <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/joaopdgarcia"><strong>João Garcia</strong></a>, remains a valuable resource for connecting with the broader ecosystem, exploring different potential integrations, and bringing new perspectives to our community. This month&apos;s episodes featured conversations with key figures from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://syscoin.org/"><strong>Syscoin</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.base.org/"><strong>Base</strong></a>, such as lead contributors <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1932769813547659427"><strong>Jagdeep Sidhu</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1937843253845651723"><strong>Erick Brown</strong></a>, with discussions on blockchain security, alternative architectures, AI integrations, the developer journey, rollups, and practical considerations in the quest for adoption. Catch up on all episodes via our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/podcast/"><strong>podcast page</strong></a> or on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://open.spotify.com/show/404GEL5B6sYoumCbuefwPD"><strong>Spotify</strong></a>.</p><h1 id="h-community" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Community</strong></h1><p>Our community continues to thrive, with meaningful engagement across the board: from X Spaces on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia/status/1933185769360740841"><strong>incentives</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/LunarStrategy/status/1930551780712296521"><strong>product-market fit</strong></a>, hosted by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia"><strong>Web3Global Media</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/LunarStrategy"><strong>LunarStrategy</strong></a>, to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/stskeeps/status/1935972007843172417"><strong>animated art</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bubbalexone/status/1935154049097285684"><strong>good old memes</strong></a> by Cartesians spreading creativity.And of course, the hot topic of Cartesi’s PRT Honeypot launching and reaching stage 2 according to L2Beat’s recategorization couldn’t be missed from the PR scene, with several media features in outlets like <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://hackernoon.com/why-cartesis-honeypot-launch-matters-for-the-future-of-blockchain-security"><strong>HackerNoon</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.altcoinbuzz.io/cryptocurrency-news/cartesi-launches-first-fraud-proof-rollup/"><strong>Altcoin Buzz</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://coincodex.com/article/68999/cartesi-honeypot-fraud-proof-rollup-upgrade/"><strong>CoinCodex</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://thenewscrypto.com/cartesi-launches-upgraded-version-of-honeypot-dapp-with-fraud-proof-system/"><strong>TheNewsCrypto</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://u.today/cartesi-introduces-big-protocol-upgrade-details"><strong>U.Today</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cryptodaily.co.uk/2025/06/cartesi-releases-new-honeypot-dapp-to-enhance-rollup-security"><strong>Crypto Daily</strong></a>, etc. Check out a full report of the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://marketacross.coveragebook.com/b/cf0aa5299a7a2b1c"><strong>media coverage</strong></a> thanks to the support of our agency Market Across.But if you prefer an audio walkthrough of what this is all about, just catch up on the latest episode of the Cartesian AI podcast:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/CryptoCyn/status/1937465222945558813?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1937465222945558813%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F">https://x.com/CryptoCyn/status/1937465222945558813?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1937465222945558813%7Ctwgr%5Eb5903a42d413cc58ba391640510acc11b7ad29ef%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fcartesi.io%2Fblog%2Fecosystem_updates_6%2F</a></p><p>Berlin Blockchain Week was another opportunity for our contributors <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bmaia_expat"><strong>Bruno Maia</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/stskeeps"><strong>Carsten Munk</strong></a> to connect in person with blockchain tech enthusiasts, with Carsten sharing insights on using Cartesi Machine to prove Linux execution with a Zero Knowledge Proof at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://zuberlin.city/"><strong>ZuBerlin</strong></a>. Watch the presentation <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/stskeeps/status/1934978907134116313"><strong>here</strong></a> (6:07:35).To finish the month in style, we launched a new series of quests on our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.galxe.com/quest/cartesi"><strong>Galxe Space</strong></a> to celebrate the PRT Honeypot launch, with 5,000 CTSI tokens raffled among all our supporters who spread the word. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.galxe.com/quest/cartesi/GCz2Stf8KT"><strong>Join here</strong></a> and good luck! And don’t forget to recommend our latest <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/@Cartesiproject/shorts"><strong>YouTube Shorts</strong></a> to your newbie friends. They’re a great shortcut to learning more about Cartesi.</p><h1 id="h-thats-a-wrap" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>That’s a Wrap</strong></h1><p>June solidified Cartesi’s position at the forefront of rollup innovation by launching a fully trustless Stage 2 app, making it the only Optimistic Rollup to achieve this milestone and a proud contributor to advancing Ethereum’s L2 landscape. We encourage everyone to join the conversation on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/cartesi"><strong>Discord</strong></a>, try their hand at hacking the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://honeypot.cartesi.io/"><strong>PRT Honeypot</strong></a> or running a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/honeypot/wiki/Running-a-validator-node"><strong>validator node</strong></a> to test things out, share feedback, and continue interacting on our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://linktr.ee/cartesi"><strong>public channels</strong></a>. This is your ecosystem, and together we keep pushing the boundaries till WAGMI.With momentum building, July promises further progress. Stay tuned for more updates, and as always, keep building and supporting Cartesi.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates #5, 2025]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-5-2025</link>
            <guid>U9dGhhUGr3D11QSbBtEZ</guid>
            <pubDate>Mon, 02 Jun 2025 14:25:09 GMT</pubDate>
            <description><![CDATA[May was all about momentum: key releases on the tech front, an energized community pushing the boundaries of creativity, and on-the-ground builder engagement from Brazil to Korea. Here&apos;s your full roundup of what happened across the Cartesi ecosystem this past month.TechCountdown to Cartesi Rollups Stage 2. For those who don’t know, L2Beat, the leading tracker for rollup security and decentralization, has implemented a countdown for all optimistic rollup projects that haven’t yet deploye...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/77f6822b6ae5a9f47f088e610fec7919649420bb11f1db40dfb532aaac72ceae.avif" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>May was all about momentum: key releases on the tech front, an energized community pushing the boundaries of creativity, and on-the-ground builder engagement from Brazil to Korea. Here&apos;s your full roundup of what happened across the Cartesi ecosystem this past month.</p><h1 id="h-tech" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h1><p>Countdown to Cartesi Rollups Stage 2. For those who don’t know, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://l2beat.com/scaling/summary"><strong>L2Beat</strong></a>, the leading tracker for rollup security and decentralization, has implemented a countdown for all optimistic rollup projects that haven’t yet deployed a fully functional and permissionless fraud-proof system. If they don’t, they’ll be downgraded.</p><p>This mission has been on Cartesi’s table for a few months now, and we’re closer than ever to completing it.</p><p>Our PRT fraud-proof system, the predecessor of Dave (learn more from its creator, Gabriel Coutinho, in his <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=1CaV6nwe-Sg&amp;t=27s"><strong>Devcon talk</strong></a>), now has its own honeypot on testnet, and will soon go live on mainnet as Cartesi’s first Stage 2 rollup implementation.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/claudioengdist/status/1926988819829571737"><strong>Everything’s on track</strong></a>, and we can’t wait to celebrate this milestone with the community.</p><p>Speaking of milestones, a new release at the core of Cartesi’s technology is now live: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/machine-emulator/releases/tag/v0.19.0"><strong>Cartesi Machine Emulator v0.19.0</strong></a>, with numerous performance optimizations and new and improved APIs for interacting with the machine. It is also the first version to include primitives supporting ZK verification of Cartesi Machine execution, which in the future will serve as the basic blocks for Cartesi’s upcoming next-gen proof system implementations.</p><p>On another front, more progress came from the integration side. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/cartesi/rollups-espresso-reader/releases/tag/v0.3.0"><strong>Espresso Reader v0.3.0 is now live</strong></a>, offering smoother compatibility with the latest Espresso Decaf testnet and support for Cartesi&apos;s Node v2 alpha.4. This brings us a step closer to a developer-friendly workflow where Cartesi and Espresso run seamlessly together, locally and reliably.</p><p>The Cartesi + Espresso SDK is now synced with the latest API version, and a CLI integration is on the horizon to round out the experience. Devs building with composable infrastructure should keep an eye on this space and are welcome to take the SDK for a test run in their quest to do more in Web3.And last but not least, fresh from our tech team’s hands and marking another highlight of the past month: the rollups-contracts v2.0.0 packages are now live across all supported networks, fully deployed on both Testnets and Mainnets. Catch the full scoop on our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/channels/600597137524391947/1104007675370553505/1378037478656704552"><strong>Discord R&amp;D #rollups channel</strong></a>.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/claudioengdist/status/1928537200339095694">https://x.com/claudioengdist/status/1928537200339095694</a></p><h1 id="h-developer-advocacy" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Advocacy</strong></h1><p>To help developers dive deeper into the Cartesi tech stack, May featured a special <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mp.weixin.qq.com/s/c7nDt2F6YT9jKwRo4tueaA"><strong>masterclass led by João Garcia, our DevAdvocacy Lead</strong></a>, organized in collaboration with the OpenBuild community for our Chinese audience. The session walked through hands-on demos and key technical concepts for building scalable and computationally powerful dApps on Cartesi. The full replay is available <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.bilibili.com/video/BV1U75NzjE6s/"><strong>here</strong></a>. And that wasn’t the only public appearance. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=EymrXnocoUI"><strong>João also joined Kevin, the host of the Wavect podcast</strong></a>, where he unpacked the reasons to build with Cartesi and the benefits of our Linux-based appchains.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/kevinriedl_eth/status/1923279424725614960">https://x.com/kevinriedl_eth/status/1923279424725614960</a></p><p>Documentation continues to evolve, with improvements aimed at making it easier for developers to build with the latest architecture reflecting the newest Node V2 release, along with a dedicated section for the Espresso integration to help teams get up to speed on this modular combo.</p><p>On the developer experience front, updates have been rolled out across several high-level frameworks, including Rust, Go, and Python, making it easier to experiment in different programming languages. The front end isn’t left behind either: new templates and tools are now available to help developers scaffold dApps faster.</p><p>Lastly, for those exploring AI interactions, our contributors introduced a Model Context Protocol template, enabling apps to communicate with AI agents in a more structured way.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/henrimarlon_/status/1924604883233013772">https://x.com/henrimarlon_/status/1924604883233013772</a></p><p>Two new episodes of the I Build, Therefore I am (Brain to Board) podcast have been uploaded. This month, we caught up with two driving forces in our ecosystem. We welcomed <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1922622940279128151"><strong>Zach Prater to talk about WorldTycoon</strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1927696393206132911"><strong>UFF Professor Antonio Rocha, who walked us through the many initiatives happening in Brazil</strong></a>. He shared how Cartesi is being used in academia and highlighted real-world solutions built with our tech that are receiving support from local government programs. For a full list of all episodes, check it out here on the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/podcast/"><strong>podcast page</strong></a>.</p><h1 id="h-ecosystem" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h1><p>Brazil is rapidly emerging as a key region for Cartesi adoption and innovation, with meaningful initiatives driving real-world impact, led by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/in/antonio-rocha-02754099/"><strong>Professor Antonio Rocha from Universidade Federal Fluminense</strong></a>, who has been mentoring students to build practical applications with Cartesi that address societal needs.</p><p>A public transport project built on Cartesi and backed by the local government is already showing how blockchain can support civic infrastructure by ensuring transparency and accountability. Meanwhile, a bike-sharing dApp supported by a local startup is highlighting Cartesi’s potential in urban mobility and community-led solutions. Importantly, these projects are open source, allowing other smart city initiatives to adopt and implement them.</p><p>An API integration now connects Cartesi Rollups to Brazil’s National Blockchain Observatory network, building important bridges between public digital infrastructure and our modular rollup architecture, while opening a playground for experimentation and new explorations of Cartesi-powered solutions.</p><p>Cartesi is also entering academic programs across the country. Web3 courses featuring Cartesi modules are being introduced to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.rnp.br/"><strong>RNP</strong></a>’s partner institutions, preparing the next generation of builders and we are excited to be part of this regional momentum of blockchain adoption. Tune in to the latest episode of the I Build, Therefore I Am podcast for the full breakdown:</p><div data-type="youtube" videoId="NKAY-ZIuvCA">
      <div class="youtube-player" data-id="NKAY-ZIuvCA" style="background-image: url('https://i.ytimg.com/vi/NKAY-ZIuvCA/hqdefault.jpg'); background-size: cover; background-position: center">
        <a href="https://www.youtube.com/watch?v=NKAY-ZIuvCA">
          <img src="{{DOMAIN}}/editor/youtube/play.png" class="play"/>
        </a>
      </div></div><p>On the gaming side, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/World_Tycoon_"><strong>World Tycoon</strong></a> continues its public playtest. This SimCity-style game lets players build and manage cities with onchain mechanics. And it&apos;s not just for fun, players can now tokenize their in-game state as NFTs and potentially monetize their creations, thanks to the latest <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ZacPrater/status/1924470782240928126"><strong>release</strong></a>. That’s a big step in connecting gameplay with ownership. Want in? Their MVP is live in-browser and open to testers. Be sure to join their <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://discord.gg/fphJGfs67U"><strong>Discord</strong></a>. Rumor has it that everyone who helps test and provides feedback could be in for a reward.</p><p>Over at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rives.io/"><strong>RIVES</strong></a>, the Game Jam challenge just wrapped up. Devs (and dev-curious players) were invited to build a single-player Tower Defense game with score-based elements like leaderboards and speedruns. With Cartesi-powered tech as a backend infra and the vibe-code energy high, the stage opened up for creative builders, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://itch.io/jam/rives-jam-4/entries"><strong>submissions</strong></a> rolled in. Community voting is next, and winners will be announced on June 6th 23:59h UTC.</p><p>And speaking of RIVES, contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni"><strong>Carlo Fragni</strong></a> hosted a Cartesi-powered workshop at the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.uff.br/"><strong>Universidade Federal Fluminense</strong></a> in Rio de Janeiro, Brazil on May 27 and 29. A great opportunity for students to get hands-on with game development, built IRL with real infrastructure and mentorship.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/CartesiBR/status/1928138668604281150">https://x.com/CartesiBR/status/1928138668604281150</a></p><h1 id="h-cartesi-grants-program" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Cartesi Grants Program</strong></h1><p>Wave 2 of the Cartesi Grants Program has officially wrapped up! As the 6-month program came to a close, the Grants Council spent the final month engaging with grantees, providing feedback on milestone deliverables submitted across various projects, and concluding the second phase of the program. For a detailed breakdown, don’t miss Grants Stewardess <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://governance.cartesi.io/t/cartesi-grants-program-wave-2-wind-down/505"><strong>Hellen&apos;s recap of all the highlights</strong></a> from this wave.Moving forward, Cartesi will continue to assess and review the active grants from Wave 2 to ensure they are delivering on their intended outcomes. A deliberate pause in the program will follow to reflect, learn, and analyze the overall impact of Wave 2, particularly in understanding how these grant programs serve as key touchpoints with the community.</p><h1 id="h-community" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Community</strong></h1><p>Cartesi and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.espressosys.com/"><strong>Espresso</strong></a> teamed up for a giveaway of their one-of-a-kind NFT collection: The Composables. Community members joined a three-day challenge on X and Telegram for a shot at guaranteed mint spots. With creativity pouring in, our AI Telegram agent <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://plushie.ai/"><strong>Plushie</strong></a> reviewed entries and picked three winners: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/PerrieDExplorer/status/1924894445033685478"><strong>Perrie</strong></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/andy1eth/status/1925314019625156643"><strong>Andy</strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/JohnnyDeath88/status/1925584477352599974"><strong>Johnny</strong></a>. We’re already seeing them rocking those Composable NFTs, but penguin creativity hasn’t fallen behind either.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/JohnnyDeath88/status/1925584477352599974">https://x.com/JohnnyDeath88/status/1925584477352599974</a></p><p>In Korea, our ambassador <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/yoojei88/status/1925475136817553809"><strong>Jay represented Cartesi at TokenPost events</strong></a>, engaging with local builders and raising awareness about the protocol within the community. And did you know we have a dedicated <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.naver.com/cartesi_korea"><strong>blog for Cartesi content in Korean</strong></a>? If you&apos;re part of the Korean community, keep an eye on it to better understand all things Cartesi.</p><p>In the X Spaces realm, it is always a pleasure to connect with our friends from the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia"><strong>Web3 Global Media</strong></a> community. This past week, we joined one of their Thursday Spaces on the topic of AI, featuring none other than <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bmaia_expat"><strong>Bruno Maia</strong></a> taking the mic to share meaningful intersections between Web3 and AI. Catch the full conversation on their latest X Space <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/i/spaces/1ZkJzYdZOBeGv"><strong>here</strong></a>.</p><p>With Warpcast making headlines as it rebrands to Farcaster, it&apos;s a good time to highlight that Cartesi has been live on the platform since 2022. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://farcaster.xyz/cartesi"><strong>Follow us</strong></a> and join the conversation on our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://farcaster.xyz/~/channel/cartesi"><strong>channel</strong></a>. And speaking of news channels, do you prefer reading these updates on Mirror for some added Web3 vibes? Say no more and check out <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/cartesians.eth"><strong>our profile</strong></a> there.</p><p>By the way, did you catch our community choosing their penguin fighter? All were claimed. Gmert, Beeguin, Icepaper Maxi, DevTesi, SnowscriptDev, and the rest now all have an owner. Second edition ideation, anyone?</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/CryptoCyn/status/1927361527457132652">https://x.com/CryptoCyn/status/1927361527457132652</a></p><h1 id="h-thats-a-wrap" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>That’s a Wrap</strong></h1><p>May brought major progress across the board, from dev tools and tech releases to game development, builder engagement across continents, and growing community awareness. June is already shaping up to carry that momentum forward, especially as we get ready to enter Stage 2, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/erickdemoura/status/1929426238893867267"><strong>meeting L2Beat’s high standards for rollup security and decentralization</strong></a> with the implementation of our permissionless fraud-proof system. Stay tuned for what’s next!</p><p>As always, for live updates, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://discord.gg/cartesiproject"><strong>join us on Discord</strong></a> and make sure you&apos;re following us on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject"><strong>X</strong></a>.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates #4, 2025]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-4-2025</link>
            <guid>mwKrZvIyB58YhX6tdqg8</guid>
            <pubDate>Mon, 12 May 2025 14:56:13 GMT</pubDate>
            <description><![CDATA[Long before RISC-V became the hot topic of 2025, it was already at the heart of Cartesi’s protocol. Since 2018, Cartesi has chosen RISC-V as a foundational pillar, believing it to be the bridge between mainstream software development and decentralized systems. As an open and modular instruction set, RISC-V supports deterministic execution, formal verification, and compatibility with battle-tested dev tools. It’s simple, adaptable, future-proof, and allows for operating systems to be run on to...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/f60efbbaec45ba963e7c4d03d57ecc496c96ca7197a4447f2d820f593dce7b39.avif" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Long before RISC-V became the hot topic of 2025, it was already at the heart of Cartesi’s protocol. Since 2018, Cartesi has chosen RISC-V as a foundational pillar, believing it to be the bridge between mainstream software development and decentralized systems.</p><p>As an open and modular instruction set, RISC-V supports deterministic execution, formal verification, and compatibility with battle-tested dev tools. It’s simple, adaptable, future-proof, and allows for operating systems to be run on top. It makes Cartesi not only backward compatible but also forward compatible. And unlike the Ethereum Virtual Machine, which forces developers to relearn even the most basic computing operations, RISC-V enables Cartesi to offer developers full Linux environments. That means decades of existing software tooling, libraries, compilers, and innovation, all suddenly usable in a blockchain context.So when Vitalik Buterin proposed migrating Ethereum&apos;s execution environment toward RISC-V, Cartesi’s long-standing bet on this architecture suddenly felt validated, though driven by different motivations. Still, RISC-V isn’t just a better technical choice. It’s a strategic one, with the potential to standardize blockchain infrastructure.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/erickdemoura/status/1914576033040490782">https://x.com/erickdemoura/status/1914576033040490782</a></p><p>As more blockchains converge on RISC-V, the benefits will compound. On this very premise of not reinventing the wheel and standing on the shoulders of giants, Cartesi has been building to this day. That brings us to a review of our latest updates from the past month. So, let’s dive in.</p><h1 id="h-tech" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h1><p>Stage 2 Rollups are getting closer, with the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiproject/status/1919738932587053319"><strong>PRT fraud-proof honeypot app now live on Testnet</strong></a>! Efficiency tweaks are underway to get it fully operational, and once that’s done, you can bet it’ll be hitting Mainnet soon, inviting the community to try and outsmart PRT by breaking it.</p><p>Meanwhile, Rollups V2 continues to mature with several exciting alpha releases. A shoutout to all contributors testing the V2 alphas. This version introduces a multi-dApp Node architecture, which will significantly reduce costs. The team has also been refining the JSON-RPC API and Data Availability features to improve integration with Espresso, Avail, and more.</p><p>New snapshot capabilities for Node V2 are also in the works, allowing apps to periodically save state, making machines faster to start. And to top it off, the new Explorer for V2 Alpha is live, marking a significant update in the evolution of Cartesi tech.</p><p>On the Cartesi Coprocessor front, the team has released Cartesi Machine 0.19.0-alpha3, packed with several improvements, including a notable boost in speed. A major recent shift in EigenLayer is the introduction of Operator Sets, and we’ve successfully deployed a new version of the Coprocessor on Holesky to support them. We&apos;re fully prepared for slashing once it becomes available. Another important update: the Coprocessor CLI is now combined with the Cartesi CLI, streamlining the developer experience.</p><p>For the full Ecosystem Updates Call, watch it <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=QKFIOOmkzMc"><strong>here</strong></a>.</p><h1 id="h-ecosystem" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h1><p>We have updates all the way from Brazil. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/_aarocha"><strong>Prof. Antonio Rocha</strong></a> from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/uff_br"><strong>UFF</strong></a> is spearheading Cartesi initiatives with the students there: A machine unlearning model has already been deployed on the Cartesi Machine by one of them, as part of Cartesi Rollups being integrated into the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.rnp.br/projetos/iliada/"><strong>RNP Brazilian Research Blockchain network</strong></a>. We’re genuinely excited about this opportunity to collaborate with universities. It’s a long-term investment in the future. It’s not just about supporting today’s developers; we also need to engage and inspire the developers of tomorrow.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/JoaoPauloThinks/status/1918803003055731157">https://x.com/JoaoPauloThinks/status/1918803003055731157</a></p><p>When it comes to real-world use cases for Cartesi, this collaboration shows enormous potential. The Fluminense Federal University (UFF) and the local government in Brazil (Niterói Municipality) have been teaming up on a first proof of concept: a public transportation app for buses, with key components powered by Cartesi. What makes this especially meaningful is that end users won’t need to know the app is built on the blockchain; they’ll benefit from its attributes, accountability and verifiability, enhanced privacy and data protection without even needing any technical knowledge. Solving society&apos;s problems is the path to adoption, and Cartesi is well equipped to make it happen!</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://drawingcanvas.io/"><strong>Drawing Canvas</strong></a>, the onchain platform for collaborative art and minting, is upgrading its infrastructure to the latest versions of Cartesi Rollups and Node. With performance testing now complete, the team is gearing up for a Testnet release. That means it won’t be long before we can all unleash our inner onchain artists. Follow them on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/drawing_canvas"><strong>X</strong></a> to stay up to date on the launch and more.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/World_Tycoon_"><strong>World Tycoon</strong></a> is reimagining the SimCity-style simulator for the crypto era, allowing players to build cities using a familiar game engine, now infused with real-world economics. They’ve recently completed their Cartesi Grants Program and have launched a working MVP in the browser, currently available to private testers. Want to get in early? As a reader of this blog, you get the alpha. Join World Tycoon’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/fphJGfs67U"><strong>Discord channel</strong></a> to take part in the playtest.</p><h1 id="h-cartesi-grants-program" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Cartesi Grants Program</strong></h1><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ThinkandDev"><strong>Think&amp;Dev</strong></a> Boardgame Framework, a project aiming to develop a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://boardgame.io/"><strong>boardgame.io</strong></a> inspired library to empower game devs to create turn-based board games, has completed milestones 3 and 4, which include: adding a lobby system for multiple match managing, integrated XMTP chat for in-game comms, and connected DRAND for onchain randomness. A big step in boosting scalability and enabling real-time interaction, which is key in gaming.</p><p>The <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/RiscZero"><strong>RiscZero</strong></a> + Cartesi Integration Template and Documentation proposal by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/MichaelAsiedu_"><strong>Michael Asiedu</strong></a> is coming along, with all RFP deliverables completed, including full documentation and template code available. We’re extremely excited about this project, as it enables Cartesi dApps to validate complex computations offchain using ZK proofs, without needing to rerun them. What this means for builders is that there’s a lower barrier to building privacy-preserving solutions, even more so with a step-by-step guide to verify your first zk-proof in Cartesi. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.mugen.builders/cartesi-risczero-tutorial/introduction"><strong>Check it out here!</strong></a></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/MichaelAsiedu_/status/1910702813312590111">https://x.com/MichaelAsiedu_/status/1910702813312590111</a></p><p>The Cartesi–<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/chainlink"><strong>Chainlink</strong></a> library has officially been accepted into Wave 2, and the team is leading the charge with in-depth research across both ecosystems to gain a deep understanding of each tech stack in order to design the cleanest, most effective way to integrate Cartesi dApps with Chainlink automation. For developers, this means they’ll soon be able to seamlessly implement advanced automation features, from time-based triggers and offchain verifiable computations to complex conditional logic, all within their Cartesi dApps.</p><p>Ready to build? Explore <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charmverse.io/cartesi-grants-program/available-rfps-319950606423157"><strong>all available RFPs</strong></a> and find your new passion project. And if you need inspiration, all proposals are publicly listed <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charmverse.io/cartesi-grants-program/proposals?viewId=all"><strong>here</strong></a>.</p><p>Not a developer yourself, but know someone who is? Refer them through the DevDrop Incentive Program and earn $500 in CTSI when they submit a proposal that gets successfully funded!</p><h1 id="h-developer-advocacy" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Advocacy</strong></h1><p>At Cartesi, we take our documentation seriously. It’s the gateway to developer adoption. Clear, accessible docs and well-crafted guides are essential, and we’re committed to getting them right. Our amazing developer advocacy team understands this better than anyone, which is why they’ve begun a comprehensive revamp of the Cartesi documentation. They’re currently researching what can be improved, from tutorials to overall structure, all with the goal of helping developers better understand Cartesi and its products, including the Cartesi Machine, Cartesi Rollups, Dave, and the Cartesi Coprocessor.</p><p>They’ve updated the Rust and Go frameworks to be compatible with the new Node version, ensuring seamless integration with the Coprocessor. They’re also actively enhancing the Coprocessor tooling, refining everything to make it easier for developers to dive in and start exploring the Cartesi tech stack.</p><p>Two new episodes of the I Build, Therefore I am (Brain to Board) podcast have been uploaded. This month, we focused on our own ecosystem builders. João Garcia sat down with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=jO2PQ6fi9hY"><strong>Shaheen Ahmed to talk about their app Comet</strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=QP32kVQDMrY&amp;t=1s"><strong>Michael Asiedu to chat with us through the RiscZero + Cartesi integration</strong></a>. For a full list of all episodes, check it out here on the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/podcast/"><strong>podcast page</strong></a>.</p><h1 id="h-community" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Community</strong></h1><p>Aside from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bubbalexone/status/1912838276106596721"><strong>fur logo trends</strong></a> and the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/bubbalexone/status/1915735644695089190"><strong>International Penguin Day celebration</strong></a>, April has been a joyful month in the community. If you’re in the Cartesi Community Telegram, first of all, we love to see it. Second, we had a blast welcoming our AI companion, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/plushieAI"><strong>Plushie AI</strong></a>, trained on all things Cartesi! It even helped us host an Easter egg hunt with CTSI up for grabs. Huge thanks to everyone who joined in. Missed out? <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesiproject"><strong>Join the Telegram</strong></a> to stay connected with fellow Cartesians, chat with Plushie, and catch more fun events like this.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/CryptoEights/status/1915304286042677333">https://x.com/CryptoEights/status/1915304286042677333</a></p><p>On the regional communities side of things, and on the other side of the globe, over in Lviv, you could find <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/pulsar5991/status/1916451577486811407"><strong>Mykhailo</strong></a> chatting with devs about the possibilities of what can be done with Cartesi.</p><p>And how about the anon keeping Cartesi loud and meme-filled on X? Go show some love and give that <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/cartesiian"><strong>Cartesian</strong></a> a follow. Or, if you’ve been hanging out on Warpcast lately, make sure you’re in the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://warpcast.com/~/channel/cartesi"><strong>/cartesi</strong></a> channel and help us grow on Farcaster as well.</p><h1 id="h-upcoming-events" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Upcoming Events</strong></h1><p>Coming up in Lisbon, our Developer Advocate Lead João Garcia will be at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ETHLisbon/status/1915790509764678069"><strong>ETHLisbon</strong></a> from May 9 to 11 as a mentor, ready to collaborate with builders and share his insights.</p><p>Join us every Monday for a fresh Ecosystem Updates Call, and stay tuned for new episodes of the <em>I Build, Therefore I Am</em> podcast every two weeks.</p><p>For an overview, you can always check Cartesi’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://calendar.google.com/calendar/embed?src=c_faa93a56a7bebb66b119b8cd2e2bf110b8641097a669b21884b6886415ca83c2%40group.calendar.google.com"><strong>public events calendar</strong></a>.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates #3, 2025]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-3-2025</link>
            <guid>Mvs8KpVuB2ibFmcTvPGR</guid>
            <pubDate>Fri, 09 May 2025 12:33:42 GMT</pubDate>
            <description><![CDATA[TechThe markets are going through a challenging time right now, that’s something we can’t ignore. We feel the pain, and it&apos;s a sentiment shared by everyone in the ecosystem. That said, we couldn’t be more proud of what Cartesi is building, and our belief in the vision remains stronger than ever. On the tech front, exciting progress is underway. Rollups V2 is on the horizon, marking a major leap forward in the maturity of Cartesi&apos;s technology. This brings us closer to the vision we&a...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/3eed25a858d71e7ddeccbacdfd2e983598065818ed03681b06d83ef3b80eaf62.avif" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h1 id="h-tech" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h1><p>The markets are going through a challenging time right now, that’s something we can’t ignore. We feel the pain, and it&apos;s a sentiment shared by everyone in the ecosystem. That said, we couldn’t be more proud of what Cartesi is building, and <strong>our belief in the vision</strong> remains stronger than ever.</p><p><strong>On the tech front, exciting progress is underway. Rollups V2</strong> is on the horizon, marking a major leap forward in the maturity of Cartesi&apos;s technology. This brings us closer to the vision we&apos;ve long held, <strong>reaching Stage 2 Rollups</strong>. It&apos;s not just a milestone for the Cartesi ecosystem; it&apos;s something the broader Web3 community both needs and wants.</p><p><strong>Node V2</strong> has reached a key point: it’s now ‘’<strong>feature complete</strong>’’. While it’s still in testing, all intended capabilities are already in place, including the <strong>JSON-RPC API</strong>, which offers more flexibility and ease of use for both clients and node operators. One big highlight is the integration of <strong>Data Availability (DA)</strong>, which is now part of the application deployment process. We&apos;re calling on builders to help <strong>battle-test the node</strong> and push it to its limits.</p><p>Meanwhile, the <strong>Cartesi CLI</strong> is evolving right alongside the node. The <strong>alpha release is already out</strong>, built to support Node V2. Additionally, the node now includes optional components. An example would be a <strong>local execution environment with Espresso infrastructure</strong>, if you&apos;re using Espresso. The CLI itself has been overhauled with a new command structure to better support both <strong>Rollups</strong> and the <strong>Cartesi Coprocessor</strong>. And for even more good news, it now starts up in just <strong>3 seconds</strong>.</p><p><strong>On the Cartesi Coprocessor front</strong>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/stskeeps/status/1900537355099869372"><strong>we’ve released v1.1.0</strong></a>, addressing the majority of issues developers encountered during <strong>Experiment Week with EigenLayer</strong>. To keep momentum and continued progress, we&apos;ve also <strong>restarted the Coprocessor workgroup</strong> with a clear goal in mind: having <strong>active builders</strong> on the Cartesi Coprocessor.</p><p>For the full Ecosystem Updates Call, watch it <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=tn55pS6UCUM&amp;t=1s"><strong>here</strong></a>.</p><h1 id="h-ecosystem" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h1><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/World_Tycoon_"><strong>World Tycoon</strong></a> is bringing the SimCity-style simulator into the crypto era, letting players build cities using the same classic game engine, now powered by real economics. All core features are complete, and the team is working on deploying on the Base testnet! We’re super excited to try it out, explore the game, and share feedback to help them keep evolving it.</p><p>What’s on the horizon for <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/Comet_ing"><strong>Comet</strong></a><strong>?</strong> A testnet alpha launch with Cartesi Rollups 2.0 is coming soon. We&apos;re excited to gather player feedback during the beta testing phase, with the aim that anyone can build their own Comet using Cartesi and Espresso.<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/dca_monster"><strong>DCA.Monster</strong></a>, a DEX enabling stream swaps and conditional swaps for optimal onchain DCA, has been quietly building behind the scenes, focused on securing long-term funding. They’re cooking and will share more soon as they will continue code audit and mainnet launch prep.</p><h1 id="h-cartesi-grants-program" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Cartesi Grants Program</strong></h1><p>Last month, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/MichaelAsiedu_"><strong>Michael Asiedu</strong></a> stepped up to tackle the RFP for integrating RISC Zero with Cartesi aiming to bring privacy-preserving computations to the Cartesi Machine. The goal? To give developers a plug-and-play framework for executing zk-proof verifications within Cartesi’s infrastructure.</p><p>The latest update: Michael now has a fully functional toolkit that bridges RISC Zero’s ZK proofs with Cartesi’s offchain computation stack, leveraging both Rollups and Coprocessor patterns.</p><p>Ready to build? Explore <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charmverse.io/cartesi-grants-program/available-rfps-319950606423157"><strong>all available RFPs</strong></a> and find the perfect place to put your programming skills to work. Want to see what others are working on? All proposals are publicly listed <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charmverse.io/cartesi-grants-program/proposals?viewId=all"><strong>here</strong></a>.</p><p>Not a developer yourself, but know someone who is? Refer them through the <strong>DevDrop Incentive Program</strong> and earn $500 in CTSI when they submit a proposal that gets successfully funded!</p><h1 id="h-developer-advocacy" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Advocacy</strong></h1><p>Our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.mugen.builders/"><strong>Cartesi DevAd</strong></a> team is always ready to support developers with top tier resources and mentorship. Whether you&apos;re just getting started or deep into building your Cartesi dApp, you can count on them every step of the way.</p><p>Last month, the team zeroed in on Node v2, now live on staging, and rolled out a brand new series of Golang tutorial videos, which you can check out <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/playlist?list=PLBhZhjC62MmmVnEJqih2d6sDsf6o99pug"><strong>here</strong></a>.</p><p>More curious about the Cartesi Coprocessor? Say less.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ChinonsoIdogwu/status/1904606880049017019">https://x.com/ChinonsoIdogwu/status/1904606880049017019</a></p><p>They also dropped two fresh episodes of <em>I Build, Therefore I Am (Brain to Board)</em>! This time, João Garcia sat down with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=VMnbk_C-LUU&amp;t=580s"><strong>Nick Dodson, CEO of Fuel</strong></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=f-OdR2QcXpw"><strong>Carsten Munk, Cartesi Foundation Member</strong></a>. It was an absolute joy to have them on the podcast, and we’re grateful for their hot takes. For a full list of all episodes, check it out here on the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/podcast/"><strong>podcast page</strong></a>.</p><h1 id="h-cartesi-foundation" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Cartesi Foundation</strong></h1><p>The Cartesi Foundation is reaffirming its long-term commitment to the ecosystem through a <strong>strategic open market purchase of at least $500,000 worth of CTSI</strong>. These tokens will be gradually acquired over time and added to the Foundation’s treasury, with the purchase plan subject to adjustment in the Foundation’s discretion depending on market conditions.</p><p>This move reflects the Foundation’s <strong>strong belief in Cartesi’s long-term vision</strong>. As the ecosystem continues to grow, gain technical traction, and break new ground, it’s clear that Cartesi is in a prime position to help shape the future of dApps.</p><h1 id="h-events" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Events</strong></h1><p>Cartesi joined <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia/status/1896496377385136218?s=46&amp;t=mGHP8Hk4s0azqLZbjA-GfA"><strong>a week-long series of Web3 Global Talks Spaces</strong></a>, hosted by Web3 Global. Tuning in was a great way to catch up with the team and dive into some insightful discussions. Their topics are always on trend and relevant, so you should definitely give them a follow.</p><p>Core contributor Siannie also made an appearance at Web3 Global’s live event in Amsterdam, showing our penguin mascot some well-deserved love in person. Meanwhile, our South Korean ambassador Jay repped Cartesi at Southeast Blockchain Week!</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/yoojei88/status/1907806120468689255">https://x.com/yoojei88/status/1907806120468689255</a></p><p>That doesn’t mean there wasn’t anything happening online. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/stskeeps"><strong>Carsten Munk</strong></a> jumped on a DeFi Roundtable hosted by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/kernel_dao"><strong>KernelDAO</strong></a>, with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/VennBuild"><strong>Venn Network</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/interstatefdn"><strong>Interstate</strong></a>, which you can listen to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/i/spaces/1LyxBWmalBPKN/peek"><strong>here</strong></a>.</p><h1 id="h-upcoming-events" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Upcoming Events</strong></h1><p>Join us every Monday for a fresh Ecosystem Updates Call, and stay tuned for new episodes of the <em>I Build, Therefore I Am</em> podcast every two weeks.</p><p>For an overview, you can always check Cartesi’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://calendar.google.com/calendar/embed?src=c_faa93a56a7bebb66b119b8cd2e2bf110b8641097a669b21884b6886415ca83c2%40group.calendar.google.com"><strong>public events calendar</strong></a>.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates #2, 2025]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-2-2025</link>
            <guid>IDI2crxs1VbMUXWnOa86</guid>
            <pubDate>Mon, 05 May 2025 13:32:35 GMT</pubDate>
            <description><![CDATA[TechWe are determined to become the most secure decentralized rollup infrastructure. Core contributor Gabriel Coutinho has shared a new post on ethresearch about Dave, Cartesi’s fraud-proof algorithm. It is a more concise read than the full paper but presents a deeper dive into what has been shared during his presentation at Devcon in Bangkok, providing an overview of the algorithm and its results. Read it here. https://x.com/donnoh_eth/status/1895131860675797143 The Cartesi Coprocessor is ev...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/352c09ca62a7d8717e8b5989f89eaf74f7c98d517c22ce3e934d6fdb625a85b2.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-tech" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h2><p>We are determined to become the most secure decentralized rollup infrastructure. Core contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/GCdePaula_"><strong>Gabriel Coutinho</strong></a> has shared a new post on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethresear.ch/t/the-dave-fraud-proof-algorithm/21844"><strong>ethresearch about Dave</strong></a>, Cartesi’s fraud-proof algorithm. It is a more concise read than the full paper but presents a deeper dive into what has been shared during <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=1CaV6nwe-Sg"><strong>his presentation at Devcon in Bangkok</strong></a>, providing an overview of the algorithm and its results. Read it <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethresear.ch/t/the-dave-fraud-proof-algorithm/21844"><strong>here</strong></a>.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/donnoh_eth/status/1895131860675797143">https://x.com/donnoh_eth/status/1895131860675797143</a></p><p>The Cartesi Coprocessor is evolving with several upcoming features the team is actively working on. These include Ethereum state access (eth_call), allowing to query the Ethereum state in an easy manner, onboarding operators, and integration of coprocessor functionality with Cartesi CLI.</p><p>We have wrapped up the Cartesi x <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/eigenlayer"><strong>EigenLayer</strong></a> Experiment Week #3, which you can read all about in the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/blog/experiment-week-3-recap/"><strong>dedicated blog post</strong></a>. The ThinkChain project gained particular attention, as Cartesi became the first and only blockchain stack to bring fully trust-minimized LLM inference onchain, with DeepSeek serving as a pioneering example.</p><p>Cartesi’s RISC-V VM uniquely allows developers to run standard AI libraries—such as TensorFlow, PyTorch, and Llama.cpp—within a decentralized framework, making it the most feasible environment for real onchain AI development, enabling AI to be leveraged in a fully deterministic way.</p><p>Unlike traditional TEEs, which offer enhanced security but remain vulnerable to single points of failure, Cartesi provides a verifiable, decentralized execution environment capable of fully onchain AI inference. Read more about ThinkChain <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rolluplab.cartesi.io/thinkchain/"><strong>here</strong></a>.</p><p>New versions of the Espresso integrations have been released to improve the robustness, and it’s already supporting two applications on testnet. The next goal is to make them more accessible to a broader audience by creating user-friendly documentation, tutorials, and an improved developer experience—making it easy for anyone to launch a Cartesi x Espresso application.</p><p>For the full Ecosystem Updates Call, watch it <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/live/BWl0WubPJ_U?si=YUhbSXsI7vTQodEv"><strong>here</strong></a>.</p><h2 id="h-ecosystem" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/rives_io"><strong>RIVES</strong></a>, the onchain gaming console where you can create, collect, and play small apps and games, is working through updates to Node V2. This will improve the experience for users, making it smoother, plus will remove the need to maintain separate versions. Create &amp; play <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rives.io/"><strong>here</strong></a>.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/drawing_canvas"><strong>Drawing Canvas</strong></a> successfully deployed its latest version on the Sepolia Testnet and is currently testing the platform with a select group of people, focusing on optimizing performance, UI, and UX. In the upcoming weeks, the goal is to launch their first Testnet campaign. Give it a try <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://drawingcanvas.io/"><strong>here</strong></a>.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/LocaleDao"><strong>Locale Network</strong></a>, has some business developments updates to share. Locale Network is a Web3 lending platform providing dynamically adjusting smart contract loans with real-time data transparency and low-risk guaranteed loans for small business owners. They’re currently working on securing partnerships for initial pool offerings and have established a partnership to expand access to weather, vehicle, and energy data.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/_aarocha"><strong>Prof. Antonio Rocha</strong></a> from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/uff_br"><strong>UFF</strong></a> has been spearheading Cartesi initiatives in Brazil, solidifying our roots in Brazil and increasing the awareness of our tech by one integration at a time. A new Cartesi Compute API is now available to be deployed on Hyperledger BESU networks, offering Cartesi as (the only) L2 solution for the Brazilian Blockchain Community. You can learn more about it <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/rayangustavo/cartesi-besu"><strong>here</strong></a>.</p><h2 id="h-cartesi-grants-program" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Cartesi Grants Program</strong></h2><p>The Cartesi Grants Program (CGP) is in full force, with five proposals under review and one already approved for funding: <em>The </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/RiscZero"><strong><em>RiscZero</em></strong></a><em> + Cartesi Integration Template &amp; Documentation</em> by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/MichaelAsiedu_"><strong>Michael Asiedu</strong></a>. This initiative will integrate RiscZero’s zkVM with the Cartesi Machine, unlocking privacy-preserving computations.</p><p>Other proposals that are still open for feedback are:</p><p>1️. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charmverse.io/cartesi-grants-program/cartesi-chainlink-library-02907080443062071"><strong>Cartesi-Chainlink Library</strong></a> - A library for integrating Chainlink services into Cartesi, starting with Chainlink Automation.</p><p>2️. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charmverse.io/cartesi-grants-program/passkey-on-l1-17802054343186247"><strong>Passkey on L1 enabler: P-256/secp256r1 Signature Verification via Cartesi Coprocessor</strong></a> - Enabling efficient secp256r1 (P-256) signature verification on Ethereum by leveraging the Cartesi Coprocessor to offload cryptographic computations.</p><p>3️. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charmverse.io/cartesi-grants-program/yk-labs-immutable-sqlite-database-integration-for-smart-contracts-with-cartesi-coprocessor-3234416768479431"><strong>YK Labs team - Immutable SQLite Database for Smart Contracts</strong></a>- An easy-to-use solution for Ethereum smart contracts to access a large read-only SQLite database using Cartesi’s off-chain computation.</p><p>4️. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charmverse.io/cartesi-grants-program/immutable-sqlite-query-system-for-smart-contracts-using-the-cartesi-coprocessor-09857310515426954"><strong>DApps over Apps team - Immutable SQLite Database for Smart Contracts</strong></a> - Integrating a read-only SQLite database with the Cartesi Coprocessor enabling Ethereum smart contracts to execute predefined SQL queries efficiently.</p><p>5. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charmverse.io/cartesi-grants-program/yk-labs-drand-timelock-decryption-using-cartesi-coprocessor-22764511950115707"><strong>YK Labs team - Drand Timelock Decryption Using Cartesi Coprocessor</strong></a> - Implementing Drand network-based timelock encryption/decryption functionality as a Cartesi Coprocessor to enable efficient and secure time-based access control for blockchain applications.</p><p>Leave your feedback on these proposals and check out all the available RFPs <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charmverse.io/cartesi-grants-program/available-rfps-319950606423157"><strong>here</strong></a>.</p><p>Not a developer yourself, but know someone who is? Refer them through the <strong>DevDrop Incentive Program</strong> and earn $500 in CTSI when they submit a proposal that gets successfully funded!</p><h2 id="h-developer-advocacy" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Advocacy</strong></h2><p>The Experiment Week with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/eigenlayer"><strong>EigenLayer</strong></a> wouldn’t have been possible without the support of Cartesi’s dedicated DevAd team, with many releases of CLI and templates to get builders started. The next focus is on creating various guides and docs for the integrations that Cartesi has, so that anybody can use those to create their own dApps from building to shipping. As well as this, they’re also gearing up for Node V2, so with Docs V2 all these updates will be included. This is still under development.</p><p>Don&apos;t miss the two latest episodes of <strong>I Build, Therefore I Am (Brain to Board)</strong> with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/guidanoli"><strong>Guilherme Dantas</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/claudioengdist"><strong>Claudio Silva</strong></a> from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/BugBusterApp"><strong>BugBuster</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/dabit3"><strong>Nader Dabit</strong></a> from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/eigenlayer"><strong>EigenLayer</strong></a>. For a full list of all episodes, check it here on the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/podcast/"><strong>podcast page</strong></a>.</p><h2 id="h-community" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Community</strong></h2><p>Because of this epic community, Cartesi managed to secure the first place in the AVS Showdown, a bracket-style tournament organized by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/therollupco"><strong>The Rollup</strong></a> for projects in the EigenLayer ecosystem, hosted on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/jokerace_io"><strong>Jokerace</strong></a>.</p><p>It was a close call in the finals, but you guys made it happen!</p><p>Last month was busy with AMAs and Spaces. Catch Cartesi’s co-founders <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/felipeargento"><strong>Felipe Argento</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/erickdemoura"><strong>Erick de Moura</strong></a> in action at the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.binance.com/en/square/audio/replay?id=20433710641970"><strong>Binance Square AMA</strong></a>, while co-founder <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/colinsteil"><strong>Colin Steil</strong></a> broke down what’s in store for Cartesi in the Chinese Telegram Communities. If you speak Chinese, be sure to join the official <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesiCn"><strong>Cartesi Chinese Telegram channel here</strong></a> to stay in the loop.</p><p>Finishing it off with a week-long session of Cartesians jumping on the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/web3globalmedia"><strong>Web3Global</strong></a> Spaces, discussing everything from onboarding mainstream users to AI models to NFT economies.</p><h2 id="h-events" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Events</strong></h2><p>A huge thank you to everyone who joined us for <em>Back to the Future #4</em> with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/EspressoSys"><strong>Espresso</strong></a> in Denver! It was a packed evening filled with great drinks, exploring both tech stacks, and a high-stakes quiz where participants battled through 15 questions testing their knowledge on Cartesi and Espresso for a chance to win $1,000 in ETH. Congratulations to the winner who took it home!</p><p>And it turns out we&apos;re not just here for the tech—we&apos;re in the matchmaking business too! A couple who first met at our event returned to relive their meet-cute. Is this composability?</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/EspressoSys/status/1894484766528815432">https://x.com/EspressoSys/status/1894484766528815432</a></p><p>Core contributor <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ZacPrater"><strong>Zach Prater</strong></a> brought together builders to push the boundaries of next-gen gaming with the Cartesi stack. In addition to the hacker house, he hosted a Game Night where attendees got to experience firsthand the games built on RIVES and various other demos. A workshop was also hosted by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/stskeeps"><strong>Carsten Munk</strong></a> on the Cartesi Coprocessor. If you missed it, you can find the slides <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/stskeeps/status/1896241164673802440"><strong>here</strong></a>. The event wasn’t just about playing—it was about showcasing the potential of onchain gaming. And, of course, we had to give some special swag to participants!</p><h2 id="h-upcoming-events" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Upcoming Events</strong></h2><p>Join us every Monday for a fresh Ecosystem Updates Call, and stay tuned for new episodes of the <em>I Build, Therefore I Am</em> podcast every two weeks.</p><p>For an overview, you can always check Cartesi’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://calendar.google.com/calendar/embed?src=c_faa93a56a7bebb66b119b8cd2e2bf110b8641097a669b21884b6886415ca83c2%40group.calendar.google.com"><strong>public events calendar</strong></a>.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
        <item>
            <title><![CDATA[Cartesi Ecosystem Updates #1 2025]]></title>
            <link>https://paragraph.com/@cartesians/cartesi-ecosystem-updates-1-2025</link>
            <guid>4LVyjWNI5JrXd14wgNBa</guid>
            <pubDate>Sat, 03 May 2025 10:39:25 GMT</pubDate>
            <description><![CDATA[Hey Mirror fam! Great to be here. This is the official Cartesi Mirror profile, where we’ll spotlight Cartesi and its growing ecosystem. Let’s kick things off!TechA new Cartesi Machine release is on the way, bringing exciting new features! Running it natively is now simpler and 2x faster, thanks to the latest optimizations. On the Node side, the stable V2 release has arrived. With support from Espresso, it will power Drawing Canvas in the upcoming Testnet launch. Cartesi has joined forces with...]]></description>
            <content:encoded><![CDATA[<figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/17749bd39221439624e97161d518acfd5e04d96e3bfc164e98e84c4689979dd8.avif" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Hey Mirror fam! Great to be here. This is the official Cartesi Mirror profile, where we’ll spotlight Cartesi and its growing ecosystem. Let’s kick things off!</p><h2 id="h-tech" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Tech</strong></h2><p>A new <strong>Cartesi Machine</strong> release is on the way, bringing exciting new features! Running it natively is now <strong>simpler</strong> and <strong>2x faster</strong>, thanks to the latest optimizations.</p><p>On the Node side, the stable V2 release has arrived. With support from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/EspressoSys"><strong>Espresso</strong></a>, it will power Drawing Canvas in the upcoming Testnet launch.</p><p>Cartesi has joined forces with EigenLayer for Experiment Week #3, a week full of exploring new use cases at the intersection of <strong>Cartesi’s Linux-powered coprocessor</strong> and <strong>EigenLayer’s restaking protocol</strong>. This week-long exploration is all about engineering possibilities and going after the use cases that will bring the next billion users onchain. No biggie. Follow the hackathon <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi-x-eigenlayer.devfolio.co/"><strong>here</strong></a>.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/eigenlayer/status/1886807877400100912">https://x.com/eigenlayer/status/1886807877400100912</a></p><p>What sets the <strong>Cartesi Coprocessor</strong> apart is its integration of a <strong>Linux-compatible RISC-V Virtual Machine</strong>, providing developers with a familiar and versatile environment for executing computations. This compatibility bridges the gap between traditional software development and blockchain innovation, allowing the reuse of existing software libraries and tools. No more reinventing the wheel.</p><p>By pairing EigenLayer&apos;s innovative restaking approach with a Linux coprocessor, we&apos;re essentially bringing a secure, scalable, real-world computer to life within the blockchain ecosystem.</p><p>If you’re eager to learn more, catch the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/i/broadcasts/1mnxegyDLVEGX"><strong>stream with Nader from EigenLayer and our dear João</strong></a>. Or <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/cartesi"><strong>join the Discord</strong></a> and check out the dedicated Experiment Week channels.</p><h2 id="h-ecosystem" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Ecosystem</strong></h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/BugBusterApp"><strong>Bug Buster</strong></a>&apos;s smart contract bounty feature is now live on Testnet, and they&apos;ve just released their <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://hackmd.io/@claudioantonio/openzeppelin-contracts"><strong>second tutorial</strong></a> showing how to create a bug bounty for smart contracts that import <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/OpenZeppelin"><strong>OpenZeppelin</strong></a> contracts as external dependencies. Join their <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/bugbusterapp"><strong>Telegram</strong></a> to share feedback, hone your audit skills, and help shape the future of Bug Buster.</p><p>Meanwhile, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/rives_io"><strong>RIVES</strong></a> has wrapped up <strong>Creator Season</strong>, with over <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.rives.io/"><strong>1,400 gameplay submissions and nine cartridges created</strong></a>. If you missed the action, you can catch the recap stream <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/rives_io/status/1877702427727872304"><strong>here</strong></a>.</p><p>For digital artists—<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/drawing_canvas"><strong>Drawing Canvas</strong></a> is gearing up for its Sepolia Testnet launch! This onchain creative space lets users collaborate on artwork, co-monetize drawings through NFTs, participate in contests, and more. During this phase, a select group of participants will help rigorously test the platform to finetune the dApp for optimal performance and user experience for the full release.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/LocaleDao"><strong>Locale Network</strong></a>, a Web3 lending platform providing dynamically adjusting smart contract loans with real-time data transparency and low-risk guaranteed loans for small business owners, has some exciting updates to share. They’ve redesigned both the architecture and UI, based on community feedback. A key part of this upgrade is their shift to the Cartesi Machine for in-house proof generation. But the biggest evolution is that Locale Network is now becoming a protocol extension product, expanding its reach by enabling compatibility with multiple lending products—diversifying both usage and funding sources.</p><p>Over in Brazil, <strong>Cartesi Rollups</strong> are now live on the Brazilian Blockchain Network in a basic form, with ongoing progress to expand functionality. Meanwhile, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/_aarocha"><strong>Prof. Antonio Rocha</strong></a> from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/uff_br"><strong>UFF</strong></a> has developed machine learning algorithms that can &quot;unlearn&quot; based on user requests—without retraining. These are already deployed within the <strong>Cartesi Machine</strong> and will soon integrate with Brazil’s blockchain infrastructure.</p><p>On the Niterói (Rio de Janeiro) front, the work on the city&apos;s Mobility System (MbNit) and public transport upgrades is advancing, with a demo that can be <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/live/DiUaEw8EZfs?si=350bT8aZOH7SSnKt&amp;t=2685"><strong>seen in our latest Updates Call</strong></a>. Moreso, the bike-sharing dApp—built with a local startup for carbon compensation on Cartesi—is also demo-ready!</p><h2 id="h-cartesi-grants-program" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Cartesi Grants Program</strong></h2><p>Four new requests for proposals (RFPs) have been included in the wave 2 of CGP, and we&apos;re looking for builders to submit grant applications to bring them to life.</p><p>1️⃣ <strong>Bridge ZK and Cartesi</strong> – Develop frameworks, solutions, or tutorials that simplify integrating RiscZero’s zkVM with Cartesi.2️⃣ <strong>Timelock Decryption with Drand</strong> – Implement drand-based timelock decryption to enable trustless, delayed data access for Ethereum smart contracts.3️⃣ <strong>Read-Only SQLite for Cartesi</strong> – Integrate read-only SQLite databases with Cartesi’s coprocessor for cost-efficient, secure data lookups in Ethereum smart contracts.4️⃣ <strong>Efficient secp256r1 Passkey Verification</strong> – Help integrate secp256r1 passkey verification with Cartesi’s coprocessor, reducing gas costs for large-scale authentication on Ethereum.</p><p>Explore all the available RFPs <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://app.charmverse.io/cartesi-grants-program/available-rfps-319950606423157"><strong>here</strong></a> and get involved! To read all about our ongoing grants program, check our previous <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/blog/cartesi-grants-program-wave2/"><strong>blog post</strong></a>.</p><p>Not a developer yourself but know someone who is? Refer them through the <strong>DevDrop Incentive Program</strong> and earn $500 in CTSI when they submit a proposal that gets successfully funded!</p><h2 id="h-developer-advocacy" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Developer Advocacy</strong></h2><p>The DevRel team has been busy building everything developers need to dive into <strong>Experiment Week</strong> we’re hosting with EigenLayer—from coprocessor docs to tooling. They&apos;ve mapped out a complete journey in the first iteration of the** <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://docs/">docs</a>**, making it easier than ever to get started.</p><p>Don&apos;t miss the two latest episodes of <strong>I Build, Therefore I Am (Brain to Board)</strong>. One features <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/mayurrelekar"><strong>Mayur Relekar</strong></a>, founder of <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/ArcanaNetwork"><strong>Arcana</strong></a>, while the other features <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/Max_Hatesuer"><strong>Max Hatesuer</strong></a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/carlofragni"><strong>Carlo Fragni</strong></a> from the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/rives_io"><strong>RIVES</strong></a> core team. Peep all the episodes here on the refreshed <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cartesi.io/podcast/"><strong>podcast page</strong></a>.</p><h2 id="h-community" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Community</strong></h2><p>First things first, wishing our Chinese community a Happy Lunar New Year of the Wood Snake! We kicked it off in style by distributing $2000 in CTSI red envelopes for quizzes in the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/cartesicn"><strong>Chinese Telegram community</strong></a>.</p><p>The community has been racing—no joke—on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://jokerace.io/contests/live"><strong>Jokerace</strong></a>, thanks to a fun bracket-style tournament organized by The Rollup for projects in the EigenLayer ecosystem. With everyone&apos;s support, Cartesi dominated the first two rounds and secured a spot in the next stage!</p><p>We need your help to take it all the way! Cast your vote in the next rounds—each vote costs just 0.0001 ETH ($0.28) on Base, and every voter will be rewarded with EIGEN tokens. Let’s win this together.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://x.com/therollupco/status/1882128395619979513">https://x.com/therollupco/status/1882128395619979513</a></p><h2 id="h-upcoming-events" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0"><strong>Upcoming Events</strong></h2><p>Heading to ETHDenver? Meet some of our contributors on the ground and join us for our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://lu.ma/backtothefuture4"><strong>Back to the Future</strong></a> event with Espresso (duh!) on the night of the 24th of February—this time with a fresh new format. Stay tuned for more details. 👀</p><p>Any gamers? Stop by the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://lu.ma/cartesigamenight"><strong>Cartesi Game Night</strong></a> hosted on the 27th of February to catch the latest on the games powered by Cartesi: Fastlane, World Tycoon, RIVES, Drawing Canvas. Whether you&apos;re a game developer, founder, builder, angel investor, or just eager to connect with gaming innovators, this event is for you. Come network, discover new games, and be part of the next wave of onchain gaming innovation!</p><p>For an overview, you can always check Cartesi’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://calendar.google.com/calendar/embed?src=c_faa93a56a7bebb66b119b8cd2e2bf110b8641097a669b21884b6886415ca83c2%40group.calendar.google.com"><strong>public events calendar</strong></a>.</p>]]></content:encoded>
            <author>cartesians@newsletter.paragraph.com (Cartesi)</author>
        </item>
    </channel>
</rss>