
BigNobody
10.5K posts





BREAKING: TWO ETHEREUM $ETH FOUNDATION RESEARCHERS ANNOUNCE RESIGNATIONS AMID ONGOING EXITS


🚨 ETHEREUM EXIT QUEUE IS ALMOST ZERO Ethereum now has just 9,088 ETH waiting to exit staking. Meanwhile, the validator entry queue is back near ATH, with 3,521,580 ETH waiting to enter. 🔹 Exit queue: 9,088 ETH 🔹 Entry queue: 3.52M ETH 🔹 Entry wait: 61 days 🔹 Exit wait: under 4 hours That is a massive imbalance. Very little ETH is trying to leave staking, while millions of ETH are lining up to get in. Supply is still moving into long-term lockup. ethereum:native



🚨 TOKENIZED TREASURIES ON $ETH JUST HIT $7.5B A new all-time high. Six months ago, this market was $3.75B. It has now doubled while Ethereum still trades near cycle lows. BlackRock, Franklin Templeton, BNP Paribas and major institutions are already tokenizing U.S. Treasuries on Ethereum for faster settlement, global access and programmable assets. This is the trillion-dollar ETH opportunity in real time. $BMNR

The way to save Ethereum: The community needs to create an organization that's economically aligned with Ethereum and accountable to it. The EF now holds less than 0.1% of all ETH. There is no flow of Ethereum staking or fee revenues to it. If we want to get Ethereum back to winning: - create an organisation with credible funding, minimum $1b as a start. That's very reasonable for an ecosystem with $250b market cap - find a leader who is competent and wants to fight - make it accountable: a board of people who want ETH to go up, and a charter that holds the org accountable to it - fund it permanently: A significant amount of staking revenue needs to go to it. A governance mechanism that can adjust it (also part of accountability). Very hard to imagine now, but I think this is the only way (and it will probably happen, but it might take a long time before it is consensus).



🚨 VITALIK: ETHEREUM’S BIGGEST BOTTLENECKS ARE ABOUT TO CHANGE Execution layer upgrades are coming and they’re deep. Not surface tweaks. Core architecture. Two major shifts: 🔹 Binary state trees 🔹 A new VM (potentially RISC-V) Here’s why this matters 👇 $ETH



