# Weekly Rollup #10

*For the week ending April 14th*

By [Modular Media 🧱🎬](https://paragraph.com/@modularmedia) · 2023-04-18

weekly rollup

---

Welcome to Modular Media, a weekly newsletter covering news, updates, educational content, and more within the modular ecosystem.

Subscribe to get issues sent directly to your email every Tuesday, and also, make sure to follow us on [Twitter](https://twitter.com/modularmedia_) for modular-related updates!

You can check out our previous newsletter issue [here](https://paragraph.xyz/@modularmedia/weekly-rollup-9).

* * *

📣 News & Announcements
=======================

Ethereum Upgrades to Shapella
-----------------------------

Ethereum’s highly anticipated Shapella hard fork officially took place on April 12th at around 6:30 PM PST. This was the first hardfork since Ethereum’s merge to proof of stake. While there were several changes that came along with this new upgrade, the main focus was on $ETH withdrawals. 

As you may already know, anyone can run their own Ethereum validator node and start contributing to the network's security. The incentive for providing your ETH stake is the ETH rewards that come from both transaction fees (user gas fees) and block rewards (newly minted ETH). 

In order to run a validator however, the user needs to stake his/her own ETH into the Beacon chain (Ethereum’s PoS network) smart contract. Each validator node requires a stake of 32 ETH. 

Those of us who were not able to meet this 32 ETH requirement have simply headed over to a liquid staking solution, such as Lido or Rocket Pool, and taken part in contributing towards Ethereum’s security this way. What these solutions do is pool together user funds until the 32 ETH requirement is met. For every pool of 32 ETH they create, they spin up a new validator node for the Ethereum network. 

Whenever users deposit their ETH into these liquid staking solutions, they receive a corresponding token in return (stETH, rETH, etc.) that represents the original user deposit. So for example, if I deposit 10 ETH into Lido, I get 10 stETH in return. Holding this token allows me to accrue validator rewards while giving me the opportunity to exit at any time by simply swapping the stETH (or rETH, etc.) back for regular unstaked ETH. 

This is why the Shapella upgrade was a much bigger deal for solo stakers (those who run their own home validator node). 

That being said, there are some interesting questions that come to mind when it comes to liquid staking solutions, such as:

*   Will we see more users withdraw their assets from liquid staking solutions in order to run their own solo setup, now that they can rest assured knowing they can withdraw at any time
    
*   We may soon see these solutions develop a mechanism for the automatic staking of issuance rewards. Will most users opt in for this? 
    

**Numbers so far**

![](https://storage.googleapis.com/papyrus_images/8f8bae9ec0b1c3dcd3095dadff24c87e.jpg)

As we can see from the chart above, total staked ETH is down since withdrawals were activated, coming down about 1M ETH, now settling at 17,401,375. 

Total staked ETH was of course expected to come down following the hard fork, considering the pent-up demand spanning two years now. What was not as expected was for deposits to immediately come back up and outweigh withdrawals so soon, as we can see below:

![](https://storage.googleapis.com/papyrus_images/dcc334f65bd7a7a9ff8e0a033b7c72f5.png)

You can check out the stats for yourself [here](https://query.nansen.ai/public/dashboards/Hk93n66vsO0uvycfui8ypF2xcpNhpraxfwX5AWZJ?utm_campaign=shanghaiupgrade_12apr23&utm_medium=social&utm_source=twitter). 

In regards to the price of ETH, many expected this to fall dramatically, however, this was not the case at all. In fact, ETH has been up only ever since:

![](https://storage.googleapis.com/papyrus_images/217e2dc75352b730ef8ceadf34fc190b.jpg)

**What’s next for Ethereum?**

Now that Shapella is out of the way, the focus for the Ethereum Foundation is now set on Cancun-Deneb, which is the next hard fork and will introduce EIP-4844, or proto-danksharding. Of course, this topic is for future discussion.

It’s amazing to see Ethereum reach all these milestones. Congrats to the entire team of people who helped bring this upgrade to life!

* * *

**Introducing the Stackr SDK**
------------------------------

Last week, Stackr Labs officially introduced the Stackr SDK, which is a framework that enables developers to launch their own application-specific “micro-rollups” using traditional general-purpose programming languages such as Python and JavaScript, Go, C, Rust, and more. 

As a reminder, rollups are a type of off-chain scaling solution that takes a bunch of user transactions, bundles them up (rolls them up), computes them off-chain, and then the results of the computations and data are stored on-chain (on the base layer the rollups is built on top of). 

Most rollups we’re accustomed to today are general-purpose rollups, such as Arbitrum and Optimism. The problem with general-purpose blockchains however is that dapps are sharing computational resources and blockspace with one another. Aside from this, dapps under a general-specific rollup have to abide by the rules of that rollup, for example, having to use the EVM within Arbitrum. That being said, there has been a big pivot towards favoring application-specific rollups now. With app-specific rollups, each dapp is its own rollup, meaning it gets its own blockspace, it can set its own rules, and much more, rather than being tied to the rules of a general purpose rollup. 

The problem however is having to build your own rollup from the ground up. This is where rollup framework solutions like Stackr come into play. 

**What is Stackr**

Stackr provides developers with different modular components that can be put together to build a rollup that suits the specific needs of each individual team. In other words, each team can build its own customized, dedicated rollup (execution environment) in minutes, rather than in months or years. This means you only focus on your dapp, not on how the underlying cryptography works. 

Over time, the Stackr team will add more and more modules for developers to choose between, such as, do you want to use fraud proofs or zk-proofs, or do you want a sovereign rollup or a settled rollup, etc. 

Each rollup within the Stackr ecosystem will be able to have seamless interoperability with each other thanks to the use of a “shared aggregator”. You can think of the aggregator as a bundler. In short, this shared aggregator receives a bunch of data from different apps (rollups), bundles that data, and submits it on-chain. So, a dapp written in Python for example, will be able to communicate with a JavaScript written dapp, or with a C written dapp, etc. You can see a visual example of how this will look down below:

![](https://storage.googleapis.com/papyrus_images/a8838b93b5cd591fd912312b2a835eec.jpg)

**How are they different than others?**

If you’ve been following Modular Media for a while now, you’ll know that there are several teams working on making rollups accessible to all.

That said, there are generally two different approaches teams are taking. There are teams like Caldera and AltLayer who are working on rollups-as-a-service. This approach compares to a hosting company - you just deploy your contract in a single click (usually) and they take care of managing your rollup and everything. On the other hand, there are teams like Rollkit and Stackr who are building Rollup SDKs. These are not 1-click solutions that take care of managing your rollup or hosting, but rather, they provide developers with a set of modules that developers can choose between (a fraud proof module or zk-proof module for example). This does require a bit more developer experience, however, the reward is more control over your rollup. 

However, Stackr separates itself from the rest of the pack even further by being the only solution focused on bringing traditional web2 programming languages to web3, such as Python and JavaScript. 

As we can see from the [images below](https://twitter.com/0xDinoEggs/status/1645538257030217729), there’s a big discrepancy between the number of web2 developers vs web3. Rather than continuing to try and bring web2 to web3, Stackr is taking the approach of taking web3 to web2, by using the tools most developers are already familiar with.

![](https://storage.googleapis.com/papyrus_images/ba00247634f376cbf64df18a00e25914.jpg)![](https://storage.googleapis.com/papyrus_images/3e3a91ebec379c8d4de8a799bd32fa52.jpg)

**What’s next**

According to the team, “the SDK will also be as flexible as possible regarding proofs (fraud and validity), rollup types (classic and sovereign), ordering (centralized and decentralized), and base layers”. Of course, not all these modules will be rolled out from day one, as these things take time to build. 

Stackr is a relatively new project. If you want to stay up to date with everything going on within this ecosystem, make sure to give them a follow on [Twitter](https://twitter.com/0xStackr), and keep up with their [Mirror](https://mirror.xyz/stackrlabs.eth) page. Of course, we’ll make sure to keep you updated on all of Stackr’s latest milestones along the way.

They are also hiring! [Join Stackr](https://stackr-labs.notion.site/Join-us-Stackr-Labs-eaf9056586d243e688dcfcfbad26d843)

* * *

Intmax raises $5M to build a stateless zk-rollup
------------------------------------------------

[On April 13th, Intmax announced a $5 million seed round in order to build a stateless zk-rollup.](https://twitter.com/intmaxIO/status/1646532963226763264) This round included several capital fund investors, such as HashKey Capital, Bitscale Capital, and others, as well as angel investors like Justin Drake from the Ethereum Foundation, and Scott Moore, founder of Gitcoin. 

Intmax is a relatively new project that is being developed by a company located in Switzerland called Ryodan Systems. 

Over the past year, CEO Leona Hioki has been publishing posts on the Ethereum Research forum where he shares details on some of the mechanisms behind what is now Intmax, including:

*   [A post](https://ethresear.ch/t/a-zkrollup-with-no-transaction-history-data-to-enable-secret-smart-contract-execution-with-calldata-efficiency/10961) about a zk-rollup with no transaction history data
    
*   [A post](https://ethresear.ch/t/a-pre-consensus-mechanism-to-secure-instant-finality-and-long-interval-in-zkrollup/8749) about the pre-consensus mechanism
    
*   & several others, which you can find [here](https://ethresear.ch/u/leohio/summary) (of course, keep in mind that not all of them may be related to Intmax specifically). 
    

Intmax intends to bring hyper-scaling and privacy to the Ethereum community. What makes Intmax such an exciting project to many prominent people in the space, such as Justin Drake, is the fact that Intmax is one of, if not the only, team working on a hybrid zk-rollup/plasma solution. 

**Intmax is a stateless rollup**

While in general, zk-rollups do provide us with increased scalability for Ethereum, there still lies a bottleneck with data costs. In fact, over 90% of Ethereum rollup costs come from posting data to the L1. 

Intmax uses a new architecture, where the end-users and node operators communicate with each other under the hood. This is what makes them stateless. 

Essentially, when a user submits a transaction on Intmax, a node operator returns a “Merkle proof” of their asset. In short, a Merkle proof is a way to prove that a particular transaction is included in a block without having to provide the entire block. Using a Merkle proof, a user could calculate a “Merkle root” for a specific block and confirm that it matches the one in the block header provided by the node operator. 

“Thanks to this online communication, no transaction history is required to be stored on-chain for contract execution, thus the gas cost on Intmax is reduced massively (95% cost savings over typical zkRollups!).”

**Privacy by default**

Because the system doesn’t have to post data on-chain, users are able to have privacy by default. We should note that while zero-knowledge proofs do provide privacy-enabling features, not all zk-rollups employ this privacy feature. Most still use zk-rollups strictly for increased scalability. 

This means features like customized privacy for NFTs, potentially introducing new forms of private authentication for Ethereum users. 

**What’s next**

Intmax is expected to launch its alpha version on Ethereum mainnet in Q2 this year, with a full mainnet launch expected to happen sometime in Q4 2023. 

One thing to note is that the team mentioned their sequencer will be decentralized from day 1 of the full mainnet launch. Specifically, the team mentioned that anyone will be able to participate and get rewarded for block mining as soon as this becomes available. Of course, benefits that come with a decentralized sequencer include censorship resistance, increased interoperability between dapps, MEV decentralization, and more. 

Intmax is still a very young project. If you wish to stay updated with everything they are building, make sure to follow them on [Twitter](https://twitter.com/intmaxIO) or on their [Medium](https://medium.com/@intmax) account, where they seem to post most of their attest updates. Of course, we’ll make sure to keep you updated with any big updates that come from Intmax as well.

* * *

More News & Announcements
-------------------------

*   The AltLayer Launchpad is [now open to all](https://twitter.com/alt_layer/status/1646354189616836609) for a free trial
    
*   Phase 3 of Celestia’s Blockspace Race [officially begins](https://twitter.com/CelestiaOrg/status/1645836624826363905)
    
*   [Uniswap wallet](https://twitter.com/Uniswap/status/1646514969746501633) is now available for download on Apple store in most countries 
    
*   StarkWare announces their investment in Unstoppable Games, a web3 game studio, just [officially announced](https://twitter.com/StarkWareLtd/status/1645457742834946050) that “Influence”, a space-themed MMO game that is already quite popular within the StarkNet community. The game’s first [NFT sale](https://twitter.com/influenceth/status/1645796770876919808) took place on April 11th, and the game is expected to launch this summer. 
    
*   StarkWare announces investment in “Influence”, a space-themed MMO game that is already quite popular within the StarkNet community.
    
*   Speaking of StarkNet games, [the Realms team just announced](https://twitter.com/LootRealms/status/1645933347296915457) Realms Autonomous Worlds, something they have been working on for 18 months now. Learn all about these digital worlds in the thread linked above. 
    
*   “[Expectium Protocol](https://twitter.com/expectiumio/status/1644439677200396308) is the first decentralized information market project on Starknet”. This dapp essentially allows users to vote on real-world outcomes (a predictions market).
    
*   Last week, Vitalik joined members of the StarkWare team to discuss “Why Cairo” (StarkWare’s native programming language”). [Here’s an article](https://medium.com/@StarkNetEco/cairo-on-ethereum-l1-a-glimpse-into-starknets-enigmatic-future-with-the-original-pioneers-fc6419b274ac) that goes over key points from that conversation. 
    
*   StarkTokyo conference was held this past weekend. For those that couldn’t attend, @Nurstar wrote [this thread](https://twitter.com/influenceth/status/1645796770876919808) that summarizes everything 
    
*   [DIA has integrated](https://twitter.com/DIAdata_org/status/1646523732868087808) its oracle solutions with zkSync Era testnet 
    
*   Cielo Finance, an analytics platform for EVM chains, [is now live](https://twitter.com/CieloFinance/status/1641415509252923393) on zkSync Era 
    
*   [Symbiosis has integrated](https://twitter.com/symbiosis_fi/status/1645329867574214656) zkSync Era into its platform, allowing users to start swapping and farming on the network directly from the Symbiosis app. 
    
*   Lodestar, Arbtitrum’s native money market is [now live](https://twitter.com/LodestarFinance/status/1644858441398358019), with initial support for $MAGIC, $plvGLP, & $DPX.
    
*   [Rebase is expanding](https://twitter.com/REBASEgg/status/1645496353907417088) its AR/NFT technology to the Arbitrum network, as it looks to start its multi-chain journey. Rebase describes itself as a web3 “Pokemon Go” like application. 
    
*   [Pocket Buff announces](https://twitter.com/PocketBuffGame/status/1646483412537200640) that the upcoming launch of their MMORPG Sword & Magic World web3 game will take place on the Arbitrum network 
    
*   Fuel, a modular execution network, [just launched its dApp template,](https://twitter.com/edatweets_/status/1645468100874076172) “a toolkit to build decentralized apps on Fuel” using built-in components and configurations, while also allowing developers to integrate different out-of-the-box features, like a “Fuel browser wallet connection”.
    
*   A couple of members from the Fuel community just launched this community-led [ecosystem directory](https://twitter.com/fuel_network/status/1645802638318145541), allowing you to check out the 30+ projects live on the network so far. 
    
*   The Scroll team launched a [new Twitter account](https://twitter.com/BuildWithScroll) that is entirely dedicated to all project and ecosystem activity (project launches, etc.). The Scroll team also added a new [ecosystem page](https://scroll.io/alpha/ecosystem) on its website, allowing you to check out some of the dapps that have been deployed on the network so far. 
    
*   [Biconomy helped bring](https://twitter.com/0xMantle/status/1646845819545600000) the first Account Abstraction application to Mantle’s L2 network. “Devs can now leverage Biconomy’s full Web3 UX stack to unlock the full power of AA for their end users”.
    
*   [Saga announces a partnership](https://twitter.com/Sagaxyz__/status/1645462005724356609) with Ava Labs, for the automated deployment of Subnets. Saga focuses on making blockspace easily available to teams across different networks.
    
*   Last week we mentioned Saga’s launch of the Cassio testnet, Saga’s first Chainlet deployment. Cassio has already managed to achieve great success - you can check out the numbers [here](https://twitter.com/Sagaxyz__/status/1645833926169210880).
    
*   [Users can now bridge](https://twitter.com/Calderaxyz/status/1645503070015729666) between Caldera rollups, and other connected L1s, following a partnership with Hyperlane’s interoperability protocol. Teams can start reaching out to Caldera to integrate a bridge into their Caldera chain. 
    
*   [Caldera announces](https://twitter.com/Calderaxyz/status/1645973151023796224) a partnership with Giant Leap, a web3 gaming studio, to bring the launch of their “Underverse” game to its own application-specific rollup. 
    
*   For anyone interested in all the latest developments across the Caldera ecosystem, check out [this Q1 report](https://twitter.com/Calderaxyz/status/1646918449665572864) the team just published. 
    
*   @Colludingnode and Rollkit introduce “[lazy sequencing](https://twitter.com/JoshCStein/status/1645552935575646208)”
    
*   Members of the Rollkit team introduced lazy sequencing. [Here’s](https://twitter.com/JoshCStein/status/1645552935575646208) an eight-minute video that details the mechanism. 
    
*   Celestia’s first “Modular Fellows Cohort program” has just concluded. There were ten fellows total in this three-month program, and each had to build their own application on a modular chain. [Here’s](https://twitter.com/CelestiaOrg/status/1645456640613965824) a recap of what they built. 
    
*   The Informal Systems team just published [this March update](https://twitter.com/cosmoshub/status/1645786521365266433) for the Cosmos Hub. 
    
*   The Stride team [published a proposal](https://twitter.com/stride_zone/status/1646606808298016791) on whether or not the protocol should adopt interchain security. The proposal has been published on both the Stride and Cosmos Hub governance forums, for community members to start voting on. 
    
*   The Interchain Foundation [published its Annual report for 2022](https://twitter.com/interchain_io/status/1646891276845961220). Learn about everything that has transpired across the Cosmos ecosystem this past year.
    

* * *

📚 Discourse & Education
========================

Rollup fees vs. Solana fees
---------------------------

[Logan Jastremski from Frictionless Capital suggests](https://twitter.com/LoganJastremski/status/1644498581229821955?s=20) that Ethereum and rollup communities are delusional in thinking EIP-4844 and Danksharding will drop rollup fees below Solana fees.

Why is he claiming this, and is he correct?

His argument [focuses on](https://twitter.com/LoganJastremski/status/1644838993903714305?s=20) two suboptimal aspects of Ethereum relative to Solana:

*   Lower data availability (AKA data throughput)
    
*   Lack of parallelization (AKA compute throughput)
    

Data throughput, in a rollup context, refers to how much data can be posted to the base layer. If rollups can process a lot of data but the base layer can only handle a little data, there’s a bottleneck and fees will spike. A similar dynamic applies to compute throughput.

So how does Ethereum handle compute and data throughput to keep fees down in a rollup world? Is it possible?

As we know, Ethereum tackles compute throughput by offloading the work to rollups. [You can run a highly parallelized rollup on Ethereum](https://twitter.com/dankrad/status/1644976636956229634?s=20), with local fee markets to solve the compute throughput problem [just as Solana does](https://twitter.com/jon_charb/status/1644563420828631042?s=20). In fact, [you can even run a Solana rollup](https://twitter.com/dankrad/status/1645137071567192075?s=20) on Ethereum that has less overhead than L1 Solana. The extra overhead comes from L1 Solana having to pass around a bunch of messages for consensus, as L1s do. A Solana rollup, even a decentralized one, likely [wouldn’t need to pass around as many messages](https://twitter.com/dankrad/status/1645152879919996930?s=20).

Of course, this only scratches the surface of what’s possible with rollups. You can innovate on the Solana rollup, for example enhancing the local fee market mechanism or [trying new mechanisms to address state contention](https://twitter.com/toghrulmaharram/status/1644950624855904257?s=20). Or you can experiment with different approaches to rollup leader election / consensus. Better yet, multiple developers can try multiple experiments in parallel.

Ok, what about data throughput? This is the other piece of the puzzle, [and a separate problem to solve](https://twitter.com/jon_charb/status/1644547140981489664?s=20).

[Dankrad points to](https://twitter.com/dankrad/status/1644820944488202246?s=20) the answer in his response, but we’ve also covered the topic in previous issues:

*   [How much can DA throughput scale?](https://modularmedia.substack.com/i/112553856/how-much-can-da-throughput-scale)
    
*   [How will base layers differentiate?](https://modularmedia.substack.com/i/111061463/how-will-base-layers-differentiate)
    

The bottom line is that Ethereum and [other modular base layers like Celestia](https://twitter.com/musalbas/status/1638614826329972801?s=20) will treat data throughput as a governable parameter and increase hardware requirements as needed, while retaining trust-minimization and security properties.

How do we reconcile Logan and Ethereum community POVs?

Like many Solana ecosystem discussions, Logan’s post assumes Ethereum’s very near-term data throughput - that is Ethereum’s data throughput within the next few months. His post also assumes the execution layer being used to address compute throughput is the EVM. [There are ways to parallelize the EVM](https://twitter.com/toghrulmaharram/status/1644950624855904257?s=20), but it’s almost besides the point. There are countless ways to innovate with different execution environments and state contention mechanisms. The beauty of [rollups, open innovation](https://twitter.com/0xDinoEggs/status/1648045015485108225?s=20) and a massive design space.

* * *

More Discourse & Education
--------------------------

1.  [0xResearch releases](https://twitter.com/0xResearch/status/1646188033450885121?s=20) an episode “Why Crypto’s Future is Modular”, covering modular interoperability, light clients, settlement assurances and more with Nick from Celestia 🔥
    
2.  [@barnabemonnot writes](https://twitter.com/barnabemonnot/status/1645359746134822912?s=20) an article exploring how to engineer protocol credibility
    
3.  [@0xJim writes](https://twitter.com/0xJim/status/1646204813313548288?s=20) an article explaining how bridging changes from the monolithic to modular world, soft confirmations, shared security and more 💎
    
4.  [Bell Curve releases](https://twitter.com/thebellcurvepod/status/1645793779906125870?s=20) an episode discussing MEV economics and relayer monetization with Matt from Blocknative
    
5.  [@chainyoda hosts](https://twitter.com/labs_electron/status/1643983345246932993?s=20) a Twitter Space discussing what zkIBC is and why it matters for zkEVMs with [Garvit from Electron Labs](https://twitter.com/garvitgoel03) and [Jack from Strangelove](https://twitter.com/jackzampolin)
    
6.  [@\_bfarmer explains](https://twitter.com/_bfarmer/status/1646301285577273344?s=20) why optimistic rollups don’t work well for L3s and how 3rd party bridges don’t work well during periods of volatility 🧠
    
7.  [@analyticalali creates](https://twitter.com/analyticalali/status/1646669776335564800?s=20) an MEV market map, segmenting the space into three main categories (infrastructure, solutions, applications) and many helpful subcategories - read the full article [here](https://twitter.com/analyticalali/status/1646669777920987137?s=20) 💎
    
8.  [@bkiepuszewski explains](https://twitter.com/bkiepuszewski/status/1645422967315111936?s=20) the difference between two rollup roles: Sequencers and Validators
    
9.  [Blockworks Research breaks down](https://twitter.com/blockworksres/status/1646532798533222400?s=20) different approaches to MEV, including [Skip Protocol](https://twitter.com/SkipProtocol)’s [Skip Select](https://twitter.com/blockworksres/status/1646532848340594691?s=20) / [Skip Secure](https://twitter.com/blockworksres/status/1646532861338714112?s=20) as well as [@EffortCapital](https://twitter.com/EffortCapital)’s sovereign MEV vision
    
10.  [@Data\_Always writes](https://twitter.com/Data_Always/status/1644064222542790656?s=20) an article exploring how successful staking protocols could negatively impact Ethereum’s monetary policy
    
11.  [@ezwillstarr writes](https://twitter.com/ezwillstarr/status/1644420707428999168?s=20) an article exploring the math behind ETH staking and potential consequences
    
12.  [@BecauseBitcoin hosts](https://twitter.com/BecauseBitcoin/status/1645572166157754368?s=20) a Twitter Space discussing liquid staking derivatives, data availability and restaker privacy with Sreeram from EigenLayer and [@SnoringPokemon](https://twitter.com/SnoringPokemon)
    
13.  [Ether.fi](http://Ether.fi) [hosts](https://twitter.com/sreeramkannan/status/1646168894678212609?s=20) a Twitter Space discussing the Ethereum Sheppella upgrade and liquid staking with Sreeram from EigenLayer
    
14.  [@ShivanshuMadan explains](https://twitter.com/ShivanshuMadan/status/1645495575008407552?s=20) sovereign rollups and how [Sovereign Labs](https://twitter.com/sovereign_labs) unlocks cross-rollup composability
    
15.  [@0xShivani explains](https://twitter.com/0xShivani/status/1645846064828907522?s=20) the speed and efficiency benefits of sovereign rollups, referencing [the recent 0xResearch episode](https://twitter.com/0xShivani/status/1645846108122533888?s=20) with [Sovereign Labs](https://twitter.com/sovereign_labs)
    
16.  [Celestia writes](https://twitter.com/CelestiaOrg/status/1646587136043540480?s=20) an article on “How modular blockchains create a world of abundance”, [creating a flywheel](https://twitter.com/CelestiaOrg/status/1646587106389798912?s=20) between apps, blockspace and light nodes
    
17.  [@0xRainandCoffee summarizes](https://twitter.com/0xRainandCoffee/status/1646166317374775304?s=20) their recent article on “Modular MEV”, covering where the input for MEV comes from
    
18.  [@doganeth\_en explains](https://twitter.com/doganeth_en/status/1645208409115971584?s=20) the differences between Account Abstraction and MPC wallets, including [helpful examples](https://twitter.com/doganeth_en/status/1645208422223159298?s=20) and [comparisons](https://twitter.com/doganeth_en/status/1645208430125129736?s=20)
    
19.  [@AlexGuuu breaks down](https://twitter.com/AlexGuuu/status/1644471805489614850?s=20) the benefits of rollup-as-a-service solutions and Caldera
    
20.  [@expctchaos highlights](https://twitter.com/expctchaos/status/1644714556487532545?s=20) user and adoption stats after two weeks of Polygon zkEVM
    
21.  [@odin\_free creates](https://twitter.com/odin_free/status/1645792952390914049?s=20) an updated map of the Starknet ecosystem
    
22.  [@0xidanlevin explains](https://twitter.com/0xidanlevin/status/1645472075572973568?s=20) how culture can be a strategic differentiator, even for zkEVMs
    
23.  [@JoshCStein walks through](https://twitter.com/JoshCStein/status/1645552935575646208?s=20) the ideas behind “lazy sequencing”
    
24.  [@0xjaypeg explains](https://twitter.com/0xjaypeg/status/1646550326965862400?s=20) EIP-4844 in simple terms
    
25.  [@zarboq walks through](https://twitter.com/zarboq/status/1645838490184343554?s=20) the basic building blocks of Cairo programming
    
26.  [@nickwh8te proposes](https://twitter.com/nickwh8te/status/1645417094220234753?s=20) the idea for a modular blockchain wallet 💡
    
27.  [Eclipse breaks down](https://twitter.com/EclipseFND/status/1645854731921932289?s=20) rollups for beginners
    
28.  [CryptoSapiens hosts](https://twitter.com/CryptoSapiens_/status/1645487829194256390?s=20) a Twitter Space discussing the basics and state of L2s with [Bartek from L2Beat](https://twitter.com/bkiepuszewski), [@ddwchen from Rehash](https://twitter.com/ddwchen) and [Isaac from Token Engineering Commons](https://twitter.com/entigdd)
    
29.  [@seunlanlege writes](https://twitter.com/seunlanlege/status/1646115407642738689?s=20) an article explaining polynomial commitments as the foundation for ZK-SNARKS (not for beginners lol)
    
30.  [Taiko writes](https://twitter.com/taikoxyz/status/1645399536993710080?s=20) an article explaining PLONK, SNARKS and more
    
31.  [@SalomonCrypto explains](https://twitter.com/SalomonCrypto/status/1617727903466422284?s=20) how EigenLayer enables a new category of services
    
32.  [@adietrichs suggests](https://twitter.com/adietrichs/status/1646402410708094976?s=20) that “danksharding” might be a misleading name (due to using the word sharding), rather than something like “data availability scaling” 🤔
    

* * *

That's all for this week! Thanks for reading 🧱🎬

If you found this useful, [please like and retweet this tweet](https://twitter.com/modularmedia_/status/1648356990031400960?s=20) so more people can see it!

---

*Originally published on [Modular Media 🧱🎬](https://paragraph.com/@modularmedia/weekly-rollup-10)*