Now, execution layer changes. I've already talked about account abstraction, multidimensional gas, BALs, and ZK-EVMs. I've also talked here about a short-term EVM upgrade that I think will be super-valuable: a vectorized math precompile (basically, do 32-bit or potentially 64-bit operations on lists of numbers at the same time; in principle this could accelerate many hashes, STARK validation, FHE, lattice-based quantum-resistane signatures, and more by 8-64x); think "the GPU for the EVM". firefly.social/post/x/2027405… Today I'll focus on two big things: state tree changes, and VM changes. State tree changes are in this roadmap. VM changes (ie. EVM -> RISC-V or something better) are longer-term and are still more non-consensus, but I have high conviction that it will become "the obvious thing to do" once state tree changes and the long-term state roadmap (see ethresear.ch/t/hyper-scalin… ) are finished, so I'll make my case for it here. What these two have in common is: * They are the big bottlenecks that we have to address if we want efficient proving (tree + VM are like >80%) * They're basically mandatory for various client-side proving use cases * They are "deep" changes that many shrink away from, thinking that it is more "pragmatic" to be incrementalist I'll make the case for both. # Binary trees The state tree change (worked on by @gballet and many others) is eips.ethereum.org/EIPS/eip-7864, switching from the current hexary keccak MPT to a binary tree based on a more efficient hash function. This has the following benefits: * 4x shorter Merkle branches (because binary is 32*log(n) and hexary is 512*log(n)/4), which makes client-side branch verification more viable. This makes Helios, PIR and more 4x cheaper by data bandwidth * Proving efficiency. 3-4x comes from shorter Merkle branches. On top of that, the hash function change: either blake3 [perhaps 3x vs keccak] or a Poseidon variant [100x, but more security work to be done] * Client-side proving: if you want ZK applications that compose with the ethereum state, instead of making their own tree like today, then the ethereum state tree needs to be prover-friendly. * Cheaper access for adjacent slots: the binary tree design groups together storage slots into "pages" (eg. 64-256 slots, so 2-8 kB). This allows storage to get the same efficiency benefits as code in terms of loading and editing lots of it at a time, both in raw execution and in the prover. The block header and the first ~1-4 kB of code and storage live in the same page. Many dapps today already load a lot of data from the first few storage slots, so this could save them >10k gas per tx * Reduced variance in access depth (loads from big contracts vs small contracts) * Binary trees are simpler * Opportunity to add any metadata bits we end up needing for state expiry Zooming out a bit, binary trees are an "omnibus" that allows us to take all of our learnings from the past ten years about what makes a good state tree, and actually apply them. # VM changes See also: ethereum-magicians.org/t/long-term-l1… One reason why the protocol gets uglier over time with more special cases is that people have a certain latent fear of "using the EVM". If a wallet feature, privacy protocol, or whatever else can be done without introducing this "big scary EVM thing", there's a noticeable sigh of relief. To me, this is very sad. Ethereum's whole point is its generality, and if the EVM is not good enough to actually meet the needs of that generality, then we should tackle the problem head-on, and make a better VM. This means: * More efficient than EVM in raw execution, to the point where most precompiles become unnecessary * More prover-efficient than EVM (today, provers are written in RISC-V, hence my proposal to just make the new VM be RISC-V) * Client-side-prover friendly. You should be able to, client-side, make ZK-proofs about eg. what happens if your account gets called with a certain piece of data * Maximum simplicity. A RISC-V interpreter is only a couple hundred lines of code, it's what a blockchain VM "should feel like" This is still more speculative and non-consensus. Ethereum would certainly be *fine* if all we do is EVM + GPU. But a better VM can make Ethereum beautiful and great. A possible deployment roadmap is: 1. NewVM (eg. RISC-V) only for precompiles: 80% of today's precompiles, plus many new ones, become blobs of NewVM code 2. Users get the ability to deploy NewVM contracts 3. EVM is retired and turns into a smart contract written in NewVM EVM users experience full backwards compatibility except gas cost changes (which will be overshadowed by the next few years of scaling work). And we get a much more prover-efficient, simpler and cleaner protocol. firefly.social/post/farcaster…

VITALIK BUTERIN SAYS CRYPTO IS NOT HERE TO FIX THE DOLLAR It is building an alternative people can freely choose. He calls Ethereum “sanctuary technology” because the world is less peaceful, less safe, and more willing to trade privacy for control. The key point: 🔹 Crypto cannot fix the dollar 🔹 Crypto can build its own system 🔹 One without the same disadvantages 🔹 One people are free to use or ignore Crypto is not trying to replace the whole universe. It is creating a sanctuary inside it. $ETH

🚨 VITALIK: ETHEREUM’S BIGGEST BOTTLENECKS ARE ABOUT TO CHANGE Execution layer upgrades are coming and they’re deep. Not surface tweaks. Core architecture. Two major shifts: 🔹 Binary state trees 🔹 A new VM (potentially RISC-V) Here’s why this matters 👇 $ETH



CLARITY is closer than ever. The bill is strong. It will benefit the American people by making the US financial system faster, cheaper and more accessible. It will also ensure that the US leads in the global race to build the next generation of our financial system. Huge thank you to the Senate, their staff, and 3.7m @standwithcrypto advocates for helping to get this legislation to where it is today. Mark it up.



🔥 HUGE: $4.8 Trillion JP Morgan is launching a money market fund on Ethereum. Maybe ETH will finally break $2400.


This is a spiritual update to my 2018 Ethereum thesis. Less philosophy, more pragmatics. Covers what GENIUS and CLARITY actually change, the supply-side reality, network reliability metrics, and the valuation reframing nobody is pricing yet. Worth reading whether you've been here since 2017 or you're just now taking crypto seriously. 👇 @adriano.feria/why-the-clarity-act-quietly-makes-ethereum-the-biggest-winner-in-crypto-0fb3829766c4" target="_blank" rel="nofollow noopener">medium.com/@adriano.feria…





