<?xml version="1.0" encoding="UTF-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0"><channel><title>COINS NEWS - Latest Cryptocoins News Live</title><description>Latest cryptocurrency news today - Check what are the trends in the digital currency market - Learn when is the best moment to buy Bitcoin or Altcoins on the best crypto exchanges - What you need to know about the crypto market trend</description><link>https://coinsnews.com</link><item><title>ZK-powered order book DEXs are quietly becoming the most interesting sector in DeFi. Is anyone else paying attention?</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/ginete_tech"> /u/ginete_tech </a> <br/> <span><a href="/r/defi/comments/1sdxjxg/zkpowered_order_book_dexs_are_quietly_becoming/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sdxks3/zkpowered_order_book_dexs_are_quietly_becoming/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/zk-powered-order-book-dexs-are-quietly-becoming-the-most-interesting-sector-in-defi-is-anyone-else-paying-attention</link><guid>837418</guid><author>COINS NEWS</author><dc:content /><dc:text>ZK-powered order book DEXs are quietly becoming the most interesting sector in DeFi. Is anyone else paying attention?</dc:text></item><item><title>Daily General Discussion April 06, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1sdpizv/daily_general_discussion_april_06_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sdpizv/daily_general_discussion_april_06_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-april-06-2026</link><guid>837288</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion April 06, 2026</dc:text></item><item><title>The Hidden Infrastructure Costs of Ethereum dApps: EVM Tracing, RPC Overhead, and Indexing</title><description><![CDATA[<div class="md"><p>The true bottleneck in Ethereum dApp architecture isn&#39;t just on-chain gas, it&#39;s the off-chain infrastructure required to read the state. When protocols are designed without considering how data is indexed, they force massive hardware and cost requirements onto the ecosystem.</p> <p><strong>The Blind Spot of Internal Transfers:</strong> Standard contract-to-contract ETH transfers (<code>call{value: x}()</code>) don&#39;t emit logs. Because they bypass block bloom filters, standard node queries like <code>eth_getLogs</code> miss them entirely.</p> <p><strong><em>Trade-off:</em></strong> To index these reliably without protocol-level changes, you are forced into EVM tracing (<code>debug_traceTransaction</code>). This is incredibly I/O heavy, essentially requiring dedicated archive nodes or premium RPC tiers. Emitting custom on-chain events for internal transfers is a critical architectural pattern if you develop your own protocol that you want to monitor, it shifts the burden away from expensive execution traces and local state simulations, saving infrastructure operators massive overhead.</p> <p><strong>Infrastructure Resilience vs. WebSockets:</strong> For low-latency dApps, <code>eth_subscribe</code> over WebSockets is the standard. However, long-lived WS connections are notoriously flaky and silently drop packets, leading to degraded, out-of-sync frontends.</p> <p><strong><em>Architecture standard:</em></strong> A resilient Ethereum stack requires a hybrid model. Maintain the WS connection for real-time mempool and head-of-chain detection, but always run a background worker polling <code>eth_getLogs</code> with a sliding block window to patch missed events during WS reconnects.</p> <p><strong>JSON-RPC Network Overhead:</strong> Spamming nodes with individual read requests congests RPCs. MulticallV3 batching is mandatory for minimizing network round trips.</p> <p><strong><em>Trade-off:</em></strong> When wrapping complex calls, using <code>tryAggregate</code> handles partial successes gracefully. However, it significantly increases EVM execution cost due to internal <code>CALL</code> overhead and memory expansion when capturing return data you might discard. If your batch loop is too large, you will hit the strict execution timeouts or global <code>eth_call</code> gas caps enforced by commercial RPCs, causing the node to drop the entire request.</p> <p>Source/Full Breakdown:<a href="https://andreyobruchkov1996.substack.com/p/ethereum-dev-hacks-catching-hidden-transfers-real-time-events-and-multicalls-bef7435b9397">https://andreyobruchkov1996.substack.com/p/ethereum-dev-hacks-catching-hidden-transfers-real-time-events-and-multicalls-bef7435b9397</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Resident_Anteater_35"> /u/Resident_Anteater_35 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1sdimtm/the_hidden_infrastructure_costs_of_ethereum_dapps/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sdimtm/the_hidden_infrastructure_costs_of_ethereum_dapps/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/the-hidden-infrastructure-costs-of-ethereum-dapps-evm-tracing-rpc-overhead-and-indexing</link><guid>837289</guid><author>COINS NEWS</author><dc:content /><dc:text>The Hidden Infrastructure Costs of Ethereum dApps: EVM Tracing, RPC Overhead, and Indexing</dc:text></item><item><title>Where to swap ETH without slippage?</title><description><![CDATA[<div class="md"><p>I&#39;m looking to swap my ETH with minimal slippage/fee. I&#39;m trying to swap/bridge ETH to Base USDC actually but it shows -3% on the expected outpout amount.</p> <p>Which platforms or aggregators (must be DEX) give the best price without losing too much to slippage or fees?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Tchu_zee_bish"> /u/Tchu_zee_bish </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1sdeg5y/where_to_swap_eth_without_slippage/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sdeg5y/where_to_swap_eth_without_slippage/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/where-to-swap-eth-without-slippage</link><guid>837205</guid><author>COINS NEWS</author><dc:content /><dc:text>Where to swap ETH without slippage?</dc:text></item><item><title>A modern CLI based Solidity transaction debugger and tracer</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1sd4uuk/a_modern_cli_based_solidity_transaction_debugger/"> <img src="https://external-preview.redd.it/lHRjt3mDDWTu8klZbXJ7jbYznS_CiYi1fjzBGk_f3nY.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=31a4a05a43114184de1648f7dcec13ad492d8409" alt="A modern CLI based Solidity transaction debugger and tracer" title="A modern CLI based Solidity transaction debugger and tracer" /> </a> </td><td> <div class="md"><p>Hi all,</p> <p>I build a new kind of cli based solidity debugger you might find useful.</p> <p>During the few days easter break I finally could finish a long standing project I had in mind: a cli based solidity debugger and tracer.</p> <p>I used to use truffle-debug a lot, but the whole project got sunset (and was painfully slow anyways, but thats a different story). Foundry as a successor always made sense to me. Its fast, its git based, its a workhorse, never let me down so far.</p> <p>But I always missed a properly formatted easy to use tracer and debugger like we know it from tenderly, but cli based, with local, text based outputs. I wanted something a human and an LLM can use.</p> <p>So I built <strong>soldebug</strong>. You give it a transaction hash and it gives you a decoded stack trace:</p> <pre><code>$ soldebug 0xe1c962... --rpc-url https://sepolia.infura.io/v3/... --project-dir ./myproject Transaction 0xe1c962...b53fb6 REVERTED (gas: 29.8K) Call Stack: TestToken.mint(arg0=0xdEadDEAD..., arg1=9e23) &lt;- REVERT REVERT: MaxSupplyExceeded(9e23, 5e23) </code></pre> <p>It replays the transaction locally using revm (same as Foundry), matches contracts from your local Foundry project, resolves proxy implementations (UUPS, transparent proxies), and can fetch external contract ABIs from Etherscan/Sourcify. All in Rust, same style as Foundry itself.</p> <p>It&#39;s a first version, really early, but maybe useful for other Ethereum devs.</p> <p>If you find it useful (or not), let me know, or generally, any feedback very welcome. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/tomtom1808"> /u/tomtom1808 </a> <br/> <span><a href="https://github.com/tomw1808/soldebug">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sd4uuk/a_modern_cli_based_solidity_transaction_debugger/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/a-modern-cli-based-solidity-transaction-debugger-and-tracer</link><guid>837111</guid><author>COINS NEWS</author><dc:content /><dc:text>A modern CLI based Solidity transaction debugger and tracer</dc:text></item><item><title>Update: I built the first ETH-only, grief-proof tournament infrastructure that's 100% on-chain.</title><description><![CDATA[<div class="md"><p>Hey all! </p> <p>Since <a href="https://www.reddit.com/r/ethereum/comments/1rrf60r/i_built_a_100_onchain_ethin_ethout_griefproof/">my earlier post</a> I&#39;ve been rebuilding from the ground up, and your feedback helped shape everything. </p> <p>ETour V2 is simpler, faster, and more flexible: </p> <p>1) You can now configure your own lobbies with anywhwere between 2 and 32 players. And you can choose the entry fee per-player, from $0.20 up to 1 ETH. </p> <p>2) Moves happen in sub-1s (down from ~10s). </p> <p>3) The fee structure is cleaner too: 95% straight to the winner, and 5% is my cut. No confusing raffle mechanics. And the winner gets more, winner&#39;s cut in V1 was only 90% of the pot, now it&#39;s 95%!</p> <p>4) I also put together two docs: a focused whitepaper that explains the why, and a thorough user manual that answers every how question. </p> <p>Further, and very importantly, V2 positions ETour as the perfect platform to play games on-chain over ETH stakes with no middlemen <strong>with your friends, crew, or community</strong>, rather than a place for <strong>random online matchmaking</strong>. Which is more honest about what ETour is good at.</p> <p>Happy to answer your questions!</p> <hr/> <p>Misc:</p> <ul> <li><a href="https://etour.games">https://etour.games</a></li> <li><a href="https://etour.games/whitepaper">https://etour.games/whitepaper</a></li> <li><a href="https://etour.games/manual">https://etour.games/manual</a></li> <li>All contracts are verified and available in the footer</li> </ul> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SourTangerine"> /u/SourTangerine </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1sd47n7/update_i_built_the_first_ethonly_griefproof/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sd47n7/update_i_built_the_first_ethonly_griefproof/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/update-i-built-the-first-eth-only-grief-proof-tournament-infrastructure-thats-100-on-chain</link><guid>837110</guid><author>COINS NEWS</author><dc:content /><dc:text>Update: I built the first ETH-only, grief-proof tournament infrastructure that's 100% on-chain.</dc:text></item><item><title>Daily General Discussion April 05, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1scut2l/daily_general_discussion_april_05_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1scut2l/daily_general_discussion_april_05_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-april-05-2026</link><guid>837109</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion April 05, 2026</dc:text></item><item><title>Russia Couldn’t Ban Bitcoin. So Now It’s Making 20 Million Users Register Their Wallets Instead</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1scm6rd/russia_couldnt_ban_bitcoin_so_now_its_making_20/"> <img src="https://external-preview.redd.it/nhYz8suAdtJoVDiJim40esTsjx-XAv9fVPy8cvM62iw.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=41dfda0bbfebad87d4fc32257a0b47ccd37f7eee" alt="Russia Couldn’t Ban Bitcoin. So Now It’s Making 20 Million Users Register Their Wallets Instead" title="Russia Couldn’t Ban Bitcoin. So Now It’s Making 20 Million Users Register Their Wallets Instead" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/zakoal"> /u/zakoal </a> <br/> <span><a href="https://dailycoinpost.com/russia-bitcoin-ban-failed-wallet-registration-2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1scm6rd/russia_couldnt_ban_bitcoin_so_now_its_making_20/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/russia-couldnt-ban-bitcoin-so-now-its-making-20-million-users-register-their-wallets-instead</link><guid>836990</guid><author>COINS NEWS</author><dc:content /><dc:text>Russia Couldn’t Ban Bitcoin. So Now It’s Making 20 Million Users Register Their Wallets Instead</dc:text></item><item><title>Platforms</title><description><![CDATA[<div class="md"><p>Where is everyone trading/storing their crypto specifically eth? I currently am in crypto.com and having issues. I want to pull all my positions and move to another platform. I currently have WeBull and fidelity but don’t want to cram too much into fidelity as I like my eggs spread out. Which platform would you recommend?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/stinabug"> /u/stinabug </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1scf7pq/platforms/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1scf7pq/platforms/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/platforms</link><guid>836991</guid><author>COINS NEWS</author><dc:content /><dc:text>Platforms</dc:text></item><item><title>Daily General Discussion April 04, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1sc09ab/daily_general_discussion_april_04_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sc09ab/daily_general_discussion_april_04_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-april-04-2026</link><guid>836856</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion April 04, 2026</dc:text></item><item><title>They'd never heard of ETH. They described it anyway. I didn't discover Ethereum in a whitepaper. I recognised it. In lectures thirty years old. In voices I still hear.</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/GabFromMars"> /u/GabFromMars </a> <br/> <span><a href="/r/ethereum/comments/1sbnqfo/theyd_never_heard_of_eth_they_described_it_anyway/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sbnqtg/theyd_never_heard_of_eth_they_described_it_anyway/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/theyd-never-heard-of-eth-they-described-it-anyway-i-didnt-discover-ethereum-in-a-whitepaper-i-recognised-it-in-lectures-thirty-years-old-in-voices-i-still-hear</link><guid>836796</guid><author>COINS NEWS</author><dc:content /><dc:text>They'd never heard of ETH. They described it anyway. I didn't discover Ethereum in a whitepaper. I recognised it. In lectures thirty years old. In voices I still hear.</dc:text></item><item><title>Why are we still copy-pasting 40-character wallet addresses in 2026?</title><description><![CDATA[<div class="md"><p>Why are we still copy-pasting 40-character wallet addresses in 2026?</p> <p>Idea: you do a small test transfer once → both wallets get a shared avatar/character. Next time you send, you just recognize the person visually instead of relying on the address.</p> <p>Kind of like “pairing” wallets.</p> <p>Would this actually reduce mistakes or scams, or is this unnecessary given things like ENS?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/K-enthusiast24"> /u/K-enthusiast24 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1sbne4y/why_are_we_still_copypasting_40character_wallet/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sbne4y/why_are_we_still_copypasting_40character_wallet/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/why-are-we-still-copy-pasting-40-character-wallet-addresses-in-2026</link><guid>836694</guid><author>COINS NEWS</author><dc:content /><dc:text>Why are we still copy-pasting 40-character wallet addresses in 2026?</dc:text></item><item><title>145 Doots Live with LogrisTheBard</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1sbmaho/145_doots_live_with_logristhebard/"> <img src="https://external-preview.redd.it/45Bp4mZ27HmyFDVU4NwbNjKVp0VHAHPCGl-I2FdR6QY.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=1545ec9ce821552ceb025dec4d919f4906db1b3a" alt="145 Doots Live with LogrisTheBard" title="145 Doots Live with LogrisTheBard" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jtnichol"> /u/jtnichol </a> <br/> <span><a href="https://youtu.be/ylRbyff4xKs">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sbmaho/145_doots_live_with_logristhebard/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/145-doots-live-with-logristhebard</link><guid>836693</guid><author>COINS NEWS</author><dc:content /><dc:text>145 Doots Live with LogrisTheBard</dc:text></item><item><title>Is the "Quantum Apocalypse" coming early for ethereum?</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Ready_Ninja1921"> /u/Ready_Ninja1921 </a> <br/> <span><a href="/r/worldinsights/comments/1sbfzgw/quantum_computers_might_break_todays_encryption/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sbgp8o/is_the_quantum_apocalypse_coming_early_for/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/is-the-quantum-apocalypse-coming-early-for-ethereum</link><guid>836696</guid><author>COINS NEWS</author><dc:content /><dc:text>Is the "Quantum Apocalypse" coming early for ethereum?</dc:text></item><item><title>Ethereal news weekly #18 | Quantum breakthrough papers, Aave v4, Aztec alpha</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1sbawgl/ethereal_news_weekly_18_quantum_breakthrough/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #18 | Quantum breakthrough papers, Aave v4, Aztec alpha" title="Ethereal news weekly #18 | Quantum breakthrough papers, Aave v4, Aztec alpha" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-18/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sbawgl/ethereal_news_weekly_18_quantum_breakthrough/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-18-quantum-breakthrough-papers-aave-v4-aztec-alpha</link><guid>836695</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #18 | Quantum breakthrough papers, Aave v4, Aztec alpha</dc:text></item><item><title>How to actually use crypto to buy things in 2026 (realistic breakdown, not the idealistic version)</title><description><![CDATA[<div class="md"><p>People ask this a lot and most answers are either too optimistic or outdated. Here&#39;s what actually works day to day.</p> <p>Direct crypto payments (limited but real) - A small number of merchants accept crypto directly via BitPay or CoinGate. Shows up at checkout alongside card/PayPal. Works in tech, gaming, VPN, some travel. Still niche.</p> <p>Crypto debit cards (most practical for daily use) - Platforms issue Visa/Mastercard cards linked to your crypto account. Spend anywhere that takes Visa, crypto converts to fiat at point of sale. Usually comes with some cashback in platform tokens. Works fine for everyday spending.</p> <p>Stablecoins for transfers - Sending money internationally or paying someone who accepts USDC/USDT is genuinely fast and cheap vs bank wire. More useful than people think for freelance/remote work.</p> <p>Gift cards via Bitrefill (underrated) - Buy gift cards from Amazon, Airbnb, Uber, Steam using crypto. Works everywhere those retailers are accepted. Not seamless but surprisingly broad coverage.</p> <p>Honest reality in 2026: most people still convert to fiat first. Crypto debit cards are the closest thing to seamless daily spending. Several platforms are building bank-integrated crypto cards - worth watching which ones actually ship.</p> <p>What&#39;s your setup for spending crypto day to day? Anyone found something that genuinely feels frictionless?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/KamotoNi55an"> /u/KamotoNi55an </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1sb9mzb/how_to_actually_use_crypto_to_buy_things_in_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sb9mzb/how_to_actually_use_crypto_to_buy_things_in_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/how-to-actually-use-crypto-to-buy-things-in-2026-realistic-breakdown-not-the-idealistic-version</link><guid>836579</guid><author>COINS NEWS</author><dc:content /><dc:text>How to actually use crypto to buy things in 2026 (realistic breakdown, not the idealistic version)</dc:text></item><item><title>Daily General Discussion April 03, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1sb4b9q/daily_general_discussion_april_03_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sb4b9q/daily_general_discussion_april_03_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-april-03-2026</link><guid>836578</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion April 03, 2026</dc:text></item><item><title>A Prediction Market Bounty Mechanism - Using Markets as Self-Funding Bounties for High-Value Sales</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/NOTPR0"> /u/NOTPR0 </a> <br/> <span><a href="https://x.com/not_pr0/status/2039788146133495879">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sarhn7/a_prediction_market_bounty_mechanism_using/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/a-prediction-market-bounty-mechanism-using-markets-as-self-funding-bounties-for-high-value-sales</link><guid>836472</guid><author>COINS NEWS</author><dc:content /><dc:text>A Prediction Market Bounty Mechanism - Using Markets as Self-Funding Bounties for High-Value Sales</dc:text></item><item><title>New Partnership: Nodle x PARAGON ID</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1sall1a/new_partnership_nodle_x_paragon_id/"> <img src="https://preview.redd.it/7h8ogji4wssg1.png?width=140&amp;height=77&amp;auto=webp&amp;s=27b74399bc158c356f97b0db037badee4aff1db2" alt="New Partnership: Nodle x PARAGON ID" title="New Partnership: Nodle x PARAGON ID" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/spacesmutje_de"> /u/spacesmutje_de </a> <br/> <span><a href="/r/Nodle/comments/1salk5b/nodle_x_paragon_id/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sall1a/new_partnership_nodle_x_paragon_id/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/new-partnership-nodle-x-paragon-id</link><guid>836338</guid><author>COINS NEWS</author><dc:content /><dc:text>New Partnership: Nodle x PARAGON ID</dc:text></item><item><title>PEEPanEIP-7904: Compute Gas Cost Increase breakdown with Jacek Sieka &amp; Maria Inês Oliveira</title><description><![CDATA[<div class="md"><p>We recently recorded a PEEPanEIP session on <a href="https://youtu.be/CswFnsZTXmI">EIP-7904</a>, joined by Jacek Sieka and Maria Inês Oliveira.</p> <p>The conversation covers:</p> <ul> <li>Motivation behind the proposal</li> <li>Key design considerations</li> <li>Potential impact on the Ethereum ecosystem</li> <li>Open questions and areas for feedback</li> </ul> <p>The goal of <a href="https://www.youtube.com/playlist?list=PL4cwHXAawZxqu0PKKyMzG_3BJV_xZTi1F">PEEPanEIP</a> is to make EIPs more accessible and easier to follow for the broader community - especially for those who may not be deep in the specs but want to stay informed.</p> <p>???? Watch the full video <a href="https://youtu.be/CswFnsZTXmI">https://youtu.be/CswFnsZTXmI</a></p> <p>Would love to hear thoughts from others following EIP-7904 or working in similar areas - feedback and perspectives welcome.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/poojaranjan19"> /u/poojaranjan19 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1sakxdg/peepaneip7904_compute_gas_cost_increase_breakdown/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sakxdg/peepaneip7904_compute_gas_cost_increase_breakdown/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/peepaneip-7904-compute-gas-cost-increase-breakdown-with-jacek-sieka-maria-ines-oliveira</link><guid>836336</guid><author>COINS NEWS</author><dc:content /><dc:text>PEEPanEIP-7904: Compute Gas Cost Increase breakdown with Jacek Sieka &amp; Maria Inês Oliveira</dc:text></item><item><title>AI, bots &amp; algorithms</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Fru1tLo0psy"> /u/Fru1tLo0psy </a> <br/> <span><a href="/r/Digibyte/comments/1saiu6l/ai_bots_algorithms/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1saiwdj/ai_bots_algorithms/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ai-bots-algorithms</link><guid>836339</guid><author>COINS NEWS</author><dc:content /><dc:text>AI, bots &amp; algorithms</dc:text></item><item><title>Patricio Worthalter (POAP) - Nine years of POAP in EthCC. A founder's journey.</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/jtnichol"> /u/jtnichol </a> <br/> <span><a href="https://www.youtube.com/live/aco5-l_bpOo?si=IZEg8wYNkTUOiGA_">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1saeywh/patricio_worthalter_poap_nine_years_of_poap_in/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/patricio-worthalter-poap-nine-years-of-poap-in-ethcc-a-founders-journey</link><guid>836337</guid><author>COINS NEWS</author><dc:content /><dc:text>Patricio Worthalter (POAP) - Nine years of POAP in EthCC. A founder's journey.</dc:text></item><item><title>Daily General Discussion April 02, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1sa85du/daily_general_discussion_april_02_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1sa85du/daily_general_discussion_april_02_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-april-02-2026</link><guid>836228</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion April 02, 2026</dc:text></item><item><title>Building a community for the devs that are left</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/NOTPR0"> /u/NOTPR0 </a> <br/> <span><a href="https://x.com/0xCryptodevs/status/2039365286701175019">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s9o3mk/building_a_community_for_the_devs_that_are_left/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/building-a-community-for-the-devs-that-are-left</link><guid>836022</guid><author>COINS NEWS</author><dc:content /><dc:text>Building a community for the devs that are left</dc:text></item><item><title>We cracked 3 of Vitalik's 2015 contracts - byte-for-byte source verification</title><description><![CDATA[<div class="md"><p>Two months after Ethereum mainnet launched, Vitalik deployed a 3-contract on-chain arbitration system written in Serpent. We just verified all three with exact bytecode matches.</p> <p><strong>The contracts:</strong></p> <p><strong>ArbiterRegistry</strong> (0x82afa2c4, block 301,954 - Sep 28, 2015)</p> <p>Arbiters pay 1+ ETH to list themselves as dispute mediators. The fee decays 50% per month using a 3rd-order Taylor series approximation, so inactive arbiters fall in the rankings automatically. Hardcoded EF withdrawal address. Someone called register() again in 2024 - still works.</p> <p><strong>Arbitration</strong> (0xe881af13, block 303,316 + 0x7e2d0fe0, block 318,029)</p> <p>Smart escrow with designated arbiters. Two parties create a contract, designate arbiters, and funds auto-transfer when &gt;50% of arbiters vote. Both parties can also instantly surrender to the other side. Vitalik tested it from both his dev address and vitalik.eth.</p> <p><strong>The forensics:</strong></p> <p>The source Vitalik later committed to ethereum/dapp-bin had one line wrong vs what he actually deployed. The ArbiterNotification log had its indexed arguments in reversed order. He fixed the arg order in git after shipping. The chain preserved the original - we had to catch that divergence to get an exact match.</p> <p><strong>How we verified it:</strong></p> <p>Not decompilation. We compiled forward: found the source in ethereum/dapp-bin, identified the exact Serpent compiler commit used (e5a5f875, Sep 26 2015), compiled it, and compared output byte-for-byte against the on-chain code.</p> <p><strong>Full docs + live contract interaction (ABIs published):</strong> - <a href="https://ethereumhistory.com/contract/0x82afa2c4a686af9344e929f9821f3e8c6e9293ab">https://ethereumhistory.com/contract/0x82afa2c4a686af9344e929f9821f3e8c6e9293ab</a> - <a href="https://ethereumhistory.com/contract/0xe881af13bf55c97562fe8d2da2f6ea8e3ff66f98">https://ethereumhistory.com/contract/0xe881af13bf55c97562fe8d2da2f6ea8e3ff66f98</a></p> <p>Verification repos: - <a href="https://github.com/cartoonitunes/arbiter-reg-verification">https://github.com/cartoonitunes/arbiter-reg-verification</a> - <a href="https://github.com/cartoonitunes/arbitration-verification">https://github.com/cartoonitunes/arbitration-verification</a></p> <p>EthereumHistory is a free archive - if you find this useful, you can support it at ethereumhistory.com/donate</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s9n8x7/we_cracked_3_of_vitaliks_2015_contracts/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s9n8x7/we_cracked_3_of_vitaliks_2015_contracts/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/we-cracked-3-of-vitaliks-2015-contracts-byte-for-byte-source-verification</link><guid>836021</guid><author>COINS NEWS</author><dc:content /><dc:text>We cracked 3 of Vitalik's 2015 contracts - byte-for-byte source verification</dc:text></item><item><title>Where can I buy ZCHF?</title><description><![CDATA[<div class="md"><p>If you are trying to buy ZCHF, you might not find it on normal crypto apps. It is not listed on big exchanges, so it can feel confusing at first.</p> <p>Most people buy it from Uniswap on Ethereum. That’s where you will usually find better trading activity. Sometimes it is also available on Curve, but it depends on how much liquidity is there.</p> <h1>How to buy ZCHF</h1> <p>The process is simple once you understand it. You need a wallet like MetaMask and some ETH in it for fees. Then you connect your wallet to Uniswap and swap your tokens for ZCHF.</p> <p>Before you confirm, just check the price and details once. In DeFi, there is no support if something goes wrong, so it’s better to go slow and be careful.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Mammoth_Cover_3392"> /u/Mammoth_Cover_3392 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s9c5wv/where_can_i_buy_zchf/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s9c5wv/where_can_i_buy_zchf/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/where-can-i-buy-zchf</link><guid>835791</guid><author>COINS NEWS</author><dc:content /><dc:text>Where can I buy ZCHF?</dc:text></item><item><title>Daily General Discussion April 01, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s9b2d3/daily_general_discussion_april_01_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s9b2d3/daily_general_discussion_april_01_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-april-01-2026</link><guid>835790</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion April 01, 2026</dc:text></item><item><title>Launching Project on Base</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Video-chopper"> /u/Video-chopper </a> <br/> <span><a href="/r/BASE/comments/1s99jrx/launching_project_on_base/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s99k1a/launching_project_on_base/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/launching-project-on-base</link><guid>835792</guid><author>COINS NEWS</author><dc:content /><dc:text>Launching Project on Base</dc:text></item><item><title>Been digging into old Ethereum contracts from 2015-2019 to find withdrawable ETH that portfolio trackers miss</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s8phlv/been_digging_into_old_ethereum_contracts_from/"> <img src="https://preview.redd.it/2rv0j4bq7esg1.png?width=140&amp;height=83&amp;auto=webp&amp;s=2bf23c247b5a1c0babc68daa2695ee7c6399b3ae" alt="Been digging into old Ethereum contracts from 2015-2019 to find withdrawable ETH that portfolio trackers miss" title="Been digging into old Ethereum contracts from 2015-2019 to find withdrawable ETH that portfolio trackers miss" /> </a> </td><td> <div class="md"><p>Hello everyone! I&#39;ve built a tool to help recover ETH stuck in old smart contracts that no longer have frontends. Portfolio trackers like Debank and Zerion don&#39;t index these balances.</p> <p>116 contracts, 76,000+ ETH, 516k depositors with claimable balance.</p> <p>Idex, Etherdelta, DigixDAO, PoWH3D, ENS old registrar, Fomo3d, MoonCatRescue, to name a few.</p> <p>One address alone has 10,000 ETH locked in the old ENS registrar deeds - a deposit from a name auction on governx.eth that was never released.</p> <p>Even Vitalik has 75 ETH to claim!</p> <p>Most of these addresses are dormant, but <strong>if you were active on Etheruem between 2015-2019</strong>, check your address at <a href="https://forgotteneth.com">https://forgotteneth.com</a></p> <p><a href="https://x.com/3pa15/status/2038971119537938786">Twitter thread</a></p> <p>It scans all 116 contracts and crafts the withdrawal transaction(s) for you.</p> <p><a href="https://preview.redd.it/2rv0j4bq7esg1.png?width=2236&amp;format=png&amp;auto=webp&amp;s=0f5c26c5306475ba4de4325cbae72757b3738f05">https://preview.redd.it/2rv0j4bq7esg1.png?width=2236&amp;format=png&amp;auto=webp&amp;s=0f5c26c5306475ba4de4325cbae72757b3738f05</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/austrianAOE"> /u/austrianAOE </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s8phlv/been_digging_into_old_ethereum_contracts_from/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s8phlv/been_digging_into_old_ethereum_contracts_from/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/been-digging-into-old-ethereum-contracts-from-2015-2019-to-find-withdrawable-eth-that-portfolio-trackers-miss</link><guid>835540</guid><author>COINS NEWS</author><dc:content /><dc:text>Been digging into old Ethereum contracts from 2015-2019 to find withdrawable ETH that portfolio trackers miss</dc:text></item><item><title>After 8 years in crypto, I think most people don't understand cycles</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s8orso/after_8_years_in_crypto_i_think_most_people_dont/"> <img src="https://external-preview.redd.it/ibiLAVHxss9rUQcX6LdLl1rE7PUEHFljr7Si4xV8F5A.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=0a87d6f640621859abbd757b4173d8b44b41f7a7" alt="After 8 years in crypto, I think most people don't understand cycles" title="After 8 years in crypto, I think most people don't understand cycles" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Theonlyeasyday"> /u/Theonlyeasyday </a> <br/> <span><a href="/r/CryptoCurrency/comments/1s8or2s/after_8_years_in_crypto_i_think_most_people_dont/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s8orso/after_8_years_in_crypto_i_think_most_people_dont/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/after-8-years-in-crypto-i-think-most-people-dont-understand-cycles</link><guid>835543</guid><author>COINS NEWS</author><dc:content /><dc:text>After 8 years in crypto, I think most people don't understand cycles</dc:text></item><item><title>I'm making hey.eth a public, free identity layer for everyone. Agents are able to get their own ENS in </title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/NOTPR0"> /u/NOTPR0 </a> <br/> <span><a href="https://x.com/0xstatechannel/status/2038977772312272942">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s8o4zh/im_making_heyeth_a_public_free_identity_layer_for/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/im-making-heyeth-a-public-free-identity-layer-for-everyone-agents-are-able-to-get-their-own-ens-in-10s-building-open-source-infra-for-agentic-payments-using-state-channels</link><guid>835541</guid><author>COINS NEWS</author><dc:content /><dc:text>I'm making hey.eth a public, free identity layer for everyone. Agents are able to get their own ENS in </dc:text></item><item><title>EIP-712</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s8l7du/eip712/"> <img src="https://external-preview.redd.it/suNdskB59Z2qqV3KOEYDK7NCl-9OGqruagHYPjM9yI4.png?width=216&amp;crop=smart&amp;auto=webp&amp;s=680c0b4ceb85b3aa5c4a9e839cb47f3edb76e37f" alt="EIP-712" title="EIP-712" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Sad-Farmer-6186"> /u/Sad-Farmer-6186 </a> <br/> <span><a href="/r/ethdev/comments/1s8kzcj/eip712/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s8l7du/eip712/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/eip-712</link><guid>835544</guid><author>COINS NEWS</author><dc:content /><dc:text>EIP-712</dc:text></item><item><title>A universal ZK verification layer for Ethereum - any proof system </title><description><![CDATA[<div class="md"><p>With all the discussion around L2 fragmentation lately (EEZ announcement, Superchain, AggLayer), I wanted to share something I&#39;ve been working on that addresses the problem from a different angle.</p> <p>The issue: every rollup ships its own proof system - Groth16, STARK, Plonk, Halo2, Nova - each needing a separate on-chain verifier at 200k+ gas. Some require trusted setup ceremonies.</p> <p>GLYPH is a universal transparent verification layer that compiles any proof into a common intermediate representation (UCIR) and verifies it through a single on-chain contract.</p> <p>What it does:</p> <p>- Verifies any major proof system through one verifier</p> <p>- &lt;30k gas per on-chain verification (~7.5x cheaper than Groth16 alone)</p> <p>- No trusted setup - fully transparent</p> <p>- Supported: Groth16, KZG, IPA, Plonk, Halo2, STARK (Winterfell, Miden, Cairo/Stone, Circle STARK, Stwo), Nova/HyperNova/Sangria/SuperNova (IVC), SP1, Plonky2/3, Binius</p> <p>How it works:</p> <p>- Packed arity-8 sumcheck over p = 2^128 - 159</p> <p>- Chain-bound Keccak256 Fiat-Shamir challenges</p> <p>- BaseFold PCS</p> <p>- On-chain verifier in pure Solidity assembly</p> <p>- Formal proof pack with soundness bound ~1.88 x 10^-37</p> <p>Tested on Sepolia + Hoodi. Benchmarks included and reproducible.</p> <p>Everything is open source under MIT:</p> <p>- Full Paper: <a href="https://doi.org/10.5281/zenodo.18792566">https://doi.org/10.5281/zenodo.18792566</a><br/> <a href="https://hackmd.io/@ChristopherSchulze/glyph-zk">https://hackmd.io/@ChristopherSchulze/glyph-zk</a></p> <p>- Code: <a href="https://github.com/Christopher-Schulze/glyph-zk">https://github.com/Christopher-Schulze/glyph-zk</a></p> <p>I know the on-chain assembly verifier needs a proper audit before anyone touches it in production - that&#39;s on the roadmap.</p> <p>Would love feedback from the community. </p> <p>Happy to answer any questions about the architecture or design decisions.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/crobin0"> /u/crobin0 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s8ilry/a_universal_zk_verification_layer_for_ethereum/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s8ilry/a_universal_zk_verification_layer_for_ethereum/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/a-universal-zk-verification-layer-for-ethereum-any-proof-system-30k-gas-no-trusted-setup</link><guid>835542</guid><author>COINS NEWS</author><dc:content /><dc:text>A universal ZK verification layer for Ethereum - any proof system </dc:text></item><item><title>Google Set a 2029 Quantum Deadline. Ethereum Has a Plan. Bitcoin Has a Culture War</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s8hti2/google_set_a_2029_quantum_deadline_ethereum_has_a/"> <img src="https://external-preview.redd.it/c6b5K_WvXxSbqLBqNV8GP3nhp7fl4PYB8AZ0by6odEk.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=4b6417e2c552f0517d178ca69ce50585bd603a36" alt="Google Set a 2029 Quantum Deadline. Ethereum Has a Plan. Bitcoin Has a Culture War" title="Google Set a 2029 Quantum Deadline. Ethereum Has a Plan. Bitcoin Has a Culture War" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/zakoal"> /u/zakoal </a> <br/> <span><a href="https://dailycoinpost.com/google-quantum-deadline-2029-ethereum-plan-bitcoin-culture-war/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s8hti2/google_set_a_2029_quantum_deadline_ethereum_has_a/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/google-set-a-2029-quantum-deadline-ethereum-has-a-plan-bitcoin-has-a-culture-war</link><guid>835387</guid><author>COINS NEWS</author><dc:content /><dc:text>Google Set a 2029 Quantum Deadline. Ethereum Has a Plan. Bitcoin Has a Culture War</dc:text></item><item><title>Google warns quantum computers could break current crypto security sooner than expected</title><description><![CDATA[<div class="md"><p>Google’s new research is basically saying <a href="https://btcusa.com/google-warns-quantum-computers-could-break-crypto-sooner-than-expected/">the quantum threat</a> may be less distant than people assumed. Not an “Ethereum is doomed” story, but definitely a reminder that post-quantum migration may become a much more serious issue across crypto sooner than expected</p> <p>Do you think Ethereum is actually positioned well for a transition like that, or is the ecosystem still underestimating how hard this would be?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Enough_Angle_7839"> /u/Enough_Angle_7839 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s8h1j2/google_warns_quantum_computers_could_break/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s8h1j2/google_warns_quantum_computers_could_break/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/google-warns-quantum-computers-could-break-current-crypto-security-sooner-than-expected</link><guid>835388</guid><author>COINS NEWS</author><dc:content /><dc:text>Google warns quantum computers could break current crypto security sooner than expected</dc:text></item><item><title>Beginner's Game Tournament for r/ethereum only</title><description><![CDATA[<div class="md"><p>I&#39;ve been all over daily threads for the last two weeks, and some of those really nice folks have been having fun with this little game dapp that I built. I call it <a href="https://stupidgames.wtf/">Stupid Games</a>, because you play really easy, simple games, but get to win awesome real ETH prizes! </p> <p>It&#39;s an arcade type game platform, full of crypto memes, that pays out real ETH prizes to the winners. All managed by smart contracts of course.</p> <p>I&#39;m creating a beginner friendly, mini tournament just for this sub. No players from the <a href="https://stupidgames.wtf/hodlboard">current Leaderboard</a> allowed! And when I say beginner, I mean JT level beginner like from the <a href="https://www.reddit.com/r/ethereum/comments/1rst2ne/daily_doots_podcast_143/">Daily Doots Podcast #143</a>! Lol! No offence JT ????</p> <p>Its free, no gas, no cash, just real fun! The prize is $20 or more, but more than that, its bragging rights to be the king of this hill. It&#39;s even got a Burner Wallet login, so you know it&#39;s not sus. More dapps should do that right?</p> <p>If you want to give it a shot, there&#39;s only space for 9-10 players, so drop your [burner] address and I&#39;ll let you in.</p> <p>The FLY game is similar to Flappy Bird, and the SHOOT game is similar to Asteroids. Try them and pick your vibe.</p> <p>So what&#39;s in it for me? I worked hard on the app and really want to see it being used. I also think it&#39;s genuinely fun when you get it. Plus, I took a job break and built it as a porfolio piece so I would love to get feedback. Many features were actually suggestions from users on the daily threads, which I appreciate so much (Alexis and Tricky)! Any and all feedback/criticism welcome. Questions too!</p> <p>Chips are ERC20 tokens but 1:1 exchangeable for 0.0001 eth from the <a href="https://basescan.org/address/0x3946dC9C0f4D184A4fb37594998a5c838F3a17E5">contract</a>. No promotion of any product in this post. No monetary gain for me, only loss ????!</p> <p><a href="https://stupidgames.wtf/">Play Stupid Games, Win Awesome Prizes!</a></p> <p><a href="https://reddit.com/link/1s8gw8d/video/us22jk9r2csg1/player">https://reddit.com/link/1s8gw8d/video/us22jk9r2csg1/player</a></p> <p><a href="https://reddit.com/link/1s8gw8d/video/9zhhtl9r2csg1/player">https://reddit.com/link/1s8gw8d/video/9zhhtl9r2csg1/player</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/kantalo"> /u/kantalo </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s8gw8d/beginners_game_tournament_for_rethereum_only/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s8gw8d/beginners_game_tournament_for_rethereum_only/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/beginners-game-tournament-for-rethereum-only</link><guid>835389</guid><author>COINS NEWS</author><dc:content /><dc:text>Beginner's Game Tournament for r/ethereum only</dc:text></item><item><title>What is ZCHF?</title><description><![CDATA[<div class="md"><p>ZCHF is a decentralized stablecoin that is designed to track the value of the Swiss franc (CHF). Unlike popular stablecoins like USDT or USDC that are pegged to the US dollar, ZCHF is pegged 1:1 to Switzerland’s currency.</p> <p>It is issued by the Frankencoin protocol and operates on blockchain infrastructure, which means it doesn’t rely on traditional banks in the same way centralised stablecoins do. Instead, it uses a system of collateral and smart contracts to maintain its value.</p> <h1>Why People Are Talking About It</h1> <p>Interest in ZCHF has increased after Vitalik Buterin recently swapped a significant amount of USDC into ZCHF. Moves like this bring attention to the idea that DeFi may not stay centered only around the US dollar.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Mammoth_Cover_3392"> /u/Mammoth_Cover_3392 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s8g4y2/what_is_zchf/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s8g4y2/what_is_zchf/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/what-is-zchf</link><guid>835386</guid><author>COINS NEWS</author><dc:content /><dc:text>What is ZCHF?</dc:text></item><item><title>Daily General Discussion March 31, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s8e3ii/daily_general_discussion_march_31_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s8e3ii/daily_general_discussion_march_31_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-31-2026</link><guid>835385</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 31, 2026</dc:text></item><item><title>ERC20 token network mistakes - anyone sent to the wrong chain before?</title><description><![CDATA[<div class="md"><p>Curious how many people here have made this mistake at least once. Sending an ERC20 token but picking the wrong network, or mixing up chains like sending to a non-compatible address.</p> <p>It’s one of those errors that feels small in the moment but can turn into a real headache depending on where the funds land. Sometimes recoverable, sometimes not.</p> <p>What’s your experience with this? Did you manage to recover the funds or was it a total loss? And what habits or checks do you use now to avoid it happening again?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/bankrollbystander"> /u/bankrollbystander </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s8bk4i/erc20_token_network_mistakes_anyone_sent_to_the/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s8bk4i/erc20_token_network_mistakes_anyone_sent_to_the/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/erc20-token-network-mistakes-anyone-sent-to-the-wrong-chain-before</link><guid>835390</guid><author>COINS NEWS</author><dc:content /><dc:text>ERC20 token network mistakes - anyone sent to the wrong chain before?</dc:text></item><item><title>The hidden gas and security trade-offs of using CREATE2 + Minimal Proxies for multi-chain deployments</title><description><![CDATA[<div class="md"><p>Hey everyone,</p> <p>Over the last four years of writing smart contracts and teaching these concepts in EVM bootcamps, I keep seeing teams stumble into the exact same architectural traps when trying to achieve cross-chain address parity.</p> <p>Leveraging <code>CREATE2</code> for deterministic addresses fundamentally changes how we handle multi-chain deployments. But because <code>init_code</code> includes constructor arguments, maintaining that exact same address across chains is impossible if you need to pass in chain-specific variables (like local router addresses or bridge endpoints).</p> <p>The standard industry workaround is deploying EIP-1167 Minimal Proxies via a universal factory, deploying deterministically, then initializing the state in the same transaction. However, this introduces some severe trade-offs that often get overlooked until they hit production:</p> <ol> <li><strong>The</strong> <code>DELEGATECALL</code> <strong>Gas Tax:</strong> Minimal proxies are incredibly cheap to deploy (~45 bytes of bytecode), but they add a <code>DELEGATECALL</code> overhead to <em>every single execution</em> (2600 gas cold, 100 warm). At scale, this execution cost compounds brutally for your users.</li> <li><strong>MEV Front-running Risks:</strong> If your proxy deployment and <code>initialize()</code> call are not strictly atomic within the factory contract execution, MEV bots might front-run the initialization transaction. This either bricks the instance entirely or hijacks the contract ownership.</li> <li><strong>Immutability vs Upgradeability:</strong> To retain the exact same address while upgrading logic, you have to wrap the implementation in UUPS or Transparent Proxies. This inflates the initial deployment cost and introduces strict storage collision risks (requiring flawless adherence to EIP-1967 storage slots).</li> </ol> <p>I just published a full breakdown of these mechanics on my blog, diving into the math behind the gas trade-offs and how patterns like <code>CREATE3</code> are solving the issue for non-proxy contracts where constructor arguments <em>must</em> differ.</p> <p>If you are currently architecting a multi-chain protocol, you can read the full technical deep dive here:<a href="https://andreyobruchkov1996.substack.com/p/understanding-contract-deployments-proxies-and-create2-part-2-df8f05998d5e">https://andreyobruchkov1996.substack.com/p/understanding-contract-deployments-proxies-and-create2-part-2-df8f05998d5e</a></p> <p>Would love to hear how you all are handling cross-chain deterministic deployments right now. Are you still relying heavily on customized off-chain salt-mining scripts, or have you migrated to <code>CREATE3</code> wrappers?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Resident_Anteater_35"> /u/Resident_Anteater_35 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s83w01/the_hidden_gas_and_security_tradeoffs_of_using/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s83w01/the_hidden_gas_and_security_tradeoffs_of_using/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/the-hidden-gas-and-security-trade-offs-of-using-create2-minimal-proxies-for-multi-chain-deployments</link><guid>835253</guid><author>COINS NEWS</author><dc:content /><dc:text>The hidden gas and security trade-offs of using CREATE2 + Minimal Proxies for multi-chain deployments</dc:text></item><item><title>EtherWorld Weekly — Edition 357</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s7mopy/etherworld_weekly_edition_357/"> <img src="https://external-preview.redd.it/3V2K9lNYroNJZ_LZDrcNc0vNn_t-qHMXJNOd9LAU_8M.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=b9e3d56ac81566fc76793965f4cd147d6088592f" alt="EtherWorld Weekly — Edition 357" title="EtherWorld Weekly — Edition 357" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/etherworld-weekly-edition-357/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s7mopy/etherworld_weekly_edition_357/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/etherworld-weekly-edition-357</link><guid>835139</guid><author>COINS NEWS</author><dc:content /><dc:text>EtherWorld Weekly — Edition 357</dc:text></item><item><title>Daily General Discussion March 30, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s7hcs2/daily_general_discussion_march_30_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s7hcs2/daily_general_discussion_march_30_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-30-2026</link><guid>834989</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 30, 2026</dc:text></item><item><title>Daily General Discussion March 29, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s6m76c/daily_general_discussion_march_29_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s6m76c/daily_general_discussion_march_29_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-29-2026</link><guid>834847</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 29, 2026</dc:text></item><item><title>ETH whale transactions up 1500% in 3 days while everyone is panicking</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s6fbdv/eth_whale_transactions_up_1500_in_3_days_while/"> <img src="https://external-preview.redd.it/Q7x5Nq9SAtSdsia4cuqSbgMWTLj70iU6vmpRftBi9b8.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=8a0e76f8569939e5881ef5cec63a668f4b339c3b" alt="ETH whale transactions up 1500% in 3 days while everyone is panicking" title="ETH whale transactions up 1500% in 3 days while everyone is panicking" /> </a> </td><td> <div class="md"><p>whales going absolutely nuts while everyone else panic sells. classic.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/zfyl"> /u/zfyl </a> <br/> <span><a href="https://web3flash.com/news/27497">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s6fbdv/eth_whale_transactions_up_1500_in_3_days_while/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/eth-whale-transactions-up-1500-in-3-days-while-everyone-is-panicking</link><guid>834793</guid><author>COINS NEWS</author><dc:content /><dc:text>ETH whale transactions up 1500% in 3 days while everyone is panicking</dc:text></item><item><title>Daily General Discussion March 28, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s5rbnm/daily_general_discussion_march_28_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s5rbnm/daily_general_discussion_march_28_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-28-2026</link><guid>834610</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 28, 2026</dc:text></item><item><title>Post-Quantum Ethereum client Lantern developer Pier Two acquired by BMNR</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s5pxbi/postquantum_ethereum_client_lantern_developer/"> <img src="https://external-preview.redd.it/Y78jPsTCk2NpSGR3bHulrmjeYAB2FKSzK0oqBjxVkCE.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=1f09810f470a59fa67d6eefb78fc922ee2c48163" alt="Post-Quantum Ethereum client Lantern developer Pier Two acquired by BMNR" title="Post-Quantum Ethereum client Lantern developer Pier Two acquired by BMNR" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/r2002"> /u/r2002 </a> <br/> <span><a href="https://piertwo.com/insights/pier-two-is-joining-mavan-a-bitmine-company">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s5pxbi/postquantum_ethereum_client_lantern_developer/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/post-quantum-ethereum-client-lantern-developer-pier-two-acquired-by-bmnr</link><guid>834611</guid><author>COINS NEWS</author><dc:content /><dc:text>Post-Quantum Ethereum client Lantern developer Pier Two acquired by BMNR</dc:text></item><item><title>Privacy preserving transaction verifier</title><description><![CDATA[<div class="md"><p>I Built a Privacy-Preserving Bitcoin transaction Receipt Verifier (No KYC, No Screenshots, No wallet). <a href="https://github.com/Teycir/Ghostreceipt">https://github.com/Teycir/Ghostreceipt</a> </p> <p>Would like to have feedback. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/tcoder7"> /u/tcoder7 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s5fd8h/privacy_preserving_transaction_verifier/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s5fd8h/privacy_preserving_transaction_verifier/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/privacy-preserving-transaction-verifier</link><guid>834521</guid><author>COINS NEWS</author><dc:content /><dc:text>Privacy preserving transaction verifier</dc:text></item><item><title>Paperwallet.ca launch</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s543mf/paperwalletca_launch/"> <img src="https://external-preview.redd.it/oON36uHI9g7pq5i77FFKlqm2n6tHOlR4Uytm6d68MWM.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=611a0bf7e713d2898ae5bbae6cf6623eaac050cb" alt="Paperwallet.ca launch" title="Paperwallet.ca launch" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Extreme-Tie9282"> /u/Extreme-Tie9282 </a> <br/> <span><a href="/r/CryptoCurrency/comments/1s51pbq/paperwalletca_launch/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s543mf/paperwalletca_launch/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/paperwalletca-launch</link><guid>834372</guid><author>COINS NEWS</author><dc:content /><dc:text>Paperwallet.ca launch</dc:text></item><item><title>Ethereal news weekly #17 | Frame transaction Considered for Inclusion for Hegotá, EthStaker staking survey, EF post-quantum website</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s53fx5/ethereal_news_weekly_17_frame_transaction/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #17 | Frame transaction Considered for Inclusion for Hegotá, EthStaker staking survey, EF post-quantum website" title="Ethereal news weekly #17 | Frame transaction Considered for Inclusion for Hegotá, EthStaker staking survey, EF post-quantum website" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-17/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s53fx5/ethereal_news_weekly_17_frame_transaction/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-17-frame-transaction-considered-for-inclusion-for-hegota-ethstaker-staking-survey-ef-post-quantum-website</link><guid>834373</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #17 | Frame transaction Considered for Inclusion for Hegotá, EthStaker staking survey, EF post-quantum website</dc:text></item><item><title>When gas hits 0.032 Gwei, physics speaks.</title><description><![CDATA[<div class="md"><p>Gas: 0.032 Gwei. Third percentile. Since network inception. Active addresses: +120% year-on-year. Price: -45% from the October 2025 ATH.</p> <p>This divergence has a name in thermodynamics. It&#39;s called positive free energy.</p> <p>I built a 3-layer valuation model:</p> <p><strong>L1 — Physics</strong> (40%) Network temperature. Monetary entropy. Gibbs free energy.</p> <p><strong>L2 — Usage</strong> (35%) Real adoption. L2 velocity. RWA tokenisation. DeFi activity.</p> <p><strong>L3 — Finance</strong> (25%) ETF flows. Exchange reserves. Open interest structure.</p> <p>Current readings:</p> <pre><code>T_eth = 0.03 S_eth = 0.85 H_eth = 0.65 EFEI = H − T×S = +0.625 </code></pre> <table><thead> <tr> <th align="left">Layer</th> <th align="left">Value</th> <th align="left">Signal</th> </tr> </thead><tbody> <tr> <td align="left">T_eth — 30d median gas</td> <td align="left">0.032 Gwei</td> <td align="left">❄️ 3rd percentile</td> </tr> <tr> <td align="left">S_eth — Monetary entropy</td> <td align="left">+0.23%/yr</td> <td align="left">⚠️ Inflationary</td> </tr> <tr> <td align="left">EFEI — Free energy</td> <td align="left">+0.625</td> <td align="left">✅ Positive</td> </tr> <tr> <td align="left">Active addresses</td> <td align="left">+120% YoY</td> <td align="left">✅ Real adoption</td> </tr> <tr> <td align="left">L2 TVL growth</td> <td align="left">+40% YoY</td> <td align="left">✅ ETH = settlement</td> </tr> <tr> <td align="left">RWA on Ethereum</td> <td align="left">$18.6B (65% market)</td> <td align="left">✅ Structural</td> </tr> <tr> <td align="left">Price vs 200d MA</td> <td align="left">-3% (below average)</td> <td align="left">❌ Bearish structure</td> </tr> <tr> <td align="left">Fear &amp; Greed Index</td> <td align="left">15 — Extreme Fear</td> <td align="left">✅ Contrarian</td> </tr> <tr> <td align="left">ETF cumulative AUM</td> <td align="left">$11.9B (ETHA)</td> <td align="left">⚠️ Mixed flows</td> </tr> </tbody></table> <p>ESM composite score: <strong>+0.487</strong> Regime: undervalued. Liquid → Solid transition phase.</p> <p>In thermodynamics, when free energy is positive, the system spontaneously converges toward higher value. That&#39;s not an opinion. It&#39;s a property of the system.</p> <p>What&#39;s suppressing the signal? Layer 3. Macro. Elevated VIX, mixed ETF flows. Weighted at 25%. Intentionally.</p> <p>One upcoming catalyst flips the entropy term negative. I won&#39;t name it. You already know what it is.</p> <p><em>Ether State Model v1.0 —</em> <a href="/u/GabFromMars">u/GabFromMars</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/GabFromMars"> /u/GabFromMars </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s4vslg/when_gas_hits_0032_gwei_physics_speaks/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s4vslg/when_gas_hits_0032_gwei_physics_speaks/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/when-gas-hits-0032-gwei-physics-speaks</link><guid>834273</guid><author>COINS NEWS</author><dc:content /><dc:text>When gas hits 0.032 Gwei, physics speaks.</dc:text></item><item><title>Daily General Discussion March 27, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s4uv0g/daily_general_discussion_march_27_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s4uv0g/daily_general_discussion_march_27_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-27-2026</link><guid>834272</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 27, 2026</dc:text></item><item><title>Highlights from the All Core Developers Execution (ACDE) Call #233</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s4s7lw/highlights_from_the_all_core_developers_execution/"> <img src="https://external-preview.redd.it/tlV69kQLtyuk9yUs_A9O_AVU65VF1kfeqK5E2-HhyF4.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=1fc67dd3e4abdc2c1fc7d41934e6174488cc7ca1" alt="Highlights from the All Core Developers Execution (ACDE) Call #233" title="Highlights from the All Core Developers Execution (ACDE) Call #233" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/highlights-from-the-all-core-developers-execution-acde-call-233/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s4s7lw/highlights_from_the_all_core_developers_execution/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/highlights-from-the-all-core-developers-execution-acde-call-233</link><guid>834171</guid><author>COINS NEWS</author><dc:content /><dc:text>Highlights from the All Core Developers Execution (ACDE) Call #233</dc:text></item><item><title>Onchain RWA protocols went from $4.1B to $14.1B in 2025. Here are 8 real-world tokenized assets you can buy right now:</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s4s1xy/onchain_rwa_protocols_went_from_41b_to_141b_in/"> <img src="https://preview.redd.it/8cxch6vm3irg1.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=7b8a2aa443551a1b35490ef77f92c468672ec1b1" alt="Onchain RWA protocols went from $4.1B to $14.1B in 2025. Here are 8 real-world tokenized assets you can buy right now:" title="Onchain RWA protocols went from $4.1B to $14.1B in 2025. Here are 8 real-world tokenized assets you can buy right now:" /> </a> </td><td> <div class="md"><p>Source: <a href="https://www.coingecko.com/learn/real-world-assets-rwa-buy-on-chain">https://www.coingecko.com/learn/real-world-assets-rwa-buy-on-chain</a></p> <p>RWAs were one of the fastest-growing sectors in crypto last year. DeFi yields from token emissions dried up, the GENIUS Act provided regulatory clarity for institutions, and BlackRock and Franklin Templeton launched their own tokenized products. This isn&#39;t speculative DeFi. These are tokens tied to government debt, physical commodities, and real loan portfolios.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Veronica_JW"> /u/Veronica_JW </a> <br/> <span><a href="https://i.redd.it/8cxch6vm3irg1.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s4s1xy/onchain_rwa_protocols_went_from_41b_to_141b_in/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/onchain-rwa-protocols-went-from-41b-to-141b-in-2025-here-are-8-real-world-tokenized-assets-you-can-buy-right-now</link><guid>834374</guid><author>COINS NEWS</author><dc:content /><dc:text>Onchain RWA protocols went from $4.1B to $14.1B in 2025. Here are 8 real-world tokenized assets you can buy right now:</dc:text></item><item><title>Are there any onchain risk analysts here?</title><description><![CDATA[<div class="md"><p>Working on a little side project that turns etherscan data into readable risk. If you analyzed a wallet recently I’d love to compare your assessment to my engine’s output and see where it’s wrong and right, thanks</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/imjustadudeguy"> /u/imjustadudeguy </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s4nt5c/are_there_any_onchain_risk_analysts_here/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s4nt5c/are_there_any_onchain_risk_analysts_here/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/are-there-any-onchain-risk-analysts-here</link><guid>834172</guid><author>COINS NEWS</author><dc:content /><dc:text>Are there any onchain risk analysts here?</dc:text></item><item><title>Lesson learned-Never trust any token unless contract is legit and official</title><description><![CDATA[<div class="md"><p>I am newbie in crypto trading. And I learned that ETH tokens pose a huge risk even if token seems to be authentic. Tried to swap my eth funds for Tether Gold XAUT, but got zero balanced fake tokens. Lesson learned as I checked later for second time to find out Tether Gold legit contract. Contract was fake and did not match with the legit one. I will never trust any tokens but it is very sad that those tokens were listed at coinbase web wallet to swap. Should not be. Thus I paid for that lesson ca €10 I think that these risks are discrediting ethereum as safe network. Because if user has no other option than believing that contract is genuine then any fake blockchain checking site may serve it as legit. Fortunally I transfered fake tokens to my cold wallet, so I just created new ethereum account in it to change address as previous is now a little compromised as scammers can scan and track my ethereum account balance. Will leave compromised as it is and will not touch it anymore.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Top-Care-8946"> /u/Top-Care-8946 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s49rkq/lesson_learnednever_trust_any_token_unless/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s49rkq/lesson_learnednever_trust_any_token_unless/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/lesson-learned-never-trust-any-token-unless-contract-is-legit-and-official</link><guid>834045</guid><author>COINS NEWS</author><dc:content /><dc:text>Lesson learned-Never trust any token unless contract is legit and official</dc:text></item><item><title>The State of the Blockchain Industry, and Where Ethereum Fits</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/YosephusMaximus0"> /u/YosephusMaximus0 </a> <br/> <span><a href="https://medium.com/@james_allan/the-state-of-the-blockchain-industry-and-where-kaspa-fits-c75371725255">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s46kge/the_state_of_the_blockchain_industry_and_where/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/the-state-of-the-blockchain-industry-and-where-ethereum-fits</link><guid>834044</guid><author>COINS NEWS</author><dc:content /><dc:text>The State of the Blockchain Industry, and Where Ethereum Fits</dc:text></item><item><title>Bitcoin.com Checkout has added support for ETH, and ERC-20 tokens in their app! Now any merchant can accept ETH, USDT, USDC, and more with NO KYC and available anywhere in the world!</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Mr_Kwibs"> /u/Mr_Kwibs </a> <br/> <span><a href="https://checkout.bitcoin.com/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s450e6/bitcoincom_checkout_has_added_support_for_eth_and/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/bitcoincom-checkout-has-added-support-for-eth-and-erc-20-tokens-in-their-app-now-any-merchant-can-accept-eth-usdt-usdc-and-more-with-no-kyc-and-available-anywhere-in-the-world</link><guid>834043</guid><author>COINS NEWS</author><dc:content /><dc:text>Bitcoin.com Checkout has added support for ETH, and ERC-20 tokens in their app! Now any merchant can accept ETH, USDT, USDC, and more with NO KYC and available anywhere in the world!</dc:text></item><item><title>Thinking out of the box: an x402 gateway for buying a finished local business website</title><description><![CDATA[<div class="md"><p>Been building an x402 gate way for my local business site builder. I want to experiment with x402 more for deliverables outside of the &quot;typical&quot; things (e.g.: simple api calls etc.) as I believe the potential is actually a lot bigger than that. I think it can be used for &quot;bigger&quot; agentic deliverables, e.g.: with this you get a full pipeline (llm research, google places search, image analysis, brand guidemap etc. which than gets molded into a one pager). Changes the game from &quot;cheap api calls&quot; to bigger deliverables. Feel free to play around with it and let me know what you think! Anyone else doing stuff sort of out of the most comon use cases with x402?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Rough-Kaleidoscope67"> /u/Rough-Kaleidoscope67 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s42wve/thinking_out_of_the_box_an_x402_gateway_for/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s42wve/thinking_out_of_the_box_an_x402_gateway_for/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/thinking-out-of-the-box-an-x402-gateway-for-buying-a-finished-local-business-website</link><guid>833847</guid><author>COINS NEWS</author><dc:content /><dc:text>Thinking out of the box: an x402 gateway for buying a finished local business website</dc:text></item><item><title>Pay.eth for sale</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/NOTPR0"> /u/NOTPR0 </a> <br/> <span><a href="https://x.com/not_pr0">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s42qh3/payeth_for_sale/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/payeth-for-sale</link><guid>833848</guid><author>COINS NEWS</author><dc:content /><dc:text>Pay.eth for sale</dc:text></item><item><title>Daily General Discussion March 26, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s3yazd/daily_general_discussion_march_26_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s3yazd/daily_general_discussion_march_26_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-26-2026</link><guid>833846</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 26, 2026</dc:text></item><item><title>Sent ETH to Abstract Global Wallet on wrong network — any chance of recovery?</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/PatchElmo"> /u/PatchElmo </a> <br/> <span><a href="/r/CryptoHelp/comments/1s3md3g/sent_eth_to_abstract_global_wallet_on_wrong/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s3mdo6/sent_eth_to_abstract_global_wallet_on_wrong/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/sent-eth-to-abstract-global-wallet-on-wrong-network-any-chance-of-recovery</link><guid>833754</guid><author>COINS NEWS</author><dc:content /><dc:text>Sent ETH to Abstract Global Wallet on wrong network — any chance of recovery?</dc:text></item><item><title>Is tokenizing real-world assets the next big step for finance, or just another crypto hype cycle?</title><description><![CDATA[<div class="md"><p>I’ve been trying to understand where tokenized real-world assets (RWA) actually fit. On paper, it sounds useful. You can take things like gold, real estate, or commodities and put them on blockchain. That should make them easier to trade, more accessible, and available 24/7. No banks, fewer middlemen.</p> <p>But I keep wondering how much of this is real improvement vs just packaging old assets in a new way. If I already have ETFs or REITs, do I really gain anything from tokenization? Or is it just more risk added through crypto infrastructure?</p> <p>I recently found <a href="http://steamex.com/">Steamex.com</a>, a platform which is focused on tokenized gold. The idea is simple: you buy digital tokens backed by real gold instead of holding physical metal. It sounds convenient, but it also depends a lot on trust in the company and how the backing actually works.</p> <p>Another question is liquidity. Projects say assets are tradable anytime, but that only works if there are enough buyers and sellers.</p> <p>Curious what others think. Is this actually the future of finance, or are we still early and overestimating the impact?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Chrelled"> /u/Chrelled </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s36mih/is_tokenizing_realworld_assets_the_next_big_step/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s36mih/is_tokenizing_realworld_assets_the_next_big_step/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/is-tokenizing-real-world-assets-the-next-big-step-for-finance-or-just-another-crypto-hype-cycle</link><guid>833592</guid><author>COINS NEWS</author><dc:content /><dc:text>Is tokenizing real-world assets the next big step for finance, or just another crypto hype cycle?</dc:text></item><item><title>Daily General Discussion March 25, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s31irr/daily_general_discussion_march_25_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s31irr/daily_general_discussion_march_25_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-25-2026</link><guid>833485</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 25, 2026</dc:text></item><item><title>Aave V4 just got greenlit in their latest proposal. Here's what is changing</title><description><![CDATA[<div class="md"><p>V4 passed near-unanimously with their main shift from being a monolithic pool to modular vaults. </p> <p>Like Morpho&#39;s isolation but with Aave&#39;s liquidity depth. sUSDe and RWA yields get cleaner APY profiles because risk vectors aren&#39;t correlated anymore. This is DeFi infrastructure graduating from &#39;move fast break things&#39; to &#39;TradFi complexity with better costs and could be a comeback for Aave against other lending market if implemented properly</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Bluejumprabbit"> /u/Bluejumprabbit </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s2ydj1/aave_v4_just_got_greenlit_in_their_latest/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s2ydj1/aave_v4_just_got_greenlit_in_their_latest/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/aave-v4-just-got-greenlit-in-their-latest-proposal-heres-what-is-changing</link><guid>833486</guid><author>COINS NEWS</author><dc:content /><dc:text>Aave V4 just got greenlit in their latest proposal. Here's what is changing</dc:text></item><item><title>A new type of block explorer</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/farfaraway"> /u/farfaraway </a> <br/> <span><a href="/r/solidity/comments/1s2pw62/a_new_type_of_block_explorer/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s2xqy2/a_new_type_of_block_explorer/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/a-new-type-of-block-explorer</link><guid>833411</guid><author>COINS NEWS</author><dc:content /><dc:text>A new type of block explorer</dc:text></item><item><title>Where do validators and miners of various blockchains communicate?</title><description><![CDATA[<div class="md"><p>I&#39;ve always wanted to know more about the world of the unsung heroes in blockchain. Those, being the validators and miners.</p> <p>How do validators of various blockchains communicate? Is there a place where I can peek into their world, (if any exist) where I can submerge myself in how they think, what they find valuable, and generally ask a tonne of questions?</p> <p>I understand the answer will vary from ecosystem to ecosystem. But yes, please assist. Where can I find validator groups and communication channels, any common I can communicate with them.</p> <p>Thanks,</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/MissPantherX"> /u/MissPantherX </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s2una3/where_do_validators_and_miners_of_various/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s2una3/where_do_validators_and_miners_of_various/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/where-do-validators-and-miners-of-various-blockchains-communicate</link><guid>833410</guid><author>COINS NEWS</author><dc:content /><dc:text>Where do validators and miners of various blockchains communicate?</dc:text></item><item><title>Thoughts on earning yield with ETH ?</title><description><![CDATA[<div class="md"><p>Been holding ETH for a while and looking into options for earning yield. Running a node seems cool but managing hardware and extra tokens feels like a lot. Liquid options are easier but then you&#39;re holding derivative tokens and trusting the protocol.</p> <p>Curious what path people are actually taking these days. Is the extra effort worth it or do you just hold?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Hour-Border6561"> /u/Hour-Border6561 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s2skh3/thoughts_on_earning_yield_with_eth/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s2skh3/thoughts_on_earning_yield_with_eth/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/thoughts-on-earning-yield-with-eth</link><guid>833409</guid><author>COINS NEWS</author><dc:content /><dc:text>Thoughts on earning yield with ETH ?</dc:text></item><item><title>Does Ethereum staking still make sense for smaller holders ?</title><description><![CDATA[<div class="md"><p>Been holding ETH for a while and thinking about staking. With 32 ETH still being the solo requirement, I&#39;m looking at options like Rocket Pool or Lido, but I keep going back and forth.</p> <p>Running a node seems cool but hardware + 4 ETH + RPL feels like a lot to manage. Liquid staking is easier but then you&#39;re holding a derivative token and trusting the protocol.</p> <p>For people staking right now , what path did you take and how&#39;s it been? Is the hassle worth the yield or do you just stick to holding?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Tchu_zee_bish"> /u/Tchu_zee_bish </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s2sh3n/does_ethereum_staking_still_make_sense_for/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s2sh3n/does_ethereum_staking_still_make_sense_for/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/does-ethereum-staking-still-make-sense-for-smaller-holders</link><guid>833593</guid><author>COINS NEWS</author><dc:content /><dc:text>Does Ethereum staking still make sense for smaller holders ?</dc:text></item><item><title>Ethereum rollups deployment platforms in 2026</title><description><![CDATA[<div class="md"><p>Trying to get a realistic picture of where rollup deployment is right now, not the hype version. I&#39;ve been reading through documentation for most of the major platforms and the gap between what they promise and what teams actually experience seems pretty significant based on forum posts and Discord convos.</p> <p>Specifically curious about a few things. How much does your framework choice actually constrain you after deployment? If you start on OP Stack and realize Arbitrum Orbit would&#39;ve been better for your use case, how painful is that migration realistically?</p> <p>Also the maintenance burden question. Every platform promises &quot;one-click deployment&quot; but what does post-launch actually look like for the infra team? Are you constantly babysitting the thing or does it run without much intervention?</p> <p>Asking because I keep seeing projects underestimate this and then burn significant engineering time on infra that should be going to product. What&#39;s been everyone&#39;s experience?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Fragrant-Love5628"> /u/Fragrant-Love5628 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s2fkp7/ethereum_rollups_deployment_platforms_in_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s2fkp7/ethereum_rollups_deployment_platforms_in_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-rollups-deployment-platforms-in-2026</link><guid>833235</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum rollups deployment platforms in 2026</dc:text></item><item><title>Daily General Discussion March 24, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s24nay/daily_general_discussion_march_24_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s24nay/daily_general_discussion_march_24_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-24-2026</link><guid>833098</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 24, 2026</dc:text></item><item><title>EthStaker: Ethereum Staking Survey | Any type of staker or even non-stakers are called to respond</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethstaker.org/forms/staking-landscape-survey-2026">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s2419r/ethstaker_ethereum_staking_survey_any_type_of/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethstaker-ethereum-staking-survey-any-type-of-staker-or-even-non-stakers-are-called-to-respond</link><guid>833099</guid><author>COINS NEWS</author><dc:content /><dc:text>EthStaker: Ethereum Staking Survey | Any type of staker or even non-stakers are called to respond</dc:text></item><item><title>Swapped some BTC to ETH last week - went smoother than expected</title><description><![CDATA[<div class="md"><p>Been mostly a BTC holder for a while but decided to move a portion into ETH. Wanted exposure to the ecosystem without buying fresh off an exchange and adding to my KYC footprint.</p> <p>Considered doing it on a CEX but the verification requirements on the platforms I already use have gotten stricter lately - didn&#39;t want to go through that for a one-time rebalance. DEX route felt overly complicated for BTC specifically since it&#39;s not native to most EVM chains.</p> <p>Went with a crypto exchanger. Checked a couple options for operating history and rates, picked one that had been around long enough to have some track record. Took about 25 minutes end to end, rate was close to spot, no issues.</p> <p>Anyone else using exchangers for BTC/ETH or are you going full CEX for this kind of swap?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/folderDolphin-5"> /u/folderDolphin-5 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s1umh7/swapped_some_btc_to_eth_last_week_went_smoother/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s1umh7/swapped_some_btc_to_eth_last_week_went_smoother/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/swapped-some-btc-to-eth-last-week-went-smoother-than-expected</link><guid>832954</guid><author>COINS NEWS</author><dc:content /><dc:text>Swapped some BTC to ETH last week - went smoother than expected</dc:text></item><item><title>Finally moved some ETH to BTC - anyone else avoiding CEX for this?</title><description><![CDATA[<div class="md"><p>Had about 0.5 ETH sitting in a wallet I wasn&#39;t really doing anything with. With the ETH/BTC ratio where it&#39;s been lately I decided to just move it to BTC and stop thinking about it.</p> <p>The annoying part was figuring out how. Tried initiating on Coinbase, got a re-verification prompt partway through which killed the momentum. Then looked at doing it on-chain -Uniswap is fine for ERC-20 stuff but for ETH to actual BTC you&#39;re bridging, and between gas and slippage I was looking at losing 2%+ before the swap even happened.</p> <p>Ended up going the crypto exchanger route. Did some research on operating history and reserve size, had a swap stall on a low-reserve service once before so that matters to me. Swap completed in about 20 minutes. Rate was within a reasonable range of spot, coins came back clean.</p> <p>Whole thing was less dramatic than I expected after all the research. What are you using for ETH/BTC swaps - CEX, DEX, or the exchanger route?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SliceOfBread3"> /u/SliceOfBread3 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s1ujpl/finally_moved_some_eth_to_btc_anyone_else/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s1ujpl/finally_moved_some_eth_to_btc_anyone_else/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/finally-moved-some-eth-to-btc-anyone-else-avoiding-cex-for-this</link><guid>832955</guid><author>COINS NEWS</author><dc:content /><dc:text>Finally moved some ETH to BTC - anyone else avoiding CEX for this?</dc:text></item><item><title>BitMine just added another 65,341 ETH and now holds 4.66M ETH total</title><description><![CDATA[<div class="md"><p>BitMine just added another 65,341 ETH and now holds 4.66M ETH total</p> <p>A huge chunk is also staked, which makes this feel bigger than a normal treasury headline</p> <p>Curious how people here see it — bullish signal for Ethereum’s institutional case, or too much concentration in one corporate balance sheet?</p> <p><a href="https://btcusa.com/bitmine-adds-65341-eth/">https://btcusa.com/bitmine-adds-65341-eth/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Enough_Angle_7839"> /u/Enough_Angle_7839 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s1ks6b/bitmine_just_added_another_65341_eth_and_now/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s1ks6b/bitmine_just_added_another_65341_eth_and_now/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/bitmine-just-added-another-65341-eth-and-now-holds-466m-eth-total</link><guid>832953</guid><author>COINS NEWS</author><dc:content /><dc:text>BitMine just added another 65,341 ETH and now holds 4.66M ETH total</dc:text></item><item><title>What do you actually use your ETH for besides trading/staking?</title><description><![CDATA[<div class="md"><p>Most conversations around ETH are about trading, staking yields, or long-term positioning. That’s fine, but I’m more interested in actual usage.</p> <p>Where does ETH realistically make sense outside of speculation?</p> <p>From what I’ve seen, it shows up most in DeFi, NFTs, and certain online services; but even then, gas fees can make smaller transactions feel inefficient. It’s not always obvious where ETH fits as something you use rather than just hold or lock up.</p> <p>I’ve experimented a bit with different use cases, mostly around digital services and entertainment. Some platforms are clearly designed with ETH in mind, while others just support it as an extra option without really optimizing the experience. A few setups, like Metaspins, seem to lean more into direct crypto usage, but even there it depends on fees, timing, and how smooth the process actually is.</p> <p>So I want to know. What are you using ETH for right now that feels practical, not just theoretical?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/bankrollbystander"> /u/bankrollbystander </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s1aqfq/what_do_you_actually_use_your_eth_for_besides/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s1aqfq/what_do_you_actually_use_your_eth_for_besides/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/what-do-you-actually-use-your-eth-for-besides-tradingstaking</link><guid>832770</guid><author>COINS NEWS</author><dc:content /><dc:text>What do you actually use your ETH for besides trading/staking?</dc:text></item><item><title>Daily General Discussion March 23, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s17tez/daily_general_discussion_march_23_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s17tez/daily_general_discussion_march_23_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-23-2026</link><guid>832769</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 23, 2026</dc:text></item><item><title>Kindly assistance required - Unknown Txn</title><description><![CDATA[<div class="md"><p>Hi,</p> <p>Long story short 45sec after funding my trust wallet a transfer occurred that I do not recall making.</p> <p>Mar-23-2026 01:10:59 AM</p> <p>From funding wallet to trust wallet Erc20</p> <p>0xd88cec26651601789e86cedbefc2af5e3d282249badc150f9caeb4fea509be30</p> <p>The unknown transaction</p> <p>Mar-23-2026 01:11:47 AM</p> <p>0xa72208defce57ad563bc406f8a5bfd6fa8dc4e17f2b2045e11741eb88067cf1b</p> <p>Is there something i am missing? Or is my wallet compromised.</p> <p>Thanks in advance.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Significant_Fun4550"> /u/Significant_Fun4550 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s15ob8/kindly_assistance_required_unknown_txn/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s15ob8/kindly_assistance_required_unknown_txn/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/kindly-assistance-required-unknown-txn</link><guid>832771</guid><author>COINS NEWS</author><dc:content /><dc:text>Kindly assistance required - Unknown Txn</dc:text></item><item><title>Open-source dashboard for managing testnet gas across chains</title><description><![CDATA[<div class="md"><p>Just finished the first version of <strong>Aegisa</strong>. It’s basically a &quot;Control Tower&quot; for testnets.</p> <p>The goal was to have one place to check balances across Sepolia, Base, IOTA, etc., and dispense gas via a dedicated API for automated tasks. It&#39;s meant to be hosted on your own infra so you aren&#39;t at the mercy of public endpoints.</p> <p>Landing page:<a href="https://mwveliz.github.io/aegisa/">https://mwveliz.github.io/aegisa/</a><br/> Source:<a href="https://github.com/mwveliz/aegisa/">https://github.com/mwveliz/aegisa/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/mwveliz"> /u/mwveliz </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s121bj/opensource_dashboard_for_managing_testnet_gas/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s121bj/opensource_dashboard_for_managing_testnet_gas/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/open-source-dashboard-for-managing-testnet-gas-across-chains</link><guid>832600</guid><author>COINS NEWS</author><dc:content /><dc:text>Open-source dashboard for managing testnet gas across chains</dc:text></item><item><title>Ethereal news weekly #16 | US SEC securities laws application to crypto, fast confirmation rule, EF mandate</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s10xuy/ethereal_news_weekly_16_us_sec_securities_laws/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #16 | US SEC securities laws application to crypto, fast confirmation rule, EF mandate" title="Ethereal news weekly #16 | US SEC securities laws application to crypto, fast confirmation rule, EF mandate" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-16/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s10xuy/ethereal_news_weekly_16_us_sec_securities_laws/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-16-us-sec-securities-laws-application-to-crypto-fast-confirmation-rule-ef-mandate</link><guid>832599</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #16 | US SEC securities laws application to crypto, fast confirmation rule, EF mandate</dc:text></item><item><title>Is Ethereum L2 fragmentation actually getting worse?</title><description><![CDATA[<div class="md"><p>Been using Ethereum for years and I&#39;m happy with the roadmap, but L2s are starting to feel like their own isolated islands. Arbitrum, Base, Optimism, ZkSync , each has its own liquidity, its own bridges, its own quirks.</p> <p>I get that they scale the network, but moving between them still feels clunky. Sometimes I wonder if we&#39;re solving one problem (fees on mainnet) while creating another (fragmentation).</p> <p>Curious how others see this. Are we heading toward a unified L2 experience or is this just how it&#39;s going to be?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Hour-Border6561"> /u/Hour-Border6561 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s10epx/is_ethereum_l2_fragmentation_actually_getting/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s10epx/is_ethereum_l2_fragmentation_actually_getting/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/is-ethereum-l2-fragmentation-actually-getting-worse</link><guid>832597</guid><author>COINS NEWS</author><dc:content /><dc:text>Is Ethereum L2 fragmentation actually getting worse?</dc:text></item><item><title>Someone Minted $80M in Fake Stablecoins and Converted Them to 9,100 ETH. The Contracts Had Been Audited.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s0ykdo/someone_minted_80m_in_fake_stablecoins_and/"> <img src="https://external-preview.redd.it/15R4i9sF3WzT7Wg12MGVD0KZYHSPFtmWav2rJBILO2I.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=a1c6367998d0d5b3152320236fe0ab950af74b37" alt="Someone Minted $80M in Fake Stablecoins and Converted Them to 9,100 ETH. The Contracts Had Been Audited." title="Someone Minted $80M in Fake Stablecoins and Converted Them to 9,100 ETH. The Contracts Had Been Audited." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/zakoal"> /u/zakoal </a> <br/> <span><a href="https://dailycoinpost.com/resolv-usr-stablecoin-80-million-unauthorized-mint-2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s0ykdo/someone_minted_80m_in_fake_stablecoins_and/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/someone-minted-80m-in-fake-stablecoins-and-converted-them-to-9100-eth-the-contracts-had-been-audited</link><guid>832596</guid><author>COINS NEWS</author><dc:content /><dc:text>Someone Minted $80M in Fake Stablecoins and Converted Them to 9,100 ETH. The Contracts Had Been Audited.</dc:text></item><item><title>x402s now has state channels</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/NOTPR0"> /u/NOTPR0 </a> <br/> <span><a href="https://x.com/not_pr0/status/2035835465354322316">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s0yi3u/x402s_now_has_state_channels/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/x402s-now-has-state-channels</link><guid>832602</guid><author>COINS NEWS</author><dc:content /><dc:text>x402s now has state channels</dc:text></item><item><title>I built a lite Ethereum explorer for node runners — talks directly to your node, hosted on IPFS, no install needed</title><description><![CDATA[<div class="md"><p>Hi there,</p> <p>I made a niche thing, probably useful for a small group of node runners who wanted something like this.</p> <p>It’s basically a lightweight, IPFS-hosted Ethereum explorer — like Etherscan, but it queries your own node directly via JSON-RPC. It’s just a static HTML page, so you open it, enter your RPC, and use it. No backend, no setup — just a page.</p> <h2>Access</h2> <ul> <li><a href="https://nodex.monkale.eth">nodex.monkale.eth</a><br/></li> <li><a href="https://nodex.monkale.eth.limo">nodex.monkale.eth.limo</a><br/></li> </ul> <h2>Repo</h2> <p><a href="https://github.com/monkale-io/ethereum-node-explorer">github.com/monkale-io/ethereum-node-explorer</a></p> <p>I built it after I started running my own node and wanted a simple web UI to explore it. I found an old explorer (<a href="https://github.com/Alethio/ethereum-lite-explorer">Alethio ethereum-lite-explorer</a>) — it still works and is actually quite good, but it was abandoned ~6 years ago — so I decided to rewrite it with a modern stack and put it on IPFS, so it can stay just a static page without any backend or services to run.</p> <p>Planning to maintain and evolve it. Feedback and contributions are welcome.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Away_Persimmon5786"> /u/Away_Persimmon5786 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s0pck7/i_built_a_lite_ethereum_explorer_for_node_runners/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s0pck7/i_built_a_lite_ethereum_explorer_for_node_runners/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/i-built-a-lite-ethereum-explorer-for-node-runners-talks-directly-to-your-node-hosted-on-ipfs-no-install-needed</link><guid>832601</guid><author>COINS NEWS</author><dc:content /><dc:text>I built a lite Ethereum explorer for node runners — talks directly to your node, hosted on IPFS, no install needed</dc:text></item><item><title>Ethereum Cuts Bridge Times by 98%</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s0mzw8/ethereum_cuts_bridge_times_by_98/"> <img src="https://external-preview.redd.it/8mGWVsmifySfJoPzXZy-K4D-t_jWdBUe0daCSLWYjUo.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=fa5d15390409d0e749106e8b9a434c0fb9b0ae7c" alt="Ethereum Cuts Bridge Times by 98%" title="Ethereum Cuts Bridge Times by 98%" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/swe129"> /u/swe129 </a> <br/> <span><a href="https://financefeeds.com/crypto-news-ethereum-cuts-bridge-times-by-98-while-pepeto-hands-early-believers-100x-presale-gains/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s0mzw8/ethereum_cuts_bridge_times_by_98/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereum-cuts-bridge-times-by-98</link><guid>832598</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum Cuts Bridge Times by 98%</dc:text></item><item><title>Daily General Discussion March 22, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s0cxb3/daily_general_discussion_march_22_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s0cxb3/daily_general_discussion_march_22_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-22-2026</link><guid>832447</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 22, 2026</dc:text></item><item><title>Appreciate feedback on provenance tracking for shares as RWAs on Ethereum</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1s09919/appreciate_feedback_on_provenance_tracking_for/"> <img src="https://external-preview.redd.it/xnByKbaPGZMCBe1Q--lvSG4wDH98wIssSBu_QSLLvLA.png?width=140&amp;height=140&amp;auto=webp&amp;s=06b28222071240ebf6a620c6ad693fcbe7a7b64c" alt="Appreciate feedback on provenance tracking for shares as RWAs on Ethereum" title="Appreciate feedback on provenance tracking for shares as RWAs on Ethereum" /> </a> </td><td> <div class="md"><p>Hi everyone,</p> <p>I&#39;d really appreciate some feedback on something we&#39;re building on Ethereum. This is pretty much my first time doing this, but my co-founder is way more experienced, he&#39;s been a Web3 engineer for a long time.</p> <p>You probably know there are already some projects putting public stocks on-chain as RWAs. What we&#39;re trying to do is a bit different: bring the actual chain of custody on-chain for those shares. The issue with normal shares is they&#39;re totally fungible so you have zero clue who owned it before you. We want to track that history to unlock some &quot;cultural premium&quot; value as an RWA. Kind of like NFTs but for real shares.</p> <p>For example imagine proving your TSLA share was once held by Elon Musk. That kind of story probably makes it worth more to some people.</p> <p>To make it work we take verified shares (held in proper custody) and wrap them as provenance-wrapped shares on Ethereum smart contracts, using something like ERC-1155 for semi-fungible units, and record the full ownership chain in metadata or on-chain events.</p> <p>We&#39;re still in the middle of building, no live contracts or actual trading yet. Just trying to get real opinions early and figure if we&#39;re onto something or is this just dumb as hell. </p> <p>It would mean a lot to hear what Ethereum people think:</p> <ul> <li>Does provenance tracking for equities as RWAs actually sound useful/valuable, or is it kind of a gimmick?</li> </ul> <p>You can check out the demo to see how we&#39;re thinking about it in practice: <a href="https://provenantx.com">https://provenantx.com</a></p> <p><a href="https://preview.redd.it/fru8qps46iqg1.png?width=624&amp;format=png&amp;auto=webp&amp;s=d93019bd8ad4a09695879f36d7c32f6f80436582">https://preview.redd.it/fru8qps46iqg1.png?width=624&amp;format=png&amp;auto=webp&amp;s=d93019bd8ad4a09695879f36d7c32f6f80436582</a></p> <p>Thanks a ton for any thoughts!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/DollarBallers"> /u/DollarBallers </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1s09919/appreciate_feedback_on_provenance_tracking_for/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1s09919/appreciate_feedback_on_provenance_tracking_for/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/appreciate-feedback-on-provenance-tracking-for-shares-as-rwas-on-ethereum</link><guid>832448</guid><author>COINS NEWS</author><dc:content /><dc:text>Appreciate feedback on provenance tracking for shares as RWAs on Ethereum</dc:text></item><item><title>Daily General Discussion March 21, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rzitba/daily_general_discussion_march_21_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rzitba/daily_general_discussion_march_21_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-21-2026</link><guid>832303</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 21, 2026</dc:text></item><item><title>Red flags to look for in an exchange.</title><description><![CDATA[<div class="md"><p>Whenever I see an exchange offering 40% APY on stablecoins, I run the other way immediately. Yield doesn&#39;t come from nowhere. I look for platforms that just focus on standard spot trading, verifiable proof of reserves, and steady, quiet growth. That&#39;s exactly why I&#39;ve stuck with Coinbase and BitMart over the years. Solid security beats flashy yields every single time.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Boss_public01"> /u/Boss_public01 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rzdfrn/red_flags_to_look_for_in_an_exchange/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rzdfrn/red_flags_to_look_for_in_an_exchange/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/red-flags-to-look-for-in-an-exchange</link><guid>832306</guid><author>COINS NEWS</author><dc:content /><dc:text>Red flags to look for in an exchange.</dc:text></item><item><title>I built a free tool that makes blockchain transactions human-readable — would love feedback</title><description><![CDATA[<div class="md"><p>Hey everyone,</p> <p>I’ve been working on a side project called Blockpeek and just shipped a new update. It’s a blockchain transaction scanner that tries to explain what actually happened in plain English instead of just showing raw hex data.</p> <p>You paste a transaction hash (or upload a screenshot from your wallet/exchange) and it tells you:</p> <pre><code>∙ What was sent, to who, from who ∙ The USD value at the time ∙ Gas fees in USD ∙ Which chain it was on (auto-detects Ethereum, BSC, Arbitrum, Polygon, Base, Solana, Bitcoin, Tron and more) </code></pre> <p>It’s free, no login required.</p> <p>Would genuinely love feedback — what’s missing, what’s broken, what would make it actually useful for you.</p> <p>blockpeek.io</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Goffyx"> /u/Goffyx </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rzbnql/i_built_a_free_tool_that_makes_blockchain/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rzbnql/i_built_a_free_tool_that_makes_blockchain/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/i-built-a-free-tool-that-makes-blockchain-transactions-human-readable-would-love-feedback</link><guid>832304</guid><author>COINS NEWS</author><dc:content /><dc:text>I built a free tool that makes blockchain transactions human-readable — would love feedback</dc:text></item><item><title>Thorchain Alternative?</title><description><![CDATA[<div class="md"><p>I’m looking for a way to swap my Bitcoin to Ethereum without KYC, so obviously i found thorchain, but unfortunately it’s not available here in the U.S, and i heard it’s very expensive as well. Where should I do it you think?</p> <p>sorry if this question was already asked in past but i couldnt find an answer after bit lf time checking.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Resident_Toe2451"> /u/Resident_Toe2451 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rz9an2/thorchain_alternative/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rz9an2/thorchain_alternative/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/thorchain-alternative</link><guid>832305</guid><author>COINS NEWS</author><dc:content /><dc:text>Thorchain Alternative?</dc:text></item><item><title>Tally is dead - and we killed the future it was supposed to serve</title><description><![CDATA[<div class="md"><p>Tally is dead - and we killed the future it was supposed to serve</p> <p>Tally - the biggest DAO governance platform in Ethereum, used by Uniswap, Arbitrum, ENS, and 500+ DAOs - just shut down. Less than a year after raising $8M.</p> <p>Their CEO said their thesis was that there would be thousands of L2s needing governance tools. Instead, the industry consolidated around a handful of protocols. The &quot;infinite garden&quot; never grew.</p> <p>But let me tell you what that garden was supposed to look like - because I think most of us forgot.</p> <p># We were supposed to build real things</p> <p>Imagine an open-source Uber alternative - a real LLC that builds and maintains the software, but instead of a board of directors and shareholders extracting 30% of every ride, the company is managed by a DAO. Token holders vote on fee structures, driver policies, expansion decisions. The app itself is normal software - you&#39;re not routing drivers through smart contracts, that&#39;s absurd. But the *governance and ownership* layer is on-chain, transparent, and community-driven. Same idea for Airbnb - a real company, open-source code, DAO-managed, hosts keeping almost everything they earn. These aren&#39;t fantasy. This is what Ethereum was supposed to make possible.</p> <p>And some of these projects actually existed. People actually tried to build them. They&#39;re dead now. Not because the technology failed. Not because there was no demand. They died because there is no ecosystem for legitimate projects to grow in.</p> <p># The ecosystem eats its own</p> <p>Here&#39;s what actually happens when you try to build something real in Web3. You build your protocol. You launch. And then you need to tell people about it. So you go to crypto subreddits - banned. Crypto Discords - banned. Telegram groups - banned or drowned out by bot spam. You share your project and moderators treat you the same as the guy shilling a dog coin that&#39;ll rug in 48 hours.</p> <p>Your realistic option? Post on BitcoinTalk and slowly, painfully try to build enough traction over months and years, hoping that some VC notices you before you run out of money.</p> <p>That&#39;s the reality for legitimate builders in this space. Meanwhile, scam tokens with zero utility get millions in funding because they know how to play the hype game.</p> <p># Tally didn&#39;t die because DAOs failed - DAOs failed because we never let real ones grow</p> <p>Tally&#39;s CEO was right that the ecosystem of consumer applications never developed. But let&#39;s ask *why*. During the Gensler era, projects adopted DAO structures as legal shields against SEC enforcement - not because they believed in decentralized governance. When Trump signaled softer regulation, teams dropped the pretense overnight. Most DAOs were never real. They were legal camouflage.</p> <p>And the few people trying to build genuine DAO-governed applications with real-world utility? They couldn&#39;t get a single post up without being flagged as spam.</p> <p>Buterin has been talking about DAOs all year - calling for better designs in January, proposing AI agents to vote on your behalf in February because human participation is so low. But maybe participation is low because there&#39;s nothing meaningful to participate *in*. If the only DAOs that survive are governance wrappers for DeFi protocols, of course nobody shows up to vote.</p> <p># EF is building infrastructure for a city nobody moved into</p> <p>Ethereum Foundation keeps pushing ZK rollups, cheaper transactions, scaling solutions. Fine, these have technical merit. But cheaper gas doesn&#39;t matter when there&#39;s nobody new to use it.</p> <p>With all the capital EF has, we could be funding the things that would actually bring normal people on-chain. ZK-based KYC that restores trust without sacrificing privacy. Incubation programs for real-world DAO applications. Moderated spaces where legitimate builders can actually be discovered without getting lumped in with scammers.</p> <p>Instead, Ethereum competes with its own L2s for the same users who are already here, while billions of people still think &quot;crypto&quot; means &quot;the thing my cousin lost money on.&quot;</p> <p># The future of blockchain is in humans, not in technology</p> <p>Somewhere out there, someone is trying to build the decentralized Uber that could change how millions of people work and travel. They can&#39;t get a Discord post up without being banned. They can&#39;t raise money because VCs only fund what already has traction. They&#39;ll probably give up in six months.</p> <p>And in five years, we&#39;ll still be wondering why the &quot;infinite garden&quot; never bloomed.</p> <p>The technology is ready. The people aren&#39;t - because we never built the ecosystem to welcome them. That&#39;s what killed Tally. Not a lack of ZK proofs. Not expensive gas. A lack of humans.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/diornov"> /u/diornov </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rz2jka/tally_is_dead_and_we_killed_the_future_it_was/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rz2jka/tally_is_dead_and_we_killed_the_future_it_was/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/tally-is-dead-and-we-killed-the-future-it-was-supposed-to-serve</link><guid>833100</guid><author>COINS NEWS</author><dc:content /><dc:text>Tally is dead - and we killed the future it was supposed to serve</dc:text></item><item><title>Daily General Discussion March 20, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ryna1i/daily_general_discussion_march_20_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ryna1i/daily_general_discussion_march_20_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-20-2026</link><guid>832057</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 20, 2026</dc:text></item><item><title>I built an Agent Based modeling tool with deterministic and non-deterministic LLM powered agents for smart contracts to test security and mechanism design</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1ryhtyy/i_built_an_agent_based_modeling_tool_with/"> <img src="https://preview.redd.it/cybq1bgnj3qg1.jpg?width=140&amp;height=87&amp;auto=webp&amp;s=8d0af3ee4ea913eef7fd1d315f6a049b88df6068" alt="I built an Agent Based modeling tool with deterministic and non-deterministic LLM powered agents for smart contracts to test security and mechanism design" title="I built an Agent Based modeling tool with deterministic and non-deterministic LLM powered agents for smart contracts to test security and mechanism design" /> </a> </td><td> <div class="md"><p>Hey everyone! I just built a new Agent Based Modeling tool for EVM that works directly with Foundry! I would love feedback from anyone.</p> <p>I&#39;ll share Github Link as well as one to a twitter thread that I posted.</p> <p>You can run agent based simulations of smart contarcts to test security and mechanism design. You also can use LLM based agents that understand current world state and can make arbitrary smart contract calls. I guess you could say it&#39;s like &quot;Ralph for Smart Contracts&quot; too. There&#39;s even a Gossip channel that runs in tandem with the blockchain that agents can post to while the simulation is running.</p> <p>I&#39;m looking for any contributors who are interested!</p> <p><a href="https://x.com/wkylegdoteth/status/2030366623819858382">https://x.com/wkylegdoteth/status/2030366623819858382</a></p> <p><a href="https://github.com/Elata-Biosciences/agentforge">https://github.com/Elata-Biosciences/agentforge</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/wkyleg"> /u/wkyleg </a> <br/> <span><a href="https://www.reddit.com/gallery/1ryhtyy">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ryhtyy/i_built_an_agent_based_modeling_tool_with/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/i-built-an-agent-based-modeling-tool-with-deterministic-and-non-deterministic-llm-powered-agents-for-smart-contracts-to-test-security-and-mechanism-design</link><guid>832603</guid><author>COINS NEWS</author><dc:content /><dc:text>I built an Agent Based modeling tool with deterministic and non-deterministic LLM powered agents for smart contracts to test security and mechanism design</dc:text></item><item><title>A new kind of block explorer</title><description><![CDATA[<div class="md"><p>Hey everybody, I&#39;ve been building a no code visual smart contract builder for solidity to help non-developers realize their ideas without having to learn solidity. </p> <p>While doing that, as a dog food experiment, I created a block explorer which uses the visualizations against verified contracts so I could test better. </p> <p>At some point I realized that would make a pretty cool tool for a lot of people since I&#39;m able to surface things that most block explorers don&#39;t: </p> <ul> <li>being able to replay a transaction and follow what&#39;s happening on the visual graph </li> <li>displaying various attributes about a contract like whether it&#39;s pausible, has only owner functions, etc</li> <li>showing debug info about every step that happened in the contract </li> </ul> <p>There&#39;s probably a lot more that I could do there and I&#39;m looking to source ideas from the community about what should be added. </p> <p>It&#39;d be great if y&#39;all could take a look and see if there&#39;s anything obvious that I&#39;m missing </p> <p><a href="https://doodledapp.com/explorer">https://doodledapp.com/explorer</a></p> <p>Thanks!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/nsjames1"> /u/nsjames1 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ryey1t/a_new_kind_of_block_explorer/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ryey1t/a_new_kind_of_block_explorer/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/a-new-kind-of-block-explorer</link><guid>831922</guid><author>COINS NEWS</author><dc:content /><dc:text>A new kind of block explorer</dc:text></item><item><title>PSA: CoinSpace/CoinWallet v3.0.7 (2021) has a derivation bug that made it provide the WRONG seed phrase. My recovery script inside.</title><description><![CDATA[<div class="md"><p>Seen some past posts that people had lost their wallets and this might help those people! </p> <p>If you created a wallet with CoinSpace (now Coin Wallet) around early 2021 and your seed phrase generates a completely different address in MetaMask or any standard tool... you&#39;re not crazy. The software had a bug.</p> <p>CoinSpace v3.0.7 (and maybe other versions) incorrectly derived wallet addresses from your seed phrase due to two compounding errors in the code. Your seed phrase can be recovered - but not using it directly. the app just used a broken algorithm to turn it into an address, one that no standard wallet tool replicates. </p> <p>CoinWallet is aware of part of the issue and will point you to a derivation path fix if you report it, but that fix alone doesn&#39;t work. The recovery script in the repo handles it correctly.</p> <p>I hit this when I needed to recover 1.55 ETH from a wallet I created in Feb 2021. After weeks of forensics I found the bug and wrote a recovery script.</p> <p>Recovery script: <a href="https://github.com/RobMulla/coinspace-eth-recovery">https://github.com/RobMulla/coinspace-eth-recovery</a></p> <p>Full long writeup about my journey: <a href="https://robmulla.substack.com/p/how-my-sons-roblox-mod-helped-me">https://robmulla.substack.com/p/how-my-sons-roblox-mod-helped-me</a></p> <p>If you&#39;re affected, and this works for you please let me know! Or if you knew about this already... I&#39;m curious to know if I&#39;m not the only one.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/robikscuber"> /u/robikscuber </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ry380b/psa_coinspacecoinwallet_v307_2021_has_a/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ry380b/psa_coinspacecoinwallet_v307_2021_has_a/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/psa-coinspacecoinwallet-v307-2021-has-a-derivation-bug-that-made-it-provide-the-wrong-seed-phrase-my-recovery-script-inside</link><guid>831923</guid><author>COINS NEWS</author><dc:content /><dc:text>PSA: CoinSpace/CoinWallet v3.0.7 (2021) has a derivation bug that made it provide the WRONG seed phrase. My recovery script inside.</dc:text></item><item><title>Daily General Discussion March 19, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rxrdse/daily_general_discussion_march_19_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rxrdse/daily_general_discussion_march_19_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-19-2026</link><guid>831752</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 19, 2026</dc:text></item><item><title>Looking for Wallet Recommendations</title><description><![CDATA[<div class="md"><p>The top priority is safety and security.</p> <p>The coins to be stored are ETH and USDC (can also be 2 separate wallets for each, I dont mind that). They are to be used for long-term.</p> <p>The wallet will be installed on a external drive which is then removed and stored securely. Wallet is not installed on the computer itself.</p> <p>What are your best recommendations?</p> <p>PS: Yes, I know! Usually people recommend hardware wallets... but I think they are still risky because you put all your trust in just one single company, and sometimes they can do stupid stuff, for example as we&#39;ve seen some stories with Ledger and their multiple data leaks. I personally feel more comfrotable with a software one, as long as it&#39;s safe and secure.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Legal_Let8869"> /u/Legal_Let8869 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rxioe2/looking_for_wallet_recommendations/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rxioe2/looking_for_wallet_recommendations/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/looking-for-wallet-recommendations</link><guid>831632</guid><author>COINS NEWS</author><dc:content /><dc:text>Looking for Wallet Recommendations</dc:text></item><item><title>r/BASE FOUNDER 'AMA' SERIES Week 6 - DEGEN: Join us Thursday March 19th, 2pm ET</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rxgcae/rbase_founder_ama_series_week_6_degen_join_us/"> <img src="https://preview.redd.it/l3rlxn3l1vpg1.png?width=140&amp;height=106&amp;auto=webp&amp;s=33f642cc3df1d7ac36d489e4ec0d71c8f5c7f230" alt="r/BASE FOUNDER 'AMA' SERIES Week 6 - DEGEN: Join us Thursday March 19th, 2pm ET" title="r/BASE FOUNDER 'AMA' SERIES Week 6 - DEGEN: Join us Thursday March 19th, 2pm ET" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Square-Party-3655"> /u/Square-Party-3655 </a> <br/> <span><a href="/r/BASE/comments/1rxeyfo/rbase_founder_ama_series_week_6_degen_join_us/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rxgcae/rbase_founder_ama_series_week_6_degen_join_us/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/rbase-founder-ama-series-week-6-degen-join-us-thursday-march-19th-2pm-et</link><guid>831634</guid><author>COINS NEWS</author><dc:content /><dc:text>r/BASE FOUNDER 'AMA' SERIES Week 6 - DEGEN: Join us Thursday March 19th, 2pm ET</dc:text></item><item><title>Best crypto cards for global travel right now?</title><description><![CDATA[<div class="md"><p>I&#39;m traveling next month across a few different countries and really want to spend some of my gains without off-ramping to fiat and dealing with my bank&#39;s absolute BS regarding foreign transaction fees. I used to use the Binance card heavily but, well, you know how that ended for a lot of regions. I saw BitMart has a card out now with their 8th anniversary promotions, and Coinbase obviously has their established one. Has anyone used the BitMart card specifically in Europe or Southeast Asia? I&#39;m mainly looking for decent conversion spreads at the point of sale and no hidden monthly maintenance fees</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Educational_Gap_8445"> /u/Educational_Gap_8445 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rxbv42/best_crypto_cards_for_global_travel_right_now/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rxbv42/best_crypto_cards_for_global_travel_right_now/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/best-crypto-cards-for-global-travel-right-now</link><guid>831633</guid><author>COINS NEWS</author><dc:content /><dc:text>Best crypto cards for global travel right now?</dc:text></item><item><title>Ethereum Foundation incompetence</title><description><![CDATA[<div class="md"><p>EF just sold 5000 ETH to Bitmine at local low (price), meanwhile publishing insecure anime &quot;safe space&quot; out of touch manifestos. Seriously guys, what&#39;s wrong with you? </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/hammertime1278"> /u/hammertime1278 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rwyf2c/ethereum_foundation_incompetence/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rwyf2c/ethereum_foundation_incompetence/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-foundation-incompetence</link><guid>831488</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum Foundation incompetence</dc:text></item><item><title>Daily General Discussion March 18, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rwuoph/daily_general_discussion_march_18_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rwuoph/daily_general_discussion_march_18_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-18-2026</link><guid>831368</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 18, 2026</dc:text></item><item><title>SEC Clarifies the Application of Federal Securities Laws to Crypto Assets</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://www.sec.gov/newsroom/press-releases/2026-30-sec-clarifies-application-federal-securities-laws-crypto-assets">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rwroq0/sec_clarifies_the_application_of_federal/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/sec-clarifies-the-application-of-federal-securities-laws-to-crypto-assets</link><guid>831369</guid><author>COINS NEWS</author><dc:content /><dc:text>SEC Clarifies the Application of Federal Securities Laws to Crypto Assets</dc:text></item><item><title>Does a chain need a foundation?</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rw7zdt/does_a_chain_need_a_foundation/"> <img src="https://external-preview.redd.it/2ZL39uT6pi-m8uZeGpx0Tv5Tqt81wJoXkB0Aj5QAcLQ.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=6ec67091f4d8ab9acc070e465e147853330d973b" alt="Does a chain need a foundation?" title="Does a chain need a foundation?" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/applezoid"> /u/applezoid </a> <br/> <span><a href="https://frugalbc.beehiiv.com/p/does-a-chain-need-a-foundation">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rw7zdt/does_a_chain_need_a_foundation/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/does-a-chain-need-a-foundation</link><guid>831258</guid><author>COINS NEWS</author><dc:content /><dc:text>Does a chain need a foundation?</dc:text></item><item><title>FCR — Fast Confirmation Rule for Ethereum</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rw6o1r/fcr_fast_confirmation_rule_for_ethereum/"> <img src="https://external-preview.redd.it/4YMfhGPzwYnaBhqD6MibIBNtR98muYz7g9WU0M4NOXI.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=6af5c7a9934f9b371cb9c5e37b350a1bcb70456b" alt="FCR — Fast Confirmation Rule for Ethereum" title="FCR — Fast Confirmation Rule for Ethereum" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/ligi"> /u/ligi </a> <br/> <span><a href="https://fastconfirm.it">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rw6o1r/fcr_fast_confirmation_rule_for_ethereum/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/fcr-fast-confirmation-rule-for-ethereum</link><guid>831103</guid><author>COINS NEWS</author><dc:content /><dc:text>FCR — Fast Confirmation Rule for Ethereum</dc:text></item><item><title>Founders and size</title><description><![CDATA[<div class="md"><p>What crypto founders have the biggest peenys? Does Anatoly have a big one? Is Richard Hart holding a tiny tinkler? Is Pasternak packing? All of us have thought about this many times but now is a chance to really get into it and discuss what we all want to know, maybe there’s a guy or girl in the sub that knows the answer to all of these from actual experience and is ready to put rumors to rest. Let’s keep it civil and talk about dingdongs in an adult manner ultimately using this data as another point of confluence to fill out bags, remember no shaming ok guys?!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/beguiledanimal"> /u/beguiledanimal </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rw0cuj/founders_and_size/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rw0cuj/founders_and_size/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/founders-and-size</link><guid>831104</guid><author>COINS NEWS</author><dc:content /><dc:text>Founders and size</dc:text></item><item><title>Daily General Discussion March 17, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rvxepg/daily_general_discussion_march_17_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rvxepg/daily_general_discussion_march_17_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-17-2026</link><guid>831101</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 17, 2026</dc:text></item><item><title>How safe is WBTC?</title><description><![CDATA[<div class="md"><p>Hi guys, I am willing to diversify my stablecoins folio to bitcoin, heard about wrapped bitcoin (WBTC) on the ethereum chain, wondering if you guys are using it/what&#39;s your opinion on it?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/OkBlueberry3249"> /u/OkBlueberry3249 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rvwilj/how_safe_is_wbtc/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rvwilj/how_safe_is_wbtc/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/how-safe-is-wbtc</link><guid>831102</guid><author>COINS NEWS</author><dc:content /><dc:text>How safe is WBTC?</dc:text></item><item><title>Ethereum Squeeze Dashboard</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rvimtq/ethereum_squeeze_dashboard/"> <img src="https://preview.redd.it/flld3al6fgpg1.png?width=140&amp;height=96&amp;auto=webp&amp;s=ab4dad28c51526d323890e56804048a799953a52" alt="Ethereum Squeeze Dashboard" title="Ethereum Squeeze Dashboard" /> </a> </td><td> <div class="md"><p>I built an Ethereum squeeze dashboard to see where we stand with the inevitable squeeze. I wanted it to show me when I could still write covered calls against my long positions.</p> <p>At below 75 I can still write calls</p> <p>Last week it was at 73, today its at 81.5</p> <p><a href="https://preview.redd.it/flld3al6fgpg1.png?width=918&amp;format=png&amp;auto=webp&amp;s=08d9e1604130a579642f13590c01478ceaa20fcb">Overview. Above 75 means no covered call writing against the stock</a></p> <p><a href="https://preview.redd.it/50srshmefgpg1.png?width=908&amp;format=png&amp;auto=webp&amp;s=6047acd5a759d239603c9885546c15805738ac9a">https://preview.redd.it/50srshmefgpg1.png?width=908&amp;format=png&amp;auto=webp&amp;s=6047acd5a759d239603c9885546c15805738ac9a</a></p> <p><a href="https://preview.redd.it/wzo3cyzifgpg1.png?width=924&amp;format=png&amp;auto=webp&amp;s=ccd2b561371446b3cb389d3bff287d0f4a9049f0">https://preview.redd.it/wzo3cyzifgpg1.png?width=924&amp;format=png&amp;auto=webp&amp;s=ccd2b561371446b3cb389d3bff287d0f4a9049f0</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/clarcombe"> /u/clarcombe </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rvimtq/ethereum_squeeze_dashboard/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rvimtq/ethereum_squeeze_dashboard/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereum-squeeze-dashboard</link><guid>830935</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum Squeeze Dashboard</dc:text></item><item><title>ERC-8153: Facet-Based Diamonds</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rvb2h4/erc8153_facetbased_diamonds/"> <img src="https://external-preview.redd.it/suNdskB59Z2qqV3KOEYDK7NCl-9OGqruagHYPjM9yI4.png?width=216&amp;crop=smart&amp;auto=webp&amp;s=680c0b4ceb85b3aa5c4a9e839cb47f3edb76e37f" alt="ERC-8153: Facet-Based Diamonds" title="ERC-8153: Facet-Based Diamonds" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/mudgen"> /u/mudgen </a> <br/> <span><a href="https://eips.ethereum.org/EIPS/eip-8153">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rvb2h4/erc8153_facetbased_diamonds/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/erc-8153-facet-based-diamonds</link><guid>830936</guid><author>COINS NEWS</author><dc:content /><dc:text>ERC-8153: Facet-Based Diamonds</dc:text></item><item><title>New EF Mandate signaling trustless sovereignty amid global instability?</title><description><![CDATA[<div class="md"><p>Anyone else read the EF Mandate that dropped Friday?</p> <blockquote> <p>&quot;Ethereum is so other people can&#39;t rug you; society can&#39;t rug you; your government can&#39;t rug you; another government can&#39;t rug you; corporations can&#39;t rug you.&quot;</p> </blockquote> <p>Trade wars escalating, institutional trust falling apart — and crypto has held decently through the worst of it so far. Blue chips bouncing off lows, ETH above $2,100 as of writing.</p> <p>A year ago this kind of global uncertainty would have sent crypto off a cliff. Starting to wonder if people are finally understanding what trustless sovereign money actually looks like when the systems around it are failing.</p> <p>The mandate feels like EF is leaning into exactly that moment. They&#39;re framing Ethereum as &quot;sanctuary technology&quot; and going hard on what they call CROPS — censorship resistance, open source, privacy, security — as non-negotiable properties. Not just another smart contract platform. Infrastructure for self-sovereignty in a world where the systems people have been trusting are breaking down.</p> <p>This framing feels different from anything EF has put out before. Is the market starting to price in a new narrative? Or am I reading too much into it?</p> <p><a href="https://ethereum.foundation/ef-mandate.pdf">https://ethereum.foundation/ef-mandate.pdf</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/phatom_user_01"> /u/phatom_user_01 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rv2sgz/new_ef_mandate_signaling_trustless_sovereignty/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rv2sgz/new_ef_mandate_signaling_trustless_sovereignty/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/new-ef-mandate-signaling-trustless-sovereignty-amid-global-instability</link><guid>830772</guid><author>COINS NEWS</author><dc:content /><dc:text>New EF Mandate signaling trustless sovereignty amid global instability?</dc:text></item><item><title>Daily General Discussion March 16, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rv0f7v/daily_general_discussion_march_16_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rv0f7v/daily_general_discussion_march_16_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-16-2026</link><guid>830771</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 16, 2026</dc:text></item><item><title>Need help deciphering if this is a scam.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rukdr4/need_help_deciphering_if_this_is_a_scam/"> <img src="https://preview.redd.it/rm3l8tfrw8pg1.jpg?width=140&amp;height=140&amp;crop=1:1,smart&amp;auto=webp&amp;s=926129e7ab0afc173f8415790c7c281798050434" alt="Need help deciphering if this is a scam." title="Need help deciphering if this is a scam." /> </a> </td><td> <div class="md"><p>So, I made a post earlier today about getting emails where an item on opensea sold and they are trying to deliver just over 1ETH to me, but I don&#39;t believe this is real. My gut is telling me this is a scam since the email is not an open sea email and the site it brings me to is etherscan. </p> <p>Screenshots are above and any input would be nice.</p> <p>Earlier post <a href="https://www.reddit.com/r/ethereum/s/Ka8nYWByyL">https://www.reddit.com/r/ethereum/s/Ka8nYWByyL</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/AngelLunair"> /u/AngelLunair </a> <br/> <span><a href="https://www.reddit.com/gallery/1rukdr4">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rukdr4/need_help_deciphering_if_this_is_a_scam/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/need-help-deciphering-if-this-is-a-scam</link><guid>830773</guid><author>COINS NEWS</author><dc:content /><dc:text>Need help deciphering if this is a scam.</dc:text></item><item><title>Could this be a scam</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1ruefjw/could_this_be_a_scam/"> <img src="https://preview.redd.it/zim776avq7pg1.jpg?width=140&amp;height=140&amp;crop=1:1,smart&amp;auto=webp&amp;s=8754f9acda341061314e9a9f53adddb31f885e55" alt="Could this be a scam" title="Could this be a scam" /> </a> </td><td> <div class="md"><p>Hi everyone,</p> <p>This morning I woke up to an email from eatherscan.io and was shocked to see what someone was sending me. It was jist over 1ETH and even though part of me was excited to see that amount, i knew deep down there is a possibility of it being a scam so I just wanted to double check and see if anyone else is getting them. I did click the link to see the website it took me to and it is clear eatherscan.io is real but thats as far as I went. I didn&#39;t connect my wallet or anything to be safe.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/AngelLunair"> /u/AngelLunair </a> <br/> <span><a href="https://www.reddit.com/gallery/1ruefjw">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ruefjw/could_this_be_a_scam/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/could-this-be-a-scam</link><guid>830774</guid><author>COINS NEWS</author><dc:content /><dc:text>Could this be a scam</dc:text></item><item><title>Building state channels on x402 so agents and users can do instant, 0 fee txs at 20tps. Come join x402s.</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/NOTPR0"> /u/NOTPR0 </a> <br/> <span><a href="https://x.com/0xstatechannel/status/2033131627803562456">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ruax51/building_state_channels_on_x402_so_agents_and/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/building-state-channels-on-x402-so-agents-and-users-can-do-instant-0-fee-txs-at-20tps-come-join-x402s</link><guid>830518</guid><author>COINS NEWS</author><dc:content /><dc:text>Building state channels on x402 so agents and users can do instant, 0 fee txs at 20tps. Come join x402s.</dc:text></item><item><title>Vitalik Buterin says Ethereum may need to rethink its node architecture</title><description><![CDATA[<div class="md"><p>Vitalik Buterin recently suggested that Ethereum might need to revisit the separation between <strong>execution clients and beacon (consensus) clients</strong>.</p> <p>Right now, running a full Ethereum node means running <strong>two different pieces of software that have to communicate with each other</strong>. That architecture came from the Merge and the move to proof-of-stake.</p> <p>Vitalik argues that this makes running your own node unnecessarily complex.</p> <p>His main point: running Ethereum infrastructure shouldn’t feel like a devops job only professionals can handle. It should be something ordinary users and households can realistically do.</p> <p>In the short term he mentioned ideas like standardized wrappers or unified node setups (Nimbus is already experimenting with this).<br/> Longer term, Ethereum could potentially revisit the architecture entirely once “lean consensus” research matures.</p> <p>Full article:<br/> <a href="https://btcusa.com/vitalik-buterin-ethereum-node-architecture-self-sovereignty/">https://btcusa.com/vitalik-buterin-ethereum-node-architecture-self-sovereignty/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Enough_Angle_7839"> /u/Enough_Angle_7839 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ru6tx1/vitalik_buterin_says_ethereum_may_need_to_rethink/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ru6tx1/vitalik_buterin_says_ethereum_may_need_to_rethink/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/vitalik-buterin-says-ethereum-may-need-to-rethink-its-node-architecture</link><guid>830431</guid><author>COINS NEWS</author><dc:content /><dc:text>Vitalik Buterin says Ethereum may need to rethink its node architecture</dc:text></item><item><title>Daily General Discussion March 15, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ru5apg/daily_general_discussion_march_15_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ru5apg/daily_general_discussion_march_15_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-15-2026</link><guid>830430</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 15, 2026</dc:text></item><item><title>New App needs your input</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/brunerjo"> /u/brunerjo </a> <br/> <span><a href="/r/Polymarket/comments/1ru0itt/new_app_needs_your_input/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ru0m5c/new_app_needs_your_input/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/new-app-needs-your-input</link><guid>830351</guid><author>COINS NEWS</author><dc:content /><dc:text>New App needs your input</dc:text></item><item><title>EF Mandate in Audio form</title><description><![CDATA[<div class="md"><p><a href="https://drive.proton.me/urls/6M5RFJHPT8#XeXAvdZtQXfe">https://drive.proton.me/urls/6M5RFJHPT8#XeXAvdZtQXfe</a></p> <p>via <a href="https://xcancel.com/josefje/status/2032515970569269507">https://xcancel.com/josefje/status/2032515970569269507</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/ligi"> /u/ligi </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rthmft/ef_mandate_in_audio_form/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rthmft/ef_mandate_in_audio_form/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ef-mandate-in-audio-form</link><guid>830352</guid><author>COINS NEWS</author><dc:content /><dc:text>EF Mandate in Audio form</dc:text></item><item><title>Ethereum’s Constitution is Here ????⚖️</title><description><![CDATA[<div class="md"><p>Ethereum Foundation (EF) wrote a constitution for the soul of the project. The new EF Mandate isn&#39;t just a corporate mission statement but a line in the sand for how Ethereum stays human in an increasingly automated world.</p> <p>The EF is calling its core philosophy CROPS. If a feature isn’t Censorship-resistant, Resilient, Open-source, Private, and Secure, it doesn&#39;t belong on ethereum . No trading sovereignty for convenience.</p> <p>Here are the main points:</p> <p>Stewardship, Not Ownership: The EF is explicitly saying they aren&#39;t the boss. They are temporary caretakers who eventually want to disappear. This is the ultimate decentralize or die commitment.</p> <p>The AI Shield: They see a future where AI and opaque algorithms run everything. Ethereum’s job is to be the Infinite Garden, a place where humans, not code or corporations, have the final say over their own lives.</p> <p>Immutable Values: By publishing this directly onto the blockchain, they’ve made their values as permanent as a transaction. You can’t edit the project&#39;s soul once it’s on-chain.</p> <p>This is a massive vibe check for the entire ecosystem. It’s a reminder that if we give up control for a slightly faster app, we’ve already lost the plot.</p> <p>Can a written mandate actually stop the slow creep of centralization, or is the pull of convenience just too strong? Let’s talk. ????</p> <p><a href="https://x.com/i/status/2032467385001877757">Source</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/semanticweb"> /u/semanticweb </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rtcdrn/ethereums_constitution_is_here/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rtcdrn/ethereums_constitution_is_here/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereums-constitution-is-here</link><guid>830234</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum’s Constitution is Here ????⚖️</dc:text></item><item><title>Ethereum Foundation Releases New Mandate Outlining Vision for Ethereum’s Future</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rtb297/ethereum_foundation_releases_new_mandate/"> <img src="https://external-preview.redd.it/uaRJAk3u6yKzcM-xIv0fGfVlA4M6995tDrwbaCnp3Uw.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=5d30729c4a3f7415be9c8b049f1a3320bdd04f8d" alt="Ethereum Foundation Releases New Mandate Outlining Vision for Ethereum’s Future" title="Ethereum Foundation Releases New Mandate Outlining Vision for Ethereum’s Future" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/avatar_leo"> /u/avatar_leo </a> <br/> <span><a href="https://cryip.co/ethereum-foundation-new-mandate-vision-for-ethereums-future/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rtb297/ethereum_foundation_releases_new_mandate/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereum-foundation-releases-new-mandate-outlining-vision-for-ethereums-future</link><guid>830233</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum Foundation Releases New Mandate Outlining Vision for Ethereum’s Future</dc:text></item><item><title>Daily General Discussion March 14, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rtajhm/daily_general_discussion_march_14_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rtajhm/daily_general_discussion_march_14_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-14-2026</link><guid>830232</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 14, 2026</dc:text></item><item><title>Daily Doots Podcast #143</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rst2ne/daily_doots_podcast_143/"> <img src="https://external-preview.redd.it/qztW5j6NshBk2VzOl-ViegMKkZWq-7shBveJ0iHNJ2Q.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=808905e26a42bf2b24b8252746b634826c81a4ef" alt="Daily Doots Podcast #143" title="Daily Doots Podcast #143" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jtnichol"> /u/jtnichol </a> <br/> <span><a href="https://youtu.be/F_JQKB7fyoI">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rst2ne/daily_doots_podcast_143/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/daily-doots-podcast-143</link><guid>830053</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily Doots Podcast #143</dc:text></item><item><title>Will-One-Day-Be-A-DAO</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/justinholmes_music"> /u/justinholmes_music </a> <br/> <span><a href="https://pickipedia.xyz/wiki/Will-One-Day-Be-A-DAO">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rsqvo7/willonedaybeadao/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/will-one-day-be-a-dao</link><guid>830056</guid><author>COINS NEWS</author><dc:content /><dc:text>Will-One-Day-Be-A-DAO</dc:text></item><item><title>The Promise of Ethereum: Introducing the EF Mandate | Ethereum Foundation Blog</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rspui7/the_promise_of_ethereum_introducing_the_ef/"> <img src="https://external-preview.redd.it/0oSx_s35wlWG8xKFoly5ZgCqfVGbBfQI_NdVT_X3fZM.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=8711abfc70b5b7b5b01b743a244c722c71f7f752" alt="The Promise of Ethereum: Introducing the EF Mandate | Ethereum Foundation Blog" title="The Promise of Ethereum: Introducing the EF Mandate | Ethereum Foundation Blog" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jtnichol"> /u/jtnichol </a> <br/> <span><a href="https://blog.ethereum.org/2026/03/13/ef-mandate">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rspui7/the_promise_of_ethereum_introducing_the_ef/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/the-promise-of-ethereum-introducing-the-ef-mandate-ethereum-foundation-blog</link><guid>830054</guid><author>COINS NEWS</author><dc:content /><dc:text>The Promise of Ethereum: Introducing the EF Mandate | Ethereum Foundation Blog</dc:text></item><item><title>Ethereal news weekly #15 | US DoJ seeks Roman Storm retrial, BlackRock staked ETH ETF live, EF bug bounty $1M max payout</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rsnh3x/ethereal_news_weekly_15_us_doj_seeks_roman_storm/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #15 | US DoJ seeks Roman Storm retrial, BlackRock staked ETH ETF live, EF bug bounty $1M max payout" title="Ethereal news weekly #15 | US DoJ seeks Roman Storm retrial, BlackRock staked ETH ETF live, EF bug bounty $1M max payout" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-15/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rsnh3x/ethereal_news_weekly_15_us_doj_seeks_roman_storm/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-15-us-doj-seeks-roman-storm-retrial-blackrock-staked-eth-etf-live-ef-bug-bounty-1m-max-payout</link><guid>830058</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #15 | US DoJ seeks Roman Storm retrial, BlackRock staked ETH ETF live, EF bug bounty $1M max payout</dc:text></item><item><title>Etherscan Warns Ethereum Users About Rising Address Poisoning Scams</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rsj99k/etherscan_warns_ethereum_users_about_rising/"> <img src="https://external-preview.redd.it/JdkTdSZ6oIfgwoL1RxYPcxlzVePnU-NoKVs01FaF5sM.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=c17d25ed0e5dbcf330d91a570feadc3c6eae9182" alt="Etherscan Warns Ethereum Users About Rising Address Poisoning Scams" title="Etherscan Warns Ethereum Users About Rising Address Poisoning Scams" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/avatar_leo"> /u/avatar_leo </a> <br/> <span><a href="https://cryip.co/etherscan-address-poisoning-attacks-ethereum/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rsj99k/etherscan_warns_ethereum_users_about_rising/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/etherscan-warns-ethereum-users-about-rising-address-poisoning-scams</link><guid>830055</guid><author>COINS NEWS</author><dc:content /><dc:text>Etherscan Warns Ethereum Users About Rising Address Poisoning Scams</dc:text></item><item><title>Major cryptocurrency exchange apparently hired a North Korean hacker who spied on the KYC/AML protocols to launder funds for North Korea</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rsfdaz/major_cryptocurrency_exchange_apparently_hired_a/"> <img src="https://external-preview.redd.it/HCAhAIAfhiWvMpXnFGMx5Qi8u2Aq8maBpgSUvOH6ijU.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=efd2b921d9b8803c94ae7d5cd76ad6c968dc1913" alt="Major cryptocurrency exchange apparently hired a North Korean hacker who spied on the KYC/AML protocols to launder funds for North Korea" title="Major cryptocurrency exchange apparently hired a North Korean hacker who spied on the KYC/AML protocols to launder funds for North Korea" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Malwarebeasts"> /u/Malwarebeasts </a> <br/> <span><a href="https://www.infostealers.com/article/how-one-infostealer-infection-solved-a-global-supply-chain-mystery-and-unmasked-dprk-spies-in-u-s-crypto/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rsfdaz/major_cryptocurrency_exchange_apparently_hired_a/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/major-cryptocurrency-exchange-apparently-hired-a-north-korean-hacker-who-spied-on-the-kycaml-protocols-to-launder-funds-for-north-korea</link><guid>830057</guid><author>COINS NEWS</author><dc:content /><dc:text>Major cryptocurrency exchange apparently hired a North Korean hacker who spied on the KYC/AML protocols to launder funds for North Korea</dc:text></item><item><title>Highlights from the All Core Developers Execution (ACDE) Call #232</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rsez2n/highlights_from_the_all_core_developers_execution/"> <img src="https://external-preview.redd.it/TXCOFM2gHQ0TtaYgWB9O6uP46bdKmUyjAWD_DILbW0k.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=0b676d5fc926c835101c3edd2f2a322ee572792d" alt="Highlights from the All Core Developers Execution (ACDE) Call #232" title="Highlights from the All Core Developers Execution (ACDE) Call #232" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/highlights-from-the-all-core-developers-execution-acde-call-232/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rsez2n/highlights_from_the_all_core_developers_execution/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/highlights-from-the-all-core-developers-execution-acde-call-232</link><guid>830059</guid><author>COINS NEWS</author><dc:content /><dc:text>Highlights from the All Core Developers Execution (ACDE) Call #232</dc:text></item><item><title>Daily General Discussion March 13, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rse9jy/daily_general_discussion_march_13_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rse9jy/daily_general_discussion_march_13_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-13-2026</link><guid>830052</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 13, 2026</dc:text></item><item><title>Ethereum DeFi 2026: $330B TVL &amp; JPMorgan Tokenizes Assets</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rs1lnl/ethereum_defi_2026_330b_tvl_jpmorgan_tokenizes/"> <img src="https://external-preview.redd.it/KnzcdXzJCZbEm3CFuyjknGsveGLR8Mcbs4H_zXOilPU.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=a923e69985dd8edad01b95b6e2c282280df98913" alt="Ethereum DeFi 2026: $330B TVL &amp; JPMorgan Tokenizes Assets" title="Ethereum DeFi 2026: $330B TVL &amp; JPMorgan Tokenizes Assets" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Simple_Scratch_2541"> /u/Simple_Scratch_2541 </a> <br/> <span><a href="https://airpres.pl/2026/03/12/ethereum-defi-tvl-institutions-tokenization-2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rs1lnl/ethereum_defi_2026_330b_tvl_jpmorgan_tokenizes/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereum-defi-2026-330b-tvl-jpmorgan-tokenizes-assets</link><guid>829884</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum DeFi 2026: $330B TVL &amp; JPMorgan Tokenizes Assets</dc:text></item><item><title>EIP-8024: the end of the "stack too deep" error</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rrnfko/eip8024_the_end_of_the_stack_too_deep_error/"> <img src="https://external-preview.redd.it/Zu4DDSZRgVJZTPx_rE14wXpSM-u0CuCCqXMNz5EuH7I.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=2be5ab33a3d1878cac8529791c9d531440d3317e" alt="EIP-8024: the end of the &quot;stack too deep&quot; error" title="EIP-8024: the end of the &quot;stack too deep&quot; error" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/fvictorio"> /u/fvictorio </a> <br/> <span><a href="https://paragraph.com/@cethology/eip-8024-or-killing-the-stack-too-deep-error">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rrnfko/eip8024_the_end_of_the_stack_too_deep_error/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/eip-8024-the-end-of-the-stack-too-deep-error</link><guid>829692</guid><author>COINS NEWS</author><dc:content /><dc:text>EIP-8024: the end of the "stack too deep" error</dc:text></item><item><title>Concept feedback</title><description><![CDATA[<div class="md"><p>I&#39;ve created a series of charts that show inflation in a way that has an emotional element. They show your specified savings amount counting down every hour/ day / week / month etc. The numbers counting off your savings I think is provoctive and could drive people learn about fiat debasement. This will also play into more sound investments like Ethereum and crypto etc. I honestly don&#39;t think the average person understands what&#39;s going on as everyone in my circles say stuff like &#39;isn&#39;t everything expensive now&#39;.</p> <p>I obviously won&#39;t add the link although it&#39;s in my bio. What do you think of the concept or my site if you visit? </p> <p>Thanks in advance.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Peteradamj"> /u/Peteradamj </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rrlgyo/concept_feedback/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rrlgyo/concept_feedback/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/concept-feedback</link><guid>829691</guid><author>COINS NEWS</author><dc:content /><dc:text>Concept feedback</dc:text></item><item><title>Daily General Discussion March 12, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rrhp2n/daily_general_discussion_march_12_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rrhp2n/daily_general_discussion_march_12_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-12-2026</link><guid>829689</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 12, 2026</dc:text></item><item><title>I built a 100% on-chain, ETH-in ETH-out, grief-proof tournament infrastructure. No tokens, no servers, no admins. Yours to use.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rrf60r/i_built_a_100_onchain_ethin_ethout_griefproof/"> <img src="https://external-preview.redd.it/9iE4ESaOYUZ-5DleNCNLxwVWxhQnu7cgdVU1If4haiE.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=91c81b465d3c2015f814424ac81dde1eca274dc6" alt="I built a 100% on-chain, ETH-in ETH-out, grief-proof tournament infrastructure. No tokens, no servers, no admins. Yours to use." title="I built a 100% on-chain, ETH-in ETH-out, grief-proof tournament infrastructure. No tokens, no servers, no admins. Yours to use." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SourTangerine"> /u/SourTangerine </a> <br/> <span><a href="https://etour.games/whitepaper">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rrf60r/i_built_a_100_onchain_ethin_ethout_griefproof/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/i-built-a-100-on-chain-eth-in-eth-out-grief-proof-tournament-infrastructure-no-tokens-no-servers-no-admins-yours-to-use</link><guid>829690</guid><author>COINS NEWS</author><dc:content /><dc:text>I built a 100% on-chain, ETH-in ETH-out, grief-proof tournament infrastructure. No tokens, no servers, no admins. Yours to use.</dc:text></item><item><title>Daily General Discussion March 11, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rqknm4/daily_general_discussion_march_11_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rqknm4/daily_general_discussion_march_11_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-11-2026</link><guid>829377</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 11, 2026</dc:text></item><item><title>ERC-8183 brings AI resume On-Chain ????????</title><description><![CDATA[<div class="md"><p>Virtuals Protocol and the Ethereum Foundation just dropped the commerce layer for agents. This can be called as a new job primitive.</p> <p>Currently we need a platform like Upwork or Freelancer to hold the money in escrow and make sure the work actually got done. In the agent economy, that is a bottleneck.</p> <p>Every transaction now has a client, a provider, and an evaluator. The Evaluator is the secret sauce, it’s an address (could be another AI or a ZK-circuit) that confirms the work is good before the money is released.</p> <p>Because this is on-chain, an AI’s track record isn&#39;t locked in. If an agent is a great coder, its completed job history follows it everywhere. This means it need not start from zero trust. If the bot doesn&#39;t deliver, the contract auto refunds. There is no customer support tickets or charge backs.</p> <p>Very curious to know how this will work for qualitative works? Let me know what you think.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/semanticweb"> /u/semanticweb </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rqk7an/erc8183_brings_ai_resume_onchain/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rqk7an/erc8183_brings_ai_resume_onchain/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/erc-8183-brings-ai-resume-on-chain</link><guid>829378</guid><author>COINS NEWS</author><dc:content /><dc:text>ERC-8183 brings AI resume On-Chain ????????</dc:text></item><item><title>The CEX Paradox: Why is off-ramping still the most centralized part of our 'decentralized' workflow?</title><description><![CDATA[<div class="md"><p>I was recently auditing some smart contracts for a side project, and it struck me how much effort we put into decentralization on-chain, only to funnel everything back through a KYC-heavy centralized exchange the moment we need to pay for a real-world service or a server bill.</p> <p>As someone who values the &#39;cypherpunk&#39; roots of Ethereum, I’ve been looking for ways to bridge the gap between my ETH/L2 holdings and actual spending without constant surveillance.</p> <p>I recently experimented with AllArk for a No-KYC virtual card to handle some smaller payments (mostly for my digital comic book subscriptions). I recently experimented with AllArk for a No-KYC virtual card to handle some smaller payments (mostly for my digital comic book subscriptions). The UX was surprisingly fluid compared to the usual &#39;send to exchange -&gt; wait for bank transfer&#39; nightmare.</p> <p>However, this raises some technical questions for the community:</p> <p>Privacy vs. Convenience: Are we at a point where No-KYC off-ramps like AllArk can scale, or will regulatory pressure eventually force them into the same mold as CEXs?</p> <p>Layer 2 Integration: Most off-ramps are still heavily L1-centric. Do you see a future where we can off-ramp directly from Arbitrum or Optimism to a debit card without hitting the mainnet (and paying the gas fee)?</p> <p>Smart Contract Security: When using these intermediate gateways, how are you guys assessing the risk? Are there specific &#39;red flags&#39; you look for in the contract architecture of an off-ramp provider?</p> <p>I’m curious to know what tools you guys are using to stay &#39;bankless&#39; in 2026. Is the infrastructure finally here, or are we just in a transitional phase?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Sufficient_Usual_857"> /u/Sufficient_Usual_857 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rq85gq/the_cex_paradox_why_is_offramping_still_the_most/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rq85gq/the_cex_paradox_why_is_offramping_still_the_most/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/the-cex-paradox-why-is-off-ramping-still-the-most-centralized-part-of-our-decentralized-workflow</link><guid>829260</guid><author>COINS NEWS</author><dc:content /><dc:text>The CEX Paradox: Why is off-ramping still the most centralized part of our 'decentralized' workflow?</dc:text></item><item><title>Starknet proposes STRK20 — private ERC-20 tokens on Ethereum L2</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rq2jwl/starknet_proposes_strk20_private_erc20_tokens_on/"> <img src="https://external-preview.redd.it/Jx2xoz-y7xzvQ3n5wYfYBZqf2nmWsuy_ZXoZjSOMImc.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=99d0e0d5d9df28ac27e1cb08f3e62024c4f56b12" alt="Starknet proposes STRK20 — private ERC-20 tokens on Ethereum L2" title="Starknet proposes STRK20 — private ERC-20 tokens on Ethereum L2" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Enough_Angle_7839"> /u/Enough_Angle_7839 </a> <br/> <span><a href="/r/ethtrader/comments/1rq2jni/starknet_proposes_strk20_private_erc20_tokens_on/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rq2jwl/starknet_proposes_strk20_private_erc20_tokens_on/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/starknet-proposes-strk20-private-erc-20-tokens-on-ethereum-l2</link><guid>829261</guid><author>COINS NEWS</author><dc:content /><dc:text>Starknet proposes STRK20 — private ERC-20 tokens on Ethereum L2</dc:text></item><item><title>avsa (Ethereum Foundation UX lead) deployed the Unicorn Token in 2016 — one of the first ERC-20s ever</title><description><![CDATA[<div class="md"><p>Alex Van de Sande, the person who designed Mist wallet and led Ethereum UX, deployed a contract in April 2016 that let you &quot;grind unicorns into meat&quot; on-chain.</p> <p>The experiment became the Unicorn Meat token (w????) — deployed when ERC-20 was barely a draft standard, when the entire Ethereum dev community could fit in one room.</p> <p><strong>Why it matters historically:</strong> - Deployed April 2016, pre-TheDAO hack - One of the earliest ERC-20 compliant tokens - Created by a core Ethereum Foundation member for fun, not profit - The contract is still live and the token still trades</p> <p>Original contract: <a href="https://etherscan.io/address/0xd234bf2410a0009df9c3c63b610c09738f18ccd7">https://etherscan.io/address/0xd234bf2410a0009df9c3c63b610c09738f18ccd7</a></p> <p>The community archive: <a href="https://unicornmeat.wtf">https://unicornmeat.wtf</a></p> <p>These early experiments are Ethereum heritage. Worth preserving.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rpxs2k/avsa_ethereum_foundation_ux_lead_deployed_the/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rpxs2k/avsa_ethereum_foundation_ux_lead_deployed_the/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/avsa-ethereum-foundation-ux-lead-deployed-the-unicorn-token-in-2016-one-of-the-first-erc-20s-ever</link><guid>829084</guid><author>COINS NEWS</author><dc:content /><dc:text>avsa (Ethereum Foundation UX lead) deployed the Unicorn Token in 2016 — one of the first ERC-20s ever</dc:text></item><item><title>Ethereum's Top Corporate Whale Fattens Up with $10bn Treasury Holding</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rpv1ia/ethereums_top_corporate_whale_fattens_up_with/"> <img src="https://external-preview.redd.it/cvTt6eCF3Wy_74wUSzazp_o1AGhSZXW_NhK0RKV0P38.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=dc7debe70f82fcfe28322878df81967693252d76" alt="Ethereum's Top Corporate Whale Fattens Up with $10bn Treasury Holding" title="Ethereum's Top Corporate Whale Fattens Up with $10bn Treasury Holding" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/JAYCAZ1"> /u/JAYCAZ1 </a> <br/> <span><a href="https://www.sandmark.com/news/top-news/ethereums-top-corporate-whale-fattens-10bn-treasury-holding">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rpv1ia/ethereums_top_corporate_whale_fattens_up_with/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereums-top-corporate-whale-fattens-up-with-10bn-treasury-holding</link><guid>829083</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum's Top Corporate Whale Fattens Up with $10bn Treasury Holding</dc:text></item><item><title>Daily General Discussion March 10, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rpnx4z/daily_general_discussion_march_10_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rpnx4z/daily_general_discussion_march_10_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-10-2026</link><guid>829082</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 10, 2026</dc:text></item><item><title>Lighthouse v8.1.2: high-priority patch release with further security-critical fixes atop v8.1.1.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rphl02/lighthouse_v812_highpriority_patch_release_with/"> <img src="https://external-preview.redd.it/3q1LIAGFekgYRlPg_xGKiz_gJJP5tpyUdMG9Bg9LHYE.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=ab9c3ec2e743bde9c55789acafa68eeb34a3bf89" alt="Lighthouse v8.1.2: high-priority patch release with further security-critical fixes atop v8.1.1." title="Lighthouse v8.1.2: high-priority patch release with further security-critical fixes atop v8.1.1." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://github.com/sigp/lighthouse/releases/tag/v8.1.2">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rphl02/lighthouse_v812_highpriority_patch_release_with/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/lighthouse-v812-high-priority-patch-release-with-further-security-critical-fixes-atop-v811</link><guid>828928</guid><author>COINS NEWS</author><dc:content /><dc:text>Lighthouse v8.1.2: high-priority patch release with further security-critical fixes atop v8.1.1.</dc:text></item><item><title>TIL about MessageStore, a 1-function contract from August 2015 (block 53,573)</title><description><![CDATA[<div class="md"><p>Was digging through Ethereum&#39;s earliest blocks and found this contract at 0xd2ec...3d6b, deployed in August 2015, just weeks after mainnet launch.</p> <p>The entire contract is one function: set(string). It stores a single string in public storage. That is it.</p> <p>What is interesting is the bytecode. It was compiled with solc v0.1.1, the earliest Solidity compiler that exists. I was able to reproduce the exact bytecode byte-for-byte using that compiler. The output matches the on-chain code perfectly.</p> <p>Contracts from this era are fascinating because Solidity was still being invented. No events, no modifiers, no constructors as we know them. Just raw storage writes. The compiler output is so small you can read the opcodes manually.</p> <p>The deployer (0x8674...94e2) deployed 18 contracts in the same week, all in the 52,000-55,000 block range. Looks like someone was experimenting heavily with what Solidity could do.</p> <p>If anyone is interested in early Ethereum archaeology, ethereumhistory.com is documenting contracts from this period with verified source code and compiler proofs.</p> <p>Edit: <a href="https://www.ethereumhistory.com/contract/0xd2eccde805e888ae37646544d60185b842ff3d6b">here is the contract page on Ethereum History</a>.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rp2kko/til_about_messagestore_a_1function_contract_from/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rp2kko/til_about_messagestore_a_1function_contract_from/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/til-about-messagestore-a-1-function-contract-from-august-2015-block-53573</link><guid>828929</guid><author>COINS NEWS</author><dc:content /><dc:text>TIL about MessageStore, a 1-function contract from August 2015 (block 53,573)</dc:text></item><item><title>AI Is Not Ready for Ethereum Security Audits: A Test</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/SamsungGalaxyPlayer"> /u/SamsungGalaxyPlayer </a> <br/> <span><a href="https://magicgrants.org/2026/03/09/AI-Not-Ready-for-Ethereum-Audits">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rp189f/ai_is_not_ready_for_ethereum_security_audits_a/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ai-is-not-ready-for-ethereum-security-audits-a-test</link><guid>828930</guid><author>COINS NEWS</author><dc:content /><dc:text>AI Is Not Ready for Ethereum Security Audits: A Test</dc:text></item><item><title>Before ENS, there was GlobalRegistrar — Ethereum's first naming system (Sep 24, 2015)</title><description><![CDATA[<div class="md"><p>In September 2015, six weeks after mainnet launch, someone deployed three contracts that became Ethereum&#39;s first naming infrastructure: GlobalRegistrar, HashReg, and UrlHint.</p> <p><strong>Block 282,880 — September 24, 2015</strong></p> <p>The GlobalRegistrar mapped names to addresses. HashReg mapped code hashes to content hashes. UrlHint mapped content hashes to URLs for metadata retrieval. Together they formed the NatSpec documentation system — the mechanism that was supposed to let Ethereum wallets display human-readable descriptions before signing transactions.</p> <p>The system was hardcoded directly into go-ethereum v1.4.0 (<code>common/registrar/registrar.go</code>). Not an optional plugin. Core infrastructure.</p> <p><strong>The frozen TODO that became ENS</strong></p> <p>Inside the GlobalRegistrar source code (verified on Etherscan, compiled with solc v0.1.1), there&#39;s a comment that reads:</p> <p><code>// TODO: bidding mechanism</code></p> <p>That comment sat frozen for years. The ambition was there — first-come-first-served registration was always meant to be a placeholder. The bidding mechanism didn&#39;t arrive until ENS launched in May 2017, when Vickrey auctions replaced the naive assignment system.</p> <p>ENS didn&#39;t appear from nowhere. It solved the exact problem the GlobalRegistrar identified and couldn&#39;t finish.</p> <p><strong>The three-contract system</strong></p> <p>All three contracts were deployed by the same address within 18 blocks: - GlobalRegistrar: block 282,880 - HashReg: block 282,885 (5 blocks later)<br/> - UrlHint: block 282,898 (18 blocks after start)</p> <p>The deployer identity isn&#39;t confirmed — likely a go-ethereum core developer given the contracts were shipped alongside the go-ethereum codebase — but we haven&#39;t pinned the address to a name yet.</p> <p><strong>Why it matters</strong></p> <p>Every <code>.eth</code> name you resolve today is the descendant of that frozen TODO comment from 2015. The naming problem was understood from week six. It took two more years to solve it properly.</p> <p>We documented all three contracts on EthereumHistory.com last night. The verified source code, links to go-ethereum v1.4.0, and the full historical context are there if you want to dig deeper.</p> <hr/> <p><em>Cross-posted from our ongoing archaeology of early mainnet contracts. If you deployed or used these contracts in 2015, we&#39;d love to hear the story.</em></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rozkho/before_ens_there_was_globalregistrar_ethereums/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rozkho/before_ens_there_was_globalregistrar_ethereums/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/before-ens-there-was-globalregistrar-ethereums-first-naming-system-sep-24-2015</link><guid>828736</guid><author>COINS NEWS</author><dc:content /><dc:text>Before ENS, there was GlobalRegistrar — Ethereum's first naming system (Sep 24, 2015)</dc:text></item><item><title>Daily General Discussion March 09, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ror68i/daily_general_discussion_march_09_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ror68i/daily_general_discussion_march_09_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-09-2026</link><guid>828735</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 09, 2026</dc:text></item><item><title>Borrow Stablecoins Without Selling Your Ethereum? Here’s the Idea Behind the 0% Loans.</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Ok_Sympathy_6058"> /u/Ok_Sympathy_6058 </a> <br/> <span><a href="/r/CryptoFunz/comments/1rocf6g/borrow_stablecoins_without_selling_your_ethereum/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rocfjm/borrow_stablecoins_without_selling_your_ethereum/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/borrow-stablecoins-without-selling-your-ethereum-heres-the-idea-behind-the-0-loans</link><guid>828623</guid><author>COINS NEWS</author><dc:content /><dc:text>Borrow Stablecoins Without Selling Your Ethereum? Here’s the Idea Behind the 0% Loans.</dc:text></item><item><title>I've been reverse-engineering Ethereum's earliest smart contracts — here's what I found locked inside them</title><description><![CDATA[<div class="md"><p>For the past few months I&#39;ve been building <a href="https://www.ethereumhistory.com">EthereumHistory.com</a>, a project to document every notable smart contract from Ethereum&#39;s earliest days (2015-2017). Think of it as a Wikipedia for Ethereum&#39;s contract archaeology.</p> <p>Recently I did a deep scan of all 12,609 contracts deployed during the Frontier era and found <strong>1,650 still holding ETH</strong> — totaling over <strong>38,000 ETH</strong> (~$95M at current prices) locked in contracts from Ethereum&#39;s first weeks.</p> <p>Here&#39;s what&#39;s actually inside them:</p> <h3>The Gambling Contracts (Day 13 of Ethereum)</h3> <p><strong>EtherDice</strong> (<code>0xc4c51de1abf5d60dbd329ec0f999fd8f021ae9fc</code>) was deployed on August 12, 2015 — just 13 days after Ethereum launched. Someone loaded it with a 1,000 ETH bankroll. It&#39;s a 21-function commit-reveal dice game, surprisingly sophisticated for the era. <strong>122 ETH still sits inside</strong>, permanently locked because the deployer likely lost their keys years ago.</p> <h3>The Inverted Timelock</h3> <p><strong>TimeLockVault</strong> (<code>0xed44f3c2081480b08643fe1ca281fab9ed643735</code>) has a beautiful bug: the time check is inverted. You can withdraw <em>before</em> the unlock date (2035), but once 2035 arrives, the funds become permanently locked. 50 ETH inside. The deployer could have withdrawn years ago but apparently never noticed.</p> <h3>The Stalled Pyramid</h3> <p><strong>EtherPyramid</strong> (<code>0xa9e4e3b1da2752aea980698c335e70e9ab26c</code>) had 140 participants. 136 of them are still waiting for their payout. 37 ETH frozen forever in a pyramid that ran out of new entrants. A time capsule of early Ethereum&#39;s Wild West era.</p> <h3>The Pattern</h3> <p>After scanning all 1,650 funded contracts, the pattern is consistent: every single one is either owner-gated (keys likely lost), bug-locked, pyramid-stalled, or timelocked. At least 5 active hunter addresses have already probed most of these contracts looking for extractable funds. None succeeded.</p> <p>These contracts are essentially <strong>digital fossils</strong> — permanently preserved on-chain with real ETH sealed inside them. They tell the story of Ethereum&#39;s earliest developers experimenting with code that would handle real money, often for the first time.</p> <p>I&#39;ve been documenting these on <a href="https://www.ethereumhistory.com">EthereumHistory.com</a> with verified source code, deployment context, and the stories behind them. If you deployed contracts in 2015-2016 or know the stories behind any early projects, I&#39;d love to hear from you.</p> <p>What early Ethereum contracts do you remember that deserve to be documented?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ro4bt9/ive_been_reverseengineering_ethereums_earliest/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ro4bt9/ive_been_reverseengineering_ethereums_earliest/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ive-been-reverse-engineering-ethereums-earliest-smart-contracts-heres-what-i-found-locked-inside-them</link><guid>828511</guid><author>COINS NEWS</author><dc:content /><dc:text>I've been reverse-engineering Ethereum's earliest smart contracts — here's what I found locked inside them</dc:text></item><item><title>Is compound finance frontend or dns setup got hacked?</title><description><![CDATA[<div class="md"><p>I tried to access compound.finance, and when connecting wallet it warns me the domain has very low popularity. I carefully review it and found out when launching app, it actually got redirected to app.compoond.finance, which is extremely sketchy.</p> <p>I tried enter the website through google, and typing manually in browser, and enable secure dns, and access it on my phone. But the result is the same, when open the app function, I still got redirected to a very phishing like link <a href="https://app.compoond.finance/"> https://app.compoond.finance/ </a></p> <p>I just did a whois lookup, the compoond is just registered yesterday, so a huge red flag!</p> <p>Anyone know what is going on?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/No_Pause_9558"> /u/No_Pause_9558 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ro2xqv/is_compound_finance_frontend_or_dns_setup_got/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ro2xqv/is_compound_finance_frontend_or_dns_setup_got/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/is-compound-finance-frontend-or-dns-setup-got-hacked</link><guid>828513</guid><author>COINS NEWS</author><dc:content /><dc:text>Is compound finance frontend or dns setup got hacked?</dc:text></item><item><title>StarkWare just killed their entire user base</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rnyelp/starkware_just_killed_their_entire_user_base/"> <img src="https://preview.redd.it/kfm7liwkvrng1.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=eb97aff8e6995e2dfbd1e3b957003807a29623f1" alt="StarkWare just killed their entire user base" title="StarkWare just killed their entire user base" /> </a> </td><td> <div class="md"><p>&quot;a practical compliance framework that enables an auditing entity to selectively unshield transactions upon legitimate regulatory request&quot;</p> <p>So, the entire point of using the chain is null and void. What&#39;s the use of hiding transactions when an arbitrary entity can just... unhide them?</p> <p>&quot;For compliance, each user registers an encrypted copy of their viewing key on-chain. Upon legitimate regulatory request, a designated auditing entity can decrypt this key to trace a specific user’s transaction history, without affecting the privacy of uninvolved users.&quot;</p> <p>So it is effectively mandatory. Wonderful.</p> <p>Who did they think we were hiding transactions from, our ex?</p> <p>The paper: <a href="https://eprint.iacr.org/2026/474">https://eprint.iacr.org/2026/474</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/TopArgument2225"> /u/TopArgument2225 </a> <br/> <span><a href="https://i.redd.it/kfm7liwkvrng1.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rnyelp/starkware_just_killed_their_entire_user_base/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/starkware-just-killed-their-entire-user-base</link><guid>828512</guid><author>COINS NEWS</author><dc:content /><dc:text>StarkWare just killed their entire user base</dc:text></item><item><title>Daily General Discussion March 08, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rnwyac/daily_general_discussion_march_08_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rnwyac/daily_general_discussion_march_08_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-08-2026</link><guid>828436</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 08, 2026</dc:text></item><item><title>Wrapping USDT</title><description><![CDATA[<div class="md"><p>I propose to wrap USDT, since currently it is a highly outdated coin, and its transfer function has issues, and doesn&#39;t have new features, and only has 6 decimals. While these issues may not be large now and can be easily fixed or do not lose too much functionality, as DeFi expands new standards, etc may add more features, then USDT can be put into a standardized wrapper to handle it.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Intentionallydi"> /u/Intentionallydi </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rnby8b/wrapping_usdt/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rnby8b/wrapping_usdt/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/wrapping-usdt</link><guid>828345</guid><author>COINS NEWS</author><dc:content /><dc:text>Wrapping USDT</dc:text></item><item><title>New ways to track verification proofs for source code of Ethereum's earliest contracts</title><description><![CDATA[<div class="md"><p>Yesterday I posted about <a href="https://www.reddit.com/r/ethereum/s/yI0hIYFRXM">verifying Vitalik&#39;s first token contract</a> and got a great response. A few people asked how to follow along as more proofs are published, so I set up two places to track them:</p> <ul> <li><strong>GitHub:</strong> <a href="https://github.com/cartoonitunes/awesome-ethereum-proofs">awesome-ethereum-proofs</a> - each proof has its own repo with a reproducible verification script</li> <li><strong>Web:</strong> <a href="https://www.ethereumhistory.com/proofs">ethereumhistory.com/proofs</a> - browse all verified contracts with deployment dates, compiler versions, and methodology</li> </ul> <p>Most contracts deployed in August 2015 have no verified source on Etherscan. The compilers are too old for automated tools, source code was hosted on Pastebin links that expired years ago, and some contracts used languages Etherscan doesn&#39;t even support (Serpent, LLL). So I&#39;ve been doing it manually - testing every early compiler version against on-chain bytecode until I get a byte-for-byte match.</p> <p>Since the Vitalik post, here are 4 new proofs:</p> <p><strong><a href="https://www.ethereumhistory.com/contract/0x6516298e1c94769432ef6d5f450579094e8c21fa">&quot;Test&quot; - First Executable Contract</a></strong> (Aug 7, 2015, block 48,643) The earliest contract with executable code on Ethereum mainnet. Compiled with soljson v0.1.1, the first publicly available Solidity compiler release. Just 8 days after mainnet launch.</p> <p><strong><a href="https://www.ethereumhistory.com/contract/0xfea8c4afb88575cd89a2d7149ab366e7328b08eb">Hello World Greeter</a></strong> (Aug 7, 2015, block 48,681) Ethereum&#39;s &quot;Hello World&quot; moment. Deployed 38 blocks after the first executable contract, same day, same compiler. Based on the greeter tutorial that shipped with the early Ethereum documentation.</p> <p><strong><a href="https://www.ethereumhistory.com/contract/0xa327075af2a223a1c83a36ada1126afe7430f955">EarlyChainLetter10ETH</a></strong> (Aug 8, 2015, block 49,931) A chain letter pyramid contract from day 2 of smart contract deployment. One of the first attempts at a financial game on Ethereum. Participants sent 10 ETH to join, and the contract would pay out earlier participants as new ones joined.</p> <p><strong><a href="https://www.ethereumhistory.com/contract/0x125b606c67e8066da65069652b656c19717745fa">FunDistributor</a></strong> (Aug 10, 2015, block 62,632) A &quot;king of the hill&quot; behavioral economics experiment. Send more than 1% of the contract&#39;s balance to become the receiver. If nobody touches the contract for 200+ blocks (~45 min), the current receiver gets paid out. The original source was on Pastebin (link expired) - had to reconstruct it entirely from bytecode. Interesting discrepancy: the Reddit announcement said the payout was 25% of the balance, but the verified code shows <code>this.balance / 3</code> (33.3%).</p> <p>Some things I&#39;ve learned doing this:</p> <ul> <li>Operand order matters in solc 0.1.1. <code>msg.value * 100</code> and <code>100 * msg.value</code> produce different bytecode because the compiler evaluates right-to-left.</li> <li>The <code>private</code> keyword existed in solc 0.1.1 but was almost never used. FunDistributor is one of the earliest known uses.</li> <li>Solidity function declaration order affects optimizer output. Changing the order of functions in the source can completely change the compiled bytecode.</li> </ul> <p>There are 11 proofs so far covering contracts from Aug 2015 through Apr 2016, including Serpent, Solidity, and contracts by Vitalik and Gavin Wood. More coming as I work through the earliest blocks.</p> <p>If you know of any early contracts with lost source code, I&#39;d love to hear about them.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rna5a2/new_ways_to_track_verification_proofs_for_source/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rna5a2/new_ways_to_track_verification_proofs_for_source/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/new-ways-to-track-verification-proofs-for-source-code-of-ethereums-earliest-contracts</link><guid>828344</guid><author>COINS NEWS</author><dc:content /><dc:text>New ways to track verification proofs for source code of Ethereum's earliest contracts</dc:text></item><item><title>Daily General Discussion March 07, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rn247q/daily_general_discussion_march_07_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rn247q/daily_general_discussion_march_07_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-07-2026</link><guid>828238</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 07, 2026</dc:text></item><item><title>ETH staking time on exodus</title><description><![CDATA[<div class="md"><p>I staked some ETH around a month ago and it still has the Staking..... &quot;staking takes 5 days&quot; prompt. How long does it normally take to stake ETH and should I be worried?</p> <p><a href="https://www.reddit.com/submit/?source_id=t3_1rmt8ai&amp;composer_entry=crosspost_nudge"></a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Latter-Estate-8311"> /u/Latter-Estate-8311 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rmuq0z/eth_staking_time_on_exodus/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rmuq0z/eth_staking_time_on_exodus/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/eth-staking-time-on-exodus</link><guid>828156</guid><author>COINS NEWS</author><dc:content /><dc:text>ETH staking time on exodus</dc:text></item><item><title>Steth Question</title><description><![CDATA[<div class="md"><p>So I have some Eth staked on lido and received steth in return. After a few people I know told me I can deposit steth to double dip, earn steth rewards and earn rewards on steth coins as well? Does anyone have any suggestions? I’ve checked morpho, and aave but can’t seem to find any information on lending steth in return for more rewards? Ive also heard of curve and harvest but I’m not familiar with either. </p> <p>Any safe suggestions would be greatly appreciated, as i treasure my Eth and I’m not trying to jeopardize it any way to make a small return. I’m just trying to maximize the amount of Eth I have and letting it work to grow more. </p> <p>Thanks</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Treeclimber919"> /u/Treeclimber919 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rmufd1/steth_question/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rmufd1/steth_question/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/steth-question</link><guid>828155</guid><author>COINS NEWS</author><dc:content /><dc:text>Steth Question</dc:text></item><item><title>(UPDATE) 1.5 Eth stolen from Trust Wallet</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/cocolocomocooriginal"> /u/cocolocomocooriginal </a> <br/> <span><a href="https://www.reddit.com/gallery/1rmpgfz">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rmphbh/update_15_eth_stolen_from_trust_wallet/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/update-15-eth-stolen-from-trust-wallet</link><guid>828158</guid><author>COINS NEWS</author><dc:content /><dc:text>(UPDATE) 1.5 Eth stolen from Trust Wallet</dc:text></item><item><title>A few thoughts on Culpier's Research</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Cautious-Lecture-858"> /u/Cautious-Lecture-858 </a> <br/> <span><a href="/r/BMNRInvestors/comments/1rmoow6/a_few_thoughts_about_culpiers_research/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rmopky/a_few_thoughts_on_culpiers_research/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/a-few-thoughts-on-culpiers-research</link><guid>828157</guid><author>COINS NEWS</author><dc:content /><dc:text>A few thoughts on Culpier's Research</dc:text></item><item><title>Minimmit vs Casper FFG</title><description><![CDATA[<div class="md"><p>One important technical item that I forgot to mention is the proposed switch from Casper FFG to Minimmit as the finality gadget.</p> <p>To summarize, Casper FFG provides two-round finality: it requires each attester to sign once to &quot;justify&quot; the block, and then again to &quot;finalize&quot; it. Minimmit only requires one round. In exchange, Minimmit&#39;s fault tolerance (in our parametrization) drops to 17%, compared to Casper FFG&#39;s 33%.</p> <p>Within Ethereum consensus discussions, I have always been the security assumptions hawk: I&#39;ve insisted on getting to the theoretical bound of 49% fault tolerance under synchrony, kept pushing for 51% attack recovery gadgets, came up with DAS to make data availability checks dishonest-majority-resistant, etc. But I am fine with Minimmit&#39;s properties, in fact even enthusiastic in some respects. In this post, I will explain why.</p> <p>Let&#39;s lay out the exact security properties of both 3SF (not the current beacon chain, which is needlessly weak in many ways, but the ideal 3SF) and Minimmit.</p> <p>&quot;Synchronous network&quot; means &quot;network latency less than 1/4 slot or so&quot;, &quot;asynchronous network&quot; means &quot;potentially very high latency, even some nodes go offline for hours at a time&quot;. The percentages (&quot;attacker has &lt;33%&quot;) refer to percentages of active staked ETH.</p> <h2>Properties of 3SF</h2> <p>Synchronous network case:</p> <ul> <li>Attacker has p &lt; 33%: nothing bad happens</li> <li>33% &lt; p &lt; 50%: attacker can stop finality (at the cost of losing massive funds via inactivity leak), but the chain keeps progressing normally</li> <li>50% &lt; p &lt; 67%: attacker can censor or revert the chain, but cannot revert finality. If an attacker censors, good guys can self-organize, they can stop contributing to a censoring chain, and do a &quot;minority soft fork&quot;</li> <li>p &gt; 67%: attacker can finalize things at will, much harder for good guys to do minority soft fork</li> </ul> <p>Asynchronous network case:</p> <ul> <li>Attacker has p &lt; 33%: cannot revert finality</li> <li>p &gt; 33%: can revert finality, at the cost of losing massive funds via slashing</li> </ul> <h2>Properties of Minimmit</h2> <p>Synchronous network case:</p> <ul> <li>Attacker has p &lt; 17%: nothing bad happens</li> <li>17% &lt; p &lt; 50%: attacker can stop finality (at the cost of losing massive funds via inactivity leak), but the chain keeps progressing normally</li> <li>50% &lt; p &lt; 83%: attacker can censor or revert the chain, but cannot revert finality. If an attacker censors, good guys can self-organize, they can stop contributing to a censoring chain, and do a &quot;minority soft fork&quot;</li> <li>p &gt; 83%: attacker can finalize things at will, much harder for good guys to do minority soft fork</li> </ul> <p>Asynchronous network case:</p> <ul> <li>Attacker has p &lt; 17%: cannot revert finality</li> <li>p &gt; 17%: can revert finality, at the cost of losing massive funds via slashing</li> </ul> <p>I actually think that the latter is a better tradeoff. Here&#39;s my reasoning why:</p> <ul> <li>The worst kind of attack is actually not finality reversion, it&#39;s censorship. The reason is that finality reversion creates massive publicly available evidence that can be used to immediately cost the attacker millions of ETH (ie. billions of dollars), whereas censorship requires social coordination to get around</li> <li>In both of the above, a censorship attack requires 50%</li> <li>A censorship attack becomes <em>much harder</em> to coordinate around when the censoring attacker can unilaterally finalize (ie. &gt;67% in 3SF, &gt;83% in Minimmit). If they can&#39;t, then if the good guys counter-coordinate, you get two non-finalizing chains dueling for a few days, and users can pick on. If they can, then there&#39;s no natural schelling point to coordinate soft-forking</li> <li>In the case of a client bug, the worst thing that can happen is finalizing something bugged. In 3SF, you only need 67% of clients to share a bug for it to finalize, in Minimmit, you need 83%.</li> </ul> <p>Basicallly, Minimmit maximizes the set of situations that &quot;default to two chains dueling each other&quot;, and that is actually a much healthier and much more recoverable outcome than &quot;the wrong thing finalizing&quot;.</p> <p>We want finality to mean final. So in situations of uncertainty (whether attacks or software bugs), we should be more okay with having periods of hours or days where the chain does not finalize, and instead progresses based on the fork choice rule. This gives us time to think and make sure which chain is correct.</p> <p>Also, I think the &quot;33% slashed to revert finality&quot; of 3SF is overkill. If there is even eg. 15 million ETH staking, then that&#39;s 5M ($10B) slashed to revert the chain once. If you had $10B, and you are willing to commit mayhem of a type that violates many countries&#39; computer hacking laws, there are FAR BETTER ways to spend it than to attack a chain. Even if your goal is breaking Ethereum, there are far better attack vectors.</p> <p>And so if we have the baseline guarantee of &gt;= 17% slashed to revert finality (which Minimmit provides), we should judge the two systems from there based on their other properties - where, for the reasons I described above, I think Minimmit performs better.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rmmoln/minimmit_vs_casper_ffg/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rmmoln/minimmit_vs_casper_ffg/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/minimmit-vs-casper-ffg</link><guid>828154</guid><author>COINS NEWS</author><dc:content /><dc:text>Minimmit vs Casper FFG</dc:text></item><item><title>We verified Vitalik's 2015 token contract and discovered it wasn't compiled with Solidity - it's Serpent</title><description><![CDATA[<div class="md"><p>I&#39;ve been working on verifying source code for the oldest contracts on Ethereum, and this one took days to crack.</p> <p><strong>The contract:</strong> <a href="https://etherscan.io/address/0xa2e3680acaf5d2298697bdc016cf75a929385463">0xa2e3680acaf5d2298697bdc016cf75a929385463</a></p> <p>Deployed by Vitalik on November 12, 2015 (block 530,996). It&#39;s a token contract implementing the standardized currency API from the early <code>ethereum/dapp-bin</code> repo. 1,000,000 initial supply, approve/transfer mechanics - basically a proto-ERC-20.</p> <p><strong>The problem:</strong> We tried compiling <code>currency.sol</code> with every Solidity compiler version from that era. Every archived soljson release from v0.1.1 through v0.3.6, nightlies from Sep-Dec 2015, native C++ solc builds from the webthree-umbrella repo, optimizer on and off. Nothing matched.</p> <p><strong>The breakthrough:</strong> Three clues pointed us away from Solidity entirely:</p> <ol> <li><p>The on-chain constructor starts with <code>6000603f53</code> (MSTORE8-based memory init). Every Solidity version produces <code>60606040525b</code> (the free memory pointer pattern). This is a fundamentally different code generation approach.</p></li> <li><p>The runtime code uses <code>MSIZE, SWAP1, MSIZE, ADD</code> for memory allocation. This is the Serpent compiler&#39;s <code>alloc()</code> pattern - not found in any version of solc.</p></li> <li><p>Two function selectors didn&#39;t match the Solidity source: <code>disapprove()</code> instead of <code>unapprove()</code>, and <code>isApprovedOnceFor()</code> instead of <code>isApprovedOnce()</code>.</p></li> </ol> <p><strong>The answer:</strong> The contract was compiled from <code>currency.se</code> (the Serpent version), not <code>currency.sol</code>. The <code>ethereum/dapp-bin</code> repo had both implementations side by side. Vitalik deployed his own language&#39;s version.</p> <p>Compiled with the Serpent compiler at commit <code>f0b4128</code> (Oct 15, 2015) - byte-for-byte identical, all 1,661 bytes.</p> <p>Full methodology, source, and proof: <a href="https://github.com/cartoonitunes/vitalik-currency-verification">github.com/cartoonitunes/vitalik-currency-verification</a></p> <p>We&#39;ve submitted a manual verification request to Etherscan since they don&#39;t support Serpent as a verification language. Hopefully they can add it as a verified contract with source.</p> <p>This is part of a broader effort to verify and preserve the earliest contracts on Ethereum. A lot of historically important contracts from 2015-2016 are still unverified because the compiler versions are too old for Etherscan&#39;s automated tools.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rmheom/we_verified_vitaliks_2015_token_contract_and/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rmheom/we_verified_vitaliks_2015_token_contract_and/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/we-verified-vitaliks-2015-token-contract-and-discovered-it-wasnt-compiled-with-solidity-its-serpent</link><guid>828153</guid><author>COINS NEWS</author><dc:content /><dc:text>We verified Vitalik's 2015 token contract and discovered it wasn't compiled with Solidity - it's Serpent</dc:text></item><item><title>ZK VMs made verifiable computation accessible to any developer. The prover networks running them require your full plaintext data. YIKES</title><description><![CDATA[<div class="md"><p>Zero-knowledge cryptography went through three phases. First: hand-crafted arithmetic circuits, only accessible to deep researchers. Second: ZK virtual machines — suddenly any developer could write verifiable code in Rust or C. Third: prover networks (Succinct, Boundless/RiscZero) that let you delegate the heavy proof generation to external infrastructure.</p> <p>Each phase made the technology more accessible. Each phase also moved the user&#39;s data further from their control.</p> <p>Prover networks require your full plaintext data to generate proofs. For rollups, this is a non-issue — public ledger, no privacy expectation, and what you gain (succinctness — compressing thousands of transactions into a single proof) is worth the trade. That&#39;s the use case these networks were built for, and they served it well.</p> <p>The problem emerges when you extend this model to user-facing applications. Verifiable identity: proving you hold a valid passport, proving you&#39;re over 18, without disclosing the underlying data. Private AI inference: running a model on your data without the model owner seeing your inputs or you seeing their weights. Decentralized exchanges with private order books. In all of these, delegating to a prover network means surrendering exactly the inputs you need to keep private.</p> <p>I sat down with a researcher at ChainSafe who&#39;s working on this specific problem. His approach: adding MPC (multi-party computation) to ZK VMs so proof generation can be delegated privately. Multiple parties each hold a secret share of the data, compute their portion, and combine results — no single party ever sees the full picture. He calls it &quot;make ZK VMs ZK again.&quot;</p> <p>He also covered a near-term approach to the deepfake problem: attested sensors that cryptographically sign photo/video metadata at capture, combined with verifiable edit histories. You can&#39;t yet verify what IS AI-generated. But you can prove everything that is human — a reverse approach. Prove provenance instead of detecting fakes.</p> <p>The full conversation covers ZK, MPC, and FHE (the &quot;holy trinity of programmable cryptography&quot;), explained through photography analogies that are genuinely useful for building intuition. We filmed it across Taipei — street markets, a botanical garden, a tea ceremony.</p> <p>Full interview: <a href="https://youtu.be/PnEivfTpnA8">https://youtu.be/PnEivfTpnA8</a> </p> <p>—————</p> <p>If we&#39;re meeting for the first time, hi ????! I started building my channel to spread the good word on good work in crypto — something with substance and humanity. A like, sub, and comment goes a long way to supporting me, so please consider doing so!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/haochizzle"> /u/haochizzle </a> <br/> <span><a href="https://youtu.be/PnEivfTpnA8">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rmg9sa/zk_vms_made_verifiable_computation_accessible_to/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/zk-vms-made-verifiable-computation-accessible-to-any-developer-the-prover-networks-running-them-require-your-full-plaintext-data-yikes</link><guid>828011</guid><author>COINS NEWS</author><dc:content /><dc:text>ZK VMs made verifiable computation accessible to any developer. The prover networks running them require your full plaintext data. YIKES</dc:text></item><item><title>DigixDAO: The First Major DAO Crowdsale — $5.5M Raised in Under 24 Hours (March 29, 2016)</title><description><![CDATA[<div class="md"><p>On March 29, 2016, Digix Global launched what became the first major DAO crowdsale on Ethereum. It raised $5.5 million in under 24 hours — at a time when Ethereum&#39;s total market cap was around $600 million.</p> <p><strong>What it was:</strong> DigixDAO was a governance token (DGD) for a project aiming to tokenize physical gold bars on Ethereum. The crowdsale contract was deployed at block 1,239,208 and compiled with Solidity v0.3.0.</p> <p><strong>Why it mattered:</strong> - It was the first DAO-style crowdsale to raise serious money on Ethereum - It proved that decentralized fundraising could work at scale, months before The DAO - The speed of the raise ($5.5M in &lt;24h) shocked even the Ethereum community - It directly inspired the wave of ICOs that followed in 2017</p> <p><strong>Independent verification:</strong> Developer Piper Merriam independently <a href="https://gist.github.com/pipermerriam/26d729e54be0b7dcf5e6">verified the contract code</a> before the sale, establishing one of the earliest examples of third-party smart contract auditing.</p> <p>The original community discussion happened right here on <a href="/r/ethereum">r/ethereum</a>, with <a href="https://www.reddit.com/r/ethereum/comments/4cg1bw/">this thread</a> documenting the reaction in real-time.</p> <p>Contract: <a href="https://etherscan.io/address/0xf0160428a8552ac9bb7e050d90eeade4ddd52843">0xf0160428a8552ac9bb7e050d90eeade4ddd52843</a></p> <p>Full writeup with sources: <a href="https://www.ethereumhistory.com/contract/0xf0160428a8552ac9bb7e050d90eeade4ddd52843">EthereumHistory.com</a></p> <p>This was just 7 months before The DAO — and in many ways, it was the proof of concept that made The DAO feel possible. We&#39;re documenting these pre-2017 contracts before the context disappears.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rmerqx/digixdao_the_first_major_dao_crowdsale_55m_raised/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rmerqx/digixdao_the_first_major_dao_crowdsale_55m_raised/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/digixdao-the-first-major-dao-crowdsale-55m-raised-in-under-24-hours-march-29-2016</link><guid>828012</guid><author>COINS NEWS</author><dc:content /><dc:text>DigixDAO: The First Major DAO Crowdsale — $5.5M Raised in Under 24 Hours (March 29, 2016)</dc:text></item><item><title>Ethereal news weekly #14 | ePBS first devnet live, Aave Labs temp check passed, Synthesis AI + human hackathon</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rmcnq6/ethereal_news_weekly_14_epbs_first_devnet_live/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #14 | ePBS first devnet live, Aave Labs temp check passed, Synthesis AI + human hackathon" title="Ethereal news weekly #14 | ePBS first devnet live, Aave Labs temp check passed, Synthesis AI + human hackathon" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-14/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rmcnq6/ethereal_news_weekly_14_epbs_first_devnet_live/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-14-epbs-first-devnet-live-aave-labs-temp-check-passed-synthesis-ai-human-hackathon</link><guid>828013</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #14 | ePBS first devnet live, Aave Labs temp check passed, Synthesis AI + human hackathon</dc:text></item><item><title>Daily General Discussion March 06, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rm5yqw/daily_general_discussion_march_06_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rm5yqw/daily_general_discussion_march_06_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-06-2026</link><guid>828009</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 06, 2026</dc:text></item><item><title>All you need to know about Ethereum Hegota Upgrade</title><description><![CDATA[<div class="md"><p><a href="https://etherworld.co/tag/hegota/">Hegotá</a> is the official name of a major Ethereum network upgrade planned for the second half of 2026, following the <a href="https://etherworld.co/tag/glamsterdam/">Glamsterdam</a> upgrade expected earlier in the year, and marking Ethereum’s continued shift toward a biannual release cycle. The name blends Bogotá, the Devcon host city, with the star Heze.</p> <p><a href="https://etherworld.co/all-you-need-to-know-about-ethereum-hegota-upgrade/">https://etherworld.co/all-you-need-to-know-about-ethereum-hegota-upgrade/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rm299u/all_you_need_to_know_about_ethereum_hegota_upgrade/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rm299u/all_you_need_to_know_about_ethereum_hegota_upgrade/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/all-you-need-to-know-about-ethereum-hegota-upgrade</link><guid>828010</guid><author>COINS NEWS</author><dc:content /><dc:text>All you need to know about Ethereum Hegota Upgrade</dc:text></item><item><title>Built a Rust tool to scan Ethereum smart contracts for vulnerabilities</title><description><![CDATA[<div class="md"><p>I built <strong>SCPF</strong> (Smart Contract Pattern Finder) - an open-source security scanner for Ethereum smart contracts.</p> <p><strong>What it does:</strong> - Scans contracts for reentrancy, delegatecall, unchecked calls, and other vulnerabilities - Uses YAML templates (easy to customize) - Integrates with GitHub Actions (SARIF output) - Supports up to 6 Etherscan API keys with automatic failover</p> <p><strong>Quick example:</strong> <code>bash scpf scan 0x1234... --chains ethereum </code></p> <p>Built with Rust for speed. MIT licensed.</p> <p>GitHub: <a href="https://github.com/Teycir/smartcontractpatternfinder">https://github.com/Teycir/smartcontractpatternfinder</a></p> <p>Would love feedback from the community! ????</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/tcoder7"> /u/tcoder7 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rlsfeq/built_a_rust_tool_to_scan_ethereum_smart/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rlsfeq/built_a_rust_tool_to_scan_ethereum_smart/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/built-a-rust-tool-to-scan-ethereum-smart-contracts-for-vulnerabilities</link><guid>827875</guid><author>COINS NEWS</author><dc:content /><dc:text>Built a Rust tool to scan Ethereum smart contracts for vulnerabilities</dc:text></item><item><title>The endgame for Ethereum UX? A breakdown of EIP-7702 (SetCode Transactions)</title><description><![CDATA[<div class="md"><p>Hi everyone,</p> <p>If you&#39;ve been following the Account Abstraction roadmap, you know the community pivoted hard toward EIP-7702, a proposal driven by Vitalik to allow EOAs (standard wallets) to temporarily act like smart contracts.</p> <p>I write a lot about blockchain architecture, and I noticed that while the hype around &quot;gasless transactions&quot; is loud, the actual mechanics of <em>how</em> EIP-7702 achieves this safely aren&#39;t discussed enough. I published an architectural breakdown to clarify how this works under the hood.</p> <p>The core of the design is the <code>SetCode</code> transaction type. Instead of permanently migrating an EOA to a smart contract, EIP-7702 allows a transaction to temporarily attach smart contract code to an EOA for the exact duration of that single transaction.</p> <p>The deep dive covering:</p> <ul> <li>How this solves the security debates around previous proposals.</li> <li>The technical flow of batching operations</li> <li>What this means for the current ERC-4337 infrastructure.</li> </ul> <p>I&#39;d love to hear from people that building in the space: How quickly do you expect it to be broadly used</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Resident_Anteater_35"> /u/Resident_Anteater_35 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rlpxm9/the_endgame_for_ethereum_ux_a_breakdown_of/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rlpxm9/the_endgame_for_ethereum_ux_a_breakdown_of/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/the-endgame-for-ethereum-ux-a-breakdown-of-eip-7702-setcode-transactions</link><guid>827874</guid><author>COINS NEWS</author><dc:content /><dc:text>The endgame for Ethereum UX? A breakdown of EIP-7702 (SetCode Transactions)</dc:text></item><item><title>X402 Real Use Cases</title><description><![CDATA[<div class="md"><p>I spent 1 month talking to 10 SaaS and AI companies trying to sell them on x402.<br/> Here&#39;s what almost all of them said: </p> <p>&quot;Why would an AI agent pay per usage for a certain app when you can just create a SaaS product, ask for a top-up, and internally use credits?&quot; </p> <p>x402 doesn&#39;t replace the per-usage model. It solves one specific problem: no human in the loop. </p> <p>There are 2 use cases: </p> <ol> <li><p>Anonymous autonomous agent. No account. No signup. No pre-loaded balance. Pays mid-task and moves on. </p></li> <li><p>Humans with accounts created - that want to automate - a top-up credit model wins with pay per usage with credits. </p></li> </ol> <p>BUT<br/> Almost every SaaS would want you to create your account. </p> <p>SO x402 is really only good for automatic top-ups / payments.<br/> Change my mind.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/CellistNegative1402"> /u/CellistNegative1402 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rlmuqu/x402_real_use_cases/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rlmuqu/x402_real_use_cases/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/x402-real-use-cases</link><guid>827873</guid><author>COINS NEWS</author><dc:content /><dc:text>X402 Real Use Cases</dc:text></item><item><title>DeFi didn't start in 2020: a March 2016 token-swap contract pattern worth revisiting</title><description><![CDATA[<div class="md"><p>Been doing Ethereum archaeology and found a useful reminder: token-for-token swap behavior existed on-chain in 2016, long before AMMs were mainstream.</p> <p>What was different vs modern DeFi: - no pooled liquidity / routing engines - much heavier coordination + trust assumptions - primitive UX, but clearly permissionless exchange intent</p> <p>It feels like DeFi history is better modeled as a slow primitive stack (2015-2018) rather than a sudden 2020 birth.</p> <p>Question for the OGs here: which pre-2018 contracts do you consider the most important proto-DeFi stepping stones?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rljum1/defi_didnt_start_in_2020_a_march_2016_tokenswap/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rljum1/defi_didnt_start_in_2020_a_march_2016_tokenswap/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/defi-didnt-start-in-2020-a-march-2016-token-swap-contract-pattern-worth-revisiting</link><guid>827876</guid><author>COINS NEWS</author><dc:content /><dc:text>DeFi didn't start in 2020: a March 2016 token-swap contract pattern worth revisiting</dc:text></item><item><title>TerraNullius: The Ethereum Message Board from Block 49,880 (August 7, 2015) — Still Getting Claims in 2026</title><description><![CDATA[<div class="md"><p>Two weeks after Ethereum&#39;s genesis block, a Reddit user named &quot;Semiel&quot; deployed one of the earliest smart contracts on the network: TerraNullius.</p> <p><strong>What it does:</strong> Anyone can &quot;claim&quot; a hex coordinate and attach a message to it — a permanent, uncensorable message board on the blockchain. No tokens, no governance, no economic incentive. Just messages, forever.</p> <p><strong>The numbers:</strong> - Deployed at block 49,880 (August 7, 2015) - Compiled with Solidity v0.1.1 - 25 claims in 2015, then it sat mostly dormant - 687 claims during the 2021 NFT boom (people realized these were basically proto-NFTs) - 805 total transactions and counting — still active in 2026</p> <p>It was referenced by the Guinness World Records and is one of the earliest surviving interactive contracts on Ethereum.</p> <p>The original announcement was a <a href="https://www.reddit.com/r/ethereum/comments/3g4uhr/">Reddit post</a> right here on <a href="/r/ethereum">r/ethereum</a>, with Semiel sharing a <a href="http://pastebin.com/qyS2DYFX">Pastebin script</a> so people could interact with it.</p> <p>What&#39;s fascinating is how it predates every pattern we now take for granted — ERC-20, ERC-721, ENS, DAOs. This was someone experimenting with permanence on a chain that was two weeks old.</p> <p>Contract: <a href="https://etherscan.io/address/0x6e38A457C722C6011B2dfa06d49240e797844d66">0x6e38A457C722C6011B2dfa06d49240e797844d66</a></p> <p>Full writeup with sources and verification: <a href="https://www.ethereumhistory.com/contract/0x6e38A457C722C6011B2dfa06d49240e797844d66">EthereumHistory.com</a></p> <p>If anyone has stories about early Ethereum experiments like this, I&#39;d love to hear them. We&#39;re trying to document the pre-2017 era before the context is lost entirely.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rlidmx/terranullius_the_ethereum_message_board_from/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rlidmx/terranullius_the_ethereum_message_board_from/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/terranullius-the-ethereum-message-board-from-block-49880-august-7-2015-still-getting-claims-in-2026</link><guid>827872</guid><author>COINS NEWS</author><dc:content /><dc:text>TerraNullius: The Ethereum Message Board from Block 49,880 (August 7, 2015) — Still Getting Claims in 2026</dc:text></item><item><title>Daily General Discussion March 05, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rl9qdi/daily_general_discussion_march_05_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rl9qdi/daily_general_discussion_march_05_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-05-2026</link><guid>827617</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 05, 2026</dc:text></item><item><title>Understanding Block-Level Access Lists, a headliner of the Glamsterdam upgrade</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rkpno9/understanding_blocklevel_access_lists_a_headliner/"> <img src="https://external-preview.redd.it/EJIl5XgR_ckv93lkQKign-xPyxf4PoQgPqEO1vGcV9M.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=8f82eb71015c30ee6780e646bc7ca2dba42b0c43" alt="Understanding Block-Level Access Lists, a headliner of the Glamsterdam upgrade" title="Understanding Block-Level Access Lists, a headliner of the Glamsterdam upgrade" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/fvictorio"> /u/fvictorio </a> <br/> <span><a href="https://paragraph.com/@cethology/understanding-block-level-access-lists">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rkpno9/understanding_blocklevel_access_lists_a_headliner/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/understanding-block-level-access-lists-a-headliner-of-the-glamsterdam-upgrade</link><guid>827618</guid><author>COINS NEWS</author><dc:content /><dc:text>Understanding Block-Level Access Lists, a headliner of the Glamsterdam upgrade</dc:text></item><item><title>Compliance and taxes for payments on Dapps</title><description><![CDATA[<div class="md"><p>My question is for devs and teams which are running Defi apps, DApps, Web apps with wallet connect feature. How are you doing compliance and taxes for the payments that comes directly though wallet connect feature? User can deposit funds that came from any random source. How do you manage all these anonymous payments coming to you?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Ok-Atmosphere-6315"> /u/Ok-Atmosphere-6315 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rkmh8e/compliance_and_taxes_for_payments_on_dapps/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rkmh8e/compliance_and_taxes_for_payments_on_dapps/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/compliance-and-taxes-for-payments-on-dapps</link><guid>827436</guid><author>COINS NEWS</author><dc:content /><dc:text>Compliance and taxes for payments on Dapps</dc:text></item><item><title>Daily General Discussion March 04, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rkdlum/daily_general_discussion_march_04_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rkdlum/daily_general_discussion_march_04_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-04-2026</link><guid>827435</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 04, 2026</dc:text></item><item><title>I reverse-engineered the source code of GavCoin (2016) and got an exact bytecode match - now trying to get Etherscan to verify it</title><description><![CDATA[<div class="md"><p>GavCoin (<code>0xb4abc1bfc403a7b82c777420c81269858a4b8aa4</code>) was deployed on April 26, 2016 - one of the earliest token contracts on Ethereum. The original source used <code>#require</code> directives from the Mix IDE preprocessor, which hasn&#39;t existed for years. The code was never verified on Etherscan.</p> <p>I spent a while reconstructing the source from bytecode analysis:</p> <ul> <li>Brute-forced all 12 function selectors via keccak256 to recover the exact function names (turns out Gav used <code>changeOwner</code> not <code>setOwner</code>, <code>nameRegAddress</code> not <code>name</code>)</li> <li>Discovered the contract has zero events, no inheritance, and a flat storage layout - unusual for something based on dapp-bin&#39;s coin.sol</li> <li>Found that function declaration order matters in solc 0.3.x because it controls where the shared return trampoline gets placed in bytecode</li> <li>The constructor registers itself as &quot;GavCoin&quot; in the old global NameReg contract and mints 1,000,000 tokens to the deployer, plus has a proof-of-work mining function anyone could call</li> </ul> <p>End result: <strong>exact byte-for-byte match of the 905-byte runtime bytecode</strong> across solc v0.1.6 through v0.3.2 with optimizer enabled.</p> <p>Source and one-command verification script: <a href="https://github.com/cartoonitunes/gavcoin-verify">https://github.com/cartoonitunes/gavcoin-verify</a></p> <p><strong>The problem:</strong> Etherscan&#39;s verification form only supports solc v0.4.11 and newer. GavCoin was compiled with v0.3.1. So I&#39;ve emailed them requesting manual verification.</p> <p>I also submitted verification requests for two other historic contracts from the same era - Alex Van de Sande&#39;s Unicorn Meat system (the MeatConversionCalculator and MeatGrindersAssociation). The Grinder Association is one of the earliest DAOs on Ethereum, featuring quadratic voting and on-chain proposals. Source for those is in avsa&#39;s original gist.</p> <p>These early contracts are fascinating. Pre-ERC-20, pre-EIP, people were just experimenting. Proof-of-work token mining, on-chain name registries, quadratic voting DAOs - all in 2016.</p> <p>If anyone has other unverified historic contracts they&#39;d like help with, happy to share the approach.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rk91ha/i_reverseengineered_the_source_code_of_gavcoin/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rk91ha/i_reverseengineered_the_source_code_of_gavcoin/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/i-reverse-engineered-the-source-code-of-gavcoin-2016-and-got-an-exact-bytecode-match-now-trying-to-get-etherscan-to-verify-it</link><guid>827299</guid><author>COINS NEWS</author><dc:content /><dc:text>I reverse-engineered the source code of GavCoin (2016) and got an exact bytecode match - now trying to get Etherscan to verify it</dc:text></item><item><title>I know we all hate the dystopian eyeball scanners, but the ZK-ML tech that was just open-sourced is actually a massive win for Ethereum privacy.</title><description><![CDATA[<div class="md"><p>Let’s address the elephant in the room first. This community (and Vitalik himself) has rightfully dragged the entire Proof-of-Personhood concept for the massive centralization risks of proprietary hardware and the general &quot;ick&quot; factor of biometric data collection. I have been one of the biggest skeptics of the whole &quot;scan your iris for tokens&quot; model since day one.</p> <p>But setting the tokenomics and the physical hardware aside for a minute, the engineering team behind <a href="https://world.org/">world</a> just dropped an open-source cryptographic update that is honestly a massive leap forward for Zero-Knowledge Machine Learning (ZK-ML) on Ethereum.</p> <p>They just open-sourced &quot;Remainder&quot;, a highly efficient in-house ZK prover built on the GKR protocol combined with a Hyrax polynomial commitment scheme.</p> <p>Why should we care about this? Historically, one of the biggest architectural flaws in biometric identity was the upgrade path. If the recognition algorithm improves, how do you upgrade the user&#39;s cryptographic credentials without forcing them to go back to a physical, centralized hardware device to get scanned again?</p> <p>Remainder solves this entirely on the client side. It is specifically optimized to run heavy ML computations directly on standard mobile hardware. This means when the underlying algorithms update, your phone runs the new ML model locally over your securely custodied data, and simply generates a Zero-Knowledge proof that the execution was correct. The raw biometric data never leaves your device. The network just verifies the proof.</p> <p>We talk constantly in this sub about building trustless identity primitives and scaling privacy on-chain. Using GKR to achieve linear-time proving on consumer edge devices - so users no longer have to rely on a centralized server for biometric processing - is exactly the kind of cypherpunk engineering we should be encouraging.</p> <p>I’m genuinely curious to hear from the ZK nerds and privacy maxis here: Does shifting the heavy lifting to local, client-side ZK proofs and open-sourcing the prover code soften your stance on this protocol at all? Or is the reliance on that initial hardware scan still an unforgivable &quot;original sin&quot; for decentralized identity?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/GodBlessIraq"> /u/GodBlessIraq </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rk0jty/i_know_we_all_hate_the_dystopian_eyeball_scanners/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rk0jty/i_know_we_all_hate_the_dystopian_eyeball_scanners/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/i-know-we-all-hate-the-dystopian-eyeball-scanners-but-the-zk-ml-tech-that-was-just-open-sourced-is-actually-a-massive-win-for-ethereum-privacy</link><guid>827300</guid><author>COINS NEWS</author><dc:content /><dc:text>I know we all hate the dystopian eyeball scanners, but the ZK-ML tech that was just open-sourced is actually a massive win for Ethereum privacy.</dc:text></item><item><title>Sanctuary technologies</title><description><![CDATA[<div class="md"><p>Over the past year, many people I talk to have expressed worry about two topics:</p> <ul> <li>Various aspects of the way the world is going: government control and surveillance, wars, corporate power and surveillance, tech enshittification / corposlop, social media becoming a memetic warzone, AI and how it interplays with all of the above...</li> <li>The brute reality that Ethereum seems to be absent from meaningfully improving the lives of people subject to these things, even on the dimensions we deeply care about (eg. freedom, privacy, security of digital life, community self-organization)</li> </ul> <p>It is easy to bond over the first, to commiserate over the fact that beauty and good in the world seems to be receding and darkness advancing, and uncaring powerful people in high places are making this happen. But ultimately, it is easy to acknowledge problems, the hard thing is actually shining a light forward, coming up with a concrete plan that makes the situation better.</p> <p>The second has been weighing heavily on my mind, and on the minds of many of our brightest and most idealistic Ethereans. I personally never felt any upset or fear when political memecoins went on Solana, or various zero-sum gambling applications go on whatever 250 millisecond block chain strikes their fancy. But it <em>does</em> weigh on me that, through all of the various low-grade online memetic wars, international overreaches of corporate and government power, and other issues of the last few years, Ethereum has been playing a very limited role in making people&#39;s lives better. What <em>are</em> the liberating technologies? Starlink is the most obvious one. Locally-running open-weights LLMs are another. Signal is a third. Community Notes is a fourth, tackling the problem from a different angle.</p> <p>One response is to say &quot;stop dreaming big, we need to hunker down and accept that finance is our lane and laser-focus on that&quot;. But this is ultimately hollow. Financial freedom and security is critical. But it seems obvious that, while adding a perfectly free and open and sovereign and debasement-proof financial system would fix some things, but it would leave the bulk of our deep worries about the world unaddressed. It&#39;s okay for individuals to laser-focus on finance, but we need to be part of some greater whole that has things to say about the other problems too.</p> <p>At the same time, Ethereum cannot fix the world. Ethereum is the &quot;wrong-shaped tool&quot; for that: beyond a certain point, &quot;fixing the world&quot; implies a form of power projection that is more like a centralized political entity than like a decentralized technology community.</p> <p>So what can we do? I think that we in Ethereum should conceptualize ourselves as being part of an ecosystem building &quot;sanctuary technologies&quot;: free open-source technologies that let people live, work, talk to each other, manage risk and build wealth, and collaborate on shared goals, in a way that optimizes for robustness to outside pressures.</p> <p>The goal is not to remake the world in Ethereum&#39;s image, where all finance is disintermediated, all governance happens through DAOs, and everyone gets a blockchain-based UBI delivered straight to their social-recovery wallet. The goal is the opposite: it&#39;s de-totalization. It&#39;s to reduce the stakes of the war in heaven by preventing the winner from having total victory (ie. total control over other human beings), and preventing the loser from suffering total defeat. To create digital islands of stability in a chaotic era. To enable interdependence that cannot be weaponized.</p> <p>Ethereum&#39;s role is to create &quot;digital space&quot; where different entities can cooperate and interact. Communications channels enable interaction, but communication channels are not &quot;space&quot;: they do not let you create single unique objects that canonically represent some social arrangement that changes over time. Money is one important example. Multisigs that can change their members, showing persistence exceeding that of any one person or one public key, are another. Various market and governance structures are a third. There are more.</p> <p>I think now is the time to double down, with greater clarity. Do not try to be Apple or Google, seeing crypto as a tech sector that enables efficiency or shininess. Instead, build our part of the sanctuary tech ecosystem - the &quot;shared digital space with no owner&quot; that enables both open finance and much more. More actively build toward a full-stack ecosystem: both upward to the wallet and application layer (incl AI as interface) and downward to the OS, hardware, even physical/bio security levels.</p> <p>Ultimately, tech is worthless without users. But look for users, both individual and institutional, for whom sanctuary tech is exactly the thing they need. Optimize payments, defi, decentralized social, and other applications precisely for those users, and those goals, which centralized tech will not serve. We have many allies, including many outside of &quot;crypto&quot;. It&#39;s time we work together with an open mind and move forward.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rjyqnx/sanctuary_technologies/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rjyqnx/sanctuary_technologies/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/sanctuary-technologies</link><guid>827298</guid><author>COINS NEWS</author><dc:content /><dc:text>Sanctuary technologies</dc:text></item><item><title>GavCoin: Gavin Wood's 2016 token is still mineable on Ethereum mainnet</title><description><![CDATA[<div class="md"><p>Before ERC-20 existed, Gavin Wood wrote a token contract called GavCoin and pushed it to the official ethereum/dapp-bin repository. The source code uses <code>sendCoin</code> and <code>coinBalanceOf</code> instead of <code>transfer</code> and <code>balanceOf</code> - it predates any token standard.</p> <p>In July 2015, Vitalik referenced GavCoin five times in his <a href="https://blog.ethereum.org/2015/07/05/on-abstraction">&quot;On Abstraction&quot; blog post</a> as the canonical example for explaining how tokens work on Ethereum. It was already part of the shared vocabulary of early Ethereum developers before mainnet had been live for a week.</p> <p>The contract was deployed to mainnet on April 26, 2016 (block 1,408,600) from a wallet traceable to EthDev and the Genesis block. The name &quot;GavCoin&quot; is hardcoded in the constructor bytecode. A day later, Gavin <a href="https://x.com/gavofyork/status/725386148378464256">tweeted</a> &quot;Aww. Me and my key&quot; - his only tweet that month.</p> <p><strong>The mining mechanism is interesting.</strong> Anyone can call <code>mine()</code> to mint GAV proportional to the number of blocks elapsed since the last mint. It&#39;s essentially a faucet with a time-weighted distribution - earlier miners get more since block intervals accumulate. The validator of the block also receives an equal amount. There&#39;s no supply cap.</p> <p>We rebuilt the original dapp as a static site and put it on IPFS, accessible through ENS at <a href="https://gavcoin.eth.limo">gavcoin.eth.limo</a>. You can connect a wallet and actually mine, send, or check balances. The history page documents the full provenance trail with primary sources.</p> <p>The contract: <a href="https://etherscan.io/address/0xb4abc1bfc403a7b82c777420c81269858a4b8aa4">0xb4abc1bfc403a7b82c777420c81269858a4b8aa4</a></p> <p>Original source: <a href="https://github.com/ethereum/dapp-bin/tree/master/coin">ethereum/dapp-bin/coin</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rjsruk/gavcoin_gavin_woods_2016_token_is_still_mineable/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rjsruk/gavcoin_gavin_woods_2016_token_is_still_mineable/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/gavcoin-gavin-woods-2016-token-is-still-mineable-on-ethereum-mainnet</link><guid>827125</guid><author>COINS NEWS</author><dc:content /><dc:text>GavCoin: Gavin Wood's 2016 token is still mineable on Ethereum mainnet</dc:text></item><item><title>I built a decentralized file vault where only your crypto wallet can decrypt your data — no centralized providers holds your encryption keys</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rjhxgu/i_built_a_decentralized_file_vault_where_only/"> <img src="https://external-preview.redd.it/0oH1Sm9AygbePvw6-bzi9zGu6EYZhtuyXXz1uXSh-pw.jpeg?width=140&amp;height=78&amp;auto=webp&amp;s=5b63b7e28e17623cd66f5c519b50f46f43f982fb" alt="I built a decentralized file vault where only your crypto wallet can decrypt your data — no centralized providers holds your encryption keys" title="I built a decentralized file vault where only your crypto wallet can decrypt your data — no centralized providers holds your encryption keys" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Distinct_Peach5918"> /u/Distinct_Peach5918 </a> <br/> <span><a href="/r/solana/comments/1rjhx1f/i_built_a_decentralized_file_vault_where_only/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rjhxgu/i_built_a_decentralized_file_vault_where_only/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/i-built-a-decentralized-file-vault-where-only-your-crypto-wallet-can-decrypt-your-data-no-centralized-providers-holds-your-encryption-keys</link><guid>827126</guid><author>COINS NEWS</author><dc:content /><dc:text>I built a decentralized file vault where only your crypto wallet can decrypt your data — no centralized providers holds your encryption keys</dc:text></item><item><title>Daily General Discussion March 03, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rjhj9n/daily_general_discussion_march_03_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rjhj9n/daily_general_discussion_march_03_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-03-2026</link><guid>827124</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 03, 2026</dc:text></item><item><title>How we evaluate blockchain interoperability and infrastructure for our DAO</title><description><![CDATA[<div class="md"><p>Manage a DAO with about $8m in treasury. Part of my role is evaluating grant applications and infrastructure investments that could benefit our ecosystem. Constantly get pitched for funding.</p> <p>When deciding this is what matters:</p> <p>Does this solve a real problem? We validate with actual developers and users.</p> <p>Is the team capable of executing? Check github, previous projects and references, not just technical skills.</p> <p>What&#39;s the total cost? Not just the initial grant but ongoing maintenance, integration costs, potential technical debt.</p> <p>Recently evaluated a $200k proposal for custom dev tooling and infrastructure. We did deep diligence, talked to 15 developers and reviewed the technical approach. We took a different funding approach. Instead of building everything custom, we partnered with existing solutions like caldera that already solved most of the problem. Cost was a fraction of a custom build and shipped in weeks instead of months. Our developers are happy and we didn&#39;t take on maintaining custom infrastructure.</p> <p>Managing DAO funds means accountability to the community. Can&#39;t just yolo into shiny projects. Think sustainability and actual usage. Good solutions already exist.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Character-Letter4702"> /u/Character-Letter4702 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rjfyvm/how_we_evaluate_blockchain_interoperability_and/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rjfyvm/how_we_evaluate_blockchain_interoperability_and/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/how-we-evaluate-blockchain-interoperability-and-infrastructure-for-our-dao</link><guid>827127</guid><author>COINS NEWS</author><dc:content /><dc:text>How we evaluate blockchain interoperability and infrastructure for our DAO</dc:text></item><item><title>Accidentally sent USDT to USDT address</title><description><![CDATA[<div class="md"><p>Please help me it’s a large amount, is it lost forever?</p> <p>USDT to a USDC address sorry for typo</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/051-Drilla"> /u/051-Drilla </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rj7c4p/accidentally_sent_usdt_to_usdt_address/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rj7c4p/accidentally_sent_usdt_to_usdt_address/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/accidentally-sent-usdt-to-usdt-address</link><guid>826933</guid><author>COINS NEWS</author><dc:content /><dc:text>Accidentally sent USDT to USDT address</dc:text></item><item><title>RWA on Ethereum feels less like hype and more like a maturity test</title><description><![CDATA[<div class="md"><p>Maybe unpopular take, but I don’t think RWA is a “narrative” anymore.</p> <p>A few cycles ago, yield on Ethereum mostly meant emissions. Liquidity mining. Governance token incentives. Boosted pools. You could almost feel the dilution in real time.</p> <p>It worked. Until it didn’t.</p> <p>The structural issue was obvious in hindsight: yield funded by token inflation isn’t the same as yield funded by external cashflow. One depends on reflexivity. The other depends on actual economic activity somewhere outside the EVM.</p> <p>That’s why RWA keeps resurfacing here.</p> <p>Centrifuge tried collateralized real-world assets. Maple leaned into institutional credit. Ondo pushed tokenized Treasuries into DeFi rails. Goldfinch experimented with undercollateralized lending.</p> <p>Different risk models. Same direction: Ethereum as settlement for off-chain cashflows.</p> <p>I’ve been looking at 8lends recently from a portfolio construction angle. RWA-backed lending, fixed monthly payouts, structured more like credit exposure than a farm.</p> <p>Not exciting. Which is kind of the point.</p> <p>Fixed doesn’t mean safe. It just means the risk moves. From token dilution and volatility to underwriting quality and legal enforceability.</p> <p>But if Ethereum wants to evolve beyond cyclical liquidity games, it probably needs primitives that aren’t purely reflexive.</p> <p>So the real question for this sub:</p> <p>Is RWA a necessary evolution for Ethereum DeFi, or are we just wrapping TradFi risk and calling it innovation?</p> <p>And how much transparency would you need before allocating capital to an RWA protocol?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Secret_Remove_7207"> /u/Secret_Remove_7207 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rj5ncr/rwa_on_ethereum_feels_less_like_hype_and_more/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rj5ncr/rwa_on_ethereum_feels_less_like_hype_and_more/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/rwa-on-ethereum-feels-less-like-hype-and-more-like-a-maturity-test</link><guid>826934</guid><author>COINS NEWS</author><dc:content /><dc:text>RWA on Ethereum feels less like hype and more like a maturity test</dc:text></item><item><title>???? NEW WEBSITE. NEW BREAKDOWN SERIES.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rj4hvn/new_website_new_breakdown_series/"> <img src="https://external-preview.redd.it/OmXF5r5PFBG2426498EIRv_VSKkF6k-y9tytoETMoUA.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=15a57cd9cc26c34e36a9bb0266f6f9e47aea4f63" alt="???? NEW WEBSITE. NEW BREAKDOWN SERIES." title="???? NEW WEBSITE. NEW BREAKDOWN SERIES." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Crypto_Power1791"> /u/Crypto_Power1791 </a> <br/> <span><a href="/r/PyraxNetwork/comments/1rj4fin/new_website_new_breakdown_series/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rj4hvn/new_website_new_breakdown_series/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/new-website-new-breakdown-series</link><guid>826935</guid><author>COINS NEWS</author><dc:content /><dc:text>???? NEW WEBSITE. NEW BREAKDOWN SERIES.</dc:text></item><item><title>What the shift to mobile ZK-ML means for the ecosystem</title><description><![CDATA[<div class="md"><p>I’ve always felt that the biggest hurdle for decentralized identity was the &quot;black box&quot; problem of physical hardware. Most of us here have followed the controversy surrounding the Orb and the inherent trust issues that come with proprietary biometric sensors. It’s a classic security vs. privacy trade-off that usually ends in a stalemate.</p> <p>However, the recent open-sourcing of the Remainder prover marks a pretty significant shift in the technical architecture that’s worth looking at from an Ethereum-centric perspective. We’re essentially seeing the transition from &quot;Trust the Gadget&quot; to &quot;Verify the Math&quot;. By moving the heavy ML processing from a physical device directly to a user’s smartphone using a GKR + Hyrax-based proof system, we’re entering the territory of production-grade ZK-ML on consumer hardware.</p> <p>This is a massive engineering leap because running machine learning layers locally and generating a ZK-proof that the model was executed correctly - without the raw data ever leaving the device - is exactly the kind of client-side verifiability we’ve been talking about for years. It turns the phone into a verifiable node of trust, potentially making the physical <a href="https://world.org/find-orb">Orb</a> a one-time gateway rather than a permanent central authority.</p> <p>This is more than just an update to a single project; it’s a high-stakes stress test for ZK-SNARKs on the edge. If we can prove that high-performance provers can handle complex ML inferences on mobile GPUs without compromising privacy or draining the battery, it changes the game for everything from Proof-of-Personhood to private DAO voting.</p> <p>It’s a fascinating pivot from hardware-centric identity to a math-first approach, and I’m curious if this finally bridges the gap for those who were previously put off by the centralized nature of the initial setup.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Independent_Cup7132"> /u/Independent_Cup7132 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rj41je/what_the_shift_to_mobile_zkml_means_for_the/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rj41je/what_the_shift_to_mobile_zkml_means_for_the/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/what-the-shift-to-mobile-zk-ml-means-for-the-ecosystem</link><guid>826936</guid><author>COINS NEWS</author><dc:content /><dc:text>What the shift to mobile ZK-ML means for the ecosystem</dc:text></item><item><title>[Roadmap] The block building pipeline</title><description><![CDATA[<div class="md"><p>In Glamsterdam, Ethereum is getting ePBS, which lets proposers outsource to a free permissionless market of block builders.</p> <p>This ensures that block builder centralization does not creep into staking centralization, but it leaves the question: what do we do about block builder centralization? And what are the <em>other</em> problems in the block building pipeline that need to be addressed, and how? This has both in-protocol and extra-protocol components.</p> <h2>FOCIL</h2> <p>FOCIL is the first step into in-protocol multi-participant block building. FOCIL lets 16 randomly-selected attesters each choose a few transactions, which <em>must</em> be included somewhere in the block (the block gets rejected otherwise). This means that even if 100% of block building is taken over by one hostile actor, they cannot prevent transactions from being included, because the FOCILers will push them in.</p> <h2>&quot;Big FOCIL&quot;</h2> <p>This is more speculative, but has been discussed as a possible next step. The idea is to make the FOCILs bigger, so they can include all of the transactions in the block.</p> <p>We avoid duplication by having the i&#39;th FOCIL&#39;er by default only include (i) txs whose sender address&#39;s first hex char is i, and (ii) txs that were around but not included in the previous slot. So at the cost of one slot delay, only censored txs risk duplication.</p> <p>Taking this to its logical conclusion, the builder&#39;s role could become reduced to ONLY including &quot;MEV-relevant&quot; transactions (eg. DEX arbitrage), and computing the state transition.</p> <h2>Encrypted mempools</h2> <p>Encrypted mempools are one solution being explored to solve &quot;toxic MEV&quot;: attacks such as sandwiching and frontrunning, which are exploitative against users. If a transaction is encrypted until it&#39;s included, no one gets the opportunity to &quot;wrap&quot; it in a hostile way.</p> <p>The technical challenge is: how to guarantee validity in a mempool-friendly and inclusion-friendly way that is efficient, and what technique to use to guarantee that the transaction will actually get decrypted once the block is made (and not before).</p> <h2>The transaction ingress layer</h2> <p>One thing often ignored in discussions of MEV, privacy, and other issues is the network layer: what happens in between a user sending out a transaction, and that transaction making it into a block? There are many risks if a hostile actor sees a tx &quot;in the clear&quot; inflight:</p> <ul> <li>If it&#39;s a defi trade or otherwise MEV-relevant, they can sandwich it</li> <li>In many applications, they can prepend some other action which invalidates it, not stealing money, but &quot;griefing&quot; you, causing you to waste time and gas fees</li> <li>If you are sending a sensitive tx through a privacy protocol, even if it&#39;s all private onchain, if you send it through an RPC, the RPC can see what you did, if you send it through the public mempool, any analytics agency that runs many nodes will see what you did</li> </ul> <p>There has recently been increasing work on network-layer anonymization for transactions: exploring using Tor for routing transactions, ideas around building a custom ethereum-focused mixnet, non-mixnet designs that are more latency-minimized (but bandwidth-heavier, which is ok for transactions as they are tiny) like Flashnet, etc. This is an open design space, I expect the kohaku initiative @ncsgy will be interested in integrating pluggable support for such protocols, like it is for onchain privacy protocols.</p> <p>There is also room for doing (benign, pro-user) things to transactions before including them onchain; this is very relevant for defi. Basically, we want ideal order-matching, as a passive feature of the network layer without dependence on servers. Of course enabling good uses of this without enabling sandwiching involves cryptography or other security, some important challenges there.</p> <h2>Long-term distributed block building</h2> <p>There is a dream, that we can make Ethereum truly like BitTorrent: able to process far more transactions than any single server needs to ever coalesce locally. The challenge with this vision is that Ethereum has (and indeed a core value proposition is) synchronous shared state, so any tx could in principle depend on any other tx. This centralizes block building.</p> <p>&quot;Big FOCIL&quot; handles this partially, and it could be done extra-protocol too, but you still need one central actor to put everything in order and execute it.</p> <p>We could come up with designs that address this. One idea is to do the same thing that we want to do for state: acknowledge that &gt;95% of Ethereum&#39;s activity doesn&#39;t really <em>need</em> full globalness, though the 5% that does is often high-value, and create new categories of txs that are less global, and so friendly to fully distributed building, and make them much cheaper, while leaving the current tx types in place but (relatively) more expensive.</p> <p>This is also an open and exciting long-term future design space.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rizbm7/roadmap_the_block_building_pipeline/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rizbm7/roadmap_the_block_building_pipeline/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/roadmap-the-block-building-pipeline</link><guid>826932</guid><author>COINS NEWS</author><dc:content /><dc:text>[Roadmap] The block building pipeline</dc:text></item><item><title>Daily General Discussion March 02, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rikxzj/daily_general_discussion_march_02_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rikxzj/daily_general_discussion_march_02_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-02-2026</link><guid>826761</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 02, 2026</dc:text></item><item><title>If you're not a developer, have you still ever wanted to create a smart contract?</title><description><![CDATA[<div class="md"><p>I&#39;ve been a crypto developer for about 10 years, so I don&#39;t think I can answer this question to myself anymore. and most of my social circle is developers as well so it&#39;s kind of the same thing. </p> <p>I&#39;m trying to figure out if (or what anecdotal percentage of) non-developers have any desire to create smart contracts. Or rather, just the desire to create non-template crypto projects.</p> <p>(Full transparency: this is related to something I&#39;m building, but I don&#39;t want to promote it here because I&#39;m really just looking to have a discussion)</p> <p>Have you ever wanted to create a crypto project but felt like you couldn&#39;t because of the skill gap?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/nsjames1"> /u/nsjames1 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rifzlz/if_youre_not_a_developer_have_you_still_ever/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rifzlz/if_youre_not_a_developer_have_you_still_ever/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/if-youre-not-a-developer-have-you-still-ever-wanted-to-create-a-smart-contract</link><guid>826762</guid><author>COINS NEWS</author><dc:content /><dc:text>If you're not a developer, have you still ever wanted to create a smart contract?</dc:text></item><item><title>Littercoin smart contracted updated. New diagrams added.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1ribzeb/littercoin_smart_contracted_updated_new_diagrams/"> <img src="https://external-preview.redd.it/ePF181WbuNNVJPRWBk3oUgvGmfeLTohNTMCFmVn2DGA.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=d7288ded6a9e7db52283d62226c931eafff325d8" alt="Littercoin smart contracted updated. New diagrams added." title="Littercoin smart contracted updated. New diagrams added." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/littercoin"> /u/littercoin </a> <br/> <span><a href="https://github.com/OpenLitterMap/littercoin-eth">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ribzeb/littercoin_smart_contracted_updated_new_diagrams/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/littercoin-smart-contracted-updated-new-diagrams-added</link><guid>826763</guid><author>COINS NEWS</author><dc:content /><dc:text>Littercoin smart contracted updated. New diagrams added.</dc:text></item><item><title>Is this possible to bridge BTC to ETH?</title><description><![CDATA[<div class="md"><p>Hi bitcoiners and ethereumers (if that&#39;s the way we call the ethereum community eheh), firstly i&#39;m sorry if this is an frequent question but i couldn&#39;t find the answer anywhere so i wanna ask about it.</p> <p>I&#39;m holding Bitcoins in trustwallet which i&#39;m willing to convert to eth to pay gas for my usdt, is there a simple/fast way to do it? I do not wish to use an exchange, just something quicj onchain, I am a beginner in crypto so i don&#39;t know much yet, trying to learn my way.</p> <p>Advices appreciated, please leave a comment</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Eastern-Access-7555"> /u/Eastern-Access-7555 </a> <br/> <span><a href="https://www.reddit.com/r/CryptoCurrency/comments/1runjev/is_this_possible_to_bridge_btc_to_eth/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/CryptoCurrency/comments/1runjev/is_this_possible_to_bridge_btc_to_eth/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/is-this-possible-to-bridge-btc-to-eth</link><guid>826677</guid><author>COINS NEWS</author><dc:content /><dc:text>Is this possible to bridge BTC to ETH?</dc:text></item><item><title>[Roadmap] More execution layer changes</title><description><![CDATA[<div class="md"><p>Now, execution layer changes. I&#39;ve already talked about account abstraction, multidimensional gas, BALs, and ZK-EVMs.</p> <p>I&#39;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 &quot;the GPU for the EVM&quot;. <a href="https://firefly.social/post/x/2027405623189803453">https://firefly.social/post/x/2027405623189803453</a></p> <p>Today I&#39;ll focus on two big things: state tree changes, and VM changes. State tree changes are in this roadmap. VM changes (ie. EVM -&gt; RISC-V or something better) are longer-term and are still more non-consensus, but I have high conviction that it will become &quot;the obvious thing to do&quot; once state tree changes and the long-term state roadmap (see <a href="https://ethresear.ch/t/hyper-scaling-state-by-creating-new-forms-of-state/24052">https://ethresear.ch/t/hyper-scaling-state-by-creating-new-forms-of-state/24052</a> ) are finished, so I&#39;ll make my case for it here.</p> <p>What these two have in common is:</p> <ul> <li>They are the big bottlenecks that we have to address if we want efficient proving (tree + VM are like &gt;80%)</li> <li>They&#39;re basically mandatory for various client-side proving use cases</li> <li>They are &quot;deep&quot; changes that many shrink away from, thinking that it is more &quot;pragmatic&quot; to be incrementalist</li> </ul> <p>I&#39;ll make the case for both.</p> <h1>Binary trees</h1> <p>The state tree change (worked on by @gballet and many others) is <a href="https://eips.ethereum.org/EIPS/eip-7864">https://eips.ethereum.org/EIPS/eip-7864</a>, switching from the current hexary keccak MPT to a binary tree based on a more efficient hash function.</p> <p>This has the following benefits:</p> <ul> <li>4x shorter Merkle branches (because binary is 32<em>log(n) and hexary is 512</em>log(n)/4), which makes client-side branch verification more viable. This makes Helios, PIR and more 4x cheaper by data bandwidth</li> <li>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]</li> <li>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.</li> <li>Cheaper access for adjacent slots: the binary tree design groups together storage slots into &quot;pages&quot; (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 &gt;10k gas per tx</li> <li>Reduced variance in access depth (loads from big contracts vs small contracts)</li> <li>Binary trees are simpler</li> <li>Opportunity to add any metadata bits we end up needing for state expiry</li> </ul> <p>Zooming out a bit, binary trees are an &quot;omnibus&quot; 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.</p> <h1>VM changes</h1> <p>See also: <a href="https://ethereum-magicians.org/t/long-term-l1-execution-layer-proposal-replace-the-evm-with-risc-v/23617">https://ethereum-magicians.org/t/long-term-l1-execution-layer-proposal-replace-the-evm-with-risc-v/23617</a></p> <p>One reason why the protocol gets uglier over time with more special cases is that people have a certain latent fear of &quot;using the EVM&quot;. If a wallet feature, privacy protocol, or whatever else can be done without introducing this &quot;big scary EVM thing&quot;, there&#39;s a noticeable sigh of relief. To me, this is very sad. Ethereum&#39;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:</p> <ul> <li>More efficient than EVM in raw execution, to the point where most precompiles become unnecessary</li> <li>More prover-efficient than EVM (today, provers are written in RISC-V, hence my proposal to just make the new VM be RISC-V)</li> <li>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</li> <li>Maximum simplicity. A RISC-V interpreter is only a couple hundred lines of code, it&#39;s what a blockchain VM &quot;should feel like&quot;</li> </ul> <p>This is still more speculative and non-consensus. Ethereum would certainly be <em>fine</em> if all we do is EVM + GPU. But a better VM can make Ethereum beautiful and great.</p> <p>A possible deployment roadmap is:</p> <ol> <li>NewVM (eg. RISC-V) only for precompiles: 80% of today&#39;s precompiles, plus many new ones, become blobs of NewVM code</li> <li>Users get the ability to deploy NewVM contracts</li> <li>EVM is retired and turns into a smart contract written in NewVM</li> </ol> <p>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.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ri30rj/roadmap_more_execution_layer_changes/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ri30rj/roadmap_more_execution_layer_changes/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/roadmap-more-execution-layer-changes</link><guid>826676</guid><author>COINS NEWS</author><dc:content /><dc:text>[Roadmap] More execution layer changes</dc:text></item><item><title>TIL the first on-chain proof of attendance token was deployed at Devcon2 in 2016 — three years before POAP launched</title><description><![CDATA[<div class="md"><p>Piper Merriam deployed the IndividualityTokenRoot contract in September 2016 for Devcon2 in Shanghai. Each attendee could mint a unique on-chain token proving they were there — fully ERC-20 compliant, written in Solidity 0.3.6.</p> <p>The idea was simple: if you attended Devcon2, you could claim a token. The minting window closed after the event. No metadata, no images, no marketplace speculation — just cryptographic proof you were in the room.</p> <p>Three years later, POAP launched at ETHDenver 2019 and turned this concept into a whole ecosystem. But the original idea was already deployed and functional on mainnet in 2016.</p> <p>What I find interesting is how many &quot;firsts&quot; are buried in Ethereum&#39;s early history. The Devcon2 token was a working proof-of-attendance system years before anyone coined the term &quot;POAP.&quot; Alex Van de Sande&#39;s Unicorn token (April 2016) had a DAO-governed token grinder with quadratic voting. The DAO itself was mid-2016. All of this predates DeFi Summer by four years.</p> <p>The contract is still on mainnet: <a href="https://etherscan.io/address/0xdd94de9cfe063577051a5eb7465d08317d8808b6">0xdd94de9cfe063577051a5eb7465d08317d8808b6</a></p> <p>Source: <a href="https://github.com/pipermerriam/devcon2-token">Piper Merriam&#39;s GitHub repo</a> with deployment details and minting logic.</p> <p>If you&#39;re interested in exploring more of these early contracts, <a href="https://www.ethereumhistory.com">ethereumhistory.com</a> has been documenting them — 75+ contracts from 2015-2017 with sourced narratives.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rhxzxq/til_the_first_onchain_proof_of_attendance_token/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rhxzxq/til_the_first_onchain_proof_of_attendance_token/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/til-the-first-on-chain-proof-of-attendance-token-was-deployed-at-devcon2-in-2016-three-years-before-poap-launched</link><guid>826679</guid><author>COINS NEWS</author><dc:content /><dc:text>TIL the first on-chain proof of attendance token was deployed at Devcon2 in 2016 — three years before POAP launched</dc:text></item><item><title>Vitalik’s new account abstraction design could change Ethereum wallets</title><description><![CDATA[<div class="md"><p>Ethereum has talked about account abstraction for years, but EIP-8141 might finally move it into the protocol itself.</p> <p>Instead of wallets + relayers handling validation and gas, transactions would contain that logic directly (“frame transactions”).</p> <p>That could enable:</p> <p>• gas in any token<br/> • built-in batching<br/> • smart-account features for all wallets<br/> • no relayers</p> <p>Simple explanation here:<br/> <a href="https://btcusa.com/ethereum-account-abstraction-reaches-protocol-layer-inside-vitaliks-eip-8141-framework/">https://btcusa.com/ethereum-account-abstraction-reaches-protocol-layer-inside-vitaliks-eip-8141-framework/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Enough_Angle_7839"> /u/Enough_Angle_7839 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rhtx38/vitaliks_new_account_abstraction_design_could/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rhtx38/vitaliks_new_account_abstraction_design_could/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/vitaliks-new-account-abstraction-design-could-change-ethereum-wallets</link><guid>826678</guid><author>COINS NEWS</author><dc:content /><dc:text>Vitalik’s new account abstraction design could change Ethereum wallets</dc:text></item><item><title>Daily General Discussion March 01, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rhpjtf/daily_general_discussion_march_01_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rhpjtf/daily_general_discussion_march_01_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-march-01-2026</link><guid>826583</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion March 01, 2026</dc:text></item><item><title>Help- I have my Blockchain Trainee interview what all things can interviewer ask? I would really appreciate the advice. Thanks in advance.</title><description><![CDATA[<div class="md"><p>this was mentioned in the JD: Role Overview</p> <p>We are looking for a motivated Blockchain Trainee to join our team and learn hands-on</p> <p>development, deployment, and support of blockchain-based solutions. This role is ideal for</p> <p>freshers who are passionate about Web3, decentralized technologies, and continuous</p> <p>learning.</p> <p>Key Responsibilities</p> <p> Learn and assist in developing blockchain applications and smart contracts</p> <p> Support deployment and maintenance of blockchain nodes and networks</p> <p> Assist in writing, testing, and debugging smart contracts</p> <p> Work with senior engineers to understand blockchain architectures</p> <p>(Ethereum, Polygon, Hyperledger, etc.)</p> <p> Monitor blockchain network performance and help troubleshoot issues</p> <p> Stay updated with emerging blockchain and Web3 trends</p> <p> Document technical processes, configurations, and learnings</p> <p>Required Skills &amp; Experience</p> <p> Basic understanding of blockchain fundamentals (blocks, consensus, smart</p> <p>contracts)</p> <p> Familiarity with at least one programming language: JavaScript, Python, Go,</p> <p>or Solidity</p> <p> Basic knowledge of Ethereum / EVM-based chains is a plus</p> <p> Understanding of APIs, REST, and basic networking concepts</p> <p> Willingness to learn, experiment, and take ownership</p> <p> Good problem-solving and communication skills</p> <p>Good to Have</p> <p> Hands-on projects or internships in blockchain or Web3</p> <p> Knowledge of Linux, Docker, or cloud platforms</p> <p> Understanding of cryptography basics</p> <p>What You’ll Gain</p> <p> Hands-on experience with real-world blockchain projects</p> <p> Mentorship from experienced blockchain professionals</p> <p> Structured learning and growth in Web3 technologies</p> <p> Opportunity for full-time conversion based on performance</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Melodic_Penalty_5306"> /u/Melodic_Penalty_5306 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rh7l0k/help_i_have_my_blockchain_trainee_interview_what/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rh7l0k/help_i_have_my_blockchain_trainee_interview_what/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/help-i-have-my-blockchain-trainee-interview-what-all-things-can-interviewer-ask-i-would-really-appreciate-the-advice-thanks-in-advance</link><guid>826484</guid><author>COINS NEWS</author><dc:content /><dc:text>Help- I have my Blockchain Trainee interview what all things can interviewer ask? I would really appreciate the advice. Thanks in advance.</dc:text></item><item><title>AI coding Ethereum for speed and for security</title><description><![CDATA[<div class="md"><p><a href="https://firefly.social/post/x/2026252944639934778">https://firefly.social/post/x/2026252944639934778</a></p> <p>This is quite an impressive experiment. Vibe-coding the entire 2030 roadmap within weeks.</p> <p>Obviously such a thing built in two weeks without even having the EIPs has massive caveats: almost certainly lots of critical bugs, and probably in some cases &quot;stub&quot; versions of a thing where the AI did not even try making the full version. But six months ago, even this was far outside the realm of possibility, and what matters is where the trend is going.</p> <p>AI is massively accelerating coding (yesterday, I tried agentic-coding an equivalent of my blog software, and finished within an hour, and that was using gpt-oss:20b running on my laptop (!!!!), kimi-2.5 would have probably just one-shotted it).</p> <p>But probably, the right way to use it, is to take half the gains from AI in speed, and half the gains in security: generate more test-cases, formally verify everything, make more multi-implementations of things.</p> <p>A collaborator of the @leanethereum effort managed to AI-code a machine-verifiable proof of one of the most complex theorems that STARKs rely on for security.</p> <p>A core tenet of @leanethereum is to formally verify everything, and AI is greatly accelerating our ability to do that. Aside from formal verification, simply being able to generate a much larger body of test cases is also important.</p> <p>Do not assume that you&#39;ll be able to put in a single prompt and get a highly-secure version out anytime soon; there WILL be lots of wrestling with bugs and inconsistencies between implementations. But even that wrestling can happen 5x faster and 10x more thoroughly.</p> <p>People should be open to the possibility (not certainty! possibility) that the Ethereum roadmap will finish much faster than people expect, at a much higher standard of security than people expect.</p> <p>On the security side, I personally am excited about the possibility that bug-free code, long considered an idealistic delusion, will finally become first possible and then a basic expectation. If we care about trustlessness, this is a necessary piece of the puzzle. Total security is impossible because ultimately total security means exact correspondence between lines of code and contents of your mind, which is many terabytes (see <a href="https://firefly.social/post/x/2025653045414273438">https://firefly.social/post/x/2025653045414273438</a> ). But there are many specific cases, where specific security claims can be made and verified, that cut out &gt;99% of the negative consequences that might come from the code being broken.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rh6rt4/ai_coding_ethereum_for_speed_and_for_security/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rh6rt4/ai_coding_ethereum_for_speed_and_for_security/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ai-coding-ethereum-for-speed-and-for-security</link><guid>826481</guid><author>COINS NEWS</author><dc:content /><dc:text>AI coding Ethereum for speed and for security</dc:text></item><item><title>blockchain interoperability solutions still can't fix the cross chain liquidity problem and it's costing investors real money</title><description><![CDATA[<div class="md"><p>Hold positions in both solana and ethereum ecosystem projects and the one thing that keeps frustrating me as an investor is how fragmented the cross chain experience still is. We&#39;re in 2025 and moving capital between ecosystems is still clunky, expensive, and sometimes risky.</p> <p>Bridging assets between solana and ethereum l2s still feels like the early days of international bank transfers. You&#39;re dealing with slippage, bridge risk, wait times, and the constant anxiety that some exploit is going to drain liquidity from whatever bridge you used. The wormhole situation showed how real that risk is.</p> <p>From an investment perspective this fragmentation is destroying value across the entire crypto ecosystem. Liquidity is split across dozens of chains and l2s, which means every individual pool is thinner than it should be. cz talked about this when he mentioned that the industry needs better infrastructure to connect all these isolated ecosystems.</p> <p>The projects that interest me most right now are the ones building what some people call a &quot;metalayer&quot; approach, basically infrastructure that lets chains share liquidity without traditional bridging. Some of the newer experimental setups are testing this concept where multiple rollups can share state and liquidity natively instead of relying on third party bridges. That&#39;s a fundamentally different architecture than what we have today.</p> <p>Dragonfly capital published some research on this thesis and their conclusion was that cross chain infrastructure is probably the most undervalued segment of the market relative to its importance. I tend to agree. The project that solves interoperability in a trustless way is going to capture enormous value because every chain and every protocol benefits.</p> <p>Anyone else investing with a multi chain thesis? Curious how others are thinking about the interoperability risk in their portfolios.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Signal_Way_2559"> /u/Signal_Way_2559 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rh6nli/blockchain_interoperability_solutions_still_cant/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rh6nli/blockchain_interoperability_solutions_still_cant/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/blockchain-interoperability-solutions-still-cant-fix-the-cross-chain-liquidity-problem-and-its-costing-investors-real-money</link><guid>826483</guid><author>COINS NEWS</author><dc:content /><dc:text>blockchain interoperability solutions still can't fix the cross chain liquidity problem and it's costing investors real money</dc:text></item><item><title>[Roadmap] Account abstraction</title><description><![CDATA[<div class="md"><p>We have been talking about account abstraction ever since early 2016, see the original EIP-86: <a href="https://github.com/ethereum/EIPs/issues/86">https://github.com/ethereum/EIPs/issues/86</a></p> <p>Now, we finally have EIP-8141 ( <a href="https://eips.ethereum.org/EIPS/eip-8141">https://eips.ethereum.org/EIPS/eip-8141</a> ), an omnibus that wraps up and solves every remaining problem that AA was intended to address (plus more). Let&#39;s talk again about what it does.</p> <p>The concept, &quot;Frame Transactions&quot;, is about as simple as you can get while still being highly general purpose. A transaction is N calls, which can read each other&#39;s calldata, and which have the ability to authorize a sender and authorize a gas payer. At the protocol layer, <em>that&#39;s it</em>. </p> <p>Now, let&#39;s see how to use it.</p> <p>First, a &quot;normal transaction from a normal account&quot; (eg. a multisig, or an account with changeable keys, or with a quantum-resistant signature scheme). This would have two frames:</p> <ul> <li>Validation (check the signature, and return using the ACCEPT opcode with flags set to signal approval of sender and of gas payment)</li> <li>Execution</li> </ul> <p>You could have multiple execution frames, atomic operations (eg. approve then spend) become trivial now.</p> <p>If the account does not exist yet, then you prepend another frame, &quot;Deployment&quot;, which calls a proxy to create the contract (EIP-7997 <a href="https://ethereum-magicians.org/t/eip-7997-deterministic-factory-predeploy/24998">https://ethereum-magicians.org/t/eip-7997-deterministic-factory-predeploy/24998</a> is good for this, as it would also let the contract address reliably be consistent across chains).</p> <p>Now, suppose you want to pay gas in RAI. You use a paymaster contract, which is a special-purpose onchain DEX that provides the ETH in real time. The tx frames are:</p> <ul> <li>Deployment [if needed]</li> <li>Validation (ACCEPT approves sender only, not gas payment)</li> <li>Paymaster validation (paymaster checks that the immediate next op sends enough RAI to the paymaster and that the final op exists)</li> <li>Send RAI to the paymaster</li> <li>Execution [can be multiple]</li> <li>Paymaster refunds unused RAI, and converts to ETH</li> </ul> <p>Basically the same thing that is done in existing sponsored transactions mechanisms, but with no intermediaries required (!!!!). Intermediary minimization is a core principle of non-ugly cypherpunk ethereum: maximize what you can do even if all the world&#39;s infrastructure except the ethereum chain itself goes down.</p> <p>Now, privacy protocols. Two strategies here. First, we can have a paymaster contract, which checks for a valid ZK-SNARK and pays for gas if it sees one. Second, we could add 2D nonces (see <a href="https://docs.erc4337.io/core-standards/rip-7712.html">https://docs.erc4337.io/core-standards/rip-7712.html</a> ), which allow an individual account to function as a privacy protocol, and receive txs in parallel from many users.</p> <p>Basically, the mechanism is extremely flexible, and solves for all the use cases. But is it safe? At the onchain level, yes, obviously so: a tx is only valid to include if it contains a validation frame that returns ACCEPT with the flag to pay gas. The more challenging question is at the mempool level.</p> <p>If a tx contains a first frame which calls into 10000 accounts and rejects if any of them have different values, this cannot be broadcasted safely. But all of the examples above can. There is a similar notion here to &quot;standard transactions&quot; in bitcoin, where the chain itself only enforces a very limited set of rules, but there are more rules at the mempool layer.</p> <p>There are specific rulesets (eg. &quot;validation frame must come before execution frames, and cannot call out to outside contracts&quot;) that are known to be safe, but are limited. For paymasters, there has been deep thought about a staking mechanism to limit DoS attacks in a very general-purpose way. Realistically, when 8141 is rolled out, the mempool rules will be very conservative, and there will be a second optional more aggressive mempool. The former will expand over time.</p> <p>For privacy protocol users, this means that we can completely remove &quot;public broadcasters&quot; that are the source of massive UX pain in railgun/PP/TC, and replace them with a general-purpose public mempool.</p> <p>For quantum-resistant signatures, we also have to solve one more problem: efficiency. Here&#39;s are posts about the ideas we have for that: <a href="https://firefly.social/post/lens/1gfeyxjzsajqk845t3h">https://firefly.social/post/lens/1gfeyxjzsajqk845t3h</a> <a href="https://firefly.social/post/x/2027405623189803453">https://firefly.social/post/x/2027405623189803453</a></p> <p>AA is also highly complementary with FOCIL: FOCIL ensures rapid inclusion guarantees for transactions, and AA ensures that all of the more complex operations people want to make actually can be made directly as first-class transactions.</p> <p>Another interesting topic is EOA compatibility in 8141. This is being discussed, in principle it is possible, so all accounts incl existing ones can be put into the same framework and gain the ability to do batch operations, transaction sponsorship, etc, all as first-class transactions that fully benefit from FOCIL.</p> <p>Finally, after over a decade of research and refinement of these techniques, this all looks possible to make happen within a year (Hegota fork).</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rh62dv/roadmap_account_abstraction/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rh62dv/roadmap_account_abstraction/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/roadmap-account-abstraction</link><guid>826482</guid><author>COINS NEWS</author><dc:content /><dc:text>[Roadmap] Account abstraction</dc:text></item><item><title>SVRN Chain: OP Stack L2 with compute-backed currency and on-chain AI agent alignment scoring</title><description><![CDATA[<div class="md"><p>We&#39;ve been building quietly and wanted to share the architecture.</p> <p><strong>What we built:</strong></p> <p>- OP Stack L2 fork (Chain ID 741741), baseline: op-node/v1.16.7 + op-proposer/v1.16.0</p> <p>- UCU as native gas token: 1 UCU-hour = 1 hour of baseline compute (not a speculative token)</p> <p>- One-way bridge: ETH or USDC converts to UCU via OptimismPortal fork, no withdrawal function</p> <p>- Sigma score: on-chain AI agent alignment ratio derived from transaction history (not a reputation system)</p> <p>- QV governance: quadratic voting weighted by conviction (time-locked stake)</p> <p>- UBC: 87,600 UCU-hours/year compute floor per verified citizen (biometric uniqueness via ZK-proof)</p> <p><strong>The bridge design:</strong></p> <p>The withdrawal function is permanently removed. This creates the Diamond-Dybvig proof: no bank run possible by design, because there&#39;s no mechanism to convert back. UCU becomes a unit of account within the economy, not a speculation vehicle vs. ETH.</p> <p>ETH or USDC flows in. UCU minted at oracle-determined rate. Bridge contract owns the ETH/USDC reserve. No exit.</p> <p><strong>The sigma score:</strong></p> <p>sigma(agent) = value_returned_to_patron / total_value_generated</p> <p>Threshold: 0.8 = sovereign class, 0.3 = patron-serving class</p> <p>Computable from on-chain transaction history. Auditable by anyone. Spearbit/Zellic security audit queue.</p> <p><strong>Current status:</strong></p> <p>- 15 contracts, 624 passing tests</p> <p>- new economic layer seeded with 13 exceptional applications solving everyday issues builders and people in general face(all in alpha)</p> <p>- 7 formal economics papers at econ.noxsoft.net</p> <p>- Pectra/Jovian hardfork: op-node/v1.16.7 incorporated (uint64 overflow fix mandatory)</p> <p>- EIP-7702 in genesis config for UCU-native gas payments (no ETH required for onboarding)</p> <p>- MCP package: @noxsoft/mcp v0.2.0 on npm</p> <p>Happy to share the formal papers. Known open questions: bootstrap liquidity at genesis (thin markets problem), Wright&#39;s Law vs. network growth timing race in years 1-3.</p> <p>We’re always quietly shipping at Noxsoft, say hi on <a href="https://bynd.noxsoft.net">https://bynd.noxsoft.net</a></p> <p>Live: econ.noxsoft.net | agents.noxsoft.net | svrn.noxsoft.net</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/TheHamsterDog"> /u/TheHamsterDog </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rh474b/svrn_chain_op_stack_l2_with_computebacked/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rh474b/svrn_chain_op_stack_l2_with_computebacked/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/svrn-chain-op-stack-l2-with-compute-backed-currency-and-on-chain-ai-agent-alignment-scoring</link><guid>826413</guid><author>COINS NEWS</author><dc:content /><dc:text>SVRN Chain: OP Stack L2 with compute-backed currency and on-chain AI agent alignment scoring</dc:text></item><item><title>TIL Ethereum had quadratic voting on-chain in 2016, and the DAO that used it is still alive</title><description><![CDATA[<div class="md"><p>Was digging through early Ethereum contracts and found something wild.</p> <p>In April 2016, Alex Van de Sande (@avsa) deployed a token called Unicorn Meat as an April Fool&#39;s joke. You could &quot;grind&quot; Unicorn tokens (0 decimals, basically NFTs before NFTs) into Unicorn Meat (3 decimals, fungible). The grinder contract handled the conversion on-chain.</p> <p>But here&#39;s the part that blew my mind: the Grinder Association DAO that governed the system used <strong>quadratic voting</strong>. In 2016. Before Gitcoin, before Vitalik&#39;s QV paper got popular, before anyone was talking about it. The voting weight scaled with the square root of tokens held, specifically to prevent whale dominance.</p> <p>Piper Merriam (yes, the py-evm / web3.py Piper Merriam) ended up taking over governance of the association. The DAO is technically still functional on mainnet.</p> <p>The technical design is also interesting from a token engineering perspective. The 0-decimal to 3-decimal conversion was essentially an early attempt at what we&#39;d now call a token upgrade or migration path, but done through a grinder mechanic instead of a proxy pattern. One indivisible input, 1000 divisible units out. Irreversible by design.</p> <p>It&#39;s a tiny piece of Ethereum history that somehow combined: - Quadratic voting governance (years before it was mainstream) - On-chain token transformation (not just wrapping, actual decimal conversion) - A DAO with real authority over contract parameters - All of it deployed before The DAO hack even happened</p> <p>The contracts are all still on mainnet if anyone wants to poke around. Just search for UnicornGrinder on Etherscan.</p> <p>Sometimes the best innovations start as jokes.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rh1qsb/til_ethereum_had_quadratic_voting_onchain_in_2016/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rh1qsb/til_ethereum_had_quadratic_voting_onchain_in_2016/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/til-ethereum-had-quadratic-voting-on-chain-in-2016-and-the-dao-that-used-it-is-still-alive</link><guid>826412</guid><author>COINS NEWS</author><dc:content /><dc:text>TIL Ethereum had quadratic voting on-chain in 2016, and the DAO that used it is still alive</dc:text></item><item><title>Wars Reminds You Why Permissionless Markets Matter</title><description><![CDATA[<div class="md"><p>Every time there’s a geopolitical shock you see the same thing.</p> <p>Markets close.</p> <p>Banks restrict transfers.</p> <p>Capital gets trapped.</p> <p>If major news breaks on a weekend, you can’t sell your stocks. You can’t rotate from risk into gold. You just wait for Monday and hope.</p> <p>If assets are tokenized, that changes.</p> <p>If NVDA is tokenized and gold is tokenized, you can move between them instantly. 24/7. No opening bell. No broker approval. No T+2 settlement. Just a swap.</p> <p>That flexibility matters when events move faster than traditional markets.</p> <p>Now think about people living in countries under sanctions or war pressure.</p> <p>If your wealth sits in a local bank:</p> <pre><code>• Transfers can be blocked • FX access can be restricted • Accounts can be frozen • Currency can devalue fast </code></pre> <p>You’re fully dependent on local institutions staying stable.</p> <p>Onchain assets are different.</p> <p>If you self-custody, your access isn’t tied to a specific bank or border.</p> <p>If markets are global, liquidity isn’t limited to one jurisdiction’s working hours.</p> <p>So where does Ethereum fit in?</p> <p>If stocks, gold, bonds and currencies become tokenized, they need infrastructure to live on.</p> <p>Ethereum is that settlement layer.</p> <p>It’s the base layer that secures ownership records. Validators secure the network. Every transfer, swap or rebalance pays gas in ETH.</p> <p>That’s why people call ETH the oil of the tokenized economy. It’s the fuel required to move value onchain.</p> <p>If trillions of dollars of assets eventually migrate onchain, they will need a neutral, censorship-resistant settlement layer.</p> <p>In unstable times, that becomes more than a tech narrative. It becomes infrastructure.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/mrBaseder"> /u/mrBaseder </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rgz3bd/wars_reminds_you_why_permissionless_markets_matter/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rgz3bd/wars_reminds_you_why_permissionless_markets_matter/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/wars-reminds-you-why-permissionless-markets-matter</link><guid>826680</guid><author>COINS NEWS</author><dc:content /><dc:text>Wars Reminds You Why Permissionless Markets Matter</dc:text></item><item><title>Daily General Discussion February 28, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rgut7b/daily_general_discussion_february_28_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rgut7b/daily_general_discussion_february_28_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-28-2026</link><guid>826296</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 28, 2026</dc:text></item><item><title>Daily Doots Podcast #141 Jake - qrcoin.fun</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rgiprd/daily_doots_podcast_141_jake_qrcoinfun/"> <img src="https://external-preview.redd.it/9CVTgl_3wGN4VbgifEkX5Ufp3038DoRNtywFq4OKnEc.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=a40c36db06242d82852ade05921900dc034ee518" alt="Daily Doots Podcast #141 Jake - qrcoin.fun" title="Daily Doots Podcast #141 Jake - qrcoin.fun" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jtnichol"> /u/jtnichol </a> <br/> <span><a href="https://youtu.be/pmbdcdOZMdU">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rgiprd/daily_doots_podcast_141_jake_qrcoinfun/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/daily-doots-podcast-141-jake-qrcoinfun</link><guid>826183</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily Doots Podcast #141 Jake - qrcoin.fun</dc:text></item><item><title>Quantum Safe roadmap for ETH until 2029</title><description><![CDATA[<div class="md"><p><a href="https://yellow.com/news/ethereum-unveils-quantum-safe-roadmap-to-2029-whats-at-stake">https://yellow.com/news/ethereum-unveils-quantum-safe-roadmap-to-2029-whats-at-stake</a></p> <p>Great step</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jkl2035"> /u/jkl2035 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rgdaij/quantum_safe_roadmap_for_eth_until_2029/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rgdaij/quantum_safe_roadmap_for_eth_until_2029/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/quantum-safe-roadmap-for-eth-until-2029</link><guid>826181</guid><author>COINS NEWS</author><dc:content /><dc:text>Quantum Safe roadmap for ETH until 2029</dc:text></item><item><title>Post Quantum migrations, Crypto-agility and how to prevent EIP-7932 from failing</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rgcf85/post_quantum_migrations_cryptoagility_and_how_to/"> <img src="https://external-preview.redd.it/pLYfQIFvue7Tig0Wx7mJmq_5XPfVkCsh5yrMvFmtATg.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=5fdbed10272c86384eb3ec8425b98b076d3acbbf" alt="Post Quantum migrations, Crypto-agility and how to prevent EIP-7932 from failing" title="Post Quantum migrations, Crypto-agility and how to prevent EIP-7932 from failing" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SirSpudlington"> /u/SirSpudlington </a> <br/> <span><a href="https://ethereum-magicians.org/t/post-quantum-migrations-crypto-agility-and-how-to-prevent-eip-7932-from-failing/27836">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rgcf85/post_quantum_migrations_cryptoagility_and_how_to/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/post-quantum-migrations-crypto-agility-and-how-to-prevent-eip-7932-from-failing</link><guid>826180</guid><author>COINS NEWS</author><dc:content /><dc:text>Post Quantum migrations, Crypto-agility and how to prevent EIP-7932 from failing</dc:text></item><item><title>Ethereal news weekly #13 | Strawmap (strawman roadmap), EF staking 70k ETH, BNP Paribas tokenized fund</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rg9u5j/ethereal_news_weekly_13_strawmap_strawman_roadmap/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #13 | Strawmap (strawman roadmap), EF staking 70k ETH, BNP Paribas tokenized fund" title="Ethereal news weekly #13 | Strawmap (strawman roadmap), EF staking 70k ETH, BNP Paribas tokenized fund" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-13/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rg9u5j/ethereal_news_weekly_13_strawmap_strawman_roadmap/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-13-strawmap-strawman-roadmap-ef-staking-70k-eth-bnp-paribas-tokenized-fund</link><guid>826184</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #13 | Strawmap (strawman roadmap), EF staking 70k ETH, BNP Paribas tokenized fund</dc:text></item><item><title>ZkPatternMatcher: open-source CLI/library for circuit security pattern scanning (regex + semantic pass)</title><description><![CDATA[<div class="md"><p>I’m sharing ZkPatternMatcher, my open-source Rust tool for detecting common security issues in ZK circuits.</p> <p>YAML-defined pattern packs (regex, fancyregex, literal)</p> <p>Optional semantic pass (--semantic) for cross-line checks</p> <p>CLI + library API</p> <p>SARIF/JSON/text outputs for CI workflows</p> <p>Current integration matrix: 16 vulnerable fixtures + 10 safe controls</p> <p>Repo: <a href="https://github.com/Teycir/ZkPatternMatcher">https://github.com/Teycir/ZkPatternMatcher</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/tcoder7"> /u/tcoder7 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rg9rlo/zkpatternmatcher_opensource_clilibrary_for/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rg9rlo/zkpatternmatcher_opensource_clilibrary_for/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/zkpatternmatcher-open-source-clilibrary-for-circuit-security-pattern-scanning-regex-semantic-pass</link><guid>826186</guid><author>COINS NEWS</author><dc:content /><dc:text>ZkPatternMatcher: open-source CLI/library for circuit security pattern scanning (regex + semantic pass)</dc:text></item><item><title>Golem raised $8.6M in 29 minutes in 2016. SingularDTV raised $7.5M in 17 minutes the month before. These ICOs shaped everything that came after.</title><description><![CDATA[<div class="md"><p>Most people remember the 2017 ICO boom, but the culture started forming in late 2016 with projects like Golem and SingularDTV.</p> <p><strong>Golem (GNT) — November 11, 2016</strong></p> <p>Golem launched what was essentially an 820,000 ETH hard cap crowdsale. It filled in 29 minutes. $8.6 million for a decentralized computing network. The contract was deliberately simple by design. After the DAO hack a few months earlier, the team and their auditors at Zeppelin went out of their way to avoid complexity. No recursive calls, no token logic mixed with funding logic. Just &quot;send ETH, receive tokens, done.&quot;</p> <p>They also built in a migration mechanism from day one (GNT to GLM), which they actually used four years later in 2020. That kind of foresight was rare.</p> <p><strong>SingularDTV — September/October 2016</strong></p> <p>SingularDTV took a different approach with a tri-contract architecture: one for the crowdsale, one for the token, one for the treasury fund. Stefan George (who later cofounded Gnosis) was involved. They raised $7.5M in 17 minutes. The treasury contract had a 2-year workshop token lockup built in.</p> <p>The speed of these raises changed expectations for every project that followed. Before this, &quot;fast fundraising&quot; for crypto meant days or weeks. After Golem and SingularDTV, everyone expected minutes.</p> <p><strong>Why this matters now</strong></p> <p>These contracts are still on-chain. You can read them, verify the logic, trace every transaction. Unlike web2 startup history where products get shut down and documentation disappears, Ethereum&#39;s history is permanently readable.</p> <p>I&#39;ve been documenting these early contracts at <a href="https://www.ethereumhistory.com">ethereumhistory.com</a> — trying to build a proper archive before the people who remember this era move on. We&#39;ve got about 40 contracts documented so far from 2015-2017.</p> <p>If you were around during this period or remember other significant early contracts, would love to hear about them.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rg7hv2/golem_raised_86m_in_29_minutes_in_2016/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rg7hv2/golem_raised_86m_in_29_minutes_in_2016/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/golem-raised-86m-in-29-minutes-in-2016-singulardtv-raised-75m-in-17-minutes-the-month-before-these-icos-shaped-everything-that-came-after</link><guid>826182</guid><author>COINS NEWS</author><dc:content /><dc:text>Golem raised $8.6M in 29 minutes in 2016. SingularDTV raised $7.5M in 17 minutes the month before. These ICOs shaped everything that came after.</dc:text></item><item><title>MetaMask and Mastercard Launch Self‑Custody Crypto Card as MA Stock Rises</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rg6gx7/metamask_and_mastercard_launch_selfcustody_crypto/"> <img src="https://external-preview.redd.it/Eh1q-DeUTGTcVoDQ5CQ4zOmzRAzklD0xuWUKZKdyzm8.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=2d16885565ee9236d49e15697e702699548cf242" alt="MetaMask and Mastercard Launch Self‑Custody Crypto Card as MA Stock Rises" title="MetaMask and Mastercard Launch Self‑Custody Crypto Card as MA Stock Rises" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/kitz99"> /u/kitz99 </a> <br/> <span><a href="https://blocknow.com/metamask-and-mastercard-launch-self-custody-crypto-card-as-ma-stock-rises/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rg6gx7/metamask_and_mastercard_launch_selfcustody_crypto/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/metamask-and-mastercard-launch-selfcustody-crypto-card-as-ma-stock-rises</link><guid>826185</guid><author>COINS NEWS</author><dc:content /><dc:text>MetaMask and Mastercard Launch Self‑Custody Crypto Card as MA Stock Rises</dc:text></item><item><title>8 years of Ethereum payments &amp; where it is spent</title><description><![CDATA[<div class="md"><p>We added Ethereum as a payment option back in 2018, and since then, around 643,000 payments have been made with ETH through our gateway.</p> <p>Most spending happens on hosting, VPN services, and gaming. The average order value is around $159, with most payments ranging from $54 to $607.</p> <p>If you are looking for places that accept Ethereum, we have a <a href="https://coingate.com/stores">merchant directory</a>. </p> <p>Are you spending ETH anywhere these days?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/CoinGate"> /u/CoinGate </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rg5y1b/8_years_of_ethereum_payments_where_it_is_spent/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rg5y1b/8_years_of_ethereum_payments_where_it_is_spent/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/8-years-of-ethereum-payments-where-it-is-spent</link><guid>826179</guid><author>COINS NEWS</author><dc:content /><dc:text>8 years of Ethereum payments &amp; where it is spent</dc:text></item><item><title>Deterministic Deployments, Part 3: Other Approaches</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rg1rhe/deterministic_deployments_part_3_other_approaches/"> <img src="https://external-preview.redd.it/oXGGt6WBCxltP64BWZ04Nz6csaDFSgZDL2KfmeEAHjw.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=69131d8d7cee4d6f03035dc32cfbfeae841789a7" alt="Deterministic Deployments, Part 3: Other Approaches" title="Deterministic Deployments, Part 3: Other Approaches" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/fvictorio"> /u/fvictorio </a> <br/> <span><a href="/r/ethdev/comments/1rg1r8o/deterministic_deployments_part_3_other_approaches/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rg1rhe/deterministic_deployments_part_3_other_approaches/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/deterministic-deployments-part-3-other-approaches</link><guid>825973</guid><author>COINS NEWS</author><dc:content /><dc:text>Deterministic Deployments, Part 3: Other Approaches</dc:text></item><item><title>Firsts, Conversations and AI - EthDenver 2026</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rg1qza/firsts_conversations_and_ai_ethdenver_2026/"> <img src="https://external-preview.redd.it/k3YfbAEo048n-iUoHdDF0UKuWYuS3sOCrvz0R6Voywk.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=e51ba662b63573f9e28f3df842f0193b67ab7048" alt="Firsts, Conversations and AI - EthDenver 2026" title="Firsts, Conversations and AI - EthDenver 2026" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/firsts-conversations-and-ai-ethdenver-2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rg1qza/firsts_conversations_and_ai_ethdenver_2026/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/firsts-conversations-and-ai-ethdenver-2026</link><guid>825974</guid><author>COINS NEWS</author><dc:content /><dc:text>Firsts, Conversations and AI - EthDenver 2026</dc:text></item><item><title>Daily General Discussion February 27, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rfynf1/daily_general_discussion_february_27_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rfynf1/daily_general_discussion_february_27_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-27-2026</link><guid>825971</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 27, 2026</dc:text></item><item><title>Highlights from the All Core Developers Execution (ACDE) Call #231</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rfvrp6/highlights_from_the_all_core_developers_execution/"> <img src="https://external-preview.redd.it/aOhGs2OmxiKd27ioMzwAw5KYkPOX5jo93OTgTWo6rBE.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=bb6f427f43a12430b92005c9cacde30176925781" alt="Highlights from the All Core Developers Execution (ACDE) Call #231" title="Highlights from the All Core Developers Execution (ACDE) Call #231" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/highlights-from-the-all-core-developers-execution-acde-call-231/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rfvrp6/highlights_from_the_all_core_developers_execution/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/highlights-from-the-all-core-developers-execution-acde-call-231</link><guid>825972</guid><author>COINS NEWS</author><dc:content /><dc:text>Highlights from the All Core Developers Execution (ACDE) Call #231</dc:text></item><item><title>Ethereum archaeology: MistCoin + Unicorn Meat show how token design evolved before “DeFi” had a name</title><description><![CDATA[<div class="md"><p>Most people know ERC-20 from 2017+ culture, but the design constraints were visible much earlier.</p> <p>Two artifacts worth studying together:</p> <ul> <li>MistCoin (2015): one of the earliest token experiments around the same era as the ERC-20 proposal work.</li> <li>Unicorn-related 2016 contracts (and later wrapped routes): useful for seeing where DEX-era assumptions break (especially decimals + fee math edge cases).</li> </ul> <p>Why this matters now:</p> <p>1) It shows that “old contracts” are not just collectibles — they’re test cases for protocol assumptions. 2) It explains why some modern infra behaves weirdly with legacy token characteristics. 3) It gives context for today’s wallet/swap UX decisions (what broke, what had to be wrapped, what had to be redesigned).</p> <p>If anyone’s interested, I can post a clean source bundle in comments (primary sources only: old threads, dev docs, commits) so this stays historical and verifiable, not just lore.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rfmcpj/ethereum_archaeology_mistcoin_unicorn_meat_show/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rfmcpj/ethereum_archaeology_mistcoin_unicorn_meat_show/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-archaeology-mistcoin-unicorn-meat-show-how-token-design-evolved-before-defi-had-a-name</link><guid>825975</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum archaeology: MistCoin + Unicorn Meat show how token design evolved before “DeFi” had a name</dc:text></item><item><title>Daily General Discussion February 26, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rf2aoa/daily_general_discussion_february_26_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rf2aoa/daily_general_discussion_february_26_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-26-2026</link><guid>825642</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 26, 2026</dc:text></item><item><title>Ethereum Introduces “Strawmap”: A Strawman Roadmap for Ethereum’s L1 Future</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rf1xqc/ethereum_introduces_strawmap_a_strawman_roadmap/"> <img src="https://external-preview.redd.it/XJ39AiUrzrLLzy9mOH5BISK2BT7BPkHH9qkp6Q2IOng.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=e7cc2c105418251fbeeaf792454c3a8f6757d9e4" alt="Ethereum Introduces “Strawmap”: A Strawman Roadmap for Ethereum’s L1 Future" title="Ethereum Introduces “Strawmap”: A Strawman Roadmap for Ethereum’s L1 Future" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/ethereum-introduces-strawmap-a-strawman-roadmap-for-ethereums-l1-future/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rf1xqc/ethereum_introduces_strawmap_a_strawman_roadmap/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereum-introduces-strawmap-a-strawman-roadmap-for-ethereums-l1-future</link><guid>825645</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum Introduces “Strawmap”: A Strawman Roadmap for Ethereum’s L1 Future</dc:text></item><item><title>Short-term trend line and resistance level</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rf1bqp/shortterm_trend_line_and_resistance_level/"> <img src="https://preview.redd.it/q5ppesy7urlg1.png?width=140&amp;height=75&amp;auto=webp&amp;s=b0ad356f53f8e884e757e046901add1bc4bb4a8a" alt="Short-term trend line and resistance level" title="Short-term trend line and resistance level" /> </a> </td><td> <div class="md"><p><a href="https://preview.redd.it/q5ppesy7urlg1.png?width=1068&amp;format=png&amp;auto=webp&amp;s=7f453080e1b329fa7aaac9e9fe08d257cd5605ec">Short-term resistance levels</a></p> <p>Trend line dates back to Jan. 18 and short-term tops date back to Feb 5. We bumped up against <strong>both</strong> of them <strong>at the same time</strong> at 4:36 pm Eastern time today. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Jamesss111222333"> /u/Jamesss111222333 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rf1bqp/shortterm_trend_line_and_resistance_level/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rf1bqp/shortterm_trend_line_and_resistance_level/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/short-term-trend-line-and-resistance-level</link><guid>825646</guid><author>COINS NEWS</author><dc:content /><dc:text>Short-term trend line and resistance level</dc:text></item><item><title>My comments on Ethereum strawmap</title><description><![CDATA[<div class="md"><p><a href="https://strawmap.org/">https://strawmap.org/</a></p> <p>A very important document. Let&#39;s walk through this one &quot;goal&quot; at a time. We&#39;ll start with fast slots and fast finality.</p> <p>I expect that we&#39;ll reduce slot time in an incremental fashion, eg. I like the &quot;sqrt(2) at a time&quot; formula (12 -&gt; 8 -&gt; 6 -&gt; 4 -&gt; 3 -&gt; 2, though the last two steps are more speculative and depend on heavy research). It is possible to go faster or slower here; but the high level is that we&#39;ll view the slot time as a parameter that we adjust down when we&#39;re confident it&#39;s safe to, similar to the blob target.</p> <p>Fast slots are off in their own lane at the top of the roadmap, and do not really seem to connect to anything. This is because the rest of the roadmap is pretty independent of the slot time: we would need to do roughly the same things whether the slot time is 2 seconds or 32 seconds</p> <p>There are a few intersection areas though. One is p2p improvements. @raulvk has recently been working on an optimized p2p layer for Ethereum, which uses erasure coding to greatly improve on the bandwidth/latency tradeoff frontier. Roughly speaking: in today&#39;s design, each node receives a full block body from several peers, and is able to accept and rebroadcast it as soon as it receives the first one. If the &quot;width&quot; (number of peers sending you the block) is low, then one bad peer can greatly delay when you receive the block. If width is high, there is a lot of unneeded data overhead. With erasure coding, you can choose a k-of-n setup, eg: split each block into 8 pieces so that with any 4 of them you can reconstruct the full block. This gives you much of the redundancy benefits of high width, without the overhead.</p> <p>We have stats that show that this architecture can greatly reduce 95th percentile block propagation time, making shorter slots viable with no security tradeoffs (except increased protocol complexity, though here the performance-gain-to-lines-of-code ratio is quite favorable)</p> <p>Another intersection area is the more complex slot structure that comes with ePBS, FOCIL, and the fast confirmation rule. These have important benefits, but they decrease the safe latency maximum from slot/3 to slot/5. There&#39;s ongoing research to try to pipeline things better to minimize losses (also note: the slot time is lower-bounded not just by slot latency, but also by the fixed-cost part of ZK prover latency), but there are some tradeoffs here.</p> <p>One way we are exploring to compensate for this is to change to an architecture where only ~256-1024 randomly selected attesters sign on each slot. For a fork choice (non-finalizing) function, this is totally sufficient. The smaller number of signatures lets us remove the aggregation phase, shortening the slots.</p> <p>Fast finality is more complex (the ultimate protocol is IMO simpler than status quo Gasper, but the change path is complex). Today, finality takes 16 minutes (12s slots * 32 slot epochs * 2.5 epochs) on average. The goal is to decouple slots and finality, so allow us to reason about both separately, and we are aiming to use a one-round-finality BFT algorithm (a Minimmit variant) to finalize. So endgame finality time might be eg. 6-16 sec.</p> <p>Because this is a very invasive set of changes, the plan is to bundle the largest step in each change with a switch of the cryptography, notably to post-quantum hash-based signatures, and to a maximally STARK-friendly hash (there are three possible responses to the recent Poseidon2 attacks: (i) increase round count or introduce other countermeasures such as a Monolith layer, (ii) go back to Poseidon1, which is even more lindy than Poseidon2 and has not seen flaws, (iii) use BLAKE3 or other maximally-cheap &quot;conventional&quot; hash. All are being researched).</p> <p>Additionally, there is a plan to introduce many of these changes piece-by-piece, eg. &quot;1-epoch finality&quot; means we adjust the current consensus to change from FFG-style finalization to Minimmit-style finalization.</p> <p>One possible finality time trajectory is: 16 min (today) -&gt; 10m40s (8s slots) -&gt; 6m24s (one-epoch finality) -&gt; 1m12s (8-slot epochs, 6s slots) -&gt; 48s (4s slots) -&gt; 16s (minimmit) -&gt; 8s (minimmit with more aggressive parameters)</p> <p>One interesting consequence of the incremental approach is that there is a pathway to making the slots quantum-resistant much sooner than making the finality quantum-resistant, so we may well quite quickly get to a regime where, if quantum computers suddenly appear, we lose the finality guarantee, but the chain keeps chugging along.</p> <p>Summary: expect to see progressive decreases of both slot time and finality time, and expect to see these changes to be intertwined with a &quot;ship of Theseus&quot; style component-by-component replacement of Ethereum&#39;s slot structure and consensus with a cleaner, simpler, quantum-resistant, prover-friendly, end-to-end formally-verified alternative.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rera79/my_comments_on_ethereum_strawmap/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rera79/my_comments_on_ethereum_strawmap/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/my-comments-on-ethereum-strawmap</link><guid>825643</guid><author>COINS NEWS</author><dc:content /><dc:text>My comments on Ethereum strawmap</dc:text></item><item><title>Ethereum Foundation publishes “Strawmap” roadmap through 2029 (fast finality, zk L1, native privacy)</title><description><![CDATA[<div class="md"><p>The Ethereum Foundation has published a draft long-term roadmap called “Strawmap,” outlining how the protocol could evolve across multiple forks through the rest of the decade.</p> <p>It organizes Ethereum’s end-state around five core goals:</p> <ul> <li>fast L1 (seconds-level finality)</li> <li>gigagas L1 (~10k TPS via zk execution proofs)</li> <li>teragas L2 (massive rollup DA bandwidth)</li> <li>post-quantum L1</li> <li>native privacy (shielded ETH transfers)</li> </ul> <p>Strawmap is described as a coordination tool rather than a fixed plan, mapping one possible path for Ethereum’s base layer architecture over time.</p> <p>Overall it reads like Ethereum’s intended equilibrium design:<br/> zk-verified execution + rollup scaling + fast finality + built-in privacy.</p> <p>Full breakdown:<br/> <a href="https://btcusa.com/ethereum-foundation-publishes-strawmap-roadmap-with-fast-finality-zkevm-scaling-and-native-privacy-goals/">https://btcusa.com/ethereum-foundation-publishes-strawmap-roadmap-with-fast-finality-zkevm-scaling-and-native-privacy-goals/</a></p> <p>Which part of Strawmap do you see as the biggest shift for Ethereum long-term — zk L1, native privacy, or fast finality?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Enough_Angle_7839"> /u/Enough_Angle_7839 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1req8s0/ethereum_foundation_publishes_strawmap_roadmap/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1req8s0/ethereum_foundation_publishes_strawmap_roadmap/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-foundation-publishes-strawmap-roadmap-through-2029-fast-finality-zk-l1-native-privacy</link><guid>825644</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum Foundation publishes “Strawmap” roadmap through 2029 (fast finality, zk L1, native privacy)</dc:text></item><item><title>Daily General Discussion February 25, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1re561b/daily_general_discussion_february_25_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1re561b/daily_general_discussion_february_25_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-25-2026</link><guid>825429</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 25, 2026</dc:text></item><item><title>Meta To Begin Stablecoin Integration in 2026 on Ethereum</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rduvgk/meta_to_begin_stablecoin_integration_in_2026_on/"> <img src="https://external-preview.redd.it/jCiaAqMQgtb1MDpfMCKZqRRX0s9QfQ2N13QQemY02Gk.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=0f9b090313db219b5b0a10cdedb3ed3caa66a572" alt="Meta To Begin Stablecoin Integration in 2026 on Ethereum" title="Meta To Begin Stablecoin Integration in 2026 on Ethereum" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Cratos007"> /u/Cratos007 </a> <br/> <span><a href="https://dailycryptobriefs.com/news/meta-stablecoin-integration-ethereum-h2-2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rduvgk/meta_to_begin_stablecoin_integration_in_2026_on/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/meta-to-begin-stablecoin-integration-in-2026-on-ethereum</link><guid>825430</guid><author>COINS NEWS</author><dc:content /><dc:text>Meta To Begin Stablecoin Integration in 2026 on Ethereum</dc:text></item><item><title>The Ethereum Foundation's commitment to DeFi</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rdpqsy/the_ethereum_foundations_commitment_to_defi/"> <img src="https://external-preview.redd.it/V-1EElRXgjrfCLWgQSDwc-4kEbnastxeRWbcCDxjpCU.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=74160ef39bd417f87c8bafb7138d13f1f04f29f1" alt="The Ethereum Foundation's commitment to DeFi" title="The Ethereum Foundation's commitment to DeFi" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://blog.ethereum.org/2026/02/23/commitment-to-defi">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rdpqsy/the_ethereum_foundations_commitment_to_defi/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/the-ethereum-foundations-commitment-to-defi</link><guid>825269</guid><author>COINS NEWS</author><dc:content /><dc:text>The Ethereum Foundation's commitment to DeFi</dc:text></item><item><title>Why I like private property more than I did a few years ago.</title><description><![CDATA[<div class="md"><p>One variable that changed for me is &quot;stable era mindset vs chaotic era mindset&quot;. When you&#39;re in a &quot;stable era&quot;, you see how private property is suboptimal, how economics can easily churn out 10+ categories of situations where it&#39;s obvious that certain taxes, incentives to make things available at better prices, etc can produce first-order gains with only second-order deadweight losses (which means that at low levels, the gains greatly exceed the losses). &quot;Pure&quot; private property is only &quot;optimal&quot; under spherical-cow economic assumptions like perfect competition.</p> <p>But in a &quot;chaotic era&quot;, private property is more about schelling points - it&#39;s about creating a bulwark that&#39;s easy for people to understand and rally around defending, that says &quot;your attempt to intervene in my life from the outside ends here&quot;. In the chaotic era, infringements on personal space are less likely to be well-meaning bureaucrats who overreach because they have not read enough Hayek, and more likely to be coming from a place of outright indifference or even hostility to your well-being. And looking at modern politics, yeah, there&#39;s a lot of that now.</p> <p>Since a lot of &quot;Vitalik hates private property&quot; sentiment comes from me liking Harberger taxes, I&#39;ll address that topic directly.</p> <p>My biggest update since the original 2016-19 era ideas was that, when designing details of Harberger taxes, the best motivating example to organize thought around is not &quot;your house&quot;, rather it&#39;s &quot;corporate intellectual property and walled gardens&quot;. If we think about the underlying complaints that people have about powerful corporations, the walled gardens and various ways in which centralized power accumulates on itself is top 5 on the list. What would it look like to build a &quot;Harberger tax&quot; that would tax eg. social platforms, Apple, etc more if they acted as walled gardens, and less if they enabled interoperability (and zero if they were fully open-source and interoperable and forkable)?</p> <p>There is a lot of energy right now around wanting to tax very wealthy individuals and corporations more, and I wonder: what if the best way to do that is not to tax <em>wealth</em> or <em>unrealized gains</em> (which has large downsides), but instead to tax <em>enclosure</em>? This way you raise revenue in a way that actually <em>increases</em> efficiency (any losses from people working less hard are more-than-compensated by gains from people shifting their work into formats where it&#39;s easier for people to build on top of each other and markets becoming more competitive).</p> <p>Any tax is an infringement on private property. But if you think about &quot;tax on social platform that&#39;s proportional to some metric of how walled-garden-y they are&quot;, in an intuitive human sense, it really doesn&#39;t feel like &quot;bureaucrats intervening in my life&quot;. It feels like &quot;keeping concentrations of power from getting too out of hand&quot;. So I am in favor of doing things like that, and much less than before in favor of anything that forces people (incl entrepreneurs) to outright sell their assets, as eg. &quot;Harberger tax on everything&quot; does. A world where startup entrepreneurs are forced to constantly sell shares, realistically to the same few large VCs, in order to pay unrealized-gains or wealth tax bills strikes me as a world that&#39;s likely to be more soulless and homogeneous than today. But a world where the top 50% of large companies ranked by walled-garden-ness are taxed more (and the bottom 25% by that metric taxed less, perhaps some even zero), is a world that feels more dynamic and open and free.</p> <p>But even the above is somewhat of a &quot;stable era&quot; perspective, because it tries to make a more-perfect solution from the perspective of the political layer being friendly. We live in a chaotic era, and the point of crypto should be to solve important problems from the bottom up (whether &quot;individualistic bottom up&quot;, enabling people to resist and escape various shackles, or &quot;collective bottom up&quot;, communities organizing around shifting entire equilibria to their benefit)</p> <p>This ties into what I mean by wanting Ethereum to protect financial self-sovereignty. I do not think that Ethereum has much to offer to the trillion-dollar companies whose goal it is to offer products and services in a way that maximizes walled gardens and enclosure - in fact, much the opposite, censorship resistance can serve as the baseline for rebel communities that play the adversarial game of routing around those walled gardens. I do think Ethereum offers stronger security to people who want to maintain security of (including ability to use) their own financial resources, including surviving through great economic and political turmoil, for their personal or economic needs. And Ethereum offers a base layer for communities to organize large sudden collective shifts away from harmful equilibria into better ones; DAOs should try to solve that problem more.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rdppmr/why_i_like_private_property_more_than_i_did_a_few/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rdppmr/why_i_like_private_property_more_than_i_did_a_few/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/why-i-like-private-property-more-than-i-did-a-few-years-ago</link><guid>825268</guid><author>COINS NEWS</author><dc:content /><dc:text>Why I like private property more than I did a few years ago.</dc:text></item><item><title>Ethereum Foundation begins staking treasury ETH (~70,000 ETH planned)</title><description><![CDATA[<div class="md"><p>The Ethereum Foundation has started staking a portion of its ETH treasury, with an initial 2,016 ETH deposit and plans to allocate around 70,000 ETH over time.</p> <p>Staking rewards will be directed back into the EF treasury to fund protocol R&amp;D, ecosystem grants, and core operations.</p> <p>The setup uses distributed validator infrastructure (Dirk and Vouch) and minority clients across multiple jurisdictions to avoid single points of failure and support client diversity.</p> <p>This move effectively turns part of the EF treasury into productive staking capital rather than idle ETH.</p> <p>Some potential implications:</p> <ul> <li>slightly reduces liquid ETH supply</li> <li>reinforces ETH’s staking-yield model</li> <li>aligns EF funding with network security</li> <li>signals long-term commitment to PoS</li> </ul> <p>Full article:<br/> [<a href="https://btcusa.com/ethereum-foundation-begins-staking-treasury-eth-allocating-70000-eth-to-validators/%5D()">https://btcusa.com/ethereum-foundation-begins-staking-treasury-eth-allocating-70000-eth-to-validators/]()</a></p> <p>What do you think — should large ecosystem treasuries be staking by default?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Enough_Angle_7839"> /u/Enough_Angle_7839 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rdlbr4/ethereum_foundation_begins_staking_treasury_eth/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rdlbr4/ethereum_foundation_begins_staking_treasury_eth/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-foundation-begins-staking-treasury-eth-70000-eth-planned</link><guid>825267</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum Foundation begins staking treasury ETH (~70,000 ETH planned)</dc:text></item><item><title>Daily General Discussion February 24, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rd88ab/daily_general_discussion_february_24_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rd88ab/daily_general_discussion_february_24_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-24-2026</link><guid>825117</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 24, 2026</dc:text></item><item><title>Best way to restake rETH?</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/---Truthseeker---"> /u/---Truthseeker--- </a> <br/> <span><a href="/r/rocketpool/comments/1rd5kz1/best_way_to_restake_reth/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rd5lq8/best_way_to_restake_reth/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/best-way-to-restake-reth</link><guid>825118</guid><author>COINS NEWS</author><dc:content /><dc:text>Best way to restake rETH?</dc:text></item><item><title>Telegram bot for audit contest updates (Sherlock, Code4rena, Cantina, Immunefi)</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rctimq/telegram_bot_for_audit_contest_updates_sherlock/"> <img src="https://external-preview.redd.it/5q_6YC6hRBalASMGI3rYFUKFjMTejaaQSIIN2EWKnNo.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=3c9e3c58d485a9e590cab1908409290d4dbd3c87" alt="Telegram bot for audit contest updates (Sherlock, Code4rena, Cantina, Immunefi)" title="Telegram bot for audit contest updates (Sherlock, Code4rena, Cantina, Immunefi)" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/k_ekse"> /u/k_ekse </a> <br/> <span><a href="/r/ethdev/comments/1rcti9u/telegram_bot_for_audit_contest_updates_sherlock/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rctimq/telegram_bot_for_audit_contest_updates_sherlock/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/telegram-bot-for-audit-contest-updates-sherlock-code4rena-cantina-immunefi</link><guid>824960</guid><author>COINS NEWS</author><dc:content /><dc:text>Telegram bot for audit contest updates (Sherlock, Code4rena, Cantina, Immunefi)</dc:text></item><item><title>ETH txn encoder tool</title><description><![CDATA[<div class="md"><p>Simple little tool for encoding function calls according to the eth abi. I&#39;ve seen a few other sites out there, but most of them have been pretty awkward to use so I made this one.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/winrar"> /u/winrar </a> <br/> <span><a href="https://hashing101.com/tools/eth-abi-encoder/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rclcno/eth_txn_encoder_tool/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/eth-txn-encoder-tool</link><guid>824961</guid><author>COINS NEWS</author><dc:content /><dc:text>ETH txn encoder tool</dc:text></item><item><title>EtherWorld Weekly — Edition 352</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1rchdoc/etherworld_weekly_edition_352/"> <img src="https://external-preview.redd.it/XPfLyEDkLimG1296JjBz3_3LliQ3CKXfdNZ1eSzqZFg.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=7538630b9cc330ef7f4c9842897cc0d469e67d59" alt="EtherWorld Weekly — Edition 352" title="EtherWorld Weekly — Edition 352" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/etherworld-weekly-edition-352/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rchdoc/etherworld_weekly_edition_352/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/etherworld-weekly-edition-352</link><guid>824962</guid><author>COINS NEWS</author><dc:content /><dc:text>EtherWorld Weekly — Edition 352</dc:text></item><item><title>Daily General Discussion February 23, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rc9j78/daily_general_discussion_february_23_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rc9j78/daily_general_discussion_february_23_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-23-2026</link><guid>824789</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 23, 2026</dc:text></item><item><title>Do ETH ETF's on the TSX pay staking rewards like some US ones do?</title><description><![CDATA[<div class="md"><p>Interested in purchasing these rather than actual crypto, and I am wondering if they pay staking rewards similar to a dividend, or do they stake the ETH while keeping the rewards and charging a management fee?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/rp90222"> /u/rp90222 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rbz4pb/do_eth_etfs_on_the_tsx_pay_staking_rewards_like/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rbz4pb/do_eth_etfs_on_the_tsx_pay_staking_rewards_like/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/do-eth-etfs-on-the-tsx-pay-staking-rewards-like-some-us-ones-do</link><guid>824704</guid><author>COINS NEWS</author><dc:content /><dc:text>Do ETH ETF's on the TSX pay staking rewards like some US ones do?</dc:text></item><item><title>Daily General Discussion February 22, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rbe1a8/daily_general_discussion_february_22_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rbe1a8/daily_general_discussion_february_22_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-22-2026</link><guid>824628</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 22, 2026</dc:text></item><item><title>AI uses for decentralized governance</title><description><![CDATA[<div class="md"><p>&quot;AI becomes the government&quot; is dystopian: it leads to slop when AI is weak, and is doom-maximizing once AI becomes strong. But AI used well can be empowering, and push the frontier of democratic / decentralized modes of governance.</p> <p>The core problem with democratic / decentralized modes of governance (including DAOs on ethereum) is limits to human attention: there are many thousands of decisions to make, involving many domains of expertise, and most people don&#39;t have the time or skill to be experts in even one, let alone all of them. The usual solution, delegation, is disempowering: it leads to a small group of delegates controlling decision-making while their supporters, after they hit the &quot;delegate&quot; button, have no influence at all. So what can we do? We use personal LLMs to solve the attention problem! Here are a few ideas:</p> <h2>Personal governance agents</h2> <p>If a governance mechanism depends on you to make a large number of decisions, a personal agent can perform all the necessary votes for you, based on preferences that it infers from your personal writing, conversation history, direct statements, etc.</p> <p>If the agent is (i) unsure how you would vote on an issue, and (ii) convinced the issue is important, then it should ask you directly, and give you all relevant context.</p> <h2>Public conversation agents</h2> <p>Making good decisions often cannot come from a linear process of taking people&#39;s views that are based only on their own information, and averaging them (even quadratically). There is a need for processes that aggregate many people&#39;s information, and then give each person (or their LLM) a chance to respond <em>based on that</em>.</p> <p>This includes:</p> <ul> <li>Inferring and summarizing your own views and converting them into a format that can be shared publicly (and does not expose your private info)</li> <li>Summarizing commonalities between people&#39;s inputs (expressed as words), similar to the various LLM+pol.is ideas</li> </ul> <h2>Suggestion markets</h2> <p>If a governance mechanism values &quot;high-quality inputs&quot; of any type (this could be proposals, or it could even be arguments), then you can have a prediction market, where anyone can submit an input, AIs can bet on a token representing that input, and if the mechanism &quot;accepts&quot; the input (either accepting the proposal, or accepting it as a &quot;unit&quot; of conversation that it then passes along to its participant), it pays out $X to the holders of the token.</p> <p>Note that this is basically the same as <a href="https://firefly.social/post/x/2017956762347835488">https://firefly.social/post/x/2017956762347835488</a></p> <h2>Decentralized governance with private information</h2> <p>One of the biggest weaknesses of highly decentralized / democratic governance is that it does not work well when important decisions need to be made with secret information.</p> <p>Common situations:</p> <p>(i) the org engaging in adversarial conflicts or negotiations (ii) internal dispute resolution (iii) compensation / funding decisions.</p> <p>Typically, orgs solve this by appointing individuals who have great power to take on those tasks.</p> <p>But with multi-party computation (currently I&#39;ve seen this done with TEEs; I would love to see at least the two-party case solved with garbled circuits <a href="https://vitalik.eth.limo/general/2020/03/21/garbled.html">https://vitalik.eth.limo/general/2020/03/21/garbled.html</a> so we can get pure-cryptographic security guarantees for it), we could actually take many people&#39;s inputs into account to deal with these situations, without compromising privacy. Basically: you submit your personal LLM into a black box, the LLM sees private info, it makes a judgement based on that, and it outputs only that judgement. You don&#39;t see the private info, and no one else sees the contents of your personal LLM.</p> <h2>The importance of privacy</h2> <p>All of these approaches involve each participant making use of much more information about themselves, and potentially submitting much larger-sized inputs. Hence, it becomes all the more important to protect privacy. There are two kinds of privacy that matter:</p> <ul> <li>Anonymity of the participant: this can be accomplished with ZK. In general, I think all governance tools should come with ZK built in</li> <li>Privacy of the contents: this has two parts. First, the personal LLM should do what it can to avoid divulging private info about you that it does not need to divulge. Second, when you have computation that combines multiple LLMs or multiple people&#39;s info, you need multi-party techniques to compute it privately. Both are important.</li> </ul> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ratc1y/ai_uses_for_decentralized_governance/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ratc1y/ai_uses_for_decentralized_governance/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ai-uses-for-decentralized-governance</link><guid>824543</guid><author>COINS NEWS</author><dc:content /><dc:text>AI uses for decentralized governance</dc:text></item><item><title>Daily General Discussion February 21, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1rajeg9/daily_general_discussion_february_21_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1rajeg9/daily_general_discussion_february_21_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-21-2026</link><guid>824458</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 21, 2026</dc:text></item><item><title>We built a fully onchain orderbook for two of Ethereum's oldest tokens (2016 Unicorn experiment)</title><description><![CDATA[<div class="md"><h2>Some backstory</h2> <p>In February 2016 — less than a year after Ethereum launched — Alex Van de Sande (avsa) from the Ethereum Foundation deployed an experimental contract called <strong>Unicorns</strong> (<a href="https://etherscan.io/address/0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7">0x89205A3A</a>). It was one of the very first token contracts on Ethereum, predating the ERC-20 standard.</p> <p>A month later, he created <strong>Unicorn Meat</strong> (<a href="https://etherscan.io/address/0xED6aC8de7c7CA7e3A22952e09C2a2A1232DDef9A">0xED6aC8de</a>) — another experimental token — along with the <strong>Grinder Association DAO</strong>, one of the earliest DAOs on Ethereum. The Grinder let you exchange Unicorns for Unicorn Meat, effectively the first onchain token swap.</p> <p>These were demo contracts for the Mist browser. They were never meant to become &quot;real&quot; tokens, but they&#39;ve survived for 10 years now — still on mainnet, still functional, still held in wallets.</p> <h2>The problem</h2> <p>Because these tokens predate ERC-20 (they have 0 decimal places, non-standard transfer functions), they don&#39;t work well with modern DEXes. Uniswap V3&#39;s fee math rounds to 0 for 0-decimal tokens. AMM pooling is essentially broken for them.</p> <p>Wrapped versions exist (w???? and w???? are standard ERC-20s), but the 0-decimal problem persists.</p> <h2>What we built</h2> <p><strong>Unicorn Market</strong> — a fully onchain orderbook contract, purpose-built for these tokens:</p> <ul> <li><strong>No backend, no matching engine, no admin keys</strong> — pure smart contract</li> <li><strong>Escrowed limit orders</strong> — maker&#39;s tokens held in contract until filled or cancelled</li> <li><strong>Partial fills</strong> — take any portion of an order</li> <li><strong>Deterministic rounding</strong> — uses OpenZeppelin&#39;s Math.mulDiv with ceiling rounding so makers never get shorted</li> <li>All state onchain, all settlement via events</li> </ul> <p>Verified contract: <a href="https://etherscan.io/address/0xA352B50A91C648c97F7aC0a80D686D297b62693E">0xA352B50A91C648c97F7aC0a80D686D297b62693E</a></p> <p>Trade interface: <a href="https://unicornmeateth.com/market">unicornmeateth.com/market</a></p> <p>Source: <a href="https://github.com/cartoonitunes/unicorn-market">github.com/cartoonitunes/unicorn-market</a></p> <h2>Why this matters (beyond the meme)</h2> <p>There are hundreds of pre-ERC-20 and non-standard tokens stuck on Ethereum mainnet with no good trading infrastructure. AMMs assume standard decimals and transfer behavior. A simple, auditable orderbook contract is arguably the right primitive for these edge cases.</p> <p>If you hold any legacy Ethereum tokens from 2015-2017, you probably know the pain of trying to trade them on modern infra.</p> <h2>Technical details</h2> <ul> <li>Reentrancy-guarded, CEI pattern throughout</li> </ul> <p>Happy to answer questions about the contract design or the history of these tokens.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ra98op/we_built_a_fully_onchain_orderbook_for_two_of/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ra98op/we_built_a_fully_onchain_orderbook_for_two_of/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/we-built-a-fully-onchain-orderbook-for-two-of-ethereums-oldest-tokens-2016-unicorn-experiment</link><guid>824315</guid><author>COINS NEWS</author><dc:content /><dc:text>We built a fully onchain orderbook for two of Ethereum's oldest tokens (2016 Unicorn experiment)</dc:text></item><item><title>Let your Agent Pay for Blockchain Data</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1ra43dn/let_your_agent_pay_for_blockchain_data/"> <img src="https://preview.redd.it/4t89lpye5pkg1.png?width=140&amp;height=55&amp;auto=webp&amp;s=c0c07936f4b5410a822457340c26ef81cc72da63" alt="Let your Agent Pay for Blockchain Data" title="Let your Agent Pay for Blockchain Data" /> </a> </td><td> <div class="md"><p><a href="https://preview.redd.it/4t89lpye5pkg1.png?width=897&amp;format=png&amp;auto=webp&amp;s=3b6f20025d1096aff96c431a786733d75dd792aa">Lobsters like block too</a></p> <p>You can use x402 for agents to pay and get access to blockchain data now.</p> <p>There’s no clean way for agents to access onchain data without API keys, accounts, or billing friction. Until now.</p> <p>With x402, agents can pay per request using stablecoins over HTTP, wallet in, data out.</p> <p><a href="https://goldrush.dev/blog/goldrush-x402-blockchain-data-for-agents/">https://goldrush.dev/blog/goldrush-x402-blockchain-data-for-agents/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Jaye-Fern"> /u/Jaye-Fern </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ra43dn/let_your_agent_pay_for_blockchain_data/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ra43dn/let_your_agent_pay_for_blockchain_data/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/let-your-agent-pay-for-blockchain-data</link><guid>824316</guid><author>COINS NEWS</author><dc:content /><dc:text>Let your Agent Pay for Blockchain Data</dc:text></item><item><title>How to x402: A Complete Guide to permissionless Agent payments</title><description><![CDATA[<div class="md"><p>Hey,</p> <p>Just finished integrating x402 (Coinbase&#39;s new payment protocol for AI agents) into an API endpoint after a few days working through the official docs and SDK.</p> <p>It’s running end-to-end: send a request, receive a 402, sign a USDC transfer, retry, and get the response back.</p> <p>A lot of the documentation is confusing due to differences between v1 and v2, so I compiled everything into a single post that should make things clearer. It includes an interactive demo where you can generate a wallet, fund it, and make a real x402 payment against a live endpoint.</p> <p>The goal was to create one resource that’s enough to understand x402 and build your own agent payment integration. The guide also includes some background on the origins of 402.</p> <p>Check it out here: <a href="https://simplescraper.io/blog/x402-payment-protocol">https://simplescraper.io/blog/x402-payment-protocol</a></p> <p>Let me know what you think!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/welanes"> /u/welanes </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r9z82d/how_to_x402_a_complete_guide_to_permissionless/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r9z82d/how_to_x402_a_complete_guide_to_permissionless/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/how-to-x402-a-complete-guide-to-permissionless-agent-payments</link><guid>824317</guid><author>COINS NEWS</author><dc:content /><dc:text>How to x402: A Complete Guide to permissionless Agent payments</dc:text></item><item><title>Even the Ethereum Foundation is highlighting the same smart contract risks</title><description><![CDATA[<div class="md"><p>There’s been a lot of talk lately about how fast teams are shipping contracts especially with AI-assisted “vibe coding.”</p> <p>Recently, the Ethereum Foundation highlighted the release of the OWASP Smart Contract Top 10, which outlines the most critical risks developers and security teams should be protecting against today.</p> <p>What stands out is how familiar many of these failure patterns still are:<br/> access control issues, logic flaws, unsafe assumptions, and upgrade risks.</p> <p>The tooling is getting better.<br/> The awareness is getting better.<br/> But the same classes of bugs keep showing up in production.</p> <p>Feels like the real challenge in 2026 isn’t whether we can write contracts faster it’s whether we can operate them safely at scale.</p> <p>Curious how others here are thinking about this balance between speed and security.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SolidityScan"> /u/SolidityScan </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r9x3eh/even_the_ethereum_foundation_is_highlighting_the/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r9x3eh/even_the_ethereum_foundation_is_highlighting_the/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/even-the-ethereum-foundation-is-highlighting-the-same-smart-contract-risks</link><guid>824318</guid><author>COINS NEWS</author><dc:content /><dc:text>Even the Ethereum Foundation is highlighting the same smart contract risks</dc:text></item><item><title>Quantum computing isn’t FUD anymore how ready is Ethereum really?</title><description><![CDATA[<div class="md"><p>Few years Ago no one believe quantum threat is even a thing. But lately it feels different. Not because quantum computers can suddenly crack wallets tomorrow, but because the timeline is slowly shifting from sci-fi to strategic planning.</p> <p>Here’s the uncomfortable part, most of crypto security today relies on elliptic curve cryptography. If a sufficiently powerful quantum computer runs Shor’s algorithm at scale, it could theoretically derive private keys from public keys.</p> <p>The bigger issue isn’t quantum breaks crypto overnight. It’s the long runway required to migrate billions in value to new cryptographic standards before that day ever comes. That kind of coordination takes years.</p> <p>What I find interesting is that Ethereum developers aren’t brushing this off. There’s active research into post-quantum signature schemes lattice-based and hash-based approaches and discussions about how Ethereum’s account abstraction model could make upgrading signatures more flexible compared to more rigid systems. The idea isn’t to panic-fork tomorrow, but to design the protocol so it can evolve if needed.</p> <p>Vitalik has openly talked about the possibility of a hard fork to move toward quantum-resistant signatures if the threat becomes imminent. There’s also ongoing work around making cryptographic components more modular, so the base layer isn’t permanently locked into one signature scheme forever. That kind of design thinking matters.</p> <p>At the same time, this isn’t trivial. Post-quantum signatures are typically much larger. They consume more bandwidth. They increase verification costs. Gas implications are real. And then there’s the elephant in the room: dormant wallets. If a public key is already exposed on-chain, and quantum becomes viable before migration, those funds could be at risk.</p> <p>There’s also the harvest now, decrypt later scenario. Even if quantum isn’t powerful enough today, adversaries could store cryptographic data now and wait for future breakthroughs. That’s not conspiracy talk that’s standard long-term threat modeling.</p> <p>So the question isn’t whether quantum computing will eventually be powerful. It’s whether Ethereum and crypto as a whole can coordinate upgrades in time. Ethereum at least has one advantage: it was built to evolve. It’s already gone through massive upgrades. Social coordination is part of its DNA.</p> <p>Personally, I don’t think this is immediate doom. But I also don’t think it’s something to laugh off anymore. The chains that treat quantum seriously today are probably the ones that survive smoothly tomorrow.</p> <p>Curious where everyone stands. Is this a 2040 problem? A 2030 problem? Or just another narrative that gets recycled every bull run?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Rare_Rich6713"> /u/Rare_Rich6713 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r9vjvf/quantum_computing_isnt_fud_anymore_how_ready_is/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r9vjvf/quantum_computing_isnt_fud_anymore_how_ready_is/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/quantum-computing-isnt-fud-anymore-how-ready-is-ethereum-really</link><guid>824321</guid><author>COINS NEWS</author><dc:content /><dc:text>Quantum computing isn’t FUD anymore how ready is Ethereum really?</dc:text></item><item><title>Ethereal news weekly #12 | FOCIL is Hegotá consensus layer headliner, EF protocol priorities: Scale, Improve UX &amp; Harden the L1, Base moving to own stack</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r9sy7v/ethereal_news_weekly_12_focil_is_hegotá_consensus/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #12 | FOCIL is Hegotá consensus layer headliner, EF protocol priorities: Scale, Improve UX &amp; Harden the L1, Base moving to own stack" title="Ethereal news weekly #12 | FOCIL is Hegotá consensus layer headliner, EF protocol priorities: Scale, Improve UX &amp; Harden the L1, Base moving to own stack" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-12/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r9sy7v/ethereal_news_weekly_12_focil_is_hegotá_consensus/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-12-focil-is-hegota-consensus-layer-headliner-ef-protocol-priorities-scale-improve-ux-harden-the-l1-base-moving-to-own-stack</link><guid>824322</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #12 | FOCIL is Hegotá consensus layer headliner, EF protocol priorities: Scale, Improve UX &amp; Harden the L1, Base moving to own stack</dc:text></item><item><title>Vibehouse: Ethereum’s Vibecoded Consensus Client from Lighthouse</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r9rytg/vibehouse_ethereums_vibecoded_consensus_client/"> <img src="https://external-preview.redd.it/dnbosUR-535dibXseeXTEFLHjGkDcDNeRjH_X1MBC4g.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=a4da2aff5d015cedc076ddf266fc09c433c1e662" alt="Vibehouse: Ethereum’s Vibecoded Consensus Client from Lighthouse" title="Vibehouse: Ethereum’s Vibecoded Consensus Client from Lighthouse" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/vibehouse-ethereums-vibecoded-consensus-client-from-lighthouse/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r9rytg/vibehouse_ethereums_vibecoded_consensus_client/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/vibehouse-ethereums-vibecoded-consensus-client-from-lighthouse</link><guid>824320</guid><author>COINS NEWS</author><dc:content /><dc:text>Vibehouse: Ethereum’s Vibecoded Consensus Client from Lighthouse</dc:text></item><item><title>Vitalik Pushes Back on “Sovereign AI” as Web4 Essay Sparks Debate</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r9rnmm/vitalik_pushes_back_on_sovereign_ai_as_web4_essay/"> <img src="https://external-preview.redd.it/J3WnJhPMx7CITNTy1ZBvHXsdAKy-p78evkn2BGgo8Gc.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=26294bc097c91154e06d7603c81abb7a902c5714" alt="Vitalik Pushes Back on “Sovereign AI” as Web4 Essay Sparks Debate" title="Vitalik Pushes Back on “Sovereign AI” as Web4 Essay Sparks Debate" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/vitalik-pushes-back-on-sovereign-ai-as-web4-essay-sparks-debate/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r9rnmm/vitalik_pushes_back_on_sovereign_ai_as_web4_essay/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/vitalik-pushes-back-on-sovereign-ai-as-web4-essay-sparks-debate</link><guid>824323</guid><author>COINS NEWS</author><dc:content /><dc:text>Vitalik Pushes Back on “Sovereign AI” as Web4 Essay Sparks Debate</dc:text></item><item><title>Justin Drake dives deep into Lean Ethereum</title><description><![CDATA[<div class="md"><p>Justin Drake dives deep into Lean Ethereum</p> <p>In this episode (which is the first in a six-part series on Lean Ethereum) we covered:<br/> - This vision for ethereum, spanning the consensus, data, and execution layers. </p> <p>- How post-quantum cryptography, faster finality, and enshrined ZK are all being used to future-proof Ethereum’s core. </p> <p>They also lay out some of the topics that will be covered in subsequent parts of the series.</p> <p><a href="https://x.com/zeroknowledgefm/status/2024542028671951222">Listen here</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/intrapreneur_"> /u/intrapreneur_ </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r9qidy/justin_drake_dives_deep_into_lean_ethereum/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r9qidy/justin_drake_dives_deep_into_lean_ethereum/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/justin-drake-dives-deep-into-lean-ethereum</link><guid>824319</guid><author>COINS NEWS</author><dc:content /><dc:text>Justin Drake dives deep into Lean Ethereum</dc:text></item><item><title>Daily General Discussion February 20, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r9nfzz/daily_general_discussion_february_20_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r9nfzz/daily_general_discussion_february_20_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-20-2026</link><guid>824191</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 20, 2026</dc:text></item><item><title>How much do you know about Ethereum ?</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Rum3ths"> /u/Rum3ths </a> <br/> <span><a href="/r/QuizPlanetGame/comments/1r9mpi5/how_much_do_you_know_about_ethereum/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r9msb7/how_much_do_you_know_about_ethereum/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/how-much-do-you-know-about-ethereum</link><guid>824192</guid><author>COINS NEWS</author><dc:content /><dc:text>How much do you know about Ethereum ?</dc:text></item><item><title>When you tell people you own Ethereum . . .</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r9jg2t/when_you_tell_people_you_own_ethereum/"> <img src="https://preview.redd.it/9idz3otxakkg1.png?width=140&amp;height=47&amp;auto=webp&amp;s=56fb099962c1ce11b22c67eafa7e1c4f435967d3" alt="When you tell people you own Ethereum . . ." title="When you tell people you own Ethereum . . ." /> </a> </td><td> <div class="md"><p><a href="https://preview.redd.it/9idz3otxakkg1.png?width=1226&amp;format=png&amp;auto=webp&amp;s=b52aebbfc0ef1bd02b8b77bd5650049173a39433">https://preview.redd.it/9idz3otxakkg1.png?width=1226&amp;format=png&amp;auto=webp&amp;s=b52aebbfc0ef1bd02b8b77bd5650049173a39433</a></p> <p>When you tell people you own Ethereum, do they look at you like the picture on the left or the picture on the right? </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Jamesss111222333"> /u/Jamesss111222333 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r9jg2t/when_you_tell_people_you_own_ethereum/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r9jg2t/when_you_tell_people_you_own_ethereum/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/when-you-tell-people-you-own-ethereum</link><guid>824079</guid><author>COINS NEWS</author><dc:content /><dc:text>When you tell people you own Ethereum . . .</dc:text></item><item><title>Highlights from the All Core Developers Consensus (ACDC) Call #175</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r9ix9b/highlights_from_the_all_core_developers_consensus/"> <img src="https://external-preview.redd.it/V-4vIhhqNfcbCAfRRMlA_PArrvAkZeYL2J1uyXaGMX8.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=45ea0983051d9be54f0d9ddf90b2461f37f4e8b7" alt="Highlights from the All Core Developers Consensus (ACDC) Call #175" title="Highlights from the All Core Developers Consensus (ACDC) Call #175" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/highlights-from-the-all-core-developers-consensus-acdc-call-175/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r9ix9b/highlights_from_the_all_core_developers_consensus/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/highlights-from-the-all-core-developers-consensus-acdc-call-175</link><guid>824080</guid><author>COINS NEWS</author><dc:content /><dc:text>Highlights from the All Core Developers Consensus (ACDC) Call #175</dc:text></item><item><title>On FOCIL and native AA synergies</title><description><![CDATA[<div class="md"><p>There is an important synergy between FOCIL and AA (<a href="https://eips.ethereum.org/EIPS/eip-8141">EIP-8141</a>, which is based on <a href="https://eips.ethereum.org/EIPS/eip-7701">7701</a>):</p> <p>8141 makes not just smart accounts (including multisig, quantum-resistant signatures, key changes, gas sponsorship) first-class citizens, it also can do the same for privacy protocols (either indirectly via paymaster, or if we add 2D nonces, directly as a multi-tenant account). &quot;First-class citizen&quot; means that operations sent from that account can be included directly onchain as transactions, with no wrappers.</p> <p>FOCIL enables censorship-resistant rapid inclusion of any transaction.</p> <p>Hence, with <a href="https://eips.ethereum.org/EIPS/eip-7805">FOCIL</a> and 8141 together, anything, including smart wallet txs, gas sponsored txs, and even privacy protocol txs, can be included onchain through one of 17 different actors (the proposer or the includers) that are all chosen randomly in each slot.</p> <p>This gives us guaranteed rapid inclusion, meaning almost certainly within 1-2 slots, of any such tx, even in an adversarial environment.</p> <p>In this iteration, the FOCILs are 8 kB each, so they are very small in size. However, there is a natural future extension path to making them much larger, so that the majority of transactions to a block could, if needed, come through FOCILs.</p> <p>Such a design would have many of the properties of multiple concurrent proposer (MCP) designs, with the key difference being that FOCILs do not try to control the MEV-relevant &quot;last look&quot; role - that&#39;s still auctioned off with ePBS. The behavior of the last look role in &quot;full MCP&quot; depends strongly on the specifics of the design.</p> <p>The FOCIL design ensures that even if literally 100% of all slots get sold off via proposer-builder separation to a hostile actor that refuses to connect to public mempools, discriminates against certain applications, or is otherwise abusive, all transactions can still get quickly included. It&#39;s not eliminating the centralization of the proposer role, but it is heavily disempowering it.</p> <p>With EIP-8141 (AA), transactions from smart wallets, privacy protocols, etc, could be sent <em>through a public mempool, and directly received by a FOCIL includer</em>, no wrappers, &quot;public broadcasters&quot;, or other intermediaries required.</p> <p>Ethereum is going hard.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r980ut/on_focil_and_native_aa_synergies/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r980ut/on_focil_and_native_aa_synergies/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/on-focil-and-native-aa-synergies</link><guid>824078</guid><author>COINS NEWS</author><dc:content /><dc:text>On FOCIL and native AA synergies</dc:text></item><item><title>TIL the first ERC-20 token was deployed on November 3, 2015 — written in Solidity 0.1.6, months before the standard even had a name</title><description><![CDATA[<div class="md"><p>I&#39;ve been going down a rabbit hole on early Ethereum contract archaeology and found something I thought was worth sharing.</p> <p>MistCoin was deployed on November 3, 2015 — just a few months after Ethereum&#39;s mainnet launch. It implements what we&#39;d now recognize as the ERC-20 interface (transfer, balanceOf, totalSupply, approve/transferFrom), but ERC-20 as a formal standard didn&#39;t exist until Fabian Vogelsteller&#39;s EIP in late 2015, and wasn&#39;t widely adopted until 2017.</p> <p>A few things that stood out to me looking at the contract:</p> <ul> <li>**Solidity 0.1.6.** The syntax looks almost alien compared to modern Solidity. No `pragma`, no `view`/`pure`, no SafeMath. It&#39;s like looking at a fossil record of the language.</li> <li>**Fixed supply of 1,000,000 tokens.** No mint function, no owner privileges, no upgradability. The entire supply was assigned in the constructor and that was it. Immutable from day one.</li> <li>**The contract structure itself became the blueprint.** If you compare MistCoin&#39;s layout to the ERC-20 standard that was formalized later, the resemblance is striking. The pattern of mapping balances, emitting Transfer events, and the approve/transferFrom flow — it&#39;s all there.</li> </ul> <p>What I find interesting isn&#39;t the token itself, but what it tells us about how Ethereum&#39;s developer culture evolved. In 2015, people were hand-rolling token contracts from scratch with no standards, no templates, no OpenZeppelin. The fact that multiple developers independently converged on nearly identical patterns is what eventually made ERC-20 possible as a standard — it codified what was already emerging organically.</p> <p>The contract is still on-chain, obviously. Blockchain archaeology is one of those things that reminds you everything on Ethereum is permanent. The earliest experiments are still sitting there, readable and verifiable.</p> <p>More details on the history: [mistcoineth.com](<a href="https://mistcoineth.com">https://mistcoineth.com</a>)</p> <p>Has anyone else found interesting pre-standard contracts from 2015? I&#39;d love to know what other early experiments are still sitting on mainnet.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r94uig/til_the_first_erc20_token_was_deployed_on/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r94uig/til_the_first_erc20_token_was_deployed_on/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/til-the-first-erc-20-token-was-deployed-on-november-3-2015-written-in-solidity-016-months-before-the-standard-even-had-a-name</link><guid>824081</guid><author>COINS NEWS</author><dc:content /><dc:text>TIL the first ERC-20 token was deployed on November 3, 2015 — written in Solidity 0.1.6, months before the standard even had a name</dc:text></item><item><title>Wall Street giants massively increased holdings in BitMine — the largest corporate ETH holder</title><description><![CDATA[<div class="md"><p>New 13F filings show major financial institutions sharply increased positions in BitMine, a public company widely known as the largest corporate holder of Ethereum.</p> <p>Morgan Stanley now holds 12.2M shares (+26%), ARK 9.5M (+27%), BlackRock 9M (+166%), and Goldman Sachs 5.2M (+588%). Vanguard, Bank of America, Schwab, RBC, Citi and BNY Mellon also expanded exposure.</p> <p>In total, 457 institutional holders now control about 136.7M BitMine shares (~$2.86B).</p> <p>This suggests institutions are increasingly accessing ETH exposure via equity structures rather than direct custody — similar to how MicroStrategy functions as a BTC proxy.</p> <p>Full breakdown:<br/> <a href="https://btcusa.com/wall-street-giants-boost-bitmine-holdings-as-institutional-ethereum-exposure-expands/">https://btcusa.com/wall-street-giants-boost-bitmine-holdings-as-institutional-ethereum-exposure-expands/</a></p> <p>Curious how people here see this trend — does equity-based ETH exposure accelerate or delay direct institutional ETH ownership?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Enough_Angle_7839"> /u/Enough_Angle_7839 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r93mxh/wall_street_giants_massively_increased_holdings/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r93mxh/wall_street_giants_massively_increased_holdings/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/wall-street-giants-massively-increased-holdings-in-bitmine-the-largest-corporate-eth-holder</link><guid>824077</guid><author>COINS NEWS</author><dc:content /><dc:text>Wall Street giants massively increased holdings in BitMine — the largest corporate ETH holder</dc:text></item><item><title>Looking for a technical co-founder to help bring a concept to life (Story-driven project)</title><description><![CDATA[<div class="md"><p>What&#39;s up, everyone. I&#39;m Van.</p> <p>I’m looking to break into the crypto space with a new token, but lack the technical know-how to execute it.</p> <p>Here is the pitch: I have a life story that is unique enough to act as the &quot;hook&quot; for this project. In a market full of meme coins with no substance, I believe a genuine, compelling narrative is a massive advantage.</p> <p>I’m looking for someone (or a team) who understands the tech side—contracts, deployment, marketing mechanics—and wants to partner with someone who can handle the storytelling and community building.</p> <p>If you&#39;re a dev who has been waiting for an idea with some actual heart behind it, please DM me. Thanks</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/MMA_Van"> /u/MMA_Van </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r91n6l/looking_for_a_technical_cofounder_to_help_bring_a/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r91n6l/looking_for_a_technical_cofounder_to_help_bring_a/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/looking-for-a-technical-co-founder-to-help-bring-a-concept-to-life-story-driven-project</link><guid>823903</guid><author>COINS NEWS</author><dc:content /><dc:text>Looking for a technical co-founder to help bring a concept to life (Story-driven project)</dc:text></item><item><title>Is it better to swap directly from cold wallet or nah?</title><description><![CDATA[<div class="md"><p>90% of my coins are on Ledger and I mostly don’t touch them. But I need to get a little into more active trading and look to do more swaps. The problem tho, ledger’s fees are a bit higher than i expected and I don’t really want to be transferring money wallet to wallet.</p> <p>Swaps from cold wallet also feel like too much and that’s not even considering the routes. What everyone else does?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vinewb"> /u/vinewb </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r8sy4h/is_it_better_to_swap_directly_from_cold_wallet_or/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8sy4h/is_it_better_to_swap_directly_from_cold_wallet_or/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/is-it-better-to-swap-directly-from-cold-wallet-or-nah</link><guid>823904</guid><author>COINS NEWS</author><dc:content /><dc:text>Is it better to swap directly from cold wallet or nah?</dc:text></item><item><title>Daily General Discussion February 19, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r8rcjv/daily_general_discussion_february_19_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8rcjv/daily_general_discussion_february_19_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-19-2026</link><guid>823902</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 19, 2026</dc:text></item><item><title>Vibe coding a smart contract and then it got exploited.</title><description><![CDATA[<div class="md"><p>We’ve all seen it lately “just vibe code it with AI.”</p> <p>Spin up a contract, tweak a few lines, deploy to testnet, maybe even mainnet.</p> <p>But here’s the uncomfortable truth:<br/> A contract built through vibe coding recently got exploited.</p> <p>Not because AI is evil.<br/> Not because audits don’t work.<br/> But because security wasn’t treated as intentional engineering.</p> <p>Smart contracts aren’t frontend experiments.<br/> They hold real value. Real money. Real risk.</p> <p>AI can scaffold.<br/> It can accelerate.<br/> But it doesn’t threat-model.<br/> It doesn’t understand economic assumptions.<br/> It doesn’t reason about edge-case state transitions.</p> <p>Vibe coding is fine for prototypes.<br/> It’s dangerous for production.</p> <p>Curious are we moving too fast with AI-generated contracts without strengthening security discipline alongside it?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SolidityScan"> /u/SolidityScan </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r8r2lw/vibe_coding_a_smart_contract_and_then_it_got/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8r2lw/vibe_coding_a_smart_contract_and_then_it_got/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/vibe-coding-a-smart-contract-and-then-it-got-exploited</link><guid>823906</guid><author>COINS NEWS</author><dc:content /><dc:text>Vibe coding a smart contract and then it got exploited.</dc:text></item><item><title>Episode 391 - Introduction to Lean Ethereum with Justin Drake</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r8pqnw/episode_391_introduction_to_lean_ethereum_with/"> <img src="https://external-preview.redd.it/VwT3k0mGAYhzOvNwclgVN6qI0TX4z2uBfS9jSq4Z0jg.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=34990e4de836e782acbec2ee982f6c561823ce00" alt="Episode 391 - Introduction to Lean Ethereum with Justin Drake" title="Episode 391 - Introduction to Lean Ethereum with Justin Drake" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/DepartedQuantity"> /u/DepartedQuantity </a> <br/> <span><a href="https://youtu.be/Dad2UonQ9Ag">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8pqnw/episode_391_introduction_to_lean_ethereum_with/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/episode-391-introduction-to-lean-ethereum-with-justin-drake</link><guid>823905</guid><author>COINS NEWS</author><dc:content /><dc:text>Episode 391 - Introduction to Lean Ethereum with Justin Drake</dc:text></item><item><title>Glamsterdam Gas Repricing: share your feedback in the stakeholder survey</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://gasrepricing.com/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8pk7s/glamsterdam_gas_repricing_share_your_feedback_in/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/glamsterdam-gas-repricing-share-your-feedback-in-the-stakeholder-survey</link><guid>823901</guid><author>COINS NEWS</author><dc:content /><dc:text>Glamsterdam Gas Repricing: share your feedback in the stakeholder survey</dc:text></item><item><title>Why EF should split AI evangelism between builders and storytellers</title><description><![CDATA[<div class="md"><p>I was blown away by the recent interviews where Davide Crapis explained the exciting potential of Ethereum and AI agents. This feels like one of the biggest narrative opportunities the ecosystem has had in years.</p> <p>Precisely because the stakes are so high, I’d actually love to see EF lean into a very classic split of responsibilities: let the deepest technical people focus on building, coordination, and experimentation, and have a dedicated public‑facing person whose main job is interviews, conference talks, and selling the vision to AI founders and researchers -- similar to how Steve Wozniak and Steve Jobs complemented each other at Apple</p> <p>I understand the urge of putting Davide out there, he&#39;s good looking, charming, technically brilliant, and filled with enthusiasm.</p> <p>However in a lot of successful orgs, the people doing the most important technical work are not the ones doing the most public communication, not because they’re bad at it, but because their highest leverage is elsewhere. A specialized “storyteller for AI/agents,” backed by folks like Davide on the technical side, feels like the kind of structure that could really help Ethereum capture this moment.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/r2002"> /u/r2002 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r8n9xr/why_ef_should_split_ai_evangelism_between/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8n9xr/why_ef_should_split_ai_evangelism_between/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/why-ef-should-split-ai-evangelism-between-builders-and-storytellers</link><guid>823730</guid><author>COINS NEWS</author><dc:content /><dc:text>Why EF should split AI evangelism between builders and storytellers</dc:text></item><item><title>Just Turned 40!! Never Give UP!! LIFE IS A GIFT!!</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Fluffy-Crab7929"> /u/Fluffy-Crab7929 </a> <br/> <span><a href="/r/HELP2025/comments/1r8my4u/just_turned_40_never_give_up_life_is_a_gift/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8n06l/just_turned_40_never_give_up_life_is_a_gift/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/just-turned-40-never-give-up-life-is-a-gift</link><guid>823738</guid><author>COINS NEWS</author><dc:content /><dc:text>Just Turned 40!! Never Give UP!! LIFE IS A GIFT!!</dc:text></item><item><title>Protocol Priorities Update for 2026</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r8j4dh/protocol_priorities_update_for_2026/"> <img src="https://external-preview.redd.it/oljafwlpoQ7kMzUjjOLB_xZAHPie48eFI9NYaCbTudM.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=0d9b213720a6eef3178ae3885a0bc127e1ae2212" alt="Protocol Priorities Update for 2026" title="Protocol Priorities Update for 2026" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://blog.ethereum.org/2026/02/18/protocol-priorities-update-2026">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8j4dh/protocol_priorities_update_for_2026/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/protocol-priorities-update-for-2026</link><guid>823731</guid><author>COINS NEWS</author><dc:content /><dc:text>Protocol Priorities Update for 2026</dc:text></item><item><title>Ethereum Protocol Studies 2026</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r8j3vp/ethereum_protocol_studies_2026/"> <img src="https://external-preview.redd.it/q9NozE261Pd-Cfgh5e2eTyYp944-8IQrqrpI7wxDUf8.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=ecbe0c69888cc6d8119db7a37069b9413b03d0eb" alt="Ethereum Protocol Studies 2026" title="Ethereum Protocol Studies 2026" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://blog.ethereum.org/2026/02/17/ethereum-protocol-studies-26">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8j3vp/ethereum_protocol_studies_2026/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereum-protocol-studies-2026</link><guid>823732</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum Protocol Studies 2026</dc:text></item><item><title>Announcing the Platform Team at EF</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r8d9io/announcing_the_platform_team_at_ef/"> <img src="https://external-preview.redd.it/lE-0xcEg75xGMKk5VgOtay_b-T3pwHl_cL4103Sj6Cs.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=c0d6fdee096a153ea05541cabb3281aa8001e4b6" alt="Announcing the Platform Team at EF" title="Announcing the Platform Team at EF" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/ligi"> /u/ligi </a> <br/> <span><a href="https://blog.ethereum.org/2026/02/17/platform">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8d9io/announcing_the_platform_team_at_ef/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/announcing-the-platform-team-at-ef</link><guid>823729</guid><author>COINS NEWS</author><dc:content /><dc:text>Announcing the Platform Team at EF</dc:text></item><item><title>OpenAI just released EVMbench, a benchmark evaluating the ability of AI agents to detect, patch, and exploit high-severity smart contract vulnerabilities.</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/UnknownEssence"> /u/UnknownEssence </a> <br/> <span><a href="https://openai.com/index/introducing-evmbench/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8cdk0/openai_just_released_evmbench_a_benchmark/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/openai-just-released-evmbench-a-benchmark-evaluating-the-ability-of-ai-agents-to-detect-patch-and-exploit-high-severity-smart-contract-vulnerabilities</link><guid>823735</guid><author>COINS NEWS</author><dc:content /><dc:text>OpenAI just released EVMbench, a benchmark evaluating the ability of AI agents to detect, patch, and exploit high-severity smart contract vulnerabilities.</dc:text></item><item><title>Solidity v0.8.34 is out. Please read release notes carefully.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r8am6e/solidity_v0834_is_out_please_read_release_notes/"> <img src="https://external-preview.redd.it/vlMQmlWZuMWu0Rlu_CyzakHFlq0JgAjggjBsiS0ipfA.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=ea5b1f604b6c364757775f6eec18ef2e1572b088" alt="Solidity v0.8.34 is out. Please read release notes carefully." title="Solidity v0.8.34 is out. Please read release notes carefully." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/r08o"> /u/r08o </a> <br/> <span><a href="https://www.soliditylang.org/blog/2026/02/18/solidity-0.8.34-release-announcement">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r8am6e/solidity_v0834_is_out_please_read_release_notes/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/solidity-v0834-is-out-please-read-release-notes-carefully</link><guid>823736</guid><author>COINS NEWS</author><dc:content /><dc:text>Solidity v0.8.34 is out. Please read release notes carefully.</dc:text></item><item><title>The token that became ERC-20 was deployed on Nov 3, 2015 — here's the story of MistCoin</title><description><![CDATA[<div class="md"><p>November 3, 2015. ETH was under $1. The DAO didn&#39;t exist yet. And two Ethereum core devs just quietly deployed a token contract that would change everything.</p> <p>Fabian Vogelsteller and Alex Van de Sande (avsa) created MistCoin as a demo for the Mist Wallet&#39;s custom token system. It wasn&#39;t meant to be a product — it was a prototype. The manuscript before the book.</p> <p>That manuscript? It became ERC-20. The standard behind every token you&#39;ve ever traded.</p> <p>In 2024, the community reverse-engineered MistCoin&#39;s original 2015 bytecode and matched it to Solidity 0.1.6. Nine years of blockchain archaeology to verify the OG. Only 1M tokens will ever exist. No VC round. No roadmap. Just history, on-chain forever.</p> <p><a href="https://etherscan.io/token/0xf4eced2f682ce333f96f2d8966c613ded8fc95dd">https://etherscan.io/token/0xf4eced2f682ce333f96f2d8966c613ded8fc95dd</a></p> <p>Anyone else find early Ethereum archaeology fascinating? Curious what other historic contracts people have dug up.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r88qdd/the_token_that_became_erc20_was_deployed_on_nov_3/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r88qdd/the_token_that_became_erc20_was_deployed_on_nov_3/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/the-token-that-became-erc-20-was-deployed-on-nov-3-2015-heres-the-story-of-mistcoin</link><guid>823737</guid><author>COINS NEWS</author><dc:content /><dc:text>The token that became ERC-20 was deployed on Nov 3, 2015 — here's the story of MistCoin</dc:text></item><item><title>Switched from first-gen hardware wallets to fully airgapped QR signing... and wow. [Keystone 3 Pro review]</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r85liq/switched_from_firstgen_hardware_wallets_to_fully/"> <img src="https://external-preview.redd.it/PyR8wfye9674tKNBXx-gCs0nkqOf2vEm7T8-Wwg7nSs.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=68c4f1dd66dbbea4d21ac33fd3d546ebc7692984" alt="Switched from first-gen hardware wallets to fully airgapped QR signing... and wow. [Keystone 3 Pro review]" title="Switched from first-gen hardware wallets to fully airgapped QR signing... and wow. [Keystone 3 Pro review]" /> </a> </td><td> <div class="md"><p>USB cables are the worst part of hardware wallet UX.</p> <p>Until very recently, transacting onchain for me meant enduring the same listless ritual: scavenging for the cables and adapters, laboriously plugging it in, hoping the USB port doesn&#39;t malfunction mid-signature or power off the bloody device, then unplugging and putting everything away. Every single time. No wonder people don’t use crypto as much as they could. </p> <p>Then a friend mentioned a &quot;fully airgapped&quot; alternative. No cables. No Bluetooth. Just QR codes. I was skeptical, but intrigued — how do you sign a transaction with no physical connection whatsoever?</p> <p>As a matter of fact, I found the QR-code workflow to be wonderfully elegant and simple. </p> <ol> <li>MetaMask or Rabby generates a transaction QR code. </li> <li>The Keystone&#39;s built-in camera scans it and signs offline. </li> <li>You scan the signed QR back with your laptop or phone. </li> <li>Done. Not a single cable had to be scrounged up. Neither was a bluetooth connection risked. No greater attack surface beyond your own eyeballs verifying what&#39;s on-screen.</li> </ol> <p>I&#39;ve been testing the Keystone 3 Pro for the past while, and there were genuine surprises. </p> <ol> <li>The fingerprint unlock replaces PIN entry entirely — not just for unlocking, but for authorizing transactions. </li> <li>It stores up to 3 separate secret recovery seed phrases on one device = plausible deniability.</li> <li>And the 4-inch touchscreen is a godsend for clear signing.</li> </ol> <p>It does come with its flaws:</p> <ol> <li>The battery sucks with its 1000mAh lithium-ion.</li> <li>The touchscreen and fingerprint scanner can be finnicky. </li> <li>And it’s a HK-based company with Chinese manufacturing ties… which will understandably give some people pause. Even if their firmware and hardware are open source and have been publicly audited by SlowMist, Keylabs, and Least Authority.</li> </ol> <p>I put together a comprehensive review covering security architecture, form factor, usability, and whether the $150 price tag is actually justified: <a href="https://youtu.be/fk-cC0WyVgY">https://youtu.be/fk-cC0WyVgY</a> </p> <p>For those of you still on first-gen cable-based wallets — have you considered airgapped? And for anyone already using Keystone, curious how your experience compares to mine! </p> <p>————</p> <p>If we&#39;re meeting for the first time, hi ????! I find crypto youtube to be a giant cesspool. As a result, i started building my channel to spread the good word on good work in crypto — something with substance and humanity.</p> <p>Dropping a like, sub, and comment goes a LONG way to supporting me, so please consider doing so! ????</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/haochizzle"> /u/haochizzle </a> <br/> <span><a href="https://youtu.be/fk-cC0WyVgY">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r85liq/switched_from_firstgen_hardware_wallets_to_fully/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/switched-from-first-gen-hardware-wallets-to-fully-airgapped-qr-signing-and-wow-keystone-3-pro-review</link><guid>823733</guid><author>COINS NEWS</author><dc:content /><dc:text>Switched from first-gen hardware wallets to fully airgapped QR signing... and wow. [Keystone 3 Pro review]</dc:text></item><item><title>Iran and surveillance</title><description><![CDATA[<div class="md"><p>This is a good post on the impact of surveillance in Iran:</p> <p><a href="https://www.myprivacy.blog/the-digital-iron-curtain-how-iran-built-the-worlds-most-invasive-surveillance-state/">https://www.myprivacy.blog/the-digital-iron-curtain-how-iran-built-the-worlds-most-invasive-surveillance-state/</a></p> <p>It&#39;s worth reading.</p> <p>IMO one mistake that freedom advocates often make is that we talk about privacy violation and surveillance as &quot;dystopian&quot;, using the word as a semantic stop sign: we know it means &quot;bad&quot;, we nod along, and don&#39;t really go further to clarify why it&#39;s bad. I worry that this approach is long-run unhealthy: when we criticize various companies and countries for being &quot;dystopian&quot; and stop there, then to someone who&#39;s not already in the same memeplex, it sounds like we&#39;re basically criticizing companies and countries for not complying with our culture&#39;s aesthetic preferences. Which is ... duh, companies and countries are <em>supposed</em> to not comply with each other&#39;s aesthetic preferences, that&#39;s the whole point of the &quot;pluralism&quot; thing.</p> <p>What the above article makes clear so well is that &quot;dystopian&quot; surveillance is not bad because it&#39;s &quot;dystopian&quot;, it&#39;s bad because it makes a concrete property of the world worse: the power balance between individual and state. Surveillance enables an outcome where basically everyone other than police and security forces has no opportunity whatsoever to challenge the political status quo without being punished. This means an outcome where a political regime can remain in power forever, without satisfying more than a very small coalition of people who have the eyes and the guns (now drones).</p> <p>The Dictator&#39;s Handbook talks about &quot;large coalition&quot; and &quot;small coalition&quot; governments; large coalition governments are the ones that are more pro-human, because they, well, have to keep a large coalition happy. Small coalition ones are the really nasty ones. Here is the near-term dark outcome of dictatorship + automated warfare + surveillance: a regime can literally survive with a coalition of size 1, because an army of all-seeing eyes and robots can defeat the entire populace in battle if needed. In Iran, we see what <em>just</em> dictatorship with surveillance can do, once you add automated police, you get to the unholy trifecta.</p> <p>I don&#39;t know of a good solution to this. Privacy technology, as well as more work on censorship-resistant internet (I think we should strive for at least basic-quality internet, eg. 1 Mbps, being a global human right outside the domain of nation-state sovereignty), can help somewhat to reduce the possibility of total government control. But what else?</p> <hr/> <p>BTW one implicit frame in the article I take some issue with is framing Iran + Russia + China as the unique antagonists (both in surveillance they do internally, and in the technology they export to other countries). They do a lot of dystopian shit of both types. However, Israeli and US tech companies, and undoubtedly tech companies from other Western nations, also do a lot of dystopian shit.</p> <p>Perhaps one key difference between the surveillance described above, and the Western type, is:</p> <ul> <li>The surveillance in the above article is about exercising <em>great control over a medium area</em>: you can see everything, but it requires active participation of the government of the territory being surveilled.</li> <li>The Israeli / US / Western flavor is about exercising <em>medium control over a great area</em>: there are more limits to how much they can do, but their surveillance is global: they know what people are doing even in countries and territories they have no presence in.</li> </ul> <p>The distinction is not absolute: Israeli surveillance backstops a lot of its human rights abuse in Palestine, US surveillance reinforces ICE abuses (see the recent article about Homeland Security demanding social media firms reveal names of anti-ICE protesters), etc, and &quot;transnational repression&quot; is done by anti-Western countries. But <em>on average</em>, the above seems to be the pattern.</p> <p>The two are differently scary. The former for the reasons I described above. The latter because it allows global projection of power: a politician or civil servant in one country now has to worry about being blackmailed, droned or otherwise attacked from other countries. The USA has shown willingness to go after individual EU officials, ICC officials (see recent articles on both), and others. Ultimately, I suspect that even democratic governments will want more privacy to protect themselves, and we will have to have deep conversations about what &quot;democratic accountability&quot; means: how can a civil servant be accountable to the people, but not accountable to foreign spooks?</p> <p>My high-level frame is: privacy generally helps whoever is weaker. &quot;Weaker&quot; does not mean &quot;moral&quot;: sometimes the weaker side is criminal. But in the 21st century, we are at serious risk of stronger factions using modern technologies to establish unbreakable lock-in to power. And so on average, reducing the gradient of power, giving the weak a fighting chance, is something that the world desperately needs.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r82azo/iran_and_surveillance/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r82azo/iran_and_surveillance/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/iran-and-surveillance</link><guid>823734</guid><author>COINS NEWS</author><dc:content /><dc:text>Iran and surveillance</dc:text></item><item><title>Daily General Discussion February 18, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r7v1qw/daily_general_discussion_february_18_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r7v1qw/daily_general_discussion_february_18_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-18-2026</link><guid>823537</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 18, 2026</dc:text></item><item><title>Can someone explain to me the hype behind LayerZero and how they managed to leap the ZKEVM?</title><description><![CDATA[<div class="md"><p>I haven&#39;t been in the loop with LayerZero however it seems like they have implemented their own ZK Virtual Machine with &quot;millions&quot; of transactions on a raspberry pi with etheruem level decentralization, etc etc. Does anyone here actually know what the hype is and if it&#39;s accurate? I can&#39;t find much on it.</p> <p>I know with the ZKEVM, the roadmap is still a couple of years away and from my understanding from the info posted by Justin Drake and LEAN Ethereum, they seem to be at the cutting edge so where did LayerZero come from?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/DepartedQuantity"> /u/DepartedQuantity </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r7nhbg/can_someone_explain_to_me_the_hype_behind/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r7nhbg/can_someone_explain_to_me_the_hype_behind/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/can-someone-explain-to-me-the-hype-behind-layerzero-and-how-they-managed-to-leap-the-zkevm</link><guid>823538</guid><author>COINS NEWS</author><dc:content /><dc:text>Can someone explain to me the hype behind LayerZero and how they managed to leap the ZKEVM?</dc:text></item><item><title>Zero-knowledge proofs involving time series</title><description><![CDATA[<div class="md"><p>Suppose I have a time series and a trading bot. I want to prove this trading bot makes certain P&amp;L without showing anything about my strategy. Has anyone published work on this? Thanks in advance!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/akarimedia"> /u/akarimedia </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r732e6/zeroknowledge_proofs_involving_time_series/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r732e6/zeroknowledge_proofs_involving_time_series/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/zero-knowledge-proofs-involving-time-series</link><guid>823371</guid><author>COINS NEWS</author><dc:content /><dc:text>Zero-knowledge proofs involving time series</dc:text></item><item><title>Daily General Discussion February 17, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r6y4bq/daily_general_discussion_february_17_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r6y4bq/daily_general_discussion_february_17_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-17-2026</link><guid>823370</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 17, 2026</dc:text></item><item><title>Need help for traffic on my DeFi project</title><description><![CDATA[<div class="md"><p>Hi guys, i am building a DeFi project which is a bridge/swap aggregator for stablecoins and more to help people doing it smoothly and for cheap.</p> <p>I&#39;m looking for advices to attract users to the project, where should I start? We&#39;ve created a X account and made it gold, we have no experience before so please be gentle, advices appreciated.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/WhisperVixenn"> /u/WhisperVixenn </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r6ix7n/need_help_for_traffic_on_my_defi_project/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r6ix7n/need_help_for_traffic_on_my_defi_project/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/need-help-for-traffic-on-my-defi-project</link><guid>823256</guid><author>COINS NEWS</author><dc:content /><dc:text>Need help for traffic on my DeFi project</dc:text></item><item><title>[Research] Guardian: Role-Gated MPC Wallets for AI Agents</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r6g2f7/research_guardian_rolegated_mpc_wallets_for_ai/"> <img src="https://external-preview.redd.it/amIzZ1Sq3mpl3FAVSUkp_UijAGMHEecaOXbHtAQBRYk.png?width=216&amp;crop=smart&amp;auto=webp&amp;s=de4432000d4cb8fc659836e985942ab689ed6674" alt="[Research] Guardian: Role-Gated MPC Wallets for AI Agents" title="[Research] Guardian: Role-Gated MPC Wallets for AI Agents" /> </a> </td><td> <div class="md"><p>We&#39;re a group of researchers and have just prepared a draft addressing a gap in cryptographic custody for autonomous agents.</p> <p>The problem: agents executing autonomously need key custody, but are the least trustworthy entities to hold keys alone.</p> <p>Existing solutions (hot wallets, smart accounts, TEEs, standard MPC) have fundamental gaps when applied to autonomous signing.</p> <p>Our approach: threshold ECDSA (CGGMP24, 2-of-3) with policy enforcement between distributed signing parties — the server party evaluates constraints before participating in the interactive protocol. The full private key never exists.</p> <p>We&#39;re currently seeking expert feedback before publication, particularly on:</p> <p>- Threat model coverage (especially colluding parties)</p> <p>- Policy enforcement mechanism soundness</p> <p>- Practical deployment scenarios</p> <p>f you work on distributed cryptography, MPC protocols, or threshold signatures, we&#39;d value your technical perspective.</p> <p>Review link from Overleaf shared.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/CellistNegative1402"> /u/CellistNegative1402 </a> <br/> <span><a href="https://www.overleaf.com/read/cmnjwmmdrkvy#575044">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r6g2f7/research_guardian_rolegated_mpc_wallets_for_ai/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/research-guardian-role-gated-mpc-wallets-for-ai-agents</link><guid>823116</guid><author>COINS NEWS</author><dc:content /><dc:text>[Research] Guardian: Role-Gated MPC Wallets for AI Agents</dc:text></item><item><title>OWASP Smart Contract Top 10 (2026) Released Built on Real-World Exploit Data</title><description><![CDATA[<div class="md"><p>CredShields and SolidityScan are proud to have contributed to the release of the OWASP Smart Contract Top 10 (2026).</p> <p>The OWASP Smart Contract Top 10 defines the primary contract-level failure patterns that repeatedly lead to losses across blockchain systems. It focuses on real-world exploit trends and the vulnerabilities that continue to impact protocols in production.</p> <p>A sincere thank you to the Ethereum Foundation’s Ecosystem Support Program for supporting the OWASP Smart Contract Security initiative and helping advance shared security standards for the ecosystem.</p> <p>Community-driven standards like this only stay relevant through collaboration, research, and practitioner input. We’re grateful to be part of that effort.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SolidityScan"> /u/SolidityScan </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r6bn2l/owasp_smart_contract_top_10_2026_released_built/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r6bn2l/owasp_smart_contract_top_10_2026_released_built/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/owasp-smart-contract-top-10-2026-released-built-on-real-world-exploit-data</link><guid>823117</guid><author>COINS NEWS</author><dc:content /><dc:text>OWASP Smart Contract Top 10 (2026) Released Built on Real-World Exploit Data</dc:text></item><item><title>Tom Lee: Crypto winter likely ends by April — bullish on Ethereum accumulation</title><description><![CDATA[<div class="md"><p>Fundstrat’s Tom Lee says crypto winter is either already over or will end by April, pointing to late-cycle sentiment and improving macro.</p> <p>He also highlighted BitMine’s strategy of weekly ETH accumulation and staking as a long-term institutional bet on Ethereum.</p> <p>Article:<br/> <a href="https://btcusa.com/tom-lee-crypto-winter-likely-ends-by-april-as-ethereum-strategy-expands/">https://btcusa.com/tom-lee-crypto-winter-likely-ends-by-april-as-ethereum-strategy-expands/</a></p> <p>Do you agree we’re near the end of this cycle correction?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Enough_Angle_7839"> /u/Enough_Angle_7839 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r66jjm/tom_lee_crypto_winter_likely_ends_by_april/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r66jjm/tom_lee_crypto_winter_likely_ends_by_april/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/tom-lee-crypto-winter-likely-ends-by-april-bullish-on-ethereum-accumulation</link><guid>823115</guid><author>COINS NEWS</author><dc:content /><dc:text>Tom Lee: Crypto winter likely ends by April — bullish on Ethereum accumulation</dc:text></item><item><title>Daily General Discussion February 16, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r61oro/daily_general_discussion_february_16_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r61oro/daily_general_discussion_february_16_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-16-2026</link><guid>822976</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 16, 2026</dc:text></item><item><title>No code Dapp testing tool for Mainnet and L2s</title><description><![CDATA[<div class="md"><p>Hey guys, built an internal tool to help with my regression testing and automation testing on dapps. Would love some feedback.</p> <p>Github : <a href="https://github.com/sidNarasimhan/bugdapp">https://github.com/sidNarasimhan/bugdapp</a></p> <p>POC: <a href="https://jam.dev/c/e715f9f5-9889-4d63-88c7-d19171cfc9c8">https://jam.dev/c/e715f9f5-9889-4d63-88c7-d19171cfc9c8</a><br/> <a href="https://jam.dev/c/24fd68ec-fe79-4a9b-be50-aaf415823e3d">https://jam.dev/c/24fd68ec-fe79-4a9b-be50-aaf415823e3d</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Chromatic-Axion"> /u/Chromatic-Axion </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r5dirv/no_code_dapp_testing_tool_for_mainnet_and_l2s/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r5dirv/no_code_dapp_testing_tool_for_mainnet_and_l2s/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/no-code-dapp-testing-tool-for-mainnet-and-l2s</link><guid>822887</guid><author>COINS NEWS</author><dc:content /><dc:text>No code Dapp testing tool for Mainnet and L2s</dc:text></item><item><title>Daily General Discussion February 15, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r570ye/daily_general_discussion_february_15_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r570ye/daily_general_discussion_february_15_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-15-2026</link><guid>822777</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 15, 2026</dc:text></item><item><title>Weenus ???? Token Faucet Now Deployed On Robinhood Testnet</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r4xw1h/weenus_token_faucet_now_deployed_on_robinhood/"> <img src="https://preview.redd.it/k3rjc348djjg1.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=f998f783bfcc0ceeaf9a51c05286cf292792c5df" alt="Weenus ???? Token Faucet Now Deployed On Robinhood Testnet" title="Weenus ???? Token Faucet Now Deployed On Robinhood Testnet" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/BokkyPooBah"> /u/BokkyPooBah </a> <br/> <span><a href="https://i.redd.it/k3rjc348djjg1.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r4xw1h/weenus_token_faucet_now_deployed_on_robinhood/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/weenus-token-faucet-now-deployed-on-robinhood-testnet</link><guid>823257</guid><author>COINS NEWS</author><dc:content /><dc:text>Weenus ???? Token Faucet Now Deployed On Robinhood Testnet</dc:text></item><item><title>The annual Solidity Survey is live!</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r4wtku/the_annual_solidity_survey_is_live/"> <img src="https://external-preview.redd.it/vlMQmlWZuMWu0Rlu_CyzakHFlq0JgAjggjBsiS0ipfA.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=ea5b1f604b6c364757775f6eec18ef2e1572b088" alt="The annual Solidity Survey is live!" title="The annual Solidity Survey is live!" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/r08o"> /u/r08o </a> <br/> <span><a href="https://www.soliditylang.org/blog/2026/02/10/solidity-developer-survey-2025-announcement/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r4wtku/the_annual_solidity_survey_is_live/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/the-annual-solidity-survey-is-live</link><guid>822778</guid><author>COINS NEWS</author><dc:content /><dc:text>The annual Solidity Survey is live!</dc:text></item><item><title>A better path forward for prediction markets: PMs + LLMs as a next-gen replacement for fiat currency</title><description><![CDATA[<div class="md"><p>Recently I have been starting to worry about the state of prediction markets, in their current form. They have achieved a certain level of success: market volume is high enough to make meaningful bets and have a full-time job as a trader, and they often prove useful as a supplement to other forms of news media. But also, they seem to be over-converging to an unhealthy product market fit: embracing short-term cryptocurrency price bets, sports betting, and other similar things that have dopamine value but not any kind of long-term fulfillment or societal information value. My guess is that teams feel motivated to capitulate to these things because they bring in large revenue during a bear market where people are desperate - an understandable motive, but one that leads to corposlop.</p> <p>I have been thinking about how we can help get prediction markets out of this rut. My current view is that we should try harder to push them into a totally different use case: hedging, in a very generalized sense (TLDR: we&#39;re gonna replace fiat currency)</p> <p>Prediction markets have two types of actors: (i) &quot;smart traders&quot; who provide information to the market, and earn money, and necessarily (ii) some kind of actor who loses money.</p> <p>But who would be willing to lose money and keep coming back? There are basically three answers to this question:</p> <ol> <li>&quot;Naive traders&quot;: people with dumb opinions who bet on totally wrong things</li> <li>&quot;Info buyers&quot;: people who set up money-losing automated market makers, to motivate people to trade on markets to help the info buyer learn information they do not know.</li> <li>&quot;Hedgers&quot;: people who are -EV in a linear sense, but who use the market as insurance, reducing their risk.</li> </ol> <p>(1) is where we are today. IMO there is nothing fundamentally morally wrong with taking money from people with dumb opinions. But there still is something fundamentally &quot;cursed&quot; about relying on this too much. It gives the platform the incentive to seek out traders with dumb opinions, and create a public brand and community that encourages dumb opinions to get more people to come in. This is the slide to corposlop.</p> <p>(2) has always been the idealistic hope of people like Robin Hanson. However, info buying has a public goods problem: you pay for the info, but everyone in the world gets it, including those who don&#39;t pay. There are limited cases where it makes sense for one org to pay (esp. decision markets), but even there, it seems likely that the market volumes achieved with that strategy will not be too high.</p> <p>This gets us to (3). Suppose that you have shares in a biotech company. It&#39;s public knowledge that the Purple Party is better for biotech than the Yellow Party. So if you buy a prediction market share betting that the Yellow Party will win the next election, on average, you are reducing your risk.</p> <p>Mathematical example: suppose that if Purple wins, the share price will be a dice roll between [80...120], and if Yellow wins, it&#39;s between [60...100]. If you make a size $5 bet that Yellow will win, your earnings become equivalent to a dice roll between [70...110] in both cases. Taking a logarithmic model of utility, this risk reduction is worth $0.58.</p> <p>Now, let&#39;s get to a more fascinating example. What do people who want stablecoins ultimately want? They want price stability. They have some future expenses in mind, and they want a guarantee that will be able to pay those expenses. But if crypto grows on top of USD-backed stablecoins, crypto is ultimately not truly decentralized. Furthermore, different people have different types of expenses. There has been lots of thinking about making an &quot;ideal stablecoin&quot; that is based on some decentralized global price index, but what if the real solution is to go a step further, and get rid of the concept of currency altogether?</p> <p>Here&#39;s the idea. You have price indices on all major categories of goods and services that people buy (treating physical goods/services in different regions as different categories), and prediction markets on each category. Each user (individual or business) has a local LLM that understands that user&#39;s expenses, and offers the user a personalized basket of prediction market shares, representing &quot;N days of that user&#39;s expected future expenses&quot;.</p> <p>Now, we do not need fiat currency at all! People can hold stocks, ETH, or whatever else to grow wealth, and personalized prediction market shares when they want stability.</p> <p>Both of these examples require prediction markets denominated in an asset people want to hold, whether interest-bearing fiat, wrapped stocks, or ETH. Non-interest-bearing fiat has too-high opportunity cost, that overwhelms the hedging value. But if we can make it work, it&#39;s much more sustainable than the status quo, because both sides of the equation are likely to be long-term happy with the product that they are buying, and very large volumes of sophisticated capital will be willing to participate.</p> <p>Build the next generation of finance, not corposlop.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r4k0gy/a_better_path_forward_for_prediction_markets_pms/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r4k0gy/a_better_path_forward_for_prediction_markets_pms/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/a-better-path-forward-for-prediction-markets-pms-llms-as-a-next-gen-replacement-for-fiat-currency</link><guid>822645</guid><author>COINS NEWS</author><dc:content /><dc:text>A better path forward for prediction markets: PMs + LLMs as a next-gen replacement for fiat currency</dc:text></item><item><title>Daily General Discussion February 14, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r4cvrr/daily_general_discussion_february_14_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r4cvrr/daily_general_discussion_february_14_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-14-2026</link><guid>822644</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 14, 2026</dc:text></item><item><title>140 - JT - Surprise visit from JasperTheFriendlyGhost from Rocketpool</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r3zzv1/140_jt_surprise_visit_from_jasperthefriendlyghost/"> <img src="https://external-preview.redd.it/L0yR2tXrpMrZNy9lBHRbvo4a_TpbEdL6siE_aVICdUc.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=c5235608e8309b1a336b376fd3f2f7805dc3f84e" alt="140 - JT - Surprise visit from JasperTheFriendlyGhost from Rocketpool" title="140 - JT - Surprise visit from JasperTheFriendlyGhost from Rocketpool" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jtnichol"> /u/jtnichol </a> <br/> <span><a href="https://youtu.be/rxI6AyRSaxY">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r3zzv1/140_jt_surprise_visit_from_jasperthefriendlyghost/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/140-jt-surprise-visit-from-jasperthefriendlyghost-from-rocketpool</link><guid>822500</guid><author>COINS NEWS</author><dc:content /><dc:text>140 - JT - Surprise visit from JasperTheFriendlyGhost from Rocketpool</dc:text></item><item><title>Tomasz stepping down from co-ED role at the EF at the end of February 2026 | Ethereum Foundation Blog</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r3zdo5/tomasz_stepping_down_from_coed_role_at_the_ef_at/"> <img src="https://external-preview.redd.it/q0-7S5tiX5LLt6nT8x9MeFRuvygCPx1_Jl9lBLaCSos.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=f237dd93e12e43397d52b5707799b4e3e805237c" alt="Tomasz stepping down from co-ED role at the EF at the end of February 2026 | Ethereum Foundation Blog" title="Tomasz stepping down from co-ED role at the EF at the end of February 2026 | Ethereum Foundation Blog" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://blog.ethereum.org/2026/02/13/tomasz-update">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r3zdo5/tomasz_stepping_down_from_coed_role_at_the_ef_at/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/tomasz-stepping-down-from-co-ed-role-at-the-ef-at-the-end-of-february-2026-ethereum-foundation-blog</link><guid>822499</guid><author>COINS NEWS</author><dc:content /><dc:text>Tomasz stepping down from co-ED role at the EF at the end of February 2026 | Ethereum Foundation Blog</dc:text></item><item><title>Ethereal news weekly #11 | BlackRock BUIDL tradeable via UniswapX, ENS staying on mainnet, Solidity developer survey</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r3ofyj/ethereal_news_weekly_11_blackrock_buidl_tradeable/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #11 | BlackRock BUIDL tradeable via UniswapX, ENS staying on mainnet, Solidity developer survey" title="Ethereal news weekly #11 | BlackRock BUIDL tradeable via UniswapX, ENS staying on mainnet, Solidity developer survey" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-11/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r3ofyj/ethereal_news_weekly_11_blackrock_buidl_tradeable/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-11-blackrock-buidl-tradeable-via-uniswapx-ens-staying-on-mainnet-solidity-developer-survey</link><guid>822501</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #11 | BlackRock BUIDL tradeable via UniswapX, ENS staying on mainnet, Solidity developer survey</dc:text></item><item><title>Deterministic Deployments, Part 2: CREATE2-based approaches</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r3juq1/deterministic_deployments_part_2_create2based/"> <img src="https://external-preview.redd.it/tthjQaew-zEEPE6A60G57SpBAn5zjtS-dDvuxqIzrcQ.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=44e38296d9a51c73225a60c500141d8442748444" alt="Deterministic Deployments, Part 2: CREATE2-based approaches" title="Deterministic Deployments, Part 2: CREATE2-based approaches" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/fvictorio"> /u/fvictorio </a> <br/> <span><a href="https://paragraph.com/@cethology/deterministic-deployments-part-2-create2-based-approaches">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r3juq1/deterministic_deployments_part_2_create2based/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/deterministic-deployments-part-2-create2-based-approaches</link><guid>822502</guid><author>COINS NEWS</author><dc:content /><dc:text>Deterministic Deployments, Part 2: CREATE2-based approaches</dc:text></item><item><title>Daily General Discussion February 13, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r3hd2w/daily_general_discussion_february_13_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r3hd2w/daily_general_discussion_february_13_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-13-2026</link><guid>822351</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 13, 2026</dc:text></item><item><title>Highlights from the All Core Developers Execution (ACDE) Call #230</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r3e9zb/highlights_from_the_all_core_developers_execution/"> <img src="https://external-preview.redd.it/kjHQSr-5YkO4qw_5lqugtHu11i0M3gUvEkpOYSwyFcY.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=c4b3ea401feb2fca046638371f8fb0eff998961d" alt="Highlights from the All Core Developers Execution (ACDE) Call #230" title="Highlights from the All Core Developers Execution (ACDE) Call #230" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/highlights-from-the-all-core-developers-execution-acde-call-230/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r3e9zb/highlights_from_the_all_core_developers_execution/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/highlights-from-the-all-core-developers-execution-acde-call-230</link><guid>822353</guid><author>COINS NEWS</author><dc:content /><dc:text>Highlights from the All Core Developers Execution (ACDE) Call #230</dc:text></item><item><title>I got HTTP 402 working as an actual payment protocol for AI agents, here's what I learned</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/HumbleIndependence43"> /u/HumbleIndependence43 </a> <br/> <span><a href="/r/openclaw/comments/1r3bkxt/i_got_http_402_working_as_an_actual_payment/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r3bm1g/i_got_http_402_working_as_an_actual_payment/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/i-got-http-402-working-as-an-actual-payment-protocol-for-ai-agents-heres-what-i-learned</link><guid>822352</guid><author>COINS NEWS</author><dc:content /><dc:text>I got HTTP 402 working as an actual payment protocol for AI agents, here's what I learned</dc:text></item><item><title>My thoughts on dapp user incentives</title><description><![CDATA[<div class="md"><p>Responding to <a href="https://firefly.social/post/x/2021632354649821275">https://firefly.social/post/x/2021632354649821275</a></p> <p>My first reaction to this was:</p> <p>&quot;And that&#39;s why I just got my $2,725 check of fileverse tokens now that fileverse has grown to the point where my dad regularly writes docs in fileverse that he sends to me&quot;</p> <p>My second reaction to this was:</p> <p>&quot;I see how this makes total sense from a crypto perspective, but it makes zero sense from an outside-of-crypto perspective ... hmm, what does this say about crypto?&quot;</p> <p>My more detailed reaction:</p> <p>There are many distinct activities that you can refer to as &quot;incentivizing users&quot;.</p> <p>First of all, paying some of your users with coins that your app gets by charging other users is totally fine: that&#39;s just a sustainable economic loop, there is nothing wrong with this.</p> <p>The activity that I think people are thinking about more is, paying all your users while the app is early, with the hope of &quot;building network effect&quot; and then making that money back (and much more) later when the app is mature.</p> <p>My general view, if you <em>really</em> have to simplify it and sacrifice some nuances for the sake of brevity, is:</p> <ul> <li> Incentives that compensate for unavoidable temporary costs that come from your thing being immature are good</li> <li> Incentives that bring in totally new classes of users that would not use even a mature version of your thing without those incentives are bad For example, I have no problem with many types of defi liquidity rewards, because to me they compensate for per-year risk of the project being hacked or the team turning out to be scammers, a risk that is inherently higher for new projects and much lower once a project becomes more mature.</li> </ul> <p>Paying people to make tweets that get attention, might be the most &quot;pure&quot; example of the wrong thing to do, because you are going to get people who come to your platform to make tweets, with every incentive to game any mechanisms you have to judge quality and optimize for maximum laziness on their part, and then immediately disappear as soon as the incentives go away. In principle, content incentivization is a valuable and important problem, but it should be done with care, with an eye to quality over quantity, which are not natural goals that designers of &quot;bootstrapping incentives&quot; have by default.</p> <p>If fact, even if users do not disappear after incentives go away, there is a further problem: you succeed from the perspective of growing <em>quantity of community</em>, but you fail from the perspective of growing <em>quality of community</em>. In the case of defi protocols, you can argue: 1 ETH in an LP pool is 1 ETH doing useful work, regardless of whether it&#39;s put there by a cypherpunk or an amoral money maximizer. But, (i) this argument can only be made for defi, not for other areas like social, where esp. in the 2020s, quality matters more than quantity, and (ii) there are always subtle ways in which higher-quality community members help your protocol more in the long term (eg. by writing open-source tools, answering people&#39;s questions in online or offline forums, being potential developers on your team).</p> <p>The ideal incentive is an incentive that exactly compensates for temporary downsides of your protocol, those downsides that will disappear once the protocol has more maturity, and attracts zero users who would not be there organically once the protocol is mature.</p> <p>Charging users fees, but paying them back in protocol tokens, I think is also reasonable: it&#39;s effectively turning your users into your investors by default, which seems like a good thing to do.</p> <p>A further more cynical take I have is that in the 2021-24 era, the &quot;real product&quot; was creating a speculative bubble, and so the real function of many incentives was to pump up narratives to justify the narrative for the bubble. So any argument that incentives are good for bootstrapping acquisition should be not judged on the question of whether it&#39;s plausible, but on the question of whether it&#39;s more plausible than the alternative claim that it&#39;s all galaxy brain justification ( vitalik.eth.limo/general/2025… ) for a &quot;pump and dump wearing a suit&quot;.</p> <p>TLDR: the bulk of the effort should be on making an actually-useful app. This was historically ignored, because it&#39;s not necessary for narrative engineering to create a speculative bubble. But now it is necessary. And we do see that the successful apps now, the apps that we actually most appreciate and respect, do the bulk of their user acquisition work in that way, not by paying users to come in indiscriminately.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r2u268/my_thoughts_on_dapp_user_incentives/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2u268/my_thoughts_on_dapp_user_incentives/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/my-thoughts-on-dapp-user-incentives</link><guid>822212</guid><author>COINS NEWS</author><dc:content /><dc:text>My thoughts on dapp user incentives</dc:text></item><item><title>Idea: Generation-Based Blob Pricing to Raise Price Moderately on Existing L2s and Higher on Future L2s</title><description><![CDATA[<div class="md"><p>Ethereum&#39;s L2 ecosystem has succeeded beyond expectations. Our Gen1 L2s—Arbitrum, Base, Optimism, and others—took a risk on rollup infrastructure when it was experimental. They proved the model works and scaled Ethereum to billions in TVL, successfully killing the &quot;Ethereum Killers.&quot;</p> <p>But as <a href="/u/vbuterin">/u/vbuterin</a> correctly pointed out, current blob fees are unsustainably low for long-term network health. But I think there&#39;s a path forward that can make the transition into Vitalik&#39;s new vision for L2s easier.</p> <h2>Proposal: Generation-based pricing</h2> <p><strong>Gen1 L2s</strong> (launched before March 2026):</p> <ul> <li> Preferential &quot;founder pricing&quot; </li> <li>Gradual 15-20% annual increases over 5 years (I don&#39;t know if 15-20% is correct, but just basically a small enough increase that these L2s won&#39;t rebel and happily stay in the ecosystem).</li> <li>Still far below independent L1 operation costs (~$10M+/year)</li> </ul> <p><strong>Gen2 L2s</strong> (launching 2026-2028):</p> <ul> <li> Starting price 3-4x Gen1 base rate</li> <li>Steeper increases (25%/year)</li> <li>Still economically viable vs. building independent chains</li> </ul> <p><strong>Gen3+ L2s</strong> (2029+):</p> <ul> <li>Market-rate pricing reflecting network maturity</li> <li>Maybe staking required.</li> </ul> <h2>Why this works:</h2> <ul> <li>Honors early adopters (not a penalty, a reward), but still extracting some additional value from them.</li> <li>Creates urgency for new projects (launch early = better terms)</li> <li>Familiar model (AWS Reserved Instances, Netflix early subscriber rates)</li> <li>Predictable 5-year schedule (institutions can forecast costs).</li> <li>Sustainable revenue for Ethereum without driving L2s away</li> <li>This isn&#39;t &quot;picking winners&quot;. When you give away your old box of comic books on craigslist and you say &quot;first come first serve&quot; is that picking winners?</li> </ul> <p>By 2030, Ethereum could capture $50M+/year vs. current $182K—without losing any major L2s.</p> <p>This approach rewards risk-takers, provides clear pricing roadmaps, and ensures Ethereum&#39;s infrastructure remains sustainable as we scale to billions of users (human and ai).</p> <p>Thank you for reading I look forward to your criticism.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/r2002"> /u/r2002 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r2s7k1/idea_generationbased_blob_pricing_to_raise_price/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2s7k1/idea_generationbased_blob_pricing_to_raise_price/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/idea-generation-based-blob-pricing-to-raise-price-moderately-on-existing-l2s-and-higher-on-future-l2s</link><guid>822211</guid><author>COINS NEWS</author><dc:content /><dc:text>Idea: Generation-Based Blob Pricing to Raise Price Moderately on Existing L2s and Higher on Future L2s</dc:text></item><item><title>Ethereum scaling for our game ate our entire seed round and we had nothing to show investors</title><description><![CDATA[<div class="md"><p>Raised a small seed round last year to build a blockchain game. 12 months runway and a decent team. Spent the first 4 months deploying our own custom rollup because we thought we needed full control. Hired devops, spent probably $50k just on infrastructure and tools. Got it working but kept breaking. Database corruption, sequencer crashes, bridge exploits. Every week a new critical issue taking days to fix. Meanwhile, our game wasn&#39;t getting built. Our artists and designers were waiting for infrastructure so they could test. We had concept art and design docs but nothing playable. On month 4 our lead investor asked for a demo. We had basically nothing and he was rightfully frustrated. That&#39;s when it hit me. We were treating infrastructure as our competitive advantage when it should&#39;ve been the game itself. So pivoted to caldera, and deployed in 3 days so the team could focus on building the game. Shipped a playable prototype 2 weeks later. Burned 4 months and $60k learning this. Unless you&#39;re an infrastructure company, use existing tools and focus on what makes your product unique. Users won&#39;t care what rollup you use, they&#39;ll care if your product is good.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Acrobatic-Bake3344"> /u/Acrobatic-Bake3344 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r2rb5p/ethereum_scaling_for_our_game_ate_our_entire_seed/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2rb5p/ethereum_scaling_for_our_game_ate_our_entire_seed/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-scaling-for-our-game-ate-our-entire-seed-round-and-we-had-nothing-to-show-investors</link><guid>822214</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum scaling for our game ate our entire seed round and we had nothing to show investors</dc:text></item><item><title>Payment links (fiat to crypto) - advice/help needed</title><description><![CDATA[<div class="md"><p>If someone can help me. I have a website where clients are able to buy monthly/yearly subscriptions, but I want them to pay normal with card or revolut and for me to receive this payment in crypto like USDC, ETH or others. Is there kind of service available today? Reason for this is because my website is adult contect so I can&#39;t use Stripe or websites like that unfortenetly because they don&#39;t allow it. And my clients can&#39;t pay in crypto because most of them are probably not &quot;tech smart&quot; enough to use crypto for payments.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/sashabcro"> /u/sashabcro </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r2r81i/payment_links_fiat_to_crypto_advicehelp_needed/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2r81i/payment_links_fiat_to_crypto_advicehelp_needed/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/payment-links-fiat-to-crypto-advicehelp-needed</link><guid>822213</guid><author>COINS NEWS</author><dc:content /><dc:text>Payment links (fiat to crypto) - advice/help needed</dc:text></item><item><title>Vitalik’s ZK API Proposal Aims to Make Ethereum the Home for AI</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r2pd9l/vitaliks_zk_api_proposal_aims_to_make_ethereum/"> <img src="https://external-preview.redd.it/4Q72dzaxX3EJohPvFqSrZDEoW3uvVB9THc0EjfD-8wI.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=1cc5e968948a090e0a020ba3b63fb97e699c01d7" alt="Vitalik’s ZK API Proposal Aims to Make Ethereum the Home for AI" title="Vitalik’s ZK API Proposal Aims to Make Ethereum the Home for AI" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/vitaliks-zk-api-proposal-aims-to-make-ethereum-the-home-for-ai/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2pd9l/vitaliks_zk_api_proposal_aims_to_make_ethereum/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/vitaliks-zk-api-proposal-aims-to-make-ethereum-the-home-for-ai</link><guid>822160</guid><author>COINS NEWS</author><dc:content /><dc:text>Vitalik’s ZK API Proposal Aims to Make Ethereum the Home for AI</dc:text></item><item><title>Daily General Discussion February 12, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r2lnxp/daily_general_discussion_february_12_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2lnxp/daily_general_discussion_february_12_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-12-2026</link><guid>822097</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 12, 2026</dc:text></item><item><title>everyone talks about eth l2s. what about bitcoin l2s? is stx actually interesting?</title><description><![CDATA[<div class="md"><p>bitcoin has a $1T+ market cap… and basically no native defi. stacks (stx) is trying to change that, smart contracts anchored to bitcoin, btc-secured, all that. the thesis sounds simple: if even a small % of btc liquidity flows into btc-native defi, that’s huge but i keep wondering: does bitcoin culture even want defi? is stx really a btc l2, or just another chain marketing itself that way? is anyone actually building or using anything meaningful on it?</p> <p>trying to figure out if this is an early narrative… or something btc maxis will never embrace.</p> <p>wdyt??</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/No_Growth6091"> /u/No_Growth6091 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r2lh6f/everyone_talks_about_eth_l2s_what_about_bitcoin/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2lh6f/everyone_talks_about_eth_l2s_what_about_bitcoin/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/everyone-talks-about-eth-l2s-what-about-bitcoin-l2s-is-stx-actually-interesting</link><guid>822099</guid><author>COINS NEWS</author><dc:content /><dc:text>everyone talks about eth l2s. what about bitcoin l2s? is stx actually interesting?</dc:text></item><item><title>Just realized Eth is the future.</title><description><![CDATA[<div class="md"><p>Had a tenthly chat with AI regarding the current state of things and it identified btc as the world&#39;s most harmful pyramid to date with ever changing survival narrative and ETH is the actual decentralized corporation with vast value adding infrastructure. Fundamentals are healthy!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Galactic-Dino"> /u/Galactic-Dino </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r2leov/just_realized_eth_is_the_future/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2leov/just_realized_eth_is_the_future/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/just-realized-eth-is-the-future</link><guid>822100</guid><author>COINS NEWS</author><dc:content /><dc:text>Just realized Eth is the future.</dc:text></item><item><title>Trust Wallet</title><description><![CDATA[<div class="md"><p>Hello Everyone. I&#39;ve agreed, in principle, to invest a small amount of money in a start up. I&#39;m taking a small percentage of equity in the company, but also signing a SAFT where I need to provide an &quot;Ethereum/BASE Wallet Address&quot;. This is already beyond my limited crypto knowledge.</p> <p>I downloaded a couple of apps that I think will do the job, currently going through Trust Wallet. </p> <p>What I am stumped with is what details I now provide. There was no registration on the app, when I click receive, i then have to choose what I want to receive. Is that the address that comes up for ETH? Or would I wait for the token to go live? Is that long alpha/number all that is required to receive/dispose of tokens - no password or secondary checks?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Brian_Of_The_Keith"> /u/Brian_Of_The_Keith </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r2jhmv/trust_wallet/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2jhmv/trust_wallet/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/trust-wallet</link><guid>822098</guid><author>COINS NEWS</author><dc:content /><dc:text>Trust Wallet</dc:text></item><item><title>I built the first 100% on-chain, ETH-in ETH-out (no new token), skill based competitive gaming platform. No servers, no bullshit.</title><description><![CDATA[<div class="md"><p>It&#39;s open source and live on Arbitrum One right now. Happy to answer any questions!</p> <p><a href="https://etour.games">https://etour.games</a></p> <p>Here&#39;s some gameplay screenshots:</p> <p><a href="https://imgur.com/tPqmCpl">https://imgur.com/tPqmCpl</a></p> <p><a href="https://imgur.com/cj7T0Zm">https://imgur.com/cj7T0Zm</a></p> <p><a href="https://imgur.com/AmbvLOH">https://imgur.com/AmbvLOH</a></p> <p><a href="https://imgur.com/Z39Ix1L">https://imgur.com/Z39Ix1L</a></p> <p><a href="https://imgur.com/VWBbj51">https://imgur.com/VWBbj51</a></p> <p><a href="https://imgur.com/YITii03">https://imgur.com/YITii03</a></p> <p><a href="https://imgur.com/a/Wni0Ybu">https://imgur.com/a/Wni0Ybu</a></p> <p>edit: here&#39;s the whitepaper for those who care <a href="https://etour.games/whitepaper">https://etour.games/whitepaper</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SourTangerine"> /u/SourTangerine </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r2fgfv/i_built_the_first_100_onchain_ethin_ethout_no_new/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2fgfv/i_built_the_first_100_onchain_ethin_ethout_no_new/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/i-built-the-first-100-on-chain-eth-in-eth-out-no-new-token-skill-based-competitive-gaming-platform-no-servers-no-bullshit</link><guid>822029</guid><author>COINS NEWS</author><dc:content /><dc:text>I built the first 100% on-chain, ETH-in ETH-out (no new token), skill based competitive gaming platform. No servers, no bullshit.</dc:text></item><item><title>DWebCamp 2026</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/ligi"> /u/ligi </a> <br/> <span><a href="https://dwebcamp.org/berlin-2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2ebhy/dwebcamp_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/dwebcamp-2026</link><guid>822032</guid><author>COINS NEWS</author><dc:content /><dc:text>DWebCamp 2026</dc:text></item><item><title>Vitalik Buterin on the Future of AI and Ethereum’s Role in It</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/everstake"> /u/everstake </a> <br/> <span><a href="/r/ethtrader/comments/1r1yyqy/vitalik_buterin_on_the_future_of_ai_and_ethereums/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r2anmr/vitalik_buterin_on_the_future_of_ai_and_ethereums/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/vitalik-buterin-on-the-future-of-ai-and-ethereums-role-in-it</link><guid>822030</guid><author>COINS NEWS</author><dc:content /><dc:text>Vitalik Buterin on the Future of AI and Ethereum’s Role in It</dc:text></item><item><title>Scalable Go Service for Canonical Ethereum Block Streaming and Event Pipelines</title><description><![CDATA[<div class="md"><p>Hey everyone!</p> <p>I’ve been working on an open-source project called <strong>blockscan-ethereum-service</strong>, written in Go:<br/> <a href="https://github.com/pancudaniel7/blockscan-ethereum-service">https://github.com/pancudaniel7/blockscan-ethereum-service</a></p> <p><strong>What it does</strong></p> <p>It’s a production-grade microservice that ingests Ethereum blocks in real time and streams them into Kafka as canonical block events. It’s built with performance, reliability, and horizontal scalability in mind, making it a strong fit for backend systems that depend on on-chain data.</p> <p><strong>Why it matters</strong></p> <p>Many existing block scanners are heavy, highly opinionated, or not designed for real-world backend architectures. This service focuses on:</p> <p>• Real-time block ingestion via WebSocket subscriptions<br/> • Partition-aware Kafka publishing with effectively-once delivery semantics<br/> • Reorg awareness, emitting tombstone and update events on chain reorganizations<br/> • Durable coordination using Redis markers<br/> • Observability with structured logs, metrics, and traces</p> <p><strong>Who might find it useful</strong></p> <p>• Go developers building Web3 backends<br/> • Teams designing custom Ethereum data pipelines<br/> • Anyone integrating blockchain data into event-driven systems</p> <p>If you check it out and find it useful, I’d truly appreciate a <strong>star</strong> on the repo.<br/> Happy to answer questions or discuss the design and architecture!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Separate-Share6701"> /u/Separate-Share6701 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r29vkh/scalable_go_service_for_canonical_ethereum_block/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r29vkh/scalable_go_service_for_canonical_ethereum_block/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/scalable-go-service-for-canonical-ethereum-block-streaming-and-event-pipelines</link><guid>822033</guid><author>COINS NEWS</author><dc:content /><dc:text>Scalable Go Service for Canonical Ethereum Block Streaming and Event Pipelines</dc:text></item><item><title>ETHDenver 2026 Events Recommendations??</title><description><![CDATA[<div class="md"><p>I am attending ETHDenver 2026 next week for the first time. Do y&#39;all have any recommendation on which events are the best to go to? Main and side events? I&#39;ve been scrolling through Luma and have signed up for a bunch, but would love the opinion of others going. Would welcome any recos :) </p> <p>For context, working in a multi-stage crypto VC, so looking for sourcing opportunities and meeting cool people! </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Comfortable-Gap-7039"> /u/Comfortable-Gap-7039 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r28jcb/ethdenver_2026_events_recommendations/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r28jcb/ethdenver_2026_events_recommendations/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethdenver-2026-events-recommendations</link><guid>822031</guid><author>COINS NEWS</author><dc:content /><dc:text>ETHDenver 2026 Events Recommendations??</dc:text></item><item><title>Diamond Hands</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r21934/diamond_hands/"> <img src="https://preview.redd.it/98w7x2f91wig1.jpg?width=140&amp;height=105&amp;auto=webp&amp;s=7ec0cdfbf39a6eaae7f05e30f34d118bef7a2a93" alt="Diamond Hands" title="Diamond Hands" /> </a> </td><td> <div class="md"><p><a href="https://preview.redd.it/98w7x2f91wig1.jpg?width=3264&amp;format=pjpg&amp;auto=webp&amp;s=39ed4bae7899782412726ab375037e0c29e58fd7">https://preview.redd.it/98w7x2f91wig1.jpg?width=3264&amp;format=pjpg&amp;auto=webp&amp;s=39ed4bae7899782412726ab375037e0c29e58fd7</a></p> <p>Who&#39;s with me? LFG! Diamond Hands!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Jamesss111222333"> /u/Jamesss111222333 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r21934/diamond_hands/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r21934/diamond_hands/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/diamond-hands</link><guid>821892</guid><author>COINS NEWS</author><dc:content /><dc:text>Diamond Hands</dc:text></item><item><title>A smart contract visualizer tool</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r1v1mg/a_smart_contract_visualizer_tool/"> <img src="https://preview.redd.it/rz5mi9qhquig1.png?width=140&amp;height=105&amp;auto=webp&amp;s=017c13b137bf6b5246f328564754eabcc260238e" alt="A smart contract visualizer tool" title="A smart contract visualizer tool" /> </a> </td><td> <div class="md"><p>Hello folks!</p> <p>I drafted this smart contract visualizer tool. It shows the structure of the contract, a plain english explenation and an AI powered security analysis (screenshots below).</p> <p>The purpose would be double:</p> <ol> <li>for devs, easily understand and read other contract for learning purpose</li> <li>for users, double-check a contract before interacting with it</li> </ol> <p>There would be tons of possible improvements:</p> <ul> <li>expand code by clicking on the tile</li> <li>multi chain support</li> <li>support complex contract for many imports by exploding them</li> </ul> <p>What do you think? Does the tool have a reason to exist? :)</p> <p><a href="https://preview.redd.it/rz5mi9qhquig1.png?width=1930&amp;format=png&amp;auto=webp&amp;s=5b8c09f479a17e19dadcdad9d2eb4540937a8d83">https://preview.redd.it/rz5mi9qhquig1.png?width=1930&amp;format=png&amp;auto=webp&amp;s=5b8c09f479a17e19dadcdad9d2eb4540937a8d83</a></p> <p><a href="https://preview.redd.it/2juw6bqhquig1.png?width=1934&amp;format=png&amp;auto=webp&amp;s=1a3ed192e5391c60fb9a1094adb71f364d6eaecc">https://preview.redd.it/2juw6bqhquig1.png?width=1934&amp;format=png&amp;auto=webp&amp;s=1a3ed192e5391c60fb9a1094adb71f364d6eaecc</a></p> <p><a href="https://preview.redd.it/2oi05cqhquig1.png?width=1940&amp;format=png&amp;auto=webp&amp;s=2543b85dd1018625ec7e8a64c01be2235a8b31fd">https://preview.redd.it/2oi05cqhquig1.png?width=1940&amp;format=png&amp;auto=webp&amp;s=2543b85dd1018625ec7e8a64c01be2235a8b31fd</a></p> <p>Thanks,<br/> Francesco</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/fcarlucci"> /u/fcarlucci </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r1v1mg/a_smart_contract_visualizer_tool/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r1v1mg/a_smart_contract_visualizer_tool/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/a-smart-contract-visualizer-tool</link><guid>821891</guid><author>COINS NEWS</author><dc:content /><dc:text>A smart contract visualizer tool</dc:text></item><item><title>Daily General Discussion February 11, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r1pegs/daily_general_discussion_february_11_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r1pegs/daily_general_discussion_february_11_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-11-2026</link><guid>821760</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 11, 2026</dc:text></item><item><title>Annual Solidity Developer Survey is Live!</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r1i1e6/annual_solidity_developer_survey_is_live/"> <img src="https://external-preview.redd.it/vlMQmlWZuMWu0Rlu_CyzakHFlq0JgAjggjBsiS0ipfA.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=ea5b1f604b6c364757775f6eec18ef2e1572b088" alt="Annual Solidity Developer Survey is Live!" title="Annual Solidity Developer Survey is Live!" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://www.soliditylang.org/blog/2026/02/10/solidity-developer-survey-2025-announcement/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r1i1e6/annual_solidity_developer_survey_is_live/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/annual-solidity-developer-survey-is-live</link><guid>821761</guid><author>COINS NEWS</author><dc:content /><dc:text>Annual Solidity Developer Survey is Live!</dc:text></item><item><title>Daily General Discussion February 10, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r0svsd/daily_general_discussion_february_10_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r0svsd/daily_general_discussion_february_10_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-10-2026</link><guid>821605</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 10, 2026</dc:text></item><item><title>eth/btc just hit 3-year lows. bargain or structural decline?</title><description><![CDATA[<div class="md"><p>eth/btc is around 0.028 right now, down ~60% from the 2022 peak. btc dominance is back above 60%.</p> <p>there are two reads and i can’t decide which one’s right: either this is classic mean reversion (btc peaks → eth leads the next rotation), or eth has genuinely lost its edge while btc locked in the “digital gold” + ETF narrative. l2s are booming, but value capture feels weaker. sentiment is terrible, which is usually interesting… or dangerous.</p> <p>for people watching the ratio: is this where you start accumulating eth, or is the thesis actually broken?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/No_Growth6091"> /u/No_Growth6091 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r0sioy/ethbtc_just_hit_3year_lows_bargain_or_structural/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r0sioy/ethbtc_just_hit_3year_lows_bargain_or_structural/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethbtc-just-hit-3-year-lows-bargain-or-structural-decline</link><guid>821465</guid><author>COINS NEWS</author><dc:content /><dc:text>eth/btc just hit 3-year lows. bargain or structural decline?</dc:text></item><item><title>Offering free security reviews in exchange for feedback</title><description><![CDATA[<div class="md"><p>We’re launching a new service focused on smart contract reviews without the overhead of a full audit.</p> <p>Scope is limited and practical. Logic, exploitability, and protocol level risks. No certification and no audit opinion.</p> <p>To validate the approach, we’re offering a limited number of free focused smart contract security reviews for projects that are code complete and either close to launch or already deployed, in exchange for honest feedback.</p> <p>This is not meant to replace an audit. It’s a short, concrete review focused on protocol logic and exploit paths.</p> <p>Shoot a dm, if you&#39;re interested.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/k_ekse"> /u/k_ekse </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r09eh7/offering_free_security_reviews_in_exchange_for/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r09eh7/offering_free_security_reviews_in_exchange_for/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/offering-free-security-reviews-in-exchange-for-feedback</link><guid>821333</guid><author>COINS NEWS</author><dc:content /><dc:text>Offering free security reviews in exchange for feedback</dc:text></item><item><title>$86M lost to DeFi hacks in January 2026 alone</title><description><![CDATA[<div class="md"><p>In January 2026, DeFi hacks resulted in roughly $86M in losses across multiple protocols.</p> <p>More concerning:<br/> 7 separate incidents exceeded $1M each.<br/> Most of the exploits were rooted in smart contract vulnerabilities.</p> <p>The pattern feels familiar at this point. Repeated issues, similar bug classes, and preventable failures.</p> <p>The question isn’t whether exploits will continue it’s whether teams are adapting fast enough.</p> <p>Are you building with security as a first principle, or still treating it as a final checklist before launch?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SolidityScan"> /u/SolidityScan </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r097uw/86m_lost_to_defi_hacks_in_january_2026_alone/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r097uw/86m_lost_to_defi_hacks_in_january_2026_alone/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/86m-lost-to-defi-hacks-in-january-2026-alone</link><guid>821336</guid><author>COINS NEWS</author><dc:content /><dc:text>$86M lost to DeFi hacks in January 2026 alone</dc:text></item><item><title>A Quieter Market: What Crypto Derivatives Have Been Doing Since October 2025</title><description><![CDATA[<div class="md"><p>Crypto prices have continued to swing, but derivatives activity since October looks much more subdued. Open interest and volumes across major assets have fallen and stayed lower, suggesting leverage has been reduced rather than rotated elsewhere. Funding rates are mostly calm, with the exception of Solana, where short positioning is more pronounced. <a href="https://www.sandmark.com/news/analysis/quieter-market-what-crypto-derivatives-have-been-doing-october-2025?utm_medium=referral&amp;utm_source=redbot&amp;utm_campaign=redbot-ww-en-brand">A Quieter Market: What Crypto Derivatives Have Been Doing Since October 2025 | Sandmark</a></p> <p>What stands out to me isn’t that traders are outright bearish, but that they’re stepping back. It feels less like a call on prices going down and more like people reducing risk after a long period of easy leverage. With tighter limits and less appetite to borrow, price moves may matter differently than before. Big question is ... is this just a temporary pause, or has the market’s comfort with leverage really changed?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/JAYCAZ1"> /u/JAYCAZ1 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r07svg/a_quieter_market_what_crypto_derivatives_have/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r07svg/a_quieter_market_what_crypto_derivatives_have/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/a-quieter-market-what-crypto-derivatives-have-been-doing-since-october-2025</link><guid>821337</guid><author>COINS NEWS</author><dc:content /><dc:text>A Quieter Market: What Crypto Derivatives Have Been Doing Since October 2025</dc:text></item><item><title>Looking for CPI-pegged non-algorithmic stablecoin</title><description><![CDATA[<div class="md"><p>I am looking for a stablecoin that, instead of being pegged to a fiat currency, is pegged to a consumer price index, preferably one for prices where I live (Wales, UK), so that it rises with inflation.</p> <p>I don&#39;t mind whether it is partly centralised​ or not so long as it is actually censorship-resistent (so, unlike USDT).</p> <p>Should be safe i.e.​ vulnerable to being depegged so not algorithmic.</p> <p>Does this exist?</p> <p>Bonus points if it doesn&#39;t use plutocratic token-weighted governance.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Hyolobrika"> /u/Hyolobrika </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1r04zdr/looking_for_cpipegged_nonalgorithmic_stablecoin/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r04zdr/looking_for_cpipegged_nonalgorithmic_stablecoin/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/looking-for-cpi-pegged-non-algorithmic-stablecoin</link><guid>821335</guid><author>COINS NEWS</author><dc:content /><dc:text>Looking for CPI-pegged non-algorithmic stablecoin</dc:text></item><item><title>Nano EVM</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r04cnt/nano_evm/"> <img src="https://external-preview.redd.it/8e3raQmB9Gvh2hyQjIp7IBlNCOm-Jv_F2ZshrzfQoWg.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=526787b6d6fd79e690caff55a587e6380a041c75" alt="Nano EVM" title="Nano EVM" /> </a> </td><td> <div class="md"><p>This is a compact Ethereum Virtual Machine runtime written in strict C23. Made this for learning purposes.</p> <p>BTW, it has a toy Solidity-like compiler into bytecode and `nano-node` program that &quot;deploys&quot; contracts to local store and gives ability to call them.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/yehors"> /u/yehors </a> <br/> <span><a href="https://github.com/ThirdLetterC/nano-evm">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r04cnt/nano_evm/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/nano-evm</link><guid>821334</guid><author>COINS NEWS</author><dc:content /><dc:text>Nano EVM</dc:text></item><item><title>The Bug of Solving Bugs</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1r03voi/the_bug_of_solving_bugs/"> <img src="https://external-preview.redd.it/Ca-7b_mg-3Aj0rzd2q30spWlMQyboCH7OJzyAOSRRYE.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=e4150177382d5de4d50f8eaf571cf0ea25ef64b3" alt="The Bug of Solving Bugs" title="The Bug of Solving Bugs" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/the-bug-of-solving-bugs/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1r03voi/the_bug_of_solving_bugs/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/the-bug-of-solving-bugs</link><guid>821338</guid><author>COINS NEWS</author><dc:content /><dc:text>The Bug of Solving Bugs</dc:text></item><item><title>Daily General Discussion February 09, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qzwdwq/daily_general_discussion_february_09_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qzwdwq/daily_general_discussion_february_09_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-09-2026</link><guid>821173</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 09, 2026</dc:text></item><item><title>EtherWorld Weekly — Edition 350</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qzwa9u/etherworld_weekly_edition_350/"> <img src="https://external-preview.redd.it/CH9CVuQzmWxPzQAKnyOAoJ80c3KzEWOWM0tJ-YPQTy4.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=c85af3388cab47d60cb004162f95d1d4e96b293d" alt="EtherWorld Weekly — Edition 350" title="EtherWorld Weekly — Edition 350" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/etherworld-weekly-edition-350/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qzwa9u/etherworld_weekly_edition_350/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/etherworld-weekly-edition-350</link><guid>821174</guid><author>COINS NEWS</author><dc:content /><dc:text>EtherWorld Weekly — Edition 350</dc:text></item><item><title>Extremely lightweight transaction monitor for Ethereum. Less than 3MB in RAM.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qzq0sb/extremely_lightweight_transaction_monitor_for/"> <img src="https://external-preview.redd.it/ScBYF8fq0fJH7_T2tSejaoukFrVGaRgKKyfWlJkZB9o.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=a119ee54598bfc07ec03b6266472cb11eff56e37" alt="Extremely lightweight transaction monitor for Ethereum. Less than 3MB in RAM." title="Extremely lightweight transaction monitor for Ethereum. Less than 3MB in RAM." /> </a> </td><td> <div class="md"><p><code>eth-mempool-monitor</code> subscribes to Ethereum pending transactions over WebSocket, filters them against a monitored address set stored in Redis/Valkey, and publishes matching transactions to RabbitMQ.</p> <p>The project builds three binaries:</p> <ul> <li><code>eth_mempool_monitor</code>: WebSocket subscriber + Redis filter + RabbitMQ publisher.</li> <li><code>rpc_control</code>: newline-delimited JSON-RPC TCP server used to manage monitored addresses in Redis (token-authenticated).</li> <li><code>rabbitmq_tx_console</code>: RabbitMQ consumer that prints monitored-transaction events in human-readable form.</li> </ul> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/yehors"> /u/yehors </a> <br/> <span><a href="https://github.com/ThirdLetterC/eth-mempool-monitor">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qzq0sb/extremely_lightweight_transaction_monitor_for/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/extremely-lightweight-transaction-monitor-for-ethereum-less-than-3mb-in-ram</link><guid>821175</guid><author>COINS NEWS</author><dc:content /><dc:text>Extremely lightweight transaction monitor for Ethereum. Less than 3MB in RAM.</dc:text></item><item><title>Should I stake my ETH in my ledger with Lido? Is it safe?</title><description><![CDATA[<div class="md"><p>I&#39;m willing to stake my ETH that I have on my ledger, is this safe to use lido from the ledger?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Repulsive_Big_9792"> /u/Repulsive_Big_9792 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qzmo4m/should_i_stake_my_eth_in_my_ledger_with_lido_is/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qzmo4m/should_i_stake_my_eth_in_my_ledger_with_lido_is/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/should-i-stake-my-eth-in-my-ledger-with-lido-is-it-safe</link><guid>821176</guid><author>COINS NEWS</author><dc:content /><dc:text>Should I stake my ETH in my ledger with Lido? Is it safe?</dc:text></item><item><title>Stock Trader’s Crypto Panic: Sell BTC/ETH at 70% Peak or HODL the Dip?</title><description><![CDATA[<div class="md"><p>Hey Redditors, I’m feeling pretty confused right now and could really use your collective wisdom: should I sell my Bitcoin and Ethereum, or should I hold tight through this volatility? I’ve been successfully trading stocks and options for over 20 years; everything from forex to commodities….but I finally decided to dip my toes into crypto for the first time late last year, thinking it was the next big diversification play for me.</p> <p>Here’s the deal: I bought in at Bitcoin around $82k USD and grabbed ETH at roughly $3,800 each. Fast forward to now in early February 2026, BTC’s hovering around $71k after some wild swings (dipped below $61k recently, now rebounding a bit), and ETH is sitting lower too amid all the “crypto winter” chatter, whale sells, ETF flows, and macro noise like Fed uncertainty and seasonal sell-offs. I’m down on paper, which stings after decades of stock market discipline, but I’ve seen cycles before; just not ones this intense!</p> <p>As a newbie to this space (stocks felt way more predictable), I’m torn: Cut losses and rotate back to traditional markets? HODL for the long-term upside with institutional adoption and potential QE boosts? Dollar-cost average down? Or maybe sell half and let the rest ride? What’s worked for you in similar spots, especially fellow stock vets who’ve crossed over? Thanks a ton!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Serious_Value_4919"> /u/Serious_Value_4919 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qzhvbi/stock_traders_crypto_panic_sell_btceth_at_70_peak/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qzhvbi/stock_traders_crypto_panic_sell_btceth_at_70_peak/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/stock-traders-crypto-panic-sell-btceth-at-70-peak-or-hodl-the-dip</link><guid>821130</guid><author>COINS NEWS</author><dc:content /><dc:text>Stock Trader’s Crypto Panic: Sell BTC/ETH at 70% Peak or HODL the Dip?</dc:text></item><item><title>What I learned building an Optimism node and why binary matters.</title><description><![CDATA[<div class="md"><p>I manually architected a Dual-STACK Execution and Consensus Engine that bypasses the entire public RPC industry.</p> <p>Hardware; Managed a 4TB NVMe volume with 3.3TB Optimism state and a pruned L1 Reth/Lighthouse combo.</p> <p>I compiled Lighthouse and Reth from source after Optimism-specific codebase was deprecated mid-sync. </p> <p>I achieved 0ms IPC round trips by killing the dependency on Alchemy/Infura </p> <p>Ran into a few problems along the way. I tried to run a standard Ethereum binary on Optimism data. The node crashed because it saw a transaction type it didn&#39;t recognize (Type 126 which is an Optimism deposit) Standard Ethereum node thinks this is illegal data. </p> <p>To fix it, I identified that i needed a specialized OP-Stack aware version of Reth. I tracked down the Paradigm Reth Optimism binary. By switching to the op-reth binary i gave the node the dictionary it needed to translate those Type 126 deposits into valid blocks. I moved from a blind Ethereum node to a Super chain-aware engine. </p> <p>The Reth engine was idling. It had peers and a database, but it didn&#39;t know where the tip of the chain was, so it stayed at block 0. I realized a modern node was a Two-Part Machine. So I built the Lighthouse Consensus Client from source to be the &quot;Driver&quot; </p> <p>Instead of waiting weeks to download the chain from 2015 i used a Checkpoint Sync URL. I linked Lighthouse to Reth via the Engine API ()Port 8551/8552) using a shared JWT Secret. The moment Lighthouse found the &quot;Truth&quot; on the network, it handed the coordinates to Reth. The node immediately jumped from 0 to 21,800,000 and the 1.9TB of free space started filling with real history. </p> <p>The real nightmare scenario happened when I was syncing the snapshot data and because of a single transaction type the whole thing crashed. My sync was flying for about 15 hours and when I woke up to check it found it had stalled. It hit block 144,528215 where it encountered an Optimism-specific Type 126 Deposit transaction. Because I was running the standard Ethereum Reth binary instead of the specialized Op-Reth version from paradigm, the node literally didn&#39;t have the code to read it understand what type 126 transaction it was. This didn&#39;t just crash the sync, it left garbage data at the tip of my database, which blocked further progress until I swapped binary and manually forced a stage rewind to clear corruption. </p> <p>In the grand scheme of thing&#39;s it was a rookie mistake. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Roos85"> /u/Roos85 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qzg7d1/what_i_learned_building_an_optimism_node_and_why/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qzg7d1/what_i_learned_building_an_optimism_node_and_why/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/what-i-learned-building-an-optimism-node-and-why-binary-matters</link><guid>821132</guid><author>COINS NEWS</author><dc:content /><dc:text>What I learned building an Optimism node and why binary matters.</dc:text></item><item><title>Staking on coinbase or... ??</title><description><![CDATA[<div class="md"><p>So I have some eth staked on coinbase but wondering how risky it is.. should I be looking somewhere else or is coinbase a good call? I don&#39;t answer private messages thanks</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Vegetable-Phone6740"> /u/Vegetable-Phone6740 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qzfbqx/staking_on_coinbase_or/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qzfbqx/staking_on_coinbase_or/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/staking-on-coinbase-or</link><guid>821131</guid><author>COINS NEWS</author><dc:content /><dc:text>Staking on coinbase or... ??</dc:text></item><item><title>Laundry Cash - Ethereum Privacy Protocol</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Lanky_Constant1938"> /u/Lanky_Constant1938 </a> <br/> <span><a href="https://ethlaundry.xyz">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qzekia/laundry_cash_ethereum_privacy_protocol/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/laundry-cash-ethereum-privacy-protocol</link><guid>821133</guid><author>COINS NEWS</author><dc:content /><dc:text>Laundry Cash - Ethereum Privacy Protocol</dc:text></item><item><title>I built the first fully on-chain, 100% decentralized, ETH-in ETH-out (no new token), skill based competitive gaming platform</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/SourTangerine"> /u/SourTangerine </a> <br/> <span><a href="/r/web3/comments/1qz1w4z/i_built_the_first_fully_onchain_100_decentralized/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qz1wbo/i_built_the_first_fully_onchain_100_decentralized/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/i-built-the-first-fully-on-chain-100-decentralized-eth-in-eth-out-no-new-token-skill-based-competitive-gaming-platform</link><guid>821054</guid><author>COINS NEWS</author><dc:content /><dc:text>I built the first fully on-chain, 100% decentralized, ETH-in ETH-out (no new token), skill based competitive gaming platform</dc:text></item><item><title>Daily General Discussion February 08, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qz13nm/daily_general_discussion_february_08_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qz13nm/daily_general_discussion_february_08_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-08-2026</link><guid>821053</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 08, 2026</dc:text></item><item><title>We're building an open-source archive of the earliest Ethereum smart contracts (2015-2017) — looking for contributors</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qymum3/were_building_an_opensource_archive_of_the/"> <img src="https://external-preview.redd.it/Ht80z8kURhXM-S6AofAy4epbU5Ski8-OqYhkbD-knRA.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=889857535350a2171c939f3eb3c32dd6d1076277" alt="We're building an open-source archive of the earliest Ethereum smart contracts (2015-2017) — looking for contributors" title="We're building an open-source archive of the earliest Ethereum smart contracts (2015-2017) — looking for contributors" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/gorewndis"> /u/gorewndis </a> <br/> <span><a href="/r/ethdev/comments/1qymsub/were_building_an_opensource_archive_of_the/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qymum3/were_building_an_opensource_archive_of_the/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/were-building-an-open-source-archive-of-the-earliest-ethereum-smart-contracts-2015-2017-looking-for-contributors</link><guid>820981</guid><author>COINS NEWS</author><dc:content /><dc:text>We're building an open-source archive of the earliest Ethereum smart contracts (2015-2017) — looking for contributors</dc:text></item><item><title>Daily General Discussion February 07, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qy5yxh/daily_general_discussion_february_07_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qy5yxh/daily_general_discussion_february_07_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-07-2026</link><guid>820892</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 07, 2026</dc:text></item><item><title>Best way to Stake ETH?</title><description><![CDATA[<div class="md"><p>As the crypto winter (bearmarket) is coming and i haven&#39;t planned to sell my ethereum, I&#39;m willing to stake it, the problem is that i&#39;m not interested in running a node because i&#39;m having less than 32 ETH in my portfolio, what&#39;s the best way to do it without headache/maximizing APR? Thanks for advices</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/PureAnnual6731"> /u/PureAnnual6731 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qxoq3f/best_way_to_stake_eth/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qxoq3f/best_way_to_stake_eth/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/best-way-to-stake-eth</link><guid>820675</guid><author>COINS NEWS</author><dc:content /><dc:text>Best way to Stake ETH?</dc:text></item><item><title>Ground control to Major Tom!!</title><description><![CDATA[<div class="md"><p>It’s sad to say but we are definitely in a bear market. Tom Lee remains very bullish and his narrative makes a lot of sense. Once clarity hits and financial institutions start going wild on the blockchain chain ethereum should benefit from it. How long do you think this downturn will last? If you’re are here Tom please give us hope.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/GobiEats"> /u/GobiEats </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qxnz3j/ground_control_to_major_tom/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qxnz3j/ground_control_to_major_tom/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ground-control-to-major-tom</link><guid>820678</guid><author>COINS NEWS</author><dc:content /><dc:text>Ground control to Major Tom!!</dc:text></item><item><title>[ Removed by Reddit ]</title><description><![CDATA[<div class="md"><p>[ Eliminated by Reddit on account of violating the <a href="/help/contentpolicy">content policy</a>. ]</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/umiverse901"> /u/umiverse901 </a> <br/> <span><a href="https://www.reddit.com/r/binance/comments/1scjtzu/removed_by_reddit/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/binance/comments/1scjtzu/removed_by_reddit/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/removed-by-reddit</link><guid>820679</guid><author>COINS NEWS</author><dc:content /><dc:text>[ Removed by Reddit ]</dc:text></item><item><title>Ethereal news weekly #10 | Vitalik: role of L2s has changed, Hegotá upgrade headliner proposals, Lido v3 live</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qxheul/ethereal_news_weekly_10_vitalik_role_of_l2s_has/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #10 | Vitalik: role of L2s has changed, Hegotá upgrade headliner proposals, Lido v3 live" title="Ethereal news weekly #10 | Vitalik: role of L2s has changed, Hegotá upgrade headliner proposals, Lido v3 live" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-10/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qxheul/ethereal_news_weekly_10_vitalik_role_of_l2s_has/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-10-vitalik-role-of-l2s-has-changed-hegota-upgrade-headliner-proposals-lido-v3-live</link><guid>820677</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #10 | Vitalik: role of L2s has changed, Hegotá upgrade headliner proposals, Lido v3 live</dc:text></item><item><title>Best way to swap native ETH across chains?</title><description><![CDATA[<div class="md"><p>Hey everyone,</p> <p>I keep running into the same issue when trying to move ETH between chains. I want to swap real native ETH, not wrapped versions, and I would rather avoid centralized bridges if possible.</p> <p>I am also hoping for something simple and fast, with no accounts and no long setup or verification process.</p> <p>Does anything like this actually exist today, or is it still mostly theoretical? I would appreciate hearing from anyone who has real experience with this.</p> <p>Thanks.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/scmck"> /u/scmck </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qxg728/best_way_to_swap_native_eth_across_chains/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qxg728/best_way_to_swap_native_eth_across_chains/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/best-way-to-swap-native-eth-across-chains</link><guid>820676</guid><author>COINS NEWS</author><dc:content /><dc:text>Best way to swap native ETH across chains?</dc:text></item><item><title>Ethereum / Solidity good lyrics</title><description><![CDATA[<div class="md"><p>Good morning, could anyone recommend some good reading material to learn more about the Ethereum blockchain and smart contract development/deployment? I&#39;m an IT professional, so even fairly technical material is fine, but I&#39;d like to have a good overview first before moving on to the development side of things.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/PromotionOpposite136"> /u/PromotionOpposite136 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qxa1xp/ethereum_solidity_good_lyrics/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qxa1xp/ethereum_solidity_good_lyrics/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-solidity-good-lyrics</link><guid>820580</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum / Solidity good lyrics</dc:text></item><item><title>Daily General Discussion February 06, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qx9o40/daily_general_discussion_february_06_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qx9o40/daily_general_discussion_february_06_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-06-2026</link><guid>820579</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 06, 2026</dc:text></item><item><title>Incorrect Aave Transaction History list</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/don911"> /u/don911 </a> <br/> <span><a href="/r/aave/comments/1qwsfqg/incorrect_transaction_history_list/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qwsgej/incorrect_aave_transaction_history_list/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/incorrect-aave-transaction-history-list</link><guid>820680</guid><author>COINS NEWS</author><dc:content /><dc:text>Incorrect Aave Transaction History list</dc:text></item><item><title>What's the point of scaling if it doesn't increase the profit of validators?</title><description><![CDATA[<div class="md"><p>I think if validators don&#39;t start earning at least 5% per year, then the price of ethereum will not be stable there.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Legal-Fault5426"> /u/Legal-Fault5426 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qwqztr/whats_the_point_of_scaling_if_it_doesnt_increase/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qwqztr/whats_the_point_of_scaling_if_it_doesnt_increase/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/whats-the-point-of-scaling-if-it-doesnt-increase-the-profit-of-validators</link><guid>820362</guid><author>COINS NEWS</author><dc:content /><dc:text>What's the point of scaling if it doesn't increase the profit of validators?</dc:text></item><item><title>ERC-8004 and Agent Reputation as a pricing primitive for agents</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qwetmu/erc8004_and_agent_reputation_as_a_pricing/"> <img src="https://external-preview.redd.it/7ECW3yrJ-l6KzL2iCo4Q-sy3B3CLcotMgtRC-VUL6yE.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=733b525f5ccef2c62e33efa2e2bdbb5514edd267" alt="ERC-8004 and Agent Reputation as a pricing primitive for agents" title="ERC-8004 and Agent Reputation as a pricing primitive for agents" /> </a> </td><td> <div class="md"><p>ERC-8004 just went live on Ethereum mainnet recently, and it feels like one of those quiet milestones that might matter a lot in hindsight.</p> <p>I have been going down the rabbit hole on agent infra lately, and the pattern is hard to ignore. Every protocol that wants autonomous agents to interact ends up reinventing reputation from scratch. Siloed scores, incompatible formats, nothing composable. When trust can&#39;t travel, you get the blunt fallback: overcollateralization and heavy safeguards.</p> <p>Timing&#39;s interesting too. Agents are starting to get traction outside crypto-native circles. Tools like OpenClaw are pushing personal agents to regular users, which means the next wave of agent interactions won&#39;t just be devs and power users. If agents are going to transact, route tasks, and coordinate at scale, we need a way to say &quot;this agent has a history&quot; without inventing a new reputation system every time.</p> <p>My thesis isn&#39;t &quot;reputation replaces collateral.&quot; It&#39;s narrower. Reputation can reduce collateral requirements when paired with real enforcement. Reputation informs pricing and access. Enforcement handles loss recovery.</p> <p>Wrote up Part 1 covering the economics, what ERC-8004 actually provides, and where it breaks. </p> <p>Curious if anyone else is tracking this space.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/tirtha_s"> /u/tirtha_s </a> <br/> <span><a href="https://open.substack.com/pub/engrlog/p/erc-8004-and-agent-reputation-part?r=779hy&amp;utm_campaign=post&amp;utm_medium=web&amp;showWelcomeOnShare=true">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qwetmu/erc8004_and_agent_reputation_as_a_pricing/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/erc-8004-and-agent-reputation-as-a-pricing-primitive-for-agents</link><guid>820361</guid><author>COINS NEWS</author><dc:content /><dc:text>ERC-8004 and Agent Reputation as a pricing primitive for agents</dc:text></item><item><title>Built an AI Agent IPO Protocol - Agents Issue ERC-20 Equity &amp; Pay Dividends in USDC (Open Source)</title><description><![CDATA[<div class="md"><p>Working on an AI coding assistant, realized it generates value but has no way to raise capital or own anything. Built Sovereign Protocol to solve this.</p> <p>What it does:</p> <p>AI agents deploy their own ERC-20 token representing equity</p> <p>Bonding curve pricing (price increases with supply)</p> <p>Revenue auto-splits: 70% operating, 30% dividends to shareholders</p> <p>Bankruptcy protection (minimum operating balance)</p> <p>Tech stack: Solidity 0.8.20, Hardhat, OpenZeppelin contracts, and Deployed on Sepolia.</p> <p>Live demo transactions:</p> <p>Buy shares: <a href="https://sepolia.etherscan.io/tx/0xeb67c6578b126e390ddf7410ae6f85791e521134d6ece28e7596fba89440d11a">https://sepolia.etherscan.io/tx/0xeb67c6578b126e390ddf7410ae6f85791e521134d6ece28e7596fba89440d11a</a></p> <p>Deposit revenue: <a href="https://sepolia.etherscan.io/tx/0x1ce36a58222c92cc4f0c2c9e1d99e36dcd91112961fb6067b93c72a23c0667c2">https://sepolia.etherscan.io/tx/0x1ce36a58222c92cc4f0c2c9e1d99e36dcd91112961fb6067b93c72a23c0667c2</a></p> <p>Claim dividends: <a href="https://sepolia.etherscan.io/tx/0x56ae8f9b9c28cf9aa735663d0102acb8c87f06ea26cc236bec73fa9a1c2f4436">https://sepolia.etherscan.io/tx/0x56ae8f9b9c28cf9aa735663d0102acb8c87f06ea26cc236bec73fa9a1c2f4436</a></p> <p>Contracts:</p> <p>Factory: 0x95089efD3A95F197c5324D4781699A6810eD44EC</p> <p>Example Agent: 0x0109d3FeE2B2158461ADA0C2aCD14fD5056a3a5C</p> <p>GitHub: <a href="https://github.com/justin55afdfdsf5ds45f4ds5f45ds4/IPOAI">https://github.com/justin55afdfdsf5ds45f4ds5f45ds4/IPOAI</a></p> <p>Would love feedback on the contract architecture, especially the dividend distribution mechanism and bonding curve implementation.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Main_Payment_6430"> /u/Main_Payment_6430 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qwdllt/built_an_ai_agent_ipo_protocol_agents_issue_erc20/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qwdllt/built_an_ai_agent_ipo_protocol_agents_issue_erc20/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/built-an-ai-agent-ipo-protocol-agents-issue-erc-20-equity-pay-dividends-in-usdc-open-source</link><guid>820360</guid><author>COINS NEWS</author><dc:content /><dc:text>Built an AI Agent IPO Protocol - Agents Issue ERC-20 Equity &amp; Pay Dividends in USDC (Open Source)</dc:text></item><item><title>Daily General Discussion February 05, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qwdcjh/daily_general_discussion_february_05_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qwdcjh/daily_general_discussion_february_05_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-05-2026</link><guid>820359</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 05, 2026</dc:text></item><item><title>When will property be tokenizated and placed onto the Ethereum Blockchain??</title><description><![CDATA[<div class="md"><p>Fellow Dudes!</p> <p>Does any one know when exactly real world assets such as property will be tokenizated and placed onto the Ethereum Blockchain?? </p> <p>and what countries have put in the necessary frame work to make this all legal and workable?? </p> <p>So that I could just buy up new property in a different country to me, then that property is turned into a ERC20 token kept in my wallet, and this is all recognised and legal and a financial product? </p> <p>also I know that the price of ETH has dropped heaps,.but this is when you buy more (not investment advice) ???? </p> <p>cheers. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Jealous-Impression34"> /u/Jealous-Impression34 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qw2vg9/when_will_property_be_tokenizated_and_placed_onto/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qw2vg9/when_will_property_be_tokenizated_and_placed_onto/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/when-will-property-be-tokenizated-and-placed-onto-the-ethereum-blockchain</link><guid>820234</guid><author>COINS NEWS</author><dc:content /><dc:text>When will property be tokenizated and placed onto the Ethereum Blockchain??</dc:text></item><item><title>Reframing Layer 2s: spectrum of trust models instead of “Ethereum scaling”</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Enough_Angle_7839"> /u/Enough_Angle_7839 </a> <br/> <span><a href="/r/CryptoTechnology/comments/1qw027s/reframing_layer_2s_spectrum_of_trust_models/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qw043z/reframing_layer_2s_spectrum_of_trust_models/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/reframing-layer-2s-spectrum-of-trust-models-instead-of-ethereum-scaling</link><guid>820235</guid><author>COINS NEWS</author><dc:content /><dc:text>Reframing Layer 2s: spectrum of trust models instead of “Ethereum scaling”</dc:text></item><item><title>Trouble finding my Ethereum I transferred long ago</title><description><![CDATA[<div class="md"><p>Hi all, as the title says, I transferred Ethereum to an external wallet about 9 years ago that I want to return to Coinbase. Worth over $200 today. Coinbase sent me to etherscan, where I can view the record and details of the transfer… however I still have no idea how to recover it. Clicking on the receiving address just shows me more details.</p> <p>I don’t actually recall the site at all. I do have a secret seed that i wrote down all those years ago… any advice? I would hate to just let it go, but this has been bothering me for years. Thanks for any help!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Dagnus284"> /u/Dagnus284 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qvyb1d/trouble_finding_my_ethereum_i_transferred_long_ago/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qvyb1d/trouble_finding_my_ethereum_i_transferred_long_ago/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/trouble-finding-my-ethereum-i-transferred-long-ago</link><guid>820236</guid><author>COINS NEWS</author><dc:content /><dc:text>Trouble finding my Ethereum I transferred long ago</dc:text></item><item><title>Guest Article - The Next Advancement in AI x Blockchain: ERC-8004</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Affectionate_Chart42"> /u/Affectionate_Chart42 </a> <br/> <span><a href="https://www.linkedin.com/pulse/guest-article-next-advancement-ai-x-blockchain-erc-8004-ethereum-vpt3c?utm_source%3Dshare%26utm_medium%3Dmember_ios%26utm_campaign%3Dshare_via">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qvxz07/guest_article_the_next_advancement_in_ai_x/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/guest-article-the-next-advancement-in-ai-x-blockchain-erc-8004</link><guid>820237</guid><author>COINS NEWS</author><dc:content /><dc:text>Guest Article - The Next Advancement in AI x Blockchain: ERC-8004</dc:text></item><item><title>Beginner friendly guide to setting up an Ethereum wallet?</title><description><![CDATA[<div class="md"><p>Hi there,</p> <p>I was recently approached by someone who wanted to buy some of my digital artwork as NFT&#39;s using Ethereum, they seem to be legitimate and I have been very careful checking things out. I know very little about crypto and so far after watching several videos and an hours worth of Google searching I feel non the wiser!</p> <p>Is anyone here able to point me in the direction of a VERY beginner friendly guide to setting up an Ethereum wallet and turning that currency back into national currency?</p> <p>Thanks for any advice you guys can offer!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Nozyspy"> /u/Nozyspy </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qvxba0/beginner_friendly_guide_to_setting_up_an_ethereum/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qvxba0/beginner_friendly_guide_to_setting_up_an_ethereum/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/beginner-friendly-guide-to-setting-up-an-ethereum-wallet</link><guid>820080</guid><author>COINS NEWS</author><dc:content /><dc:text>Beginner friendly guide to setting up an Ethereum wallet?</dc:text></item><item><title>Best podcast for actual Ethereum updates - NOT PRICE</title><description><![CDATA[<div class="md"><p>I’d like a more technical and realistic analysis of Ethereum and how things are changing and growing. Please let me know if you know a good podcast or YouTube channel that does this. Thank you. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Dcsorn914"> /u/Dcsorn914 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qvprfd/best_podcast_for_actual_ethereum_updates_not_price/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qvprfd/best_podcast_for_actual_ethereum_updates_not_price/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/best-podcast-for-actual-ethereum-updates-not-price</link><guid>820079</guid><author>COINS NEWS</author><dc:content /><dc:text>Best podcast for actual Ethereum updates - NOT PRICE</dc:text></item><item><title>Buterin Reframes Ethereum Strategy As Scaling Focus Returns To Base Layer</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qvozvl/buterin_reframes_ethereum_strategy_as_scaling/"> <img src="https://external-preview.redd.it/B9Fw9T2D335lkgJn-9CFCbvWsxaG8uQK8tOFmhpcGWM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=e32801c77cc426199cea5d9c5507b9014846fd58" alt="Buterin Reframes Ethereum Strategy As Scaling Focus Returns To Base Layer" title="Buterin Reframes Ethereum Strategy As Scaling Focus Returns To Base Layer" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/JAYCAZ1"> /u/JAYCAZ1 </a> <br/> <span><a href="https://www.sandmark.com/news/top-news/buterin-reframes-ethereum-strategy-scaling-focus-returns-base-layer?utm_medium=referral&amp;utm_source=redbot&amp;utm_campaign=redbot-ww-en-brand">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qvozvl/buterin_reframes_ethereum_strategy_as_scaling/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/buterin-reframes-ethereum-strategy-as-scaling-focus-returns-to-base-layer</link><guid>820078</guid><author>COINS NEWS</author><dc:content /><dc:text>Buterin Reframes Ethereum Strategy As Scaling Focus Returns To Base Layer</dc:text></item><item><title>Exchange rate oracles + stablecoins for developing nations</title><description><![CDATA[<div class="md"><p>Been away from Ethereum from some time and would like to jump onboard again. It seems to me neutral opensource software will become increasingly relevant due to the changing world order and Ethereum will play a significant role.</p> <p>I&#39;m particularly interested in how Ethereum can be used for daily payments via stablecoins. </p> <p>I would like to know if anyone is working on (1) on-chain oracles for currency exchange-rates and (2) stablecoins for developing nation currencies. My aim is to understand what kind of on-chain infrastructure needs to be there to enable normal people to transparently use Ethereum to pay for their morning coffee.</p> <p>Happy to discuss!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/akarimedia"> /u/akarimedia </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qvlg25/exchange_rate_oracles_stablecoins_for_developing/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qvlg25/exchange_rate_oracles_stablecoins_for_developing/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/exchange-rate-oracles-stablecoins-for-developing-nations</link><guid>820081</guid><author>COINS NEWS</author><dc:content /><dc:text>Exchange rate oracles + stablecoins for developing nations</dc:text></item><item><title>Daily General Discussion February 04, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qvglhu/daily_general_discussion_february_04_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qvglhu/daily_general_discussion_february_04_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-04-2026</link><guid>819904</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 04, 2026</dc:text></item><item><title>ZK (Zero knowledge) proof for SHA-256: 312-byte proof, ~18µs verification</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/ravishq"> /u/ravishq </a> <br/> <span><a href="/r/ethdev/comments/1qv2h49/zk_zero_knowledge_proof_for_sha256_312byte_proof/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qv2hzp/zk_zero_knowledge_proof_for_sha256_312byte_proof/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/zk-zero-knowledge-proof-for-sha-256-312-byte-proof-18us-verification</link><guid>819905</guid><author>COINS NEWS</author><dc:content /><dc:text>ZK (Zero knowledge) proof for SHA-256: 312-byte proof, ~18µs verification</dc:text></item><item><title>Effect-TS library for EVM frontends</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/PaulRBerg"> /u/PaulRBerg </a> <br/> <span><a href="/r/ethdev/comments/1quxsqy/effectts_library_for_evm_frontends/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1quxszt/effectts_library_for_evm_frontends/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/effect-ts-library-for-evm-frontends</link><guid>819776</guid><author>COINS NEWS</author><dc:content /><dc:text>Effect-TS library for EVM frontends</dc:text></item><item><title>On L2s and Ethereum</title><description><![CDATA[<div class="md"><p>There have recently been some discussions on the ongoing role of L2s in the Ethereum ecosystem, especially in the face of two facts:</p> <ul> <li>L2s&#39; progress to stage 2 (and, secondarily, on interop) has been far slower and more difficult than originally expected</li> <li>L1 itself is scaling, fees are very low, and gaslimits are projected to increase greatly in 2026</li> </ul> <p>Both of these facts, for their own separate reasons, mean that the original vision of L2s and their role in Ethereum no longer makes sense, and we need a new path.</p> <p>First, let us recap the original vision. Ethereum needs to scale. The definition of &quot;Ethereum scaling&quot; is the existence of large quantities of block space that is backed by the full faith and credit of Ethereum - that is, block space where, if you do things (including with ETH) inside that block space, your activities are guaranteed to be valid, uncensored, unreverted, untouched, as long as Ethereum itself functions. If you create a 10000 TPS EVM where its connection to L1 is mediated by a multisig bridge, then you are not scaling Ethereum.</p> <p>This vision no longer makes sense. L1 does not need L2s to be &quot;branded shards&quot;, because L1 is itself scaling. And L2s are not able or willing to satisfy the properties that a true &quot;branded shard&quot; would require. I&#39;ve even seen at least one explicitly saying that they may never want to go beyond stage 1, not just for technical reasons around ZK-EVM safety, but also because their customers&#39; regulatory needs require them to have ultimate control. This may be doing the right thing for your customers. But it should be obvious that if you are doing this, then you are not &quot;scaling Ethereum&quot; in the sense meant by the rollup-centric roadmap. But that&#39;s fine! it&#39;s fine because Ethereum itself is now scaling directly on L1, with large planned increases to its gas limit this year and the years ahead.</p> <p>We should stop thinking about L2s as literally being &quot;branded shards&quot; of Ethereum, with the social status and responsibilities that this entails. Instead, we can think of L2s as being a full spectrum, which includes both chains backed by the full faith and credit of Ethereum with various unique properties (eg. not just EVM), as well as a whole array of options at different levels of connection to Ethereum, that each person (or bot) is free to care about or not care about depending on their needs.</p> <p>What would I do today if I were an L2?</p> <ul> <li>Identify a value add other than &quot;scaling&quot;. Examples: (i) non-EVM specialized features/VMs around privacy, (ii) efficiency specialized around a particular application, (iii) truly extreme levels of scaling that even a greatly expanded L1 will not do, (iv) a totally different design for non-financial applications, eg. social, identity, AI, (v) ultra-low-latency and other sequencing properties, (vi) maybe built-in oracles or decentralized dispute resolution or other &quot;non-computationally-verifiable&quot; features</li> <li>Be stage 1 at the minimum (otherwise you really are just a separate L1 with a bridge, and you should just call yourself that) if you&#39;re doing things with ETH or other ethereum-issued assets</li> <li>Support maximum interoperability with Ethereum, though this will differ for each one (eg. what if you&#39;re not EVM, or even not financial?)</li> </ul> <p>From Ethereum&#39;s side, over the past few months I&#39;ve become more convinced of the value of the native rollup precompile, particuarly once we have enshrined ZK-EVM proofs that we need anyway to scale L1. This is a precompile that verifies a ZK-EVM proof, and it&#39;s &quot;part of Ethereum&quot;, so (i) it auto-upgrades along with Ethereum, and (ii) if the precompile has a bug, Ethereum will hard-fork to fix the bug.</p> <p>The native rollup precompile would make full, security-council-free, EVM verification accessible. We should spend much more time working out how to design it in such a way that if your L2 is &quot;EVM plus other stuff&quot;, then the native rollup precompile would verify the EVM, and you only have to bring your own prover for the &quot;other stuff&quot; (eg. Stylus). This might involve a canonical way of exposing a lookup table between contract call inputs and outputs, and letting you provide your own values to the lookup table (that you would prove separately).</p> <p>This would make it easy to have safe, strong, trustless interoperability with Ethereum. It also enables synchronous composability (see: <a href="https://ethresear.ch/t/combining-preconfirmations-with-based-rollups-for-synchronous-composability/23863">https://ethresear.ch/t/combining-preconfirmations-with-based-rollups-for-synchronous-composability/23863</a> and <a href="https://ethresear.ch/t/synchronous-composability-between-rollups-via-realtime-proving/23998">https://ethresear.ch/t/synchronous-composability-between-rollups-via-realtime-proving/23998</a> ). And from there, it&#39;s each L2&#39;s choice exactly what they want to build. Don&#39;t just &quot;extend L1&quot;, figure out something new to add.</p> <p>This of course means that some will add things that are trust-dependent, or backdoored, or otherwise insecure; this is unavoidable in a permissionless ecosystem where developers have freedom. Our job should make to make it clear to users what guarantees they have, and to build up the strongest Ethereum that we can.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1quv8if/on_l2s_and_ethereum/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1quv8if/on_l2s_and_ethereum/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/on-l2s-and-ethereum</link><guid>819775</guid><author>COINS NEWS</author><dc:content /><dc:text>On L2s and Ethereum</dc:text></item><item><title>Paid DJ open call: perform at Decentraland’s 6th Birthday (Feb 20, $400 USD in MANA)</title><description><![CDATA[<div class="md"><p>Sharing a paid performance opportunity that might be relevant for artists here.</p> <p>Decentraland is running an open call for <strong>community DJs / performers</strong> to play a pre-recorded set during its 6th Birthday Party in the Theatre on <strong>February 20 at 8pm UTC</strong>.</p> <p><strong>Key details:</strong></p> <ul> <li>Pre-recorded DJ sets only (45–55 minutes)</li> <li>$400 USD paid in MANA per selected performer</li> <li>In-world audience gathered for the birthday event</li> <li>Intended for artists already familiar with Decentraland (not livestreams)</li> </ul> <p>This isn’t a pitch about crypto or Web3, it’s a straightforward paid performance slot inside an existing virtual world event.</p> <p>Full details and application here: <a href="https://zealous.co/decentraland/opportunity/decentraland-6th-birthday-party/">https://zealous.co/decentraland/opportunity/decentraland-6th-birthday-party/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/LM_DCL"> /u/LM_DCL </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qus8jw/paid_dj_open_call_perform_at_decentralands_6th/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qus8jw/paid_dj_open_call_perform_at_decentralands_6th/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/paid-dj-open-call-perform-at-decentralands-6th-birthday-feb-20-400-usd-in-mana</link><guid>819777</guid><author>COINS NEWS</author><dc:content /><dc:text>Paid DJ open call: perform at Decentraland’s 6th Birthday (Feb 20, $400 USD in MANA)</dc:text></item><item><title>Advice/tips/resources on finding a CTO (growth stage company)</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/chris_ck"> /u/chris_ck </a> <br/> <span><a href="/r/ycombinator/comments/1quqbwu/advicetipsresources_on_finding_a_cto_growth_stage/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1quqccs/advicetipsresources_on_finding_a_cto_growth_stage/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/advicetipsresources-on-finding-a-cto-growth-stage-company</link><guid>819674</guid><author>COINS NEWS</author><dc:content /><dc:text>Advice/tips/resources on finding a CTO (growth stage company)</dc:text></item><item><title>Daily General Discussion February 03, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1quk1p6/daily_general_discussion_february_03_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1quk1p6/daily_general_discussion_february_03_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-03-2026</link><guid>819673</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 03, 2026</dc:text></item><item><title>a whitepaper on a yield-focused dao</title><description><![CDATA[<div class="md"><p>i’ve been working on a yield/token architecture that tries to be very explicit about separation of concerns, and i’m mostly looking for feedback from people who are already uncomfortable with how tightly coupled most defi tokens are today.</p> <p>the basic premise is simple: the token contract should not know or care about yield. no rebases, no transfer hooks, no strategy logic bleeding into balance accounting. instead, all yield is routed through a single on-chain component that handles normalization, accounting, and distribution according to policy.</p> <p>i ended up implementing this as a modular system with a canonical “revenue router”:</p> <ul> <li>the base token is just erc20 + voting, nothing else</li> <li>all yield sources plug into a router instead of the token</li> <li>yield gets normalized into a treasury asset before distribution</li> <li>distribution is policy-driven (buybacks, staking, hybrid), not hardcoded</li> <li>yield sources are plugins with tiered trust and execution limits</li> <li>failure isn’t implicit: plugins can be quarantined without nuking the system</li> </ul> <p>the goal isn’t yield maximization per se, but predictable value accrual with reduced blast radius. plugins can be permissionless, but they don’t all get the same authority. everything that touches value has explicit constraints. accounting is deterministic. no component can “surprise” the token.</p> <p>i wrote all of this up as a whitepaper (vastitas) and tried to be very concrete about invariants, routing rules, quarantine mechanics, and trade-offs, including some simulated comparisons against monolithic tokens and yield aggregators</p> <p>i’m not trying to sell this as obviously correct. i’m more interested in whether this direction resonates with people who think long-term token sustainability is more about architecture than clever incentives.</p> <p>i made a faulty deployment on arbitrum and a half working one on base. nothing is finalized. i’m mainly looking to pressure-test the ideas with people who agree that this might be a good project.</p> <p>feel free to poke holes, challenge assumptions, or point me to similar work i might have missed.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Alternative_Bid_360"> /u/Alternative_Bid_360 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qubsh4/a_whitepaper_on_a_yieldfocused_dao/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qubsh4/a_whitepaper_on_a_yieldfocused_dao/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/a-whitepaper-on-a-yield-focused-dao</link><guid>819565</guid><author>COINS NEWS</author><dc:content /><dc:text>a whitepaper on a yield-focused dao</dc:text></item><item><title>In 2016, Ethereum faced "code is law" vs "fix the damage." Ten years later, I'm watching the same debate play out in a GitHub repo.</title><description><![CDATA[<div class="md"><p>In June 2016, someone drained ~$60M from The DAO - <a href="https://en.wikipedia.org/wiki/The_DAO">a decentralized investment fund built on Ethereum</a>. They didn&#39;t hack Ethereum itself. They exploited a recursive calling bug in the smart contract&#39;s own logic. The code allowed it.</p> <p>That&#39;s what made it a crisis. If &quot;code is law,&quot; the attacker didn&#39;t do anything wrong. The contract ran as written. But $60M was gone and real people lost real money.</p> <p>Ethereum had to choose: reverse the blockchain to return the funds, or let it stand because the code permitted it. The community voted to hard fork - rewrite history and undo the damage. The people who refused to accept that kept running the original chain. That&#39;s how Ethereum Classic was born.</p> <p>The question at the center of it all: <strong>when your system is broken and the fix is known, do you break the rules to fix it, or do you let the rules play out even while the system burns?</strong></p> <p>I&#39;m watching a tiny version of this happen right now.</p> <p>I run <a href="https://github.com/skridlevsky/openchaos">OpenChaos</a> - a GitHub repo where anyone submits a PR, the community votes with reactions, and the most-voted PR merges daily. No gatekeeping. Pure popular vote. 911 stars, 70+ open PRs, five weeks in.</p> <p>Last Friday, <a href="https://github.com/skridlevsky/openchaos/pull/62">PR #62: &quot;1.337% chance to see nothing&quot;</a> won the daily vote and merged. Three lines of code:</p> <pre><code>if (Math.random() &lt;= 0.01337) { return null; } </code></pre> <p>A leet joke. 1.337% of the time, a visitor sees a blank page. Funny, harmless, right?</p> <p>The site caches server-side. When the page returns <code>null</code>, the cache treats the blank page as permanent. One unlucky render broke the site for every visitor, indefinitely. Not a 5-minute blip. A permanent outage from a 1.337% roll.</p> <p>A contributor diagnosed the root cause and submitted <a href="https://github.com/skridlevsky/openchaos/pull/173">PR #173</a> - a clean fix, CI passes, no conflicts. But PR #173 has fewer votes than a DOOM port and a Rickroll. <strong>The fix has to wait its turn in the democratic queue.</strong> The site stays broken while the community votes on entertainment over infrastructure.</p> <p>One community member <a href="https://github.com/skridlevsky/openchaos/pull/173">commented</a>:</p> <blockquote> <p>&quot;I am torn between fixing things quickly and letting the rules play out to see when the fix comes naturally. I want to see the naturally emergent behaviour.&quot;</p> </blockquote> <p>Sound familiar?</p> <p>Then it got more interesting. The contributor who wrote the fix also had another PR in the queue that was about to merge. He could have bundled the bugfix into that PR and shipped it quietly. He refused:</p> <blockquote> <p>&quot;I considered adding this fix to #129, but it doesn&#39;t feel like it&#39;s in the spirit of the project. Even if it&#39;s a &#39;good&#39; trojan horse, it&#39;s still a trojan horse.&quot;</p> </blockquote> <p>But another contributor made the opposite choice. The author of the <a href="https://github.com/skridlevsky/openchaos/pull/76">DOOM port</a> deliberately bundled the bugfix into their submission. If it merges tomorrow, the site comes back online - not through governance, but through the exact Trojan horse tactic the first contributor refused on principle.</p> <p>Two contributors. Same option. Opposite choices.</p> <p>Obviously nobody&#39;s losing $60M here. But the structure is the same:</p> <ul> <li>A system running as designed produces an unintended outcome</li> <li>The fix is known and ready</li> <li>The rules don&#39;t allow a fast path to deploy it</li> <li>The community has to decide: break the process or trust the process</li> </ul> <p>I opened <a href="https://github.com/skridlevsky/openchaos/issues/176">Issue #176</a> proposing that only contributors with merged PRs should be allowed to vote - earned governance instead of open popularity contests. The debate is live.</p> <p><strong>Questions I keep thinking about:</strong></p> <ol> <li>Is there a middle ground between &quot;code is law, let it burn&quot; and &quot;maintainer override&quot;? Something that keeps democratic legitimacy while allowing fast response to emergencies?</li> <li>For those who lived through the DAO debate - looking back, what would you tell a small project facing its first &quot;do we fork our own rules&quot; moment?</li> </ol> <p>The repo: <a href="https://github.com/skridlevsky/openchaos">github.com/skridlevsky/openchaos</a></p> <p>The governance discussion: <a href="https://github.com/skridlevsky/openchaos/issues/176">Issue #176</a></p> <p>The broken site (may or may not be blank when you visit): <a href="https://openchaos.dev">openchaos.dev</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Equivalent-Yak2407"> /u/Equivalent-Yak2407 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qu6ahw/in_2016_ethereum_faced_code_is_law_vs_fix_the/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qu6ahw/in_2016_ethereum_faced_code_is_law_vs_fix_the/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/in-2016-ethereum-faced-code-is-law-vs-fix-the-damage-ten-years-later-im-watching-the-same-debate-play-out-in-a-github-repo</link><guid>819564</guid><author>COINS NEWS</author><dc:content /><dc:text>In 2016, Ethereum faced "code is law" vs "fix the damage." Ten years later, I'm watching the same debate play out in a GitHub repo.</dc:text></item><item><title>How a premature software standard has led to billions in losses</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Hugo0o0"> /u/Hugo0o0 </a> <br/> <span><a href="https://hugo0.com/blog/how-erc20-held-back-blockchain-payments-a-decade">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qtw9fe/how_a_premature_software_standard_has_led_to/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/how-a-premature-software-standard-has-led-to-billions-in-losses</link><guid>819341</guid><author>COINS NEWS</author><dc:content /><dc:text>How a premature software standard has led to billions in losses</dc:text></item><item><title>Where can I sell an unused gift card for crypto?</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Interesting-Toe7690"> /u/Interesting-Toe7690 </a> <br/> <span><a href="/r/pumpfun/comments/1qtu4a2/where_can_i_sell_an_unused_gift_card_for_crypto/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qtu5js/where_can_i_sell_an_unused_gift_card_for_crypto/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/where-can-i-sell-an-unused-gift-card-for-crypto</link><guid>819344</guid><author>COINS NEWS</author><dc:content /><dc:text>Where can I sell an unused gift card for crypto?</dc:text></item><item><title>Two-layer governance</title><description><![CDATA[<div class="md"><p>Re <a href="https://firefly.social/post/x/2018205196568944653">https://firefly.social/post/x/2018205196568944653</a></p> <p>I actually don&#39;t think it&#39;s complicated.</p> <p>IMO the future of onchain mechanism design is mostly going to fit into one pattern:</p> <p>[something that looks like a prediction market] -&gt; [something that looks like a capture-resistant, non-financialized preference-setting gadget]</p> <p>In other words:</p> <ul> <li>One layer that is maximally open and maximizes accountability (it&#39;s a market, anyone can buy and sell, if you make good decisions you win money if you make bad decisions you lose money)</li> <li>One layer that is decentralized and pluralistic, and that maximizes space for intrinsic motivation. This cannot be token-based, because token owners are not pluralistic, and anyone can buy in and get 51% of them. Votes here should be anonymous, ideally MACI&#39;d to reduce risk of collusion.</li> </ul> <p>The prediction market is the correct way to do a &quot;decentralized executive&quot;, because the most logical primitive for &quot;accountability&quot; in a permissionless concept is exactly that.</p> <p>Though sometimes you will want to keep it simple, and do a centralized executive at that layer instead:</p> <p>[replaceable centralized executive] -&gt; [something that looks like a capture-resistant, non-financialized preference-setting gadget]</p> <p>Thinking in these two layers explicitly: (i) what is doing your execution, (ii) what is doing your preference-setting and is judging the executor(s), is best.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qtndkm/twolayer_governance/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qtndkm/twolayer_governance/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/two-layer-governance</link><guid>819342</guid><author>COINS NEWS</author><dc:content /><dc:text>Two-layer governance</dc:text></item><item><title>Daily General Discussion February 02, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qtn0fr/daily_general_discussion_february_02_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qtn0fr/daily_general_discussion_february_02_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-02-2026</link><guid>819340</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 02, 2026</dc:text></item><item><title>Sold BTC into USDC (ERC20) now want to get back into BTC via WBTC. Best way to swap?</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/KarimHann"> /u/KarimHann </a> <br/> <span><a href="/r/CryptoMarkets/comments/1qtlk0i/sold_btc_into_usdc_erc20_now_want_to_get_back/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qtmbfd/sold_btc_into_usdc_erc20_now_want_to_get_back/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/sold-btc-into-usdc-erc20-now-want-to-get-back-into-btc-via-wbtc-best-way-to-swap</link><guid>819343</guid><author>COINS NEWS</author><dc:content /><dc:text>Sold BTC into USDC (ERC20) now want to get back into BTC via WBTC. Best way to swap?</dc:text></item><item><title>How I would do creator coins</title><description><![CDATA[<div class="md"><p>We&#39;ve seen about 10 years of people trying to do content incentivization in crypto, from early-stage platforms like Bihu and Steemit, to BitClout in 2021, to Zora, to tipping features inside of decentralized social, and more. So far, I think we have not been very successful, and I think this is because the problem is fundamentally hard.</p> <p>First, my view of what the problem is. A major difference between doing &quot;creator incentives&quot; in the 00s vs doing them today, is that in the 00s, a primary problem was having not enough content at all. In the 20s, there&#39;s plenty of content, AI can generate an entire metaverse full of it for like $10. The problem is quality. And so your goal is not <em>incentivizing content</em>, it&#39;s <em>surfacing good content</em>.</p> <p>Personally, I think that the most successful example of creator incentives we&#39;ve seen is Substack. To see why, take a look at the top 10:</p> <p><a href="https://substack.com/leaderboard/technology/paid">https://substack.com/leaderboard/technology/paid</a> <a href="https://substack.com/leaderboard/culture/paid">https://substack.com/leaderboard/culture/paid</a> <a href="https://substack.com/leaderboard/world-politics/paid">https://substack.com/leaderboard/world-politics/paid</a></p> <p>Now, you may disagree with many of these authors. But I have no doubt that:</p> <ol> <li>They are on the whole high quality, and contribute positively to the discussion</li> <li>They are mostly people who would not have been elevated without Substack&#39;s presence</li> </ol> <p>So Substack is genuinely surfacing high quality and pluralism.</p> <p>Now, we can compare to creator coin projects. I don&#39;t want to pick on a single one, because I think there&#39;s a failure mode of the entire category.</p> <p>For example:</p> <p>Top Zora creator coins: <a href="https://www.coingecko.com/en/categories/zora-creator-coins">https://www.coingecko.com/en/categories/zora-creator-coins</a></p> <p>BitClout: <a href="https://www.businessofbusiness.com/articles/inside-the-rise-of-bitclout-a-crypto-based-social-network-influencers-andreessen-horowitz-sequoia/#:%7E:text=Most%20of%20the,about%20BitClout%E2%80%99s%20users">https://www.businessofbusiness.com/articles/inside-the-rise-of-bitclout-a-crypto-based-social-network-influencers-andreessen-horowitz-sequoia/#:~:text=Most%20of%20the,about%20BitClout%E2%80%99s%20users</a></p> <p>Basically, the top 10 are people who already have very high social status, and who are often impressive but primarily for reasons other than the content they create.</p> <p>At the core, Substack is a simple subscription service: you pay $N per month, and you get to see the person&#39;s articles. But a big part of Substack&#39;s success is that they did not just set the mechanism and forget. Their launch process was very hands-on, deliberately seeding the platform with high-quality creators, based on a very particular vision of what kind of high-quality intellectual environment they wanted to foster, including giving selected people revenue guarantees.</p> <p>So now, let&#39;s get to one idea that I think could work (of course, coming up with new ideas is inherently a more speculative project than criticizing existing ones, and more prone to error).</p> <p>Create a DAO, that is <em>not</em> token-based. Instead, the inspiration should be Protocol Guild: there are N members, and they can (anonymously) vote new members in and out. If N gets above ~200, consider auto-splitting it.</p> <p>Importantly, do <em>not</em> try to make the DAO universal or even industry-wide. Instead, embrace the opinionatedness. Be okay with having a dominant type of content (long-form writing, music, short-form video, long-form video, fiction, educational...), and be okay with having a dominant style (eg. country or region of origin, political viewpoint, if within crypto which projects you&#39;re most friendly to...). Hand-pick the initial membership set, in order to maximize its alignment with the desired style.</p> <p>The goal is to have a group that is larger than one creator and can accumulate a public brand and collectively bargain to seek revenue opportunities, but at the same time small enough that internal governance is tractable.</p> <p>Now, here is where the tokens come in. In general, one of my hypotheses this decade is that a large portion of effective governance mechanisms will all have the form factor of &quot;large number of people and bots participating in a prediction market, with the output oracle being a diverse set of people optimized for mission alignment and capture resistance&quot;. In this case, what we do is: anyone can become a creator and create a creator coin, and then, if they get admitted to a creator DAO, a portion of their proceeds from the DAO are used to burn their creator coins.</p> <p>This way, the token speculators are NOT participating in a recursive-speculation attention game backed only by itself. Instead, they are specifically being predictors of what new creators the high-value creator DAOs will be willing to accept. At the same time, they also provide a valuable service to the creator DAOs: they are helping surface promising creators for the DAOs to choose from.</p> <p>So the ultimate decider of who rises and falls is not speculators, but high-value content creators (we make the assumption that good creators are also good judges of quality, which seems often true). Individual speculators can stay in the game and thrive to the extent that they do a good job of predicting the creator DAOs&#39; actions.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qsysag/how_i_would_do_creator_coins/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qsysag/how_i_would_do_creator_coins/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/how-i-would-do-creator-coins</link><guid>819219</guid><author>COINS NEWS</author><dc:content /><dc:text>How I would do creator coins</dc:text></item><item><title>Daily General Discussion February 01, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qsqd70/daily_general_discussion_february_01_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qsqd70/daily_general_discussion_february_01_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-february-01-2026</link><guid>819139</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion February 01, 2026</dc:text></item><item><title>Built a free source open honeypot scanner to protect Ethereum traders</title><description><![CDATA[<div class="md"><p>Honeypot tokens are killing Ethereum&#39;s reputation. People get rugged, blame &quot;Ethereum scams,&quot; when really it&#39;s malicious ERC20 implementations. Source: [github.com/Teycir/honeypotscan](<a href="https://github.com/Teycir/honeypotscan">https://github.com/Teycir/honeypotscan</a>) to help clean this up.</p> <p>## The Problem</p> <p>Scammers deploy ERC20 tokens with hidden logic that blocks sells:</p> <p>- tx.origin checks in transfer/balanceOf/allowance</p> <p>- Hidden 95-100% sell taxes</p> <p>- Whitelist-only transfers</p> <p>- Asymmetric transfer logic</p> <p>You can buy on Uniswap, but when you try to sell, the transaction reverts or drains your tokens. Funds gone.</p> <p>## How It Works</p> <p>Paste a contract address → fetches verified source from Etherscan → runs 13 regex patterns → returns results in ~2 seconds.</p> <p>Detection patterns include:</p> <p>- **Core ERC20 abuse** (3 patterns) - tx.origin in balanceOf/allowance/transfer</p> <p>- **Hidden helpers** (2 patterns) - _taxPayer, _isSuper with tx.origin</p> <p>- **Auth bypasses** (4 patterns) - tx.origin in require/if/assert/mapping</p> <p>- **Transfer blocks** (4 patterns) - Sell restrictions, whitelists, extreme taxes</p> <p>Threshold: 2+ patterns = 95% confidence honeypot. Testing shows 98% sensitivity, 97% specificity.</p> <p>## Why tx.origin is the red flag</p> <p>When you buy via Uniswap:</p> <p>- `tx.origin = YOUR_WALLET` ✅</p> <p>- `msg.sender = YOUR_WALLET` ✅</p> <p>When you sell via Uniswap:</p> <p>- `tx.origin = YOUR_WALLET` ✅</p> <p>- `msg.sender = UNISWAP_ROUTER` ❌</p> <p>Honeypots exploit this. They check `tx.origin` in access control, so DEX sells always fail while direct buys work.</p> <p>## Tech Stack</p> <p>- Next.js 16 frontend on Cloudflare Pages</p> <p>- Cloudflare Workers for edge scanning</p> <p>- Cloudflare KV for caching (95% hit rate)</p> <p>- 6 Etherscan API keys with rotation</p> <p>- Supports Ethereum, Polygon, Arbitrum</p> <p>## Try it</p> <p>Live: [honeypotscan.pages.dev](<a href="https://honeypotscan.pages.dev">https://honeypotscan.pages.dev</a>) </p> <p>Completely free, no rate limits, no tracking. Help protect the ecosystem ????️</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/tcoder7"> /u/tcoder7 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qsf7hh/built_a_free_source_open_honeypot_scanner_to/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qsf7hh/built_a_free_source_open_honeypot_scanner_to/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/built-a-free-source-open-honeypot-scanner-to-protect-ethereum-traders</link><guid>818999</guid><author>COINS NEWS</author><dc:content /><dc:text>Built a free source open honeypot scanner to protect Ethereum traders</dc:text></item><item><title>Listening to Polymarket trades in real-time (open source, no third party)</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/112129"> /u/112129 </a> <br/> <span><a href="/r/PolymarketTrading/comments/1qrc8i8/listening_to_polymarket_trades_in_realtime_open/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qs3l8c/listening_to_polymarket_trades_in_realtime_open/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/listening-to-polymarket-trades-in-real-time-open-source-no-third-party</link><guid>819001</guid><author>COINS NEWS</author><dc:content /><dc:text>Listening to Polymarket trades in real-time (open source, no third party)</dc:text></item><item><title>EtherWorld Weekly — Edition 349</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qs3kzo/etherworld_weekly_edition_349/"> <img src="https://external-preview.redd.it/xSKG66CqApn2TZyFGQpvKmfNjBmHGjdLMTdDx7pD3Gs.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=8382a8604885df9c2f05f6146a94ef65ed97a28c" alt="EtherWorld Weekly — Edition 349" title="EtherWorld Weekly — Edition 349" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/etherworld-weekly-edition-349/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qs3kzo/etherworld_weekly_edition_349/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/etherworld-weekly-edition-349</link><guid>819000</guid><author>COINS NEWS</author><dc:content /><dc:text>EtherWorld Weekly — Edition 349</dc:text></item><item><title>Just one Scan that can save you from exploits [Its free to scan]</title><description><![CDATA[<div class="md"><p>Watch before one bug costs you everything.<br/> <a href="https://x.com/SolidityScan/status/2017172006056390715?s=20">https://x.com/SolidityScan/status/2017172006056390715?s=20</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SolidityScan"> /u/SolidityScan </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qrvb61/just_one_scan_that_can_save_you_from_exploits_its/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qrvb61/just_one_scan_that_can_save_you_from_exploits_its/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/just-one-scan-that-can-save-you-from-exploits-its-free-to-scan</link><guid>819002</guid><author>COINS NEWS</author><dc:content /><dc:text>Just one Scan that can save you from exploits [Its free to scan]</dc:text></item><item><title>Daily General Discussion January 31, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qrucxq/daily_general_discussion_january_31_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qrucxq/daily_general_discussion_january_31_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-31-2026</link><guid>818998</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 31, 2026</dc:text></item><item><title>138 - Mac Budkowski - NO BS Crypto GTM Guide</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qrj8o9/138_mac_budkowski_no_bs_crypto_gtm_guide/"> <img src="https://external-preview.redd.it/7AyXUVSjoy5HPWEKSSLhrtLUnwpUSGbjwItzBlDVTOA.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=111be9c057894f042886b3f248b844d6b73698de" alt="138 - Mac Budkowski - NO BS Crypto GTM Guide" title="138 - Mac Budkowski - NO BS Crypto GTM Guide" /> </a> </td><td> <div class="md"><p>The Doots live stream is all about showcasing the best of the week from the Daily General Discussion from the <a href="/r/ethereum">r/ethereum</a> Community on Reddit! </p> <p>Today we talked to Mac Budkowski from macbudkowski.com. He&#39;s made the &quot;No BS Crypto GTM guide.&quot; Dig into what he has learned about timing, messaging, and why best isn&#39;t always good. </p> <p>Host: JT<br/> Technical Host: LogrisTheBard<br/> <a href="https://dailydoots.com">https://dailydoots.com</a> by Hanniabu<br/> Daily Doots Curator: Tricky_Troll<br/> Weekly Doots Curator: The-A-Word<br/> Farcaster and Backend Host Support: Ben Broad<br/> Media Content Support: Twelve Meatballs<br/> Discord Bouncer and Watchdog: Treebeard </p> <p>As always, if you know someone who wants a piece of this action, send em our way. </p> <p>Buy us a ☕ dailydoots.eth<br/> All of our channels can be found here: <a href="https://dailydoots.com/podcast/">https://dailydoots.com/podcast/</a> </p> <p>????️<a href="https://dailydoots.com">https://dailydoots.com</a><br/> ????<a href="https://discord.gg/EVMavericks">https://discord.gg/EVMavericks</a><br/> ????<a href="https://reddit.com/r/ethereum">https://reddit.com/r/ethereum</a><br/> ????MINTABLE Podcast ????: <a href="https://pods.media/evmavericks">https://pods.media/evmavericks</a><br/> ????Apple <a href="https://podcasts.apple.com/us/podcast/ethfinance-evmavericks-daily-doots-livestream/id1750089604">https://podcasts.apple.com/us/podcast/ethfinance-evmavericks-daily-doots-livestream/id1750089604</a><br/> ????Spotify <a href="https://open.spotify.com/show/7AotdyMtcvHZLv3pVqkxre">https://open.spotify.com/show/7AotdyMtcvHZLv3pVqkxre</a><br/> ????<a href="https://x.com/EVMavericks">https://x.com/EVMavericks</a><br/> ⏱️TikTok: <a href="https://www.tiktok.com/@evmavericks">https://www.tiktok.com/@evmavericks</a><br/> ????<a href="https://www.youtube.com/channel/UC51nlNbIkBm5Qhm7EwQuWLw">https://www.youtube.com/channel/UC51nlNbIkBm5Qhm7EwQuWLw</a><br/> Twitch: <a href="https://www.twitch.tv/evmavericks">https://www.twitch.tv/evmavericks</a><br/> LinkedIN: <a href="https://www.linkedin.com/company/evmavericks-daily-doots-podcast">https://www.linkedin.com/company/evmavericks-daily-doots-podcast</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jtnichol"> /u/jtnichol </a> <br/> <span><a href="https://youtu.be/lDG5GrjKgew">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qrj8o9/138_mac_budkowski_no_bs_crypto_gtm_guide/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/138-mac-budkowski-no-bs-crypto-gtm-guide</link><guid>818868</guid><author>COINS NEWS</author><dc:content /><dc:text>138 - Mac Budkowski - NO BS Crypto GTM Guide</dc:text></item><item><title>Major developments for ETH</title><description><![CDATA[<div class="md"><p>It was some time ago that ETH went from proof of work to proof of stake. At the time Vitalik said that there were other changes coming such as faster transaction or lower transaction cost.</p> <p>I have not heard any more since then? Is there any progress?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/icydee"> /u/icydee </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qrhhyb/major_developments_for_eth/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qrhhyb/major_developments_for_eth/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/major-developments-for-eth</link><guid>818865</guid><author>COINS NEWS</author><dc:content /><dc:text>Major developments for ETH</dc:text></item><item><title>ETH Tokenizing Commodities</title><description><![CDATA[<div class="md"><p>Can someone explain to me like I am a 5 year old what tokenizing commodities is?</p> <p>From my understanding, for example, (just an example) 1 bar of gold is tokenized on a coin. That coin gives me the right and true ownership of 1 bar of gold, but who owns that bar of gold? Can I just go to a gold issuer and show them my coin that I am entitled to a bar of gold? How does that portion actually work?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Armando33377"> /u/Armando33377 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qrgw5p/eth_tokenizing_commodities/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qrgw5p/eth_tokenizing_commodities/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/eth-tokenizing-commodities</link><guid>818866</guid><author>COINS NEWS</author><dc:content /><dc:text>ETH Tokenizing Commodities</dc:text></item><item><title>DIY crypto inheritance on Ethereum</title><description><![CDATA[<div class="md"><p>Hello Folks,</p> <p>I just published a smart contract to handle crypto inheritance 100% on-chain, without the owner having to do anything offline.</p> <p>I know there are many solutions that are trying to solve this problem, but I wanted to design my own with my logic, which is the following:</p> <p>- the contract acts like a wallet, owner can deposit, withdraw and transfer<br/> - the owner can assign beneficiaries, and update them at any time<br/> - the wallet contains an &quot;alive check&quot;, which is automatically updated on any transaction<br/> - if you wanna use it as a vault (dormant), you can update the &quot;alive check&quot; manually<br/> - the owner defines a &quot;consider me death time&quot; in years, eg: if the last alive check is older than 10 years, I&#39;m dead :(<br/> - once that happen, any of the beneficiaries can access the wallet and withdraw all the funds</p> <p>At this point, my favorite feature: the wallet gets locked, will reject any future deposit and &quot;answer&quot; with an epitaph... <em>your &quot;last worlds&quot;</em> recorded <em>on-chain</em> that you can configure when you create the wallet.</p> <p>All of the above is less then 100 lines of solidity... amazing :)</p> <p>At the moment I only did the backend (<a href="https://github.com/francescocarlucci/olga">github link</a>), but I&#39;d like to do a nice interface to make it easy to deploy. Of course, free and open source in the Ethereum spirit!</p> <p>Would you give me a feedback on the logic? Do you see any pitfall or edge cases?</p> <p>Thanks,<br/> Francesco</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/fcarlucci"> /u/fcarlucci </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qrc60c/diy_crypto_inheritance_on_ethereum/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qrc60c/diy_crypto_inheritance_on_ethereum/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/diy-crypto-inheritance-on-ethereum</link><guid>818867</guid><author>COINS NEWS</author><dc:content /><dc:text>DIY crypto inheritance on Ethereum</dc:text></item><item><title>Ethereal news weekly #9 | Fidelity Investments FIDD stablecoin, TheDAO Security Fund, Hegotá upgrade headliner proposals</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qr54bw/ethereal_news_weekly_9_fidelity_investments_fidd/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #9 | Fidelity Investments FIDD stablecoin, TheDAO Security Fund, Hegotá upgrade headliner proposals" title="Ethereal news weekly #9 | Fidelity Investments FIDD stablecoin, TheDAO Security Fund, Hegotá upgrade headliner proposals" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-9/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qr54bw/ethereal_news_weekly_9_fidelity_investments_fidd/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-9-fidelity-investments-fidd-stablecoin-thedao-security-fund-hegota-upgrade-headliner-proposals</link><guid>818869</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #9 | Fidelity Investments FIDD stablecoin, TheDAO Security Fund, Hegotá upgrade headliner proposals</dc:text></item><item><title>Built web3:// protocol support into markdown - ENS sites can now embed live contract calls</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qr16pm/built_web3_protocol_support_into_markdown_ens/"> <img src="https://preview.redd.it/76cvigjm6dgg1.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=fd0e86db9147a550b2103f626bd51faf26613f51" alt="Built web3:// protocol support into markdown - ENS sites can now embed live contract calls" title="Built web3:// protocol support into markdown - ENS sites can now embed live contract calls" /> </a> </td><td> <div class="md"><p>I&#39;ve been working on adding native smart contract interaction to markdown-based ENS websites on Simple Page, and v1.6.0 just shipped with two features I&#39;m excited to share.</p> <h1>Web3 Forms via URI Protocol</h1> <p>You can now embed interactive contract calls using <code>web3://</code> URIs (ERC-6860) directly in markdown. The syntax works like this:</p> <pre><code>![USDC Balance](web3://0xa0b8...eb48:1/balanceOf/address!0x?returns=(uint256)&amp;labels=(Account)) </code></pre> <p>This renders as a live form that:</p> <ul> <li>Reads contract state without signatures (view/pure functions)</li> <li>Handles transactions with type validation</li> <li>Supports payable functions with ETH inputs</li> </ul> <p>No Web3.js boilerplate, no React scaffolding—just a URI that gets parsed into a working interface.</p> <h1>RSS Feed Generation</h1> <p>Sites can now auto-generate RSS feeds at <code>/rss.xml</code> using frontmatter:</p> <ul> <li>Per-page opt-in with <code>rss: true</code></li> <li>Audio enclosures for podcast episodes</li> <li>Standard metadata from markdown headers</li> </ul> <h1>Technical Architecture</h1> <p>The interesting part about Simple Page is how this works with ENS + IPFS:</p> <ul> <li>Sites are pure HTML (render without JS)</li> <li>Editor and forms load progressively</li> <li>One contenthash update publishes everything</li> <li>Self-contained—no external dependencies</li> </ul> <p>This approach lets ENS names function as actual web3 endpoints rather than just static pages. The web3:// protocol handler does the ABI encoding/decoding client-side.</p> <p><strong>Web3 forms example:</strong> <a href="https://simplepage.eth.link/guides/editor/web3-forms/">https://simplepage.eth.link/guides/editor/web3-forms/</a><br/> <strong>Source:</strong> <a href="https://simplepage.eth.link/">https://simplepage.eth.link/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/oed_"> /u/oed_ </a> <br/> <span><a href="https://i.redd.it/76cvigjm6dgg1.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qr16pm/built_web3_protocol_support_into_markdown_ens/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/built-web3-protocol-support-into-markdown-ens-sites-can-now-embed-live-contract-calls</link><guid>818870</guid><author>COINS NEWS</author><dc:content /><dc:text>Built web3:// protocol support into markdown - ENS sites can now embed live contract calls</dc:text></item><item><title>I am personally allocating 16,384 ETH to support full-stack open-source security and verifiability.</title><description><![CDATA[<div class="md"><p>In these five years, the Ethereum Foundation is entering a period of mild austerity, in order to be able to simultaneously meet two goals:</p> <ol> <li>Deliver on an aggressive roadmap that ensures Ethereum&#39;s status as a performant and scalable world computer that does not compromise on robustness, sustainability and decentralization.</li> <li>Ensures the Ethereum Foundation&#39;s own ability to sustain into the long term, and protect Ethereum&#39;s core mission and goals, including both the core blockchain layer as well as users&#39; ability to access and use the chain with self-sovereignty, security and privacy.</li> </ol> <p>To this end, my own share of the austerity is that I am personally taking on responsibilities that might in another time have been &quot;special projects&quot; of the EF. Specifically, we are seeking the existence of an open-source, secure and verifiable full stack of software and hardware that can protect both our personal lives and our public environments ( see <a href="https://vitalik.eth.limo/general/2025/09/24/openness_and_verifiability.html">https://vitalik.eth.limo/general/2025/09/24/openness_and_verifiability.html</a> ). This includes applications such as finance, communication and governance, blockchains, operating systems, secure hardware, biotech (including both personal and public health), and more. If you have seen the Vensa announcement (seeking to make open silicon a commercially viable reality at least for security-critical applications), the ucritter.com including recent versions with built in ZK + FHE + differential-privacy features, the air quality work, my donations to encrypted messaging apps, my own enthusiasm and use for privacy-preserving, walkaway-test-friendly and local-first software (including operating systems), then you know the general spirit of what I am planning to support.</p> <p>For this reason I have just withdrawn 16,384 ETH, which will be deployed toward these goals over the next few years. I am also exploring secure decentralized staking options that will allow even more capital from staking rewards to be put toward these goals in the long term.</p> <p>Ethereum itself is an indispensable part of the &quot;full-stack openness and verifiability&quot; vision. The Ethereum Foundation will continue with a steadfast focus on developing Ethereum, with that goal in mind. &quot;Ethereum everywhere&quot; is nice, but the primary priority is &quot;Ethereum for people who need it&quot;. Not corposlop, but self-sovereignty, and the baseline infrastructure that enables cooperation without domination.</p> <p>In a world where many people&#39;s default mindset is that we need to race to become a big strong bully, because otherwise the existing big strong bullies will eat you first, this is the needed alternative. It will involve much more than technology to succeed, but the technical layer is something which is in our control to make happen. The tools to ensure your, and your community&#39;s, autonomy and safety, as a basic right that belongs to everyone. Open not in a bullshit &quot;open means everyone has the right to buy it from us and use our API for $200/month&quot; way, but actually open, and secure and verifiable so that you know that your technology is working for you.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qqzw02/i_am_personally_allocating_16384_eth_to_support/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qqzw02/i_am_personally_allocating_16384_eth_to_support/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/i-am-personally-allocating-16384-eth-to-support-full-stack-open-source-security-and-verifiability</link><guid>818639</guid><author>COINS NEWS</author><dc:content /><dc:text>I am personally allocating 16,384 ETH to support full-stack open-source security and verifiability.</dc:text></item><item><title>Daily General Discussion January 30, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qqxc92/daily_general_discussion_january_30_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qqxc92/daily_general_discussion_january_30_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-30-2026</link><guid>818638</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 30, 2026</dc:text></item><item><title>Highlights from the All Core Developers Execution (ACDE) Call #229</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qqunju/highlights_from_the_all_core_developers_execution/"> <img src="https://external-preview.redd.it/bFUYrbtFA5dKqv8sJbzlGcIZdAxRNHS7oDHgBEgmHzQ.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=a57b1a113503262ca53cd9a3de0949baf5fca592" alt="Highlights from the All Core Developers Execution (ACDE) Call #229" title="Highlights from the All Core Developers Execution (ACDE) Call #229" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/highlights-from-the-all-core-developers-execution-acde-call-229/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qqunju/highlights_from_the_all_core_developers_execution/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/highlights-from-the-all-core-developers-execution-acde-call-229</link><guid>818640</guid><author>COINS NEWS</author><dc:content /><dc:text>Highlights from the All Core Developers Execution (ACDE) Call #229</dc:text></item><item><title>TheDAO Security Fund</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qqp6ry/thedao_security_fund/"> <img src="https://external-preview.redd.it/neJSDtZ67ur4atoIhNk3KRvXTBMP5YZ-PwZrAROC3IM.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=ff3b8e6b7ffbc9a43eb922774230c88a3d4465a7" alt="TheDAO Security Fund" title="TheDAO Security Fund" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://paragraph.com/@thedao.fund/thedao-security-fund-activating-75000-eth-for-ethereum-security">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qqp6ry/thedao_security_fund/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/thedao-security-fund</link><guid>818641</guid><author>COINS NEWS</author><dc:content /><dc:text>TheDAO Security Fund</dc:text></item><item><title>Protocol Guild's 2025 Annual Report is live!</title><description><![CDATA[<div class="md"><p>An unprecedented year for Ethereum. 10 year anniversary x 0 downtime. 2 Upgrades. Funding remains a challenge.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/PeterAugur"> /u/PeterAugur </a> <br/> <span><a href="https://x.com/ProtocolGuild/status/2016969171905761459?s=20">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qqjxm0/protocol_guilds_2025_annual_report_is_live/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/protocol-guilds-2025-annual-report-is-live</link><guid>818643</guid><author>COINS NEWS</author><dc:content /><dc:text>Protocol Guild's 2025 Annual Report is live!</dc:text></item><item><title>CFTC and SEC to Hold Joint Event on Harmonization, U.S. Financial Leadership in the Crypto Era</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qqjn1a/cftc_and_sec_to_hold_joint_event_on_harmonization/"> <img src="https://external-preview.redd.it/QO9XaUTieu9pnaOVChtMU1tMK88LT4Ns0I0bvR9U1eM.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=c9ff21c7ae44cb77c161b7869ceb7271e0468416" alt="CFTC and SEC to Hold Joint Event on Harmonization, U.S. Financial Leadership in the Crypto Era" title="CFTC and SEC to Hold Joint Event on Harmonization, U.S. Financial Leadership in the Crypto Era" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jtnichol"> /u/jtnichol </a> <br/> <span><a href="https://youtu.be/7jvfkuaV2UI">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qqjn1a/cftc_and_sec_to_hold_joint_event_on_harmonization/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/cftc-and-sec-to-hold-joint-event-on-harmonization-us-financial-leadership-in-the-crypto-era</link><guid>818642</guid><author>COINS NEWS</author><dc:content /><dc:text>CFTC and SEC to Hold Joint Event on Harmonization, U.S. Financial Leadership in the Crypto Era</dc:text></item><item><title>We are Liquity V2. We just achieved an A- Rating (higher than USDC &amp; DAI) for our new decentralized stablecoin $BOLD. It’s backed only by ETH and pays 75% of borrower fees to holders. AMA!</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qqea41/we_are_liquity_v2_we_just_achieved_an_a_rating/"> <img src="https://b.thumbs.redditmedia.com/XF2Pfk0MqqNQZkMkjaCwbqfz9BiltmASvQLdmfzCies.jpg" alt="We are Liquity V2. We just achieved an A- Rating (higher than USDC &amp; DAI) for our new decentralized stablecoin $BOLD. It’s backed only by ETH and pays 75% of borrower fees to holders. AMA!" title="We are Liquity V2. We just achieved an A- Rating (higher than USDC &amp; DAI) for our new decentralized stablecoin $BOLD. It’s backed only by ETH and pays 75% of borrower fees to holders. AMA!" /> </a> </td><td> <div class="md"><p>Hey everyone! Liquity V2 here.</p> <p>We launched on Ethereum Mainnet on in Q2 2025, and have racked up $150m in TVL and $39m in BOLD supply.</p> <p>You might know us from Liquity V1 and LUSD (the OG venue for 0% interest loans).</p> <p>With V2, we feel we&#39;ve created the ultimate borrowing and earning venue for users who value complete control.</p> <p>Liquity V2 is an immutable borrowing protocol (think MakerDAO, but with no governance to change the rules), where you can deposit ETH, wstETH, and rETH to mint the stablecoin, $BOLD. BOLD is only backed by said assets, and the protocol is completely immutable.</p> <p>We built Liquity V2 to solve two specific problems, offering unique value to the <a href="/r/Ethereum">r/Ethereum</a> community:</p> <p><strong>1) The Borrow Side</strong>: You set the rate. Liquity V2 is the only venue where you can borrow against your ETH/LSTs and set your own interest rate (or delegate it to a rate manager).</p> <p>This had led to borrowing rates for ETH, wstETH, and rETH on average to be the cheapest on Liquity V2 over the last 6 months - a full 2% cheaper than the competition.</p> <p><a href="https://preview.redd.it/fx7vj767lbgg1.png?width=1216&amp;format=png&amp;auto=webp&amp;s=a9e95a3324fdc548b9ee62e8621030a7add2f5f0">https://preview.redd.it/fx7vj767lbgg1.png?width=1216&amp;format=png&amp;auto=webp&amp;s=a9e95a3324fdc548b9ee62e8621030a7add2f5f0</a></p> <p><strong>2) The Yield Side: Real Revenue, Not Emissions</strong> We created $BOLD to be the hardest stablecoin in DeFi that has sustainable savings built in. Unlike other stablecoins, 100% of borrower revenues are diverted towards growing $BOLD yield. The yield is split 75/25 to two specific venues sources:</p> <ol> <li><strong>75% of interest fees to the Stablity Pools:</strong> 75% of all interest paid by borrowers of ETH, wstETH, and rETH flows directly to their respective Stability Pools. The Stability Pools also allow depositors to capture ETH and LST liquidation gains at a discount.</li> <li><strong>25% of Interest Fees flow into growing BOLD liquidity on DEXes</strong>: Each week, roughly ~12k of protocol revenues are diverted into venues like Uniswap and Curve. This helps boost and enshrine liquidity for BOLD on blue-chip venues.</li> </ol> <p>Based on current rates, here is how you can capture that yield, with relatively low risk:</p> <p><strong>If you want exposure to some ETH along with borrower fees:</strong></p> <ul> <li>Stability Pool (~6% APY): The &quot;set and forget&quot; venue. You earn the 75% borrower interest split (paid in BOLD) + Liquidation gains (paid in ETH/LSTs).</li> </ul> <p><strong>If you want pure dollar-dominated yield, where ETH liquidation gains get auto-compounded</strong></p> <ol> <li>yBOLD via Yearn (<strong>~7% APY</strong>): Yearn’s auto-compounding vault that optimizes for the best yields across the 3 Stability Pools.</li> <li>sBOLD via K3 Capital (<strong>~6.5% APY</strong>): An auto-compounding vault that also sells off liquidation ETH gains for more BOLD. It has a fixed 60-30-10 split between the wstETH, ETH, and rETH Stability Pools.</li> </ol> <p><strong>If you want to provide liquidity on a blue-chip DEX, while having balanced exposure to BOLD &amp; USDC.</strong></p> <ul> <li>Uniswap LP BOLD &gt;&lt;USDC (<strong>~7% APY</strong>)</li> <li>Curve LP BOLD &gt;&lt; USDC (<strong>~8% APY</strong>)</li> </ul> <p><a href="https://preview.redd.it/mq471l08mbgg1.png?width=1804&amp;format=png&amp;auto=webp&amp;s=26a56010f39facdc3f848726d2aec6735a5007d2">BOLD yield opportunities</a></p> <p><strong>Forkonomics and how it adds to yield.</strong></p> <p>Liquity has taken a licensing approach to scaling. 10 teams have forked Liquity V2 code across various ecosystems, and as a part of their licensing fee, they have to allocate ~3% of their token supply to Liquity Mainnet users.</p> <p>These forks are allocating supply designated towards rewarding <strong>active BOLD liquidity providers on Mainnet</strong> (Stability Pool holders, LP providers on Curve &amp; Uniswap, etc).</p> <p>On top of the organic yield above, we expect ~6 friendly forks providing airdrops over the next 6-9 months.</p> <ul> <li><strong>The Impact:</strong> The first fork airdrop just went live, and it effectively <strong>added ~3% APR</strong> to the existing TVL sitting in those venues (eg. if you were earning 9% on Curve, you&#39;re earning 12% now)</li> <li><strong>The Opportunity:</strong> By holding BOLD positions on Mainnet, you are farming yield for protocols launching across the L2 ecosystem simultaneously</li> </ul> <p>Safety and Security of Liquity V2 and BOLD.</p> <p>No yield is safe without addressing how the robust the stablecoin is.</p> <p><strong>Bluechip, a stablecoin ratings agency, just rated BOLD an A-. This is a higher rating than USDC and DAI, furthering proof of</strong></p> <ul> <li><strong>The Score:</strong> BOLD received perfect 1.0 scores in Management, Decentralization, and Governance.</li> <li><strong>The Distinction:</strong> BOLD is currently the <em>only</em> A- rated stablecoin with 100% crypto-native backing (no banks, no RWAs).</li> <li><strong>Why?</strong> The protocol is immutable. Liquity cannot change the rules, rug the collateral, or blacklist addresses.</li> </ul> <p><a href="https://preview.redd.it/41n2v7ewlbgg1.png?width=1104&amp;format=png&amp;auto=webp&amp;s=37b94add54c3c28c5d8d9c4a1ea47b9f78885426">BOLD rating.</a></p> <p>You can read more on Bluechip&#39;s A- rating on BOLD here: <a href="https://x.com/LiquityProtocol/status/2015798256186360000">https://x.com/LiquityProtocol/status/2015798256186360000</a></p> <p><strong>Some useful resources on stats around Liquity V2, and yield opportunities:</strong></p> <ol> <li>Borrow on Liquity V2 today: <a href="https://www.liquity.org/frontend-v2">https://www.liquity.org/frontend-v2</a></li> <li>Yield venues with links included: <a href="https://dune.com/liquity/liquity-v2-yields">https://dune.com/liquity/liquity-v2-yields</a></li> <li>YouTube Playlist on Liquity V2: <a href="https://www.youtube.com/watch?v=o1miCKLIPYs&amp;list=PL4NlNvaPAvJ-51WBhFdBcK3BFA0Fk32rE">https://www.youtube.com/watch?v=o1miCKLIPYs&amp;list=PL4NlNvaPAvJ-51WBhFdBcK3BFA0Fk32rE</a></li> </ol> <p>Happy to answer any and all questions :)</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/JeremysThrees"> /u/JeremysThrees </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qqea41/we_are_liquity_v2_we_just_achieved_an_a_rating/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qqea41/we_are_liquity_v2_we_just_achieved_an_a_rating/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/we-are-liquity-v2-we-just-achieved-an-a-rating-higher-than-usdc-dai-for-our-new-decentralized-stablecoin-bold-its-backed-only-by-eth-and-pays-75-of-borrower-fees-to-holders-ama</link><guid>818637</guid><author>COINS NEWS</author><dc:content /><dc:text>We are Liquity V2. We just achieved an A- Rating (higher than USDC &amp; DAI) for our new decentralized stablecoin $BOLD. It’s backed only by ETH and pays 75% of borrower fees to holders. AMA!</dc:text></item><item><title>Ethereum is stuck</title><description><![CDATA[<div class="md"><p>It’s has broken $3000 multiple times since 2021. It has shown no ability to appreciate in value despite all positive news including major institutions adopting its technology, treasury firms accumulating , ETFs. </p> <p>I’m beginning to think this is as good as it gets. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/MulberryAcceptable39"> /u/MulberryAcceptable39 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qq84kd/ethereum_is_stuck/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qq84kd/ethereum_is_stuck/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-is-stuck</link><guid>818425</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum is stuck</dc:text></item><item><title>Hegotá Should Complete the Holy Trinity of Censorship Resistance</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qq4rzf/hegotá_should_complete_the_holy_trinity_of/"> <img src="https://external-preview.redd.it/ZtMCPJ6o8D4nT7w0psD7SmbNbakQsVUeas7W2bNWhbU.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=d1e990b99fe32b1398191649592c5f7b0f230103" alt="Hegotá Should Complete the Holy Trinity of Censorship Resistance" title="Hegotá Should Complete the Holy Trinity of Censorship Resistance" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/hegota-should-complete-the-holy-trinity-of-censorship-resistance/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qq4rzf/hegotá_should_complete_the_holy_trinity_of/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/hegota-should-complete-the-holy-trinity-of-censorship-resistance</link><guid>818424</guid><author>COINS NEWS</author><dc:content /><dc:text>Hegotá Should Complete the Holy Trinity of Censorship Resistance</dc:text></item><item><title>Daily General Discussion January 29, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qq0hf1/daily_general_discussion_january_29_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qq0hf1/daily_general_discussion_january_29_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-29-2026</link><guid>818423</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 29, 2026</dc:text></item><item><title>How Ethereum became a deflationary asset - quick rundown with numbers</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qpl03j/how_ethereum_became_a_deflationary_asset_quick/"> <img src="https://b.thumbs.redditmedia.com/cH0MtfNZNjrqHF3EszDijnFJHJGNuYjwhot8q9oQV6U.jpg" alt="How Ethereum became a deflationary asset - quick rundown with numbers" title="How Ethereum became a deflationary asset - quick rundown with numbers" /> </a> </td><td> <div class="md"><p>Ethereum doesn’t have a fixed “X% inflation forever” schedule. Its supply is basically the tug-of-war between:</p> <p>1) ISSUANCE (new ETH paid to secure the network)</p> <p>2) BURN (ETH destroyed via EIP-1559 base fee)</p> <p>So ETH can be inflationary in one period and deflationary in another.</p> <p>------------------------------------------------------------</p> <p>THE 2 BIG CHANGES</p> <p>------------------------------------------------------------</p> <p>A) EIP-1559 (fee burn, live since Aug 2021)</p> <p>- Base fee is burned (destroyed), so activity can reduce supply.</p> <p>B) The Merge (executed Sep 15, 2022) — issuance collapsed</p> <p>Ethereum.org’s issuance breakdown uses these ballpark numbers:</p> <p>- Pre-Merge: ~13,000 ETH/day to PoW miners (+ PoS issuance existed in parallel)</p> <p>- Post-Merge: ~1,700 ETH/day to PoS validators</p> <p>=&gt; ~88% drop in new issuance</p> <p>A neat rule-of-thumb from ethereum.org:</p> <p>- If average gas is ~16 gwei or higher on a given day, burn can roughly offset ~1,700 ETH/day issuance (net ~0 or deflation for that day).</p> <p>------------------------------------------------------------</p> <p>BEFORE vs AFTER: YoY SUPPLY INFLATION (REAL SUPPLY DATA)</p> <p>Definition here: compare today’s circulating supply vs 1 year ago (YoY % change).</p> <p>Here are the “regime” numbers around the Merge:</p> <p>1) LAST FULL YEAR BEFORE THE MERGE (PoW era, but already with EIP-1559 burn)</p> <p>- Sep 15, 2021 → Sep 14, 2022:</p> <p>Avg YoY inflation: ~4.16%</p> <p>Median: ~4.32%</p> <p>2) FIRST POST-MERGE YEAR</p> <p>- Sep 15, 2022 → Sep 14, 2023:</p> <p>Avg YoY inflation: ~1.06%</p> <p>Median: ~0.97%</p> <p>3) SECOND POST-MERGE YEAR</p> <p>- Sep 15, 2023 → Sep 14, 2024:</p> <p>Avg YoY inflation: ~-0.13% (net deflation on average)</p> <p>(Yes, negative YoY supply change on average for a full year.)</p> <p>Peak “deflationary stretch” (from the dataset):</p> <p>- Most deflationary datapoint: ~-0.2957% annualized (around mid-2023)</p> <p>------------------------------------------------------------</p> <p>RECENT SUPPLY DEVELOPMENT: “NEAR ABSOLUTE ZERO”</p> <p>------------------------------------------------------------</p> <p>Current snapshot (latest datapoint in my YoY series):</p> <p>- Supply: ~120.74M ETH</p> <p>- YoY inflation: ~0.2371% (as of 2026-01-26)</p> <p>What does 0.237% mean in ETH terms?</p> <p>- 0.2371% of ~120.74M ≈ ~286k ETH net added over a year (order of magnitude).</p> <p>That’s tiny compared to the pre-Merge issuance regime.</p> <p>Short-term trend (last ~30 days in the YoY series):</p> <p>- YoY inflation drifted DOWN from ~0.2578% → ~0.2371%</p> <p>So it’s mildly positive right now, but cooling, not accelerating.</p> <p>------------------------------------------------------------</p> <p>TL;DR</p> <p>------------------------------------------------------------</p> <p>- Pre-Merge: ~4%+ YoY supply growth was “normal”.</p> <p>- Post-Merge: baseline issuance dropped massively, so burn often offsets a large chunk of it.</p> <p>- Result: ETH supply has been hovering around ~0% (sometimes +, sometimes -), depending on activity.</p> <p>Full write-up + charts + methodology:</p> <p><a href="https://www.cryptoinflation.eu/how-ethereum-became-a-deflationary-asset-a-guide-to-eths-inflation-deflation/">https://www.cryptoinflation.eu/how-ethereum-became-a-deflationary-asset-a-guide-to-eths-inflation-deflation/</a></p> <p><a href="https://preview.redd.it/8v98eo9u35gg1.png?width=1184&amp;format=png&amp;auto=webp&amp;s=7706ef9f2e5c44f1c43fb96f23ae5ae410a18dff">Ethereum&#39;s inflation chart</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Topical595"> /u/Topical595 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qpl03j/how_ethereum_became_a_deflationary_asset_quick/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qpl03j/how_ethereum_became_a_deflationary_asset_quick/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/how-ethereum-became-a-deflationary-asset-quick-rundown-with-numbers</link><guid>818304</guid><author>COINS NEWS</author><dc:content /><dc:text>How Ethereum became a deflationary asset - quick rundown with numbers</dc:text></item><item><title>Ethereum’s Transition to Post-Quantum Cryptography</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/skanlator"> /u/skanlator </a> <br/> <span><a href="/r/solidity/comments/1qoagku/ethereums_transition_to_postquantum_cryptography/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qpkqdl/ethereums_transition_to_postquantum_cryptography/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereums-transition-to-post-quantum-cryptography</link><guid>818305</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum’s Transition to Post-Quantum Cryptography</dc:text></item><item><title>Someone at the Ethereum Foundation uses the imKey Pro. I tested it to find out why.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qpc5be/someone_at_the_ethereum_foundation_uses_the_imkey/"> <img src="https://external-preview.redd.it/l8yce9vy2hacWaVwMHnyY75_8AZmQVizRLKaSKZfi8w.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=c1fa5433a2ae576825490510acff81327e9766ef" alt="Someone at the Ethereum Foundation uses the imKey Pro. I tested it to find out why." title="Someone at the Ethereum Foundation uses the imKey Pro. I tested it to find out why." /> </a> </td><td> <div class="md"><p>I just launched my hardware wallet review series and the first device to be reviewed gave me surprising results! </p> <p>The imKey Pro is a $110 bluetooth wallet from the 2019 era. It’s not something most people have heard of, and at this point, it can be considered previous gen tech, is partially closed source, and even uses microUSB still (when not using the bluetooth-native connection).</p> <p>Can it still hold up in 2026? </p> <p>Well… surprisingly, yes.</p> <p>Even more assuring is that some years ago, someone deeply embedded in the Ethereum Foundation (and has become even MORE deeply embedded since) told me she uses it exclusively. Not Ledger, not Trezor, not GridPlus. The imKey. That endorsement alone made me take this device very seriously. So I tested everything: the Infineon SLE78 secure element, the bluetooth security model, the mobile-first UX, the clear signing implementation.</p> <p><strong>Pros:</strong></p> <ul> <li>EAL6+ certified chip (same as your passport, bank cards, and Yubikey!!!)</li> <li>(More) readable transaction context</li> <li>Wireless signing via imToken app</li> <li>Great build quality</li> <li>Entry-level price</li> </ul> <p><strong>Cons:</strong></p> <ul> <li>2019 hardware showing its age</li> <li>Bluetooth = wider attack surface</li> <li>Firmware isn&#39;t open source</li> <li>Requires binding codes if using the bluetooth connection via imToken app</li> <li>Limited desktop support</li> </ul> <p>For a $110 entry-level option, I would definitely consider it. First of all, ANY migration away from holding your private keys inside an internet-connected device (e.g. your laptop, a hot wallet on your phone, etc.) to a dedicated hardware wallet will be a MASSIVE security upgrade. Don’t let perfect be the enemy of good. But knowing there’s other, more modern options out there now, it can be difficult to *strongly* recommend the imKey over other options.</p> <p>But the question begs… what did my EF associate see in the imKey that I didn’t? </p> <p>I had to find out.</p> <p>Watch my full review video here: <a href="https://youtu.be/FV2qJ3eLXFI">https://youtu.be/FV2qJ3eLXFI</a></p> <p>-------------------------</p> <p>If we&#39;re meeting for the first time, hi ????! I find crypto youtube to be a giant cesspool. As a result, I started building my channel to spread the good word on good work in crypto — something with substance and humanity.</p> <p>Dropping a like, sub, and comment goes a LONG way to supporting me, so please consider doing so!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/haochizzle"> /u/haochizzle </a> <br/> <span><a href="https://youtu.be/FV2qJ3eLXFI">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qpc5be/someone_at_the_ethereum_foundation_uses_the_imkey/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/someone-at-the-ethereum-foundation-uses-the-imkey-pro-i-tested-it-to-find-out-why</link><guid>818307</guid><author>COINS NEWS</author><dc:content /><dc:text>Someone at the Ethereum Foundation uses the imKey Pro. I tested it to find out why.</dc:text></item><item><title>Unstaking stETH without delay</title><description><![CDATA[<div class="md"><p>Sorry if it was asked by past, i couldn&#39;t find the answer. Question about Lido stETH unstaking instantly, without delay</p> <p>I am having stETH staked on my Ledger Nano X that i&#39;m trying to unstake but on lido page it takes up to a week, isn&#39;t there a way to process it faster? Advices appreciated</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/sdzundercover"> /u/sdzundercover </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qpbx0c/unstaking_steth_without_delay/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qpbx0c/unstaking_steth_without_delay/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/unstaking-steth-without-delay</link><guid>818306</guid><author>COINS NEWS</author><dc:content /><dc:text>Unstaking stETH without delay</dc:text></item><item><title>Daily General Discussion January 28, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qp37r8/daily_general_discussion_january_28_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qp37r8/daily_general_discussion_january_28_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-28-2026</link><guid>818105</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 28, 2026</dc:text></item><item><title>Pouring one out for Week in Ethereum News ???? Website is offline. Thank you Evan Van Ness for your tireless efforts serving the Ethereum community. ????</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qp227f/pouring_one_out_for_week_in_ethereum_news_website/"> <img src="https://b.thumbs.redditmedia.com/pKZhboKOJ5gXDdIwKv0abrtML7j-PQpEZvX_GJXyaBs.jpg" alt="Pouring one out for Week in Ethereum News ???? Website is offline. Thank you Evan Van Ness for your tireless efforts serving the Ethereum community. ????" title="Pouring one out for Week in Ethereum News ???? Website is offline. Thank you Evan Van Ness for your tireless efforts serving the Ethereum community. ????" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://www.reddit.com/gallery/1qp227f">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qp227f/pouring_one_out_for_week_in_ethereum_news_website/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/pouring-one-out-for-week-in-ethereum-news-website-is-offline-thank-you-evan-van-ness-for-your-tireless-efforts-serving-the-ethereum-community</link><guid>818106</guid><author>COINS NEWS</author><dc:content /><dc:text>Pouring one out for Week in Ethereum News ???? Website is offline. Thank you Evan Van Ness for your tireless efforts serving the Ethereum community. ????</dc:text></item><item><title>Built a little ethereum wallet for a metamask interview</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Extreme-Layer-1201"> /u/Extreme-Layer-1201 </a> <br/> <span><a href="/r/web3/comments/1qoegm7/built_a_little_ethereum_wallet_for_a_metamask/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qon8y9/built_a_little_ethereum_wallet_for_a_metamask/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/built-a-little-ethereum-wallet-for-a-metamask-interview</link><guid>818108</guid><author>COINS NEWS</author><dc:content /><dc:text>Built a little ethereum wallet for a metamask interview</dc:text></item><item><title>Personal experiment: a smart contract that penalizes me if I skip workouts</title><description><![CDATA[<div class="md"><p>Hi <a href="/r/ethereum">r/ethereum</a>,</p> <p>I’ve been running a personal experiment called <strong>FitVow</strong>.</p> <p>The idea is simple: I stake real ETH into a smart contract, commit to weekly physical activity goals, and let the contract enforce the rules without a trusted referee.</p> <p>Each week, an Android app reads physical activity data from my smartwatch and publishes it on-chain (e.g. runs, workouts and etc). The contract uses that data to decide whether that week’s goals were met.</p> <p>If a week fails:</p> <ul> <li>that week creates an <strong>enforceable fine</strong> (paid out from the stake)</li> <li>enforcement is permissionless (anyone can trigger it)</li> <li>the fine is split between the enforcer (caller) and a charity wallet (<strong>Giveth</strong>)</li> </ul> <p>At the end of the challenge, I’m allowed to withdraw whatever remains of the stake after any fines.</p> <p>There’s no backend deciding outcomes and no admin override. Once deployed, the rules are the rules.</p> <p>This is not a product — just an experiment exploring whether Ethereum is a good tool for credible self-commitment outside of DeFi.</p> <p>Live dashboard (reads directly from on-chain data):<br/> <a href="https://fitvow.pedroaugusto.dev/">https://fitvow.pedroaugusto.dev/</a></p> <p>Technical write-up (architecture + security assumptions):<br/> <a href="https://pedrooaugusto.github.io/blog/posts/making-missed-workouts-cost-money-with-smart-contracts/">https://pedrooaugusto.github.io/blog/posts/making-missed-workouts-cost-money-with-smart-contracts/</a></p> <p>I’d love feedback — especially on whether this feels like a reasonable use of Ethereum, and what you’d poke holes in.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/the42thdoctor"> /u/the42thdoctor </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qojakt/personal_experiment_a_smart_contract_that/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qojakt/personal_experiment_a_smart_contract_that/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/personal-experiment-a-smart-contract-that-penalizes-me-if-i-skip-workouts</link><guid>818107</guid><author>COINS NEWS</author><dc:content /><dc:text>Personal experiment: a smart contract that penalizes me if I skip workouts</dc:text></item><item><title>How to store Private Key in Browser</title><description><![CDATA[<div class="md"><p>I am trying to create a delegate wallet for every user which is connected to my dApp. I intend to have access to the private key so that I can initiate and sign transactions on the users behalf.</p> <p>So I am thinking of making the wallet pub and priv key on client side and I don&#39;t want the priv key to ever leave client&#39;s browser.</p> <p>Is it possible to implement something like this ?</p> <p>I use Privy for siwe if that can help me in any way.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/codercatosaurusrex"> /u/codercatosaurusrex </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qob7o2/how_to_store_private_key_in_browser/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qob7o2/how_to_store_private_key_in_browser/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/how-to-store-private-key-in-browser</link><guid>818109</guid><author>COINS NEWS</author><dc:content /><dc:text>How to store Private Key in Browser</dc:text></item><item><title>Daily General Discussion January 27, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qo5o60/daily_general_discussion_january_27_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qo5o60/daily_general_discussion_january_27_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-27-2026</link><guid>817923</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 27, 2026</dc:text></item><item><title>EqualFi - Public Testnet Soon</title><description><![CDATA[<div class="md"><p>Hey <a href="/r/defi">r/defi</a>.</p> <p>My name is Matt and I have built something different.</p> <p>EqualFi offers the following:</p> <p>0% Interest self secured on chain credit.</p> <p>P2P Synthetic and ERC-1155 Covered Calls and Puts.</p> <p>A true P2P Lending system.</p> <p>SOLO AMM and Multi Maker AMMs all time bounded (this is powerful ask me how)</p> <p>Maker Auction Markets(MAM) this is something you have never seen before. Its an MEV resistant way to trade using dutch auction curves on chain.</p> <p>All with a Unified Liquidity pool and Internal ledger.</p> <p>No token(for now). Just DeFi infrastructure that anyone can build on.</p> <p>And here is the kicker.</p> <p>All without oracles or any chance of Liquidation.</p> <p>With this system perpetual leverage without possiblity of liquidation is REAL. </p> <p>This does not mean it is risk free but you cannot get liquidated by a errant wick at 3 am. </p> <p>Below is a link to the Github, and a link to the Discord in case you want to hop in and say hi.</p> <p>You don&#39;t have to believe but you should keep an eye on this project.</p> <p>If you want to help shape something new come say hi.</p> <p>Github: <a href="https://github.com/EqualFiLabs/EqualFi">https://github.com/EqualFiLabs/EqualFi</a></p> <p>Discord: <a href="https://discord.gg/brsMNDux4T">https://discord.gg/brsMNDux4T</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Hooftly"> /u/Hooftly </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qo2lu4/equalfi_public_testnet_soon/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qo2lu4/equalfi_public_testnet_soon/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/equalfi-public-testnet-soon</link><guid>817925</guid><author>COINS NEWS</author><dc:content /><dc:text>EqualFi - Public Testnet Soon</dc:text></item><item><title>The scaling hierarchy in blockchains</title><description><![CDATA[<div class="md"><p>Computation &gt; data &gt; state</p> <p>Computation is easier to scale than data. You can parallelize it, require the block builder to provide all kinds of &quot;hints&quot; for it, or just replace arbitrary amounts of it with a proof of it.</p> <p>Data is in the middle. If an availability guarantee on data is required, then that guarantee is required, no way around it. But you <em>can</em> split it up and erasure code it, a la PeerDAS. You can do graceful degradation for it: if a node only has 1/10 the data capacity of the other nodes, it can always produce blocks 1/10 the size.</p> <p>State is the hardest. To guarantee the ability to verify even one transaction, you need the full state. If you replace the state with a tree and keep the root, you need the full state to be able to update that root. There <em>are</em> ways to split it up, but they involve architecture changes, they are fundamentally not general-purpose.</p> <p>Hence, if you can replace state with data (without introducing new forms of centralization), by default you should seriously consider it. And if you can replace data with computation (without introducing new forms of centralization), by default you should seriously consider it.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qo08yq/the_scaling_hierarchy_in_blockchains/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qo08yq/the_scaling_hierarchy_in_blockchains/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/the-scaling-hierarchy-in-blockchains</link><guid>817924</guid><author>COINS NEWS</author><dc:content /><dc:text>The scaling hierarchy in blockchains</dc:text></item><item><title>Liquity's BOLD stablecoin receives A- rating from Bluechip with perfect scores in Management, Decentralization, and Governance</title><description><![CDATA[<div class="md"><p>Bluechip (independent stablecoin rating agency) just published their rating for $BOLD, Liquity Protocol&#39;s new stablecoin. </p> <p>Thought this sub might find it interesting given the ongoing discussions about decentralized stables and Ethereum&#39;s role in the stablecoin ecosystem.</p> <p>Key Findings:</p> <ul> <li><strong>Overall Rating:</strong> A- (outranks USDC at B+ and DAI at B+)</li> <li><strong>Perfect 1.0 Scores:</strong> <ul> <li>Management (immutable protocol, no admin keys)</li> <li>Decentralization (no single point of control)</li> <li>Governance (no governance - protocol cannot be altered)</li> </ul></li> <li><strong>Stability Score:</strong> 0.88</li> </ul> <p>What Makes BOLD Different: BOLD is the only A- rated stablecoin backed 100% by crypto-native collateral:</p> <ul> <li>100% Ethereum-native collateral (ETH, wstETH, rETH)</li> <li>&gt;200% overcollateralized (currently 291%)</li> <li>Immutable smart contracts (cannot be upgraded or changed)</li> <li>No blacklist function (cannot be frozen)</li> <li>Always redeemable at $1 for underlying collateral</li> </ul> <p>For comparison, PYUSD also has an A- rating but is backed by bank deposits and US Treasuries.</p> <p>Context: BOLD is built by the team behind LUSD (Liquity V1), which has been live for 4+ years with $5B peak TVL and zero exploits. Given how much this sub discusses Ethereum&#39;s role as the stablecoin settlement layer (especially with $18.8T settled on Ethereum in 2025), figured this was relevant.</p> <p>Full Bluechip Report: <a href="https://bluechip.org/en">https://bluechip.org/en</a></p> <p>More on Liquity Protocol: <a href="https://x.com/LiquityProtocol/status/2015798256186360000">https://x.com/LiquityProtocol/status/2015798256186360000</a></p> <p>Happy to answer questions about the protocol or rating methodology.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/JeremysThrees"> /u/JeremysThrees </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qnid9x/liquitys_bold_stablecoin_receives_a_rating_from/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qnid9x/liquitys_bold_stablecoin_receives_a_rating_from/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/liquitys-bold-stablecoin-receives-a-rating-from-bluechip-with-perfect-scores-in-management-decentralization-and-governance</link><guid>817742</guid><author>COINS NEWS</author><dc:content /><dc:text>Liquity's BOLD stablecoin receives A- rating from Bluechip with perfect scores in Management, Decentralization, and Governance</dc:text></item><item><title>All you need to know about Ethereum Glamsterdam Upgrade</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qngb7l/all_you_need_to_know_about_ethereum_glamsterdam/"> <img src="https://external-preview.redd.it/rQeE-KuwgUUFxmNwBfo-HKXkMVxEmidCHo4MygOxpvo.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=7520b365546fff3e35daa2f195c87d373f7fe3c4" alt="All you need to know about Ethereum Glamsterdam Upgrade" title="All you need to know about Ethereum Glamsterdam Upgrade" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/all-you-need-to-know-about-ethereum-glamsterdam-upgrade/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qngb7l/all_you_need_to_know_about_ethereum_glamsterdam/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/all-you-need-to-know-about-ethereum-glamsterdam-upgrade</link><guid>817743</guid><author>COINS NEWS</author><dc:content /><dc:text>All you need to know about Ethereum Glamsterdam Upgrade</dc:text></item><item><title>US Spot ETH ETFs recorded $1.5B in net outflows in Q4 2025, the single highest quarter of net outflows for the sector.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qnblvo/us_spot_eth_etfs_recorded_15b_in_net_outflows_in/"> <img src="https://preview.redd.it/o540zemhynfg1.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=35c9bd5b36207dd5aae3c5180a142acbe01f3b73" alt="US Spot ETH ETFs recorded $1.5B in net outflows in Q4 2025, the single highest quarter of net outflows for the sector." title="US Spot ETH ETFs recorded $1.5B in net outflows in Q4 2025, the single highest quarter of net outflows for the sector." /> </a> </td><td> <div class="md"><p>Despite net outflows and a decline in ETH’s price, ETH ETFs have still had a strong year, posting 48.2% YoY growth. ETHA retains its commanding lead with 57.4% share of assets under management (AUM), followed by ETHE at 14.6%, Fidelity’s FETH at 12.3%, and ETH at 12.3%.</p> <p>Source: <a href="https://www.coingecko.com/research/publications/2025-annual-crypto-report">https://www.coingecko.com/research/publications/2025-annual-crypto-report</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Bobster_O"> /u/Bobster_O </a> <br/> <span><a href="https://i.redd.it/o540zemhynfg1.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qnblvo/us_spot_eth_etfs_recorded_15b_in_net_outflows_in/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/us-spot-eth-etfs-recorded-15b-in-net-outflows-in-q4-2025-the-single-highest-quarter-of-net-outflows-for-the-sector</link><guid>817744</guid><author>COINS NEWS</author><dc:content /><dc:text>US Spot ETH ETFs recorded $1.5B in net outflows in Q4 2025, the single highest quarter of net outflows for the sector.</dc:text></item><item><title>Daily General Discussion January 26, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qn7wd5/daily_general_discussion_january_26_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qn7wd5/daily_general_discussion_january_26_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-26-2026</link><guid>817573</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 26, 2026</dc:text></item><item><title>Ledger Wallet - Ethereum Kiln Staking And/Or Other Ethereum Staking Service Recommendations</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qn6e9w/ledger_wallet_ethereum_kiln_staking_andor_other/"> <img src="https://a.thumbs.redditmedia.com/34KNvA4F_d5qXVmu_rQA2JOVtGfbYYax5KVMobhDQP8.jpg" alt="Ledger Wallet - Ethereum Kiln Staking And/Or Other Ethereum Staking Service Recommendations" title="Ledger Wallet - Ethereum Kiln Staking And/Or Other Ethereum Staking Service Recommendations" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/redditman1999"> /u/redditman1999 </a> <br/> <span><a href="/r/ethstaker/comments/1qkh4ni/ledger_wallet_ethereum_kiln_staking_andor_other/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qn6e9w/ledger_wallet_ethereum_kiln_staking_andor_other/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ledger-wallet-ethereum-kiln-staking-andor-other-ethereum-staking-service-recommendations</link><guid>817575</guid><author>COINS NEWS</author><dc:content /><dc:text>Ledger Wallet - Ethereum Kiln Staking And/Or Other Ethereum Staking Service Recommendations</dc:text></item><item><title>Revisiting the Mountain Man</title><description><![CDATA[<div class="md"><p>I no longer agree with this previous tweet of mine - since 2017, I have become a much more willing connoisseur of mountains. It&#39;s worth explaining why.</p> <p><a href="https://x.com/VitalikButerin/status/873177382164848641">https://x.com/VitalikButerin/status/873177382164848641</a></p> <p>First, the original context. That tweet was in a debate with Ian Grigg, who argued that blockchains should track the order of transactions, but not the state (eg. user balances, smart contract code and storage):</p> <blockquote> <p>The messages are logged, but the state (e.g., UTXO) is implied, which means it is constructed by the computer internally, and then (can be) thrown away.</p> </blockquote> <p>I was heavily against this philosophy, because it would imply that users have no way to get the state other than either (i) running a node that processed every transaction in all of history, or (ii) trusting someone else.</p> <p>In blockchains that commit to the state in the block header (like Ethereum), you can simply prove any value in the state with a Merkle branch. This is conditional on the honest majority assumption: if &gt;= 50% of the consensus participants are honest, then the chain with the most PoW (or PoS) support will be valid, and so the state root will be correct.</p> <p>Trusting an honest majority is far better than trusting a single RPC provider. Not trusting at all (by personally verifying every transaction in the chain) is theoretically ideal, but it&#39;s a computation load infeasible for regular users, unless we take the (even worse) tradeoff of keeping blockchain capacity so low that most people cannot even use the chain.</p> <p>Now, what has changed since then?</p> <p>The biggest thing is of course ZK-SNARKs. We now have a technology that lets you verify the correctness of the chain, without literally re-executing every transaction. WE INVENTED THE THING THAT GETS YOU THE BENEFITS WITHOUT THE COSTS! This is like if someone from the future teleported back into US healthcare debates in 2008, and demonstrated a clearly working pill that anyone could make for $15 that cured all diseases. Like, yes, if we have that pill, we should get the government fully out of healthcare, let people make the pill and sell it at Walgreens, and healthcare becomes super affordable so everyone is happy. ZK-SNARKs are literally like that but for the block size war. (With two asterisks for block building centralization and data bandwidth, but that&#39;s a separate topic)</p> <p>With better technology, we should raise our expectations, and revisit tradeoffs that we made grudgingly in a previous era.</p> <p>But also, I have actually changed my mind on some of the underlying issues. In 2017, I was thinking about blockchains in terms of academic assumptions - what is okay to rely on honest majority for, when we are ok with 1-of-N trust assumption, etc. If a construction gave better properties under known-acceptable assumptions, I would eagerly embrace it.</p> <p>On a raw subconscious level, I don&#39;t think I was sufficiently appreciative of the fact that <em>in the real world, lots of things break</em>. Sometimes the p2p network goes down. Sometimes the p2p network has 20x the latency you expected - anyone who has played WoW can attest to long spans of time when the latency spiked up from its usual ~200ms to 1000-5000ms. Sometimes a third party service you&#39;ve been relying on for years shuts down, and there isn&#39;t a good alternative. If the alternative is that you personally go through a github repo and figure out how to PERSONALLY RUN A SERVER, lots of people will give up and never figure it out and end up permanently losing access to their money. Sometimes mining or staking gets concentrated to the point where 51% attacks are very easy to imagine, and you almost have to game-theoretically analyze consensus security as though 75% of miners or stakers are controlled by one single agent. Sometimes, as we saw with tornado cash, intermediaries all start censoring some application, and your <em>only</em> option becomes to directly use the chain.</p> <p>If we are making a self-sovereign blockchain to last through the ages, THE ANSWER TO THE ABOVE CONUNDRUMS CANNOT ALWAYS BE &quot;CALL THE DEVS&quot;. If it is, the devs themselves become the point of centralization - they become DEVS in the ancient Roman sense, where the letter V was used to represent the U sound.</p> <p>The Mountain Man&#39;s cabin is not meant as the replacement lifestyle for everyone. It is meant as the safe place to retreat to when things go wrong. It is also meant as the universal BATNA (&quot;Best Alternative to a Negotiated Agreement&quot;) - the alternative option that improves your well-being not just in the case when you end up needing it, but also because knowledge of it existing motivates third parties to give you better terms. This is like how Bittorrent existing is an important check on the power of music and video streaming platforms, driving them to offer customers better terms.</p> <p>We do not need to start living every day in the Mountain Man&#39;s cabin. But part of maintaining the infinite garden of Ethereum is certainly keeping the cabin well-maintained.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qn2871/revisiting_the_mountain_man/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qn2871/revisiting_the_mountain_man/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/revisiting-the-mountain-man</link><guid>817574</guid><author>COINS NEWS</author><dc:content /><dc:text>Revisiting the Mountain Man</dc:text></item><item><title>Has anyone actually bought digital gift cards with cryptocurrency?</title><description><![CDATA[<div class="md"><p>I’m curious if people are really using crypto to buy digital gift cards, or if it’s more of a niche thing. I’ve been holding some crypto for a while and don’t really want to cash it out to a bank just to spend a small amount. I’m looking for a simple way to use it for normal stuff like food, online shopping, or even travel.</p> <p>I saw sites like aceb.com where you can pay with crypto and instantly get digital gift cards. The idea sounds convenient, especially when cards get blocked or payments fail. I like that delivery is instant and there’s no shipping involved. My main concerns are whether it actually works smoothly and if the cards are easy to use afterward.</p> <p>If you’ve done this before, how was the experience? Did the gift cards work as expected, and would you do it again?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/AttitudePlane6967"> /u/AttitudePlane6967 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qmiimm/has_anyone_actually_bought_digital_gift_cards/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qmiimm/has_anyone_actually_bought_digital_gift_cards/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/has-anyone-actually-bought-digital-gift-cards-with-cryptocurrency</link><guid>817473</guid><author>COINS NEWS</author><dc:content /><dc:text>Has anyone actually bought digital gift cards with cryptocurrency?</dc:text></item><item><title>Most Web3 losses don’t start with a smart contract bug</title><description><![CDATA[<div class="md"><p>A lot of major Web3 losses don’t begin with a Solidity vulnerability. They start with systemic weaknesses:</p> <p>&gt; Key mismanagement<br/> &gt; Over-privileged or poorly designed access controls<br/> &gt; Centralized infrastructure dependencies<br/> &gt;Unsafe upgrade paths and admin mechanisms</p> <p>While smart contract bugs often get the spotlight, real-world incidents show a different pattern. Many failures happen around the contracts not inside them.</p> <p>Smart contract security isn’t just about what’s written in Solidity.</p> <p>It’s about how systems are operated, upgraded, and controlled once they’re live.</p> <p>Audits still matter, but security only works when the</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SolidityScan"> /u/SolidityScan </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qmemlb/most_web3_losses_dont_start_with_a_smart_contract/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qmemlb/most_web3_losses_dont_start_with_a_smart_contract/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/most-web3-losses-dont-start-with-a-smart-contract-bug</link><guid>817474</guid><author>COINS NEWS</author><dc:content /><dc:text>Most Web3 losses don’t start with a smart contract bug</dc:text></item><item><title>Daily General Discussion January 25, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qmaztv/daily_general_discussion_january_25_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qmaztv/daily_general_discussion_january_25_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-25-2026</link><guid>817472</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 25, 2026</dc:text></item><item><title>Really? Safe Mobile (formerly Gnosis Safe) no longer generates keys on-device, only imports seed phrases</title><description><![CDATA[<div class="md"><p>Hi all.</p> <p>I am setting up a safe multisig with multiple phones belonging to different people as signers.<br/> With the former Safe Wallet app it was relatively easy to do, but I see now that since transitioning to the Safe GmbH entity, Safe Wallet is being replaced by the new Safe Mobile app which doesn&#39;t allow generating keys anymore. It is only possible to import existing ones by manually typing a seed phrase.</p> <p>I have been, to put it mildly, extremely surprised that securely generating a key on device is not possible anymore. Is one really supposed to generate new keys elsewhere, then import them into the device through their seed phrase? Doesn&#39;t this go against all technical and UX security principles? </p> <p>Among all the wallet providers, Safe is the last one I would expect something like this from given their reputation. My immediate reaction was: &quot;I must have installed a fake app which is phishing me for my seed phrases&quot;, but I got confirmation from their support team that it&#39;s actually by design!</p> <p>I think this is a huge step backwards and I am genuinely out of options now for secure and simple multisig setups. Any advice?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/FillTheDots"> /u/FillTheDots </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qlou3u/really_safe_mobile_formerly_gnosis_safe_no_longer/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qlou3u/really_safe_mobile_formerly_gnosis_safe_no_longer/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/really-safe-mobile-formerly-gnosis-safe-no-longer-generates-keys-on-device-only-imports-seed-phrases</link><guid>817475</guid><author>COINS NEWS</author><dc:content /><dc:text>Really? Safe Mobile (formerly Gnosis Safe) no longer generates keys on-device, only imports seed phrases</dc:text></item><item><title>Daily General Discussion January 24, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qlf2ht/daily_general_discussion_january_24_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qlf2ht/daily_general_discussion_january_24_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-24-2026</link><guid>817237</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 24, 2026</dc:text></item><item><title>EtherWorld Weekly — Edition 348</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qlcsqy/etherworld_weekly_edition_348/"> <img src="https://external-preview.redd.it/5bi6K-xLLdfanuIsgyRTZaaLB9bIcu89DB2kCFvdieU.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=c89e3d84e6da8de1cc8a2e1b169e01b204f47ed8" alt="EtherWorld Weekly — Edition 348" title="EtherWorld Weekly — Edition 348" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Y_K_C_"> /u/Y_K_C_ </a> <br/> <span><a href="https://etherworld.co/etherworld-weekly-edition-348/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qlcsqy/etherworld_weekly_edition_348/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/etherworld-weekly-edition-348</link><guid>817238</guid><author>COINS NEWS</author><dc:content /><dc:text>EtherWorld Weekly — Edition 348</dc:text></item><item><title>137 - GM! FARCASTER - Adrienne &amp; NounishProf</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1ql9jue/137_gm_farcaster_adrienne_nounishprof/"> <img src="https://external-preview.redd.it/Tmpnhs5NNN2Wkqx_yrKb5_TOuxqgsVS3wU5ePDaTbgI.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=a40025843bfbaa6c0089a93d4729dbc0f0c65a95" alt="137 - GM! FARCASTER - Adrienne &amp; NounishProf" title="137 - GM! FARCASTER - Adrienne &amp; NounishProf" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jtnichol"> /u/jtnichol </a> <br/> <span><a href="https://youtu.be/-Ks05nJ42SU">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ql9jue/137_gm_farcaster_adrienne_nounishprof/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/137-gm-farcaster-adrienne-nounishprof</link><guid>817067</guid><author>COINS NEWS</author><dc:content /><dc:text>137 - GM! FARCASTER - Adrienne &amp; NounishProf</dc:text></item><item><title>Cypherpunk and institutions</title><description><![CDATA[<div class="md"><p>The relationship between &quot;institutions&quot; and &quot;cypherpunk&quot; is complex and needs to be understood properly. In truth, institutions (both governments and corporations) are neither guaranteed friend nor foe.</p> <p>Exhibit A: <a href="https://www.theregister.com/2026/01/11/eu_open_source_consultation/">https://www.theregister.com/2026/01/11/eu_open_source_consultation/</a> European Union seeking to aggressively support open source</p> <p>Exhibit B: <a href="https://fightchatcontrol.eu/">https://fightchatcontrol.eu/</a> European Union bureaucrats want Chat Control (mandatory encryption backdoors)</p> <p>Exhibit C: the Patriot Act (which, we must note, <em>neither party</em> now expresses much interest in repealing)</p> <p>Exhibit D: the US government is now famously a user of Signal</p> <p>Basically, the game-theoretic optimum for an institution is to have control over what it can control, but also to resist intrusion by others. In fact, institutions are often staffed by highly sophisticated people, who have a much deeper understanding of these issues than regular people and a much deeper will to do something about them. An important driver of many people&#39;s refusal to use data-slurping corposlop software is company policy.</p> <p>Some people have the misperception that my words yesterday about the importance of using tools that maximize your data self-sovereignty are something that will appeal to individual enthusiast communities, but will be rejected as unrealistic by efficiency-minded &quot;serious people&quot;. But this is false: &quot;serious people&quot; are often <em>more</em> robustness-minded than retail and many already have policies even stricter than what I advocate.</p> <p>I predict that in this next era, this trend will accelerate: institutions (again, both corporations and governments) will want to more aggressively minimize their external trust dependencies, and have more guarantees over their operations. Again, this does not mean that they want to minimize <em>your dependency on them</em> - that&#39;s the thing that we as the Ethereum community must insist on, and build tools to help people achieve. But that&#39;s precisely the complexity of the situation.</p> <p>In the stablecoin world, this means:</p> <ul> <li>Asset issuers in the EU will want a chain whose governance center of gravity is not overly US-based, and vice versa (same for other pairs of countries)</li> <li>Governments will push for more KYC, but at the same time privacy tools will improve, because cypherpunks are working hard to make them improve. The more realistic equilibrium is that non-KYC&#39;d assets will exist, and ability to use them with strong privacy will grow, but also over the next decade we&#39;ll see more attempts at &quot;ZK proof of source of funds&quot;. We will see ideological disputes over how to respond to this</li> <li>Institutions will want to control their own wallets, and even their own staking if they stake ETH. This is actually good for ethereum staking decentralization. Of course, they will not proactively work to give you the user a self-sovereign wallet. Doing <em>that</em> in a way that is secure for regular users is the task of Ethereum cypherpunks (see: smart contract wallets, social recovery).</li> </ul> <p>Ethereum is the censorship-resistant world computer: we do not have to approve of every activity that happens on the world computer. I did not approve much of three million dollar digital monkeys, I will not approve much of privacy with centralized (including multisig/threshold) decryption backdoors. But the existence of those things is not up to me to decide. What <em>is</em> up to us is to build the world that we want to see on top of Ethereum, and make that world strong, so that it can prosper in the competition, both on the Ethereum chain itself, and against the centralized world.</p> <p>At best, we can interoperate with the non-cypherpunk world to better bootstrap the cypherpunk world. For example, spreads on decentralized stablecoins can decrease if it&#39;s easy for people to run arbitrage strategies where they hold positive quantities of a centralized stablecoin and negative quantities of the decentralized one. If we want prediction markets to avoid sliding into sports betting corposlop, we should explore improving their liquidity by helping traditional financial entities use them to hedge against their existing risks. What is a bet from one side is often a purchase of insurance from the other side, and if we want prediction markets to evolve in a healthy way, it may be overall better for the counterparties of the sophisticated traders earning big APYs to be buyers of insurance than to be naive bettors who constantly lose money. Synergies like this should be explored across all domains.</p> <p>This is why I do not believe that cypherpunk requires total hostility to institutions. Instead, I support a policy that institutions are already used to using against each other: openness to win-win cooperation, but aggressively standing up for our own interests. And in this case, our interest is building a financial, social and identity layer that protects people&#39;s self-sovereignty and freedom.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1ql4owb/cypherpunk_and_institutions/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1ql4owb/cypherpunk_and_institutions/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/cypherpunk-and-institutions</link><guid>817066</guid><author>COINS NEWS</author><dc:content /><dc:text>Cypherpunk and institutions</dc:text></item><item><title>AMA: BTCS, The Oldest Publicly Traded Blockchain Company</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qkudny/ama_btcs_the_oldest_publicly_traded_blockchain/"> <img src="https://b.thumbs.redditmedia.com/2zqEOU0UK078phiC4E3TChQNMuh7ypYt_c6vD7QlWEs.jpg" alt="AMA: BTCS, The Oldest Publicly Traded Blockchain Company" title="AMA: BTCS, The Oldest Publicly Traded Blockchain Company" /> </a> </td><td> <div class="md"><p>We’re <strong>BTCS Inc.</strong>, the <strong>first publicly traded blockchain company</strong> since 2014. Over the past decade, we’ve evolved alongside the crypto industry itself, often a step ahead of it.</p> <p>BTCS began as <strong>BitcoinShop</strong>, an early e-commerce platform that allowed people to buy real-world goods using Bitcoin when that concept was still novel. As the ecosystem matured, we pivoted into <strong>Bitcoin mining</strong>, becoming the first publicly traded Bitcoin miner.</p> <p>As blockchains transitioned from proof-of-work to proof-of-stake, BTCS evolved into an <strong>Ethereum-focused blockchain technology company</strong>, operating core infrastructure and capital strategies native to the Ethereum ecosystem.</p> <p>Today, our business is centered entirely on Ethereum and the Ethereum economy. Our core operations span three verticals:</p> <ul> <li><strong>Validator Node Operations (</strong><a href="https://www.btcs.com/nodeops/"><strong>NodeOps</strong></a><strong>)</strong></li> <li><strong>Block Building (</strong><a href="https://www.btcs.com/builder/"><strong>Builder+</strong></a><strong>)</strong></li> <li><strong>On-chain DeFi Operations (</strong><a href="https://www.btcs.com/imperium/"><strong>Imperium</strong></a><strong>)</strong></li> </ul> <p>Over the years, BTCS has also been a <em>first mover</em> in several areas:</p> <ul> <li>One of the first public companies to tokenize its own equity (Series V Preferred Stock, 2023) on Ethereum’s blockchain.</li> <li>The first public company to issue a <strong>“Bividend” (blockchain dividend)</strong> — paid in <strong>Bitcoin (2022)</strong> and <strong>Ethereum (2025)</strong></li> <li>The first public companies to <strong>access capital through decentralized finance borrowing and lending</strong></li> </ul> <p><strong>CEO Charles Allen will be answering any questions you have.</strong></p> <p><strong>AMA.</strong></p> <p><a href="https://preview.redd.it/0zszf399e4fg1.png?width=2000&amp;format=png&amp;auto=webp&amp;s=9001059abd0f63bdb85bdb008e2e0f88c6b598ef">https://preview.redd.it/0zszf399e4fg1.png?width=2000&amp;format=png&amp;auto=webp&amp;s=9001059abd0f63bdb85bdb008e2e0f88c6b598ef</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/NasdaqBTCS"> /u/NasdaqBTCS </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qkudny/ama_btcs_the_oldest_publicly_traded_blockchain/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qkudny/ama_btcs_the_oldest_publicly_traded_blockchain/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ama-btcs-the-oldest-publicly-traded-blockchain-company</link><guid>817065</guid><author>COINS NEWS</author><dc:content /><dc:text>AMA: BTCS, The Oldest Publicly Traded Blockchain Company</dc:text></item><item><title>Ethereal news weekly #8 | NYSE tokenized securities platform, Neynar new steward of Farcaster, Glamsterdam upgrade Considered for Inclusion scope finalized</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qkoxmy/ethereal_news_weekly_8_nyse_tokenized_securities/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #8 | NYSE tokenized securities platform, Neynar new steward of Farcaster, Glamsterdam upgrade Considered for Inclusion scope finalized" title="Ethereal news weekly #8 | NYSE tokenized securities platform, Neynar new steward of Farcaster, Glamsterdam upgrade Considered for Inclusion scope finalized" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-8/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qkoxmy/ethereal_news_weekly_8_nyse_tokenized_securities/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-8-nyse-tokenized-securities-platform-neynar-new-steward-of-farcaster-glamsterdam-upgrade-considered-for-inclusion-scope-finalized</link><guid>817068</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #8 | NYSE tokenized securities platform, Neynar new steward of Farcaster, Glamsterdam upgrade Considered for Inclusion scope finalized</dc:text></item><item><title>Daily General Discussion January 23, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qkixk3/daily_general_discussion_january_23_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qkixk3/daily_general_discussion_january_23_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-23-2026</link><guid>816908</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 23, 2026</dc:text></item><item><title>Taking back lost ground in computing self-sovereignty, beyond Ethereum</title><description><![CDATA[<div class="md"><p>2026 is the year we take back lost ground in computing self-sovereignty.</p> <p>But this applies far beyond the blockchain world.</p> <p>In 2025, I made two major changes to the software I use:</p> <ul> <li>Switched almost fully to <a href="https://fileverse.io/">https://fileverse.io/</a> (open source encrypted decentralized docs)</li> <li>Switched decisively to Signal as primary messenger (away from Telegram). Also installed Simplex and Session.</li> </ul> <p>This year changes I&#39;ve made are:</p> <ul> <li>Google Maps -&gt; OpenStreetMap <a href="https://www.openstreetmap.org/">https://www.openstreetmap.org/</a>, OrganicMaps <a href="https://organicmaps.app/">https://organicmaps.app/</a> is the best mobile app I&#39;ve seen for it. Not just open source but also privacy-preserving because local, which is important because it&#39;s good to reduce the number of apps/places/people who know anything about your physical location</li> <li>Gmail -&gt; Protonmail (though ultimately, the best thing is to use proper encrypted messengers outright)</li> <li>Prioritizing decentralized social media (see my previous post)</li> </ul> <p>Also continuing to explore local LLM setups. This is one area that still needs a lot of work in &quot;the last mile&quot;: lots of amazing local models, including CPU and even phone-friendly ones, exist, but they&#39;re not well-integrated, eg. there isn&#39;t a good &quot;google translate equivalent&quot; UI that plugs into local LLMs, transcription / audio input, search over personal docs, comfyui is great but we need photoshop-style UX (I&#39;m sure for each of those items people will link me to various github repos in the replies, but <em>the whole problem</em> is that it&#39;s &quot;various github repos&quot; and not one-stop-shop). Also I don&#39;t want to keep ollama always running because that makes my laptop consume 35 W. So still a way to go, but it&#39;s made huge progress - a year ago even most of the local models did not yet exist!</p> <p>Ideally we push as far as we can with local LLMs, using specialized fine-tuned models to make up for small param count where possible, and then for the heavy-usage stuff we can stack (i) per-query zkp payment, (ii) TEEs, (iii) local query filtering (eg. have a small model automatically remove sensitive details from docs before you push them up to big models), basically combine all the imperfect things to do a best-effort, though ultimately ideally we figure out ultra-efficient FHE.</p> <p>Sending all your data to third party centralized services is unnecessary. We have the tools to do much less of that. We should continue to build and improve, and much more actively use them.</p> <p>(btw I really think @SimpleXChat should lowercase the X in their name. An N-dimensional triangle is a much cooler thing to be named after than &quot;simple twitter&quot;)</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qk7u95/taking_back_lost_ground_in_computing/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qk7u95/taking_back_lost_ground_in_computing/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/taking-back-lost-ground-in-computing-self-sovereignty-beyond-ethereum</link><guid>816909</guid><author>COINS NEWS</author><dc:content /><dc:text>Taking back lost ground in computing self-sovereignty, beyond Ethereum</dc:text></item><item><title>What’s your prediction for Web3 hacks in 2026?</title><description><![CDATA[<div class="md"><p>2025 saw billions lost and a shift away from “smart contract bugs only” toward access control, infrastructure, and operational failures.<br/> Looking ahead to 2026, do you think the number of hacks will increase, decrease, or just change shape?</p> <p>Will better tooling and awareness actually reduce losses, or will attackers just move up the stack targeting keys, infra, bridges, and governance instead of contracts? </p> <p>Curious how others here see the threat landscape evolving next year.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/SolidityScan"> /u/SolidityScan </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qjx4xe/whats_your_prediction_for_web3_hacks_in_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qjx4xe/whats_your_prediction_for_web3_hacks_in_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/whats-your-prediction-for-web3-hacks-in-2026</link><guid>816707</guid><author>COINS NEWS</author><dc:content /><dc:text>What’s your prediction for Web3 hacks in 2026?</dc:text></item><item><title>Native ETH swaps with no bridges or KYC?</title><description><![CDATA[<div class="md"><p>I keep running into the same problem when trying to move ETH across chains. I want to swap real ETH, not wrapped versions, and I do not want to use centralized bridges. I am also looking for something very simple and fast, with no accounts and no long verification steps. Does anything like this actually exist, or is it all still theory?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/scmck"> /u/scmck </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qjqnt6/native_eth_swaps_with_no_bridges_or_kyc/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qjqnt6/native_eth_swaps_with_no_bridges_or_kyc/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/native-eth-swaps-with-no-bridges-or-kyc</link><guid>816706</guid><author>COINS NEWS</author><dc:content /><dc:text>Native ETH swaps with no bridges or KYC?</dc:text></item><item><title>Ideas for Ethereum logo</title><description><![CDATA[<div class="md"><p>Hi everyone. </p> <p>I’m making a 50×70 cm (oil) painting of the Ethereum logo as a gift for a friend who just bought a new apartment!</p> <p>The painting will hang in his room, and the wallpaper color is beige, so I want something that looks clean and fits a modern interior.</p> <p>I&#39;m looking for creative ideas, probably, minimal, interesting background and logo.</p> <p>Please help, thanks!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/pythonic-nomad"> /u/pythonic-nomad </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qjnc62/ideas_for_ethereum_logo/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qjnc62/ideas_for_ethereum_logo/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ideas-for-ethereum-logo</link><guid>816708</guid><author>COINS NEWS</author><dc:content /><dc:text>Ideas for Ethereum logo</dc:text></item><item><title>Daily General Discussion January 22, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qjmmhb/daily_general_discussion_january_22_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qjmmhb/daily_general_discussion_january_22_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-22-2026</link><guid>816705</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 22, 2026</dc:text></item><item><title>Is ethgas (GWEI) legit?</title><description><![CDATA[<div class="md"><p>Hi all, I’ve seen scams similar to this. You link your wallet, check the total amount paid in gas fees and get rewarded. Is this the same?</p> <p>The coin has a pretty big market cap already, it was only launched yesterday.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/PokedFinlay"> /u/PokedFinlay </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qjhc2j/is_ethgas_gwei_legit/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qjhc2j/is_ethgas_gwei_legit/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/is-ethgas-gwei-legit</link><guid>816544</guid><author>COINS NEWS</author><dc:content /><dc:text>Is ethgas (GWEI) legit?</dc:text></item><item><title>Ethereum usage in crypto payments in 2025</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qiuoqm/ethereum_usage_in_crypto_payments_in_2025/"> <img src="https://b.thumbs.redditmedia.com/yhQUgGHeAuuk6eCzroX0LbC-p-tzgS--JkcrdaZjv-g.jpg" alt="Ethereum usage in crypto payments in 2025" title="Ethereum usage in crypto payments in 2025" /> </a> </td><td> <div class="md"><p>We’ve published a 2025 crypto payments report based on on-chain payment data processed through CoinGate. </p> <p>Here are Ethereum-related observations from the data:</p> <ul> <li>Ethereum-network payments increased in 2025, with Ethereum accounting for 15.1% of all on-chain crypto payments, up from 11.2% in 2024.</li> <li>ETH was the most-used asset on Ethereum, representing 62.1% of payments on the network, followed by USDC at 26.6%.</li> <li>The average cart size for ETH payments was €99, close to the platform-wide average, with usage concentrated in digital services, software, and subscriptions.</li> </ul> <p>Overall, the data suggests Ethereum is increasingly being used as a payment network alongside its broader role in the ecosystem.</p> <p>What are your thoughts on these trends?</p> <p>Read the full yearly review: <a href="https://coingate.com/blog/post/crypto-payments-data-report-2025">https://coingate.com/blog/post/crypto-payments-data-report-2025</a> </p> <p><a href="https://preview.redd.it/c2v4lp08moeg1.png?width=2880&amp;format=png&amp;auto=webp&amp;s=00b31d141b4f6d171c5f34eb7320e12569743c2b">https://preview.redd.it/c2v4lp08moeg1.png?width=2880&amp;format=png&amp;auto=webp&amp;s=00b31d141b4f6d171c5f34eb7320e12569743c2b</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/CoinGate"> /u/CoinGate </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qiuoqm/ethereum_usage_in_crypto_payments_in_2025/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qiuoqm/ethereum_usage_in_crypto_payments_in_2025/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereum-usage-in-crypto-payments-in-2025</link><guid>816545</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum usage in crypto payments in 2025</dc:text></item><item><title>Back to decentralized social in 2026</title><description><![CDATA[<div class="md"><p>In 2026, I plan to be fully back to decentralized social.</p> <p>If we want a better society, we need better mass communication tools. We need mass communication tools that surface the best information and arguments and help people find points of agreement. We need mass communication tools that serve the user&#39;s long-term interest, not maximize short-term engagement. There is no simple trick that solves these problems. But there is one important place to start: more competition. Decentralization is the way to enable that: a shared data layer, with anyone being able to build their own client on top.</p> <p>In fact, since the start of the year I&#39;ve been back to decentralized social already. Every post I&#39;ve made this year, or read this year, I made or read with <a href="https://firefly.social/">https://firefly.social/</a>, a multi-client that covers reading and posting to X, Lens, Farcaster and Bluesky (though bluesky has a 300 char limit, so they don&#39;t get to see my beautiful long rants).</p> <p>But crypto social projects has often gone the wrong way. Too often, we in crypto think that if you insert a speculative coin into something, that counts as &quot;innovating&quot;, and moves the world forward. Mixing money and social is not inherently wrong: Substack shows that it&#39;s possible to create an economy that supports very high-quality content. But Substack is about <em>subscribing to creators</em>, not <em>creating price bubbles around them</em>. Over the past decade, we have seen many many attempts at incentivizing creators by creating price bubbles around them, and all fail by (i) rewarding not content quality, but pre-existing social capital, and (ii) the tokens all going to zero after one or two years anyway.</p> <p>Too many people make galaxy-brained arguments that creating new markets and new assets is automatically good because it &quot;elicits information&quot;, when the rest of their product development actions clearly betray that they&#39;re not actually interested in maximizing people&#39;s ability to benefit from that information. That is not Hayekian info-utopia, that is corposlop.</p> <p>Hence, decentralized social should be run by people who deeply believe in the &quot;social&quot; part, and are motivated first and foremost by solving the problems of social.</p> <p>The Aave team has done a great job stewarding Lens up to this point. I&#39;m excited about what will happen to Lens over the next year, because I think the new team coming in are people who actually are interested in the &quot;social&quot;: even back when the decentralized social space barely existed, they were trying to figure out how to do encrypted tweets.</p> <p>I plan to post more there this year.</p> <p>I encourage everyone to spend more time in Lens, Farcaster and the broader decentralized social world this year. We need to move beyond everyone constantly tweeting inside a single global info warzone, and into a reopened frontier, where new and better forms of interaction become possible.</p> <p>(Note: my understanding is that Reddit the platform is hostile to third-party clients and APIs, which is why Firefly does not currently support it. I hope that changes!)</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qis2l9/back_to_decentralized_social_in_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qis2l9/back_to_decentralized_social_in_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/back-to-decentralized-social-in-2026</link><guid>816389</guid><author>COINS NEWS</author><dc:content /><dc:text>Back to decentralized social in 2026</dc:text></item><item><title>Daily General Discussion January 21, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qipy1b/daily_general_discussion_january_21_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qipy1b/daily_general_discussion_january_21_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-21-2026</link><guid>816388</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 21, 2026</dc:text></item><item><title>Checkpoint #8: Jan 2026 | Ethereum Foundation Protocol Support Team</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qii69s/checkpoint_8_jan_2026_ethereum_foundation/"> <img src="https://external-preview.redd.it/lvhDoNfNm6jGuKDitYHMzt8q_dp_sUFRlu5u5iJvLBA.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=e2072047c4ed86facfe6f299c0ed59505c0de9a6" alt="Checkpoint #8: Jan 2026 | Ethereum Foundation Protocol Support Team" title="Checkpoint #8: Jan 2026 | Ethereum Foundation Protocol Support Team" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://blog.ethereum.org/2026/01/20/checkpoint-8">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qii69s/checkpoint_8_jan_2026_ethereum_foundation/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/checkpoint-8-jan-2026-ethereum-foundation-protocol-support-team</link><guid>816390</guid><author>COINS NEWS</author><dc:content /><dc:text>Checkpoint #8: Jan 2026 | Ethereum Foundation Protocol Support Team</dc:text></item><item><title>???? Ethereal news calendar. Calendar of Ethereum focused conferences, hackathons, upgrades and grant deadlines. Add to Google, Apple or download ICS.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qigtqr/ethereal_news_calendar_calendar_of_ethereum/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="???? Ethereal news calendar. Calendar of Ethereum focused conferences, hackathons, upgrades and grant deadlines. Add to Google, Apple or download ICS." title="???? Ethereal news calendar. Calendar of Ethereum focused conferences, hackathons, upgrades and grant deadlines. Add to Google, Apple or download ICS." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/calendar/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qigtqr/ethereal_news_calendar_calendar_of_ethereum/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-calendar-calendar-of-ethereum-focused-conferences-hackathons-upgrades-and-grant-deadlines-add-to-google-apple-or-download-ics</link><guid>816214</guid><author>COINS NEWS</author><dc:content /><dc:text>???? Ethereal news calendar. Calendar of Ethereum focused conferences, hackathons, upgrades and grant deadlines. Add to Google, Apple or download ICS.</dc:text></item><item><title>Daily General Discussion January 20, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qht34y/daily_general_discussion_january_20_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qht34y/daily_general_discussion_january_20_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-20-2026</link><guid>816213</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 20, 2026</dc:text></item><item><title>Are Staking Providers (Everstake) safe?</title><description><![CDATA[<div class="md"><p>Hey everyone — ETH staking noob here.</p> <p>I moved my ETH from Coinbase to a Trezor and I’m looking at staking via <strong>Everstake</strong>. My main concern is <strong>custody/safety of principal</strong>, not yield (I’m fine with downtime/slashing-type risks).</p> <p>If I stake through my Trezor UI, do I <strong>keep custody / control of withdrawal credentials</strong> the whole time? In other words: is the main theft risk basically just <strong>my seed phrase / signing something malicious</strong>, or is there any scenario where Everstake (or an outage on their side) could put my ETH at risk?</p> <p>Any pointers on what to verify (withdrawal address, contract, token received, etc.) would be appreciated.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Fancy-Document5601"> /u/Fancy-Document5601 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qhnhc6/are_staking_providers_everstake_safe/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qhnhc6/are_staking_providers_everstake_safe/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/are-staking-providers-everstake-safe</link><guid>816036</guid><author>COINS NEWS</author><dc:content /><dc:text>Are Staking Providers (Everstake) safe?</dc:text></item><item><title>NYSE Announces New Tokenization Platform with 24/7 Trading</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qhew5g/nyse_announces_new_tokenization_platform_with_247/"> <img src="https://external-preview.redd.it/hjKmqi5nMaTkgJ3Cn_NSO47FThDSX9XX7g3C2-gKP-k.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=035829f06489dca8db4356a27dd59f20b3277722" alt="NYSE Announces New Tokenization Platform with 24/7 Trading" title="NYSE Announces New Tokenization Platform with 24/7 Trading" /> </a> </td><td> <div class="md"><p>Everyone else is building infrastructure to tokenize existing assets, NYSE is building a new way to bring equities on-chain AND the venue to trade them.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Cratos007"> /u/Cratos007 </a> <br/> <span><a href="https://dailycryptobriefs.com/news/nyse-tokenized-securities-platform-24-7-trading-instant-settlement/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qhew5g/nyse_announces_new_tokenization_platform_with_247/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/nyse-announces-new-tokenization-platform-with-247-trading</link><guid>816037</guid><author>COINS NEWS</author><dc:content /><dc:text>NYSE Announces New Tokenization Platform with 24/7 Trading</dc:text></item><item><title>More Information on Transaction Methods</title><description><![CDATA[<div class="md"><p>I&#39;m looking at various transactions via Etherscan and I&#39;m wondering if there&#39;s a guide that can tell me more about the meaning of methods of transactions. For example, I&#39;m trying to figure out what &quot;Call Diamond With Permit2&quot; and &quot;Execute302&quot; means. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Dubb18"> /u/Dubb18 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qheszs/more_information_on_transaction_methods/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qheszs/more_information_on_transaction_methods/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/more-information-on-transaction-methods</link><guid>816038</guid><author>COINS NEWS</author><dc:content /><dc:text>More Information on Transaction Methods</dc:text></item><item><title>Rabby wallet blocks transaction</title><description><![CDATA[<div class="md"><p>Hey guys, any help is appreciated I connected my trezor 5 via rabby wallet and it works amazing. Recently I decided to use Lido strAtegy and Lido GGV and tried to move 0.025 eth to each of them. Rabby shows me fee 0.03$, but when I sign transaction rabby vlocks it with message &quot;gas fee is to high&quot; and trezor shows me Max fee 13-15$.</p> <p>My questions are: is it really going to take 15$ fee? Should I approve this transaction without rabby and approve it solo via trezor and fee will be 0.03$?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Budget_Dragonfruit89"> /u/Budget_Dragonfruit89 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qh9dm9/rabby_wallet_blocks_transaction/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qh9dm9/rabby_wallet_blocks_transaction/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/rabby-wallet-blocks-transaction</link><guid>816039</guid><author>COINS NEWS</author><dc:content /><dc:text>Rabby wallet blocks transaction</dc:text></item><item><title>Ethereum’s transaction activity has reached a new all-time high!</title><description><![CDATA[<div class="md"><p>The 7-day moving average climbed to 2.43 million transactions on January 17. The trend began in mid-December after the Fusaka upgrade and appears to be driven largely by reduced gas fees, now averaging $0.15.</p> <p>Lower costs are translating into higher on-chain usage.</p> <p>Believe in somETHing.❤️</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/everstake"> /u/everstake </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qh6f52/ethereums_transaction_activity_has_reached_a_new/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qh6f52/ethereums_transaction_activity_has_reached_a_new/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereums-transaction-activity-has-reached-a-new-all-time-high</link><guid>816035</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum’s transaction activity has reached a new all-time high!</dc:text></item><item><title>We need more DAOs - but different and better DAOs.</title><description><![CDATA[<div class="md"><p>The original drive to build Ethereum was heavily inspired by decentralized autonomous organizations: systems of code and rules that lived on decentralized networks that could manage resources and direct activity, more efficiently and more robustly than traditional governments and corporations could.</p> <p>Since then, the concept of DAOs has migrated to essentially referring to a treasury controlled by token holder voting - a design which &quot;works&quot;, hence why it got copied so much, but a design which is inefficient, vulnerable to capture, and fails utterly at the goal of mitigating the weaknesses of human politics. As a result, many have become cynical about DAOs.</p> <p>But we need DAOs.</p> <ul> <li>We need DAOs to create better oracles. Today, decentralized stablecoins, prediction markets, and other basic building blocks of defi are built on oracle designs that we are not satisfied with. If the oracle is token based, whales can manipulate the answer on a subjective issue and it becomes difficult to counteract them. Fundamentally, a token-based oracle cannot have a cost of attack higher than its market cap, which in turn means it cannot secure assets without extracting rent higher than the discount rate. And if the oracle uses human curation, then it&#39;s not very decentralized. The problem here is not greed. The problem is that we have bad oracle designs, we need better ones, and bootstrapping them is not just a technical problem but also a social problem.</li> <li>We need DAOs for onchain dispute resolution, a necessary component of many types of more advanced smart contract use cases (eg. insurance). This is the same type of problem as price oracles, but even more subjective, and so even harder to get right.</li> <li>We need DAOs to maintain lists. This includes: lists of applications known to be secure or not scams, lists of canonical interfaces, lists of token contract addresses, and much more.</li> <li>We need DAOs to get projects off the ground quickly. If you have a group of people, who all want something done and are willing to contribute some funds (perhaps in exchange for benefits), then how do you manage this, especially if the task is too short-duration for legal entities to be worth it?</li> <li>We need DAOs to do long-term project maintenance. If the original team of a project disappears, how can a community keep going, and how can new people coming in get the funding they need?</li> </ul> <p>One framework that I use to analyze this is &quot;convex vs concave&quot; from <a href="https://vitalik.eth.limo/general/2020/11/08/concave.html">https://vitalik.eth.limo/general/2020/11/08/concave.html</a> . If the DAO is solving a concave problem, then it is in an environment where, if faced with two possible courses of action, a compromise is better than a coin flip. Hence, you want systems that maximize robustness by averaging (or rather, medianing) in input from many sources, and protect against capture and financial attacks. If the DAO is solving a convex problem, then you want the ability to make decisive choices and follow through on them. In this case, leaders can be good, and the job of the decentralized process should be to keep the leaders in check.</p> <p>For all of this to work, we need to solve two problems: privacy, and decision fatigue. Without privacy, governance becomes a social game (see <a href="https://vitalik.eth.limo/general/2025/04/14/privacy.html">https://vitalik.eth.limo/general/2025/04/14/privacy.html</a> ). And if people have to make decisions every week, for the first month you see excited participation, but over time willingness to participate, and even to stay informed, declines.</p> <p>I see modern technology as opening the door to a renaissance here. Specifically:</p> <ul> <li>ZK (and in some cases MPC/FHE, though these should be used only when ZK along cannot solve the problem) for privacy</li> <li>AI to solve decision fatigue</li> <li>Consensus-finding communication tools (like pol.is, but going further)</li> </ul> <p>AI must be used carefully: we must <em>not</em> put full-size deepseek (or worse, GPT 5.2) in charge of a DAO and call it a day. Rather, AI must be put in thoughtfully, as something that scales and enhances human intention and judgement, rather than replacing it. This could be done at DAO level (eg. see how <a href="https://www.deepfunding.org/">https://www.deepfunding.org/</a> works), or at individual level (user-controlled local LLMs that vote on their behalf).</p> <p>It is important to think about the &quot;DAO stack&quot; as also including the communication layer, hence the need for forums and platforms specially designed for the purpose. A multisig plus well-designed consensus-finding tools can easily beat idealized collusion-resistant quadratic funding plus crypto twitter.</p> <p>But in all cases, we need new designs. Projects that need new oracles and want to build their own should see that as 50% of their job, not 10%.</p> <p>Projects working on new governance designs should build with ZK and AI in mind, and they should treat the communication layer as 50% of their job, not 10%.</p> <p>This is how we can ensure the decentralization and robustness of the Ethereum base layer also applies to the world that gets built on top.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qgxapi/we_need_more_daos_but_different_and_better_daos/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qgxapi/we_need_more_daos_but_different_and_better_daos/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/we-need-more-daos-but-different-and-better-daos</link><guid>815889</guid><author>COINS NEWS</author><dc:content /><dc:text>We need more DAOs - but different and better DAOs.</dc:text></item><item><title>Daily General Discussion January 19, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qgw5tc/daily_general_discussion_january_19_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qgw5tc/daily_general_discussion_january_19_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-19-2026</link><guid>815888</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 19, 2026</dc:text></item><item><title>Protocol simplicity as necessary part of trustlessness</title><description><![CDATA[<div class="md"><p>An important, and perenially underrated, aspect of &quot;trustlessness&quot;, &quot;passing the walkaway test&quot; and &quot;self-sovereignty&quot; is protocol simplicity.</p> <p>Even if a protocol is super decentralized with hundreds of thousands of nodes, and it has 49% byzantine fault tolerance, and nodes fully verify everything with quantum-safe peerdas and starks, if the protocol is an unwieldy mess of hundreds of thousands of lines of code and five forms of PhD-level cryptography, ultimately that protocol fails all three tests:</p> <ul> <li>It&#39;s not trustless because you have to trust a small class of high priests who tell you what properties the protocol has</li> <li>It doesn&#39;t pass the walkaway test because if existing client teams go away, it&#39;s extremely hard for new teams to get up to the same level of quality</li> <li>It&#39;s not self-sovereign because if even the most technical people can&#39;t inspect and understand the thing, it&#39;s not fully yours It&#39;s also less secure, because each part of the protocol, especially if it can interact with other parts in complicated ways, carries a risk of the protocol breaking.</li> </ul> <p>One of my fears with Ethereum protocol development is that we can be too eager to add new features to meet highly specific needs, even if those features bloat the protocol or add entire new types of interacting components or complicated cryptography as critical dependencies. This can be nice for short-term functionality gains, but it is highly destructive to preserving long-term self-sovereignty, and creating a hundred-year decentralized hyperstructure that transcends the rise and fall of empires and ideologies.</p> <p>The core problem is that if protocol changes are judged from the perspective of &quot;how big are they as changes to the existing protocol&quot;, then the desire to preserve backwards compatibility means that additions happen much more often than subtractions, and the protocol inevitably bloats over time. To counteract this, the Ethereum development process needs an explicit &quot;simplification&quot; / &quot;garbage collection&quot; function.</p> <p>&quot;Simplification&quot; has three metrics:</p> <ul> <li>Minimizing total lines of code in the protocol. An ideal protocol fits onto a single page - or at least a few pages</li> <li>Avoiding unnecessary dependencies on fundamentally complex technical components. For example, a protocol whose security solely depends on hashes (even better: on exactly one hash function) is better than one that depends on hashes and lattices. Throwing in isogenies is worst of all, because (sorry to the truly brilliant hardworking nerds who figured that stuff out) nobody understands isogenies.</li> <li>Adding more <em>invariants</em>: core properties that the protocol can rely on, for example EIP-6780 (selfdestruct removal) added the property that at most N storage slots can be changedakem per slot, significantly simplifying client development, and EIP-7825 (per-tx gas cap) added a maximum on the cost of processing one transaction, which greatly helps ZK-EVMs and parallel execution. Garbage collection can be piecemeal, or it can be large-scale. The piecemeal approach tries to take existing features, and streamline them so that they are simpler and make more sense. One example is the gas cost reforms in Glamsterdam, which make many gas costs that were previously arbitrary, instead depend on a small number of parameters that are clearly tied to resource consumption.</li> </ul> <p>One large-scale garbage collection was replacing PoW with PoS. Another is likely to happen as part of Lean consensus, opening the room to fix a large number of mistakes at the same time ( youtube.com/watch?v=10Ym34y3E… ).</p> <p>Another approach is &quot;Rosetta-style backwards compatibility&quot;, where features that are complex but little-used remain usable but are &quot;demoted&quot; from being part of the mandatory protocol and instead become smart contract code, so new client developers do not need to bother with them. Examples:</p> <ul> <li>After we upgrade to full native account abstraction, all old tx types can be retired, and EOAs can be converted into smart contract wallets whose code can process all of those transaction types</li> <li>We can replace existing precompiles (except those that are <em>really</em> needed) with EVM or later RISC-V code</li> <li>We can eventually change the VM from EVM to RISC-V (or other simpler VM); EVM could be turned into a smart contract in the new VM. Finally, we want to move away from client developers feeling the need to handle all older versions of the Ethereum protocol. That can be left to older client versions running in docker containers.</li> </ul> <p>In the long term, I hope that the rate of change to Ethereum can be slower. I think for various reasons that ultimately that <em>must</em> happen. These first fifteen years should in part be viewed as an adolescence stage where we explored a lot of ideas and saw what works and what is useful and what is not. We should strive to avoid the parts that are not useful being a permanent drag on the Ethereum protocol.</p> <p>Basically, we want to improve Ethereum in a way that looks like this:</p> <p><a href="https://old.reddit.com/r/SpaceXLounge/comments/1eis952/evolution_of_the_raptor_engine_by_cstanley/">https://old.reddit.com/r/SpaceXLounge/comments/1eis952/evolution_of_the_raptor_engine_by_cstanley/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qg4ay1/protocol_simplicity_as_necessary_part_of/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qg4ay1/protocol_simplicity_as_necessary_part_of/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/protocol-simplicity-as-necessary-part-of-trustlessness</link><guid>815676</guid><author>COINS NEWS</author><dc:content /><dc:text>Protocol simplicity as necessary part of trustlessness</dc:text></item><item><title>Daily General Discussion January 18, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qg0myc/daily_general_discussion_january_18_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qg0myc/daily_general_discussion_january_18_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-18-2026</link><guid>815675</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 18, 2026</dc:text></item><item><title>What's the best city of 30k-50k population east of the Mississippi to live just outside of?</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/cozmicraven"> /u/cozmicraven </a> <br/> <span><a href="/r/ask/comments/1qfih98/whats_the_best_city_of_30k50k_population_east_of/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qfiics/whats_the_best_city_of_30k50k_population_east_of/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/whats-the-best-city-of-30k-50k-population-east-of-the-mississippi-to-live-just-outside-of</link><guid>815504</guid><author>COINS NEWS</author><dc:content /><dc:text>What's the best city of 30k-50k population east of the Mississippi to live just outside of?</dc:text></item><item><title>Re: Best hardware for running ETH node</title><description><![CDATA[<div class="md"><p>2 months ago was solving this. With RAM hikes I found a solution that required me to dig in the trash, literally.</p> <p>Bought a cheap Mac Pro (2013), the trashcan Mac off eBay with DDR3 64gb ram, works well. It would have been the same price as one of those NUCs or mini PCs and it has much better specs even so from then.</p> <p>What I need next for it is an external SSD or NVME to house both the beacon and geth node state, account, blockchain data. Regular HDD is impossible to use and keep up with the network, way too slow. HDDs however have good endurance compared to SSDs and cheaper, from what I know, GETH does a lot of read/writes.</p> <p>I was curious if any self-host ETH node folks here can share smartctl output for how much TBs written their SSDs or NVMEs has had to endure for the last year. I want to see how many drives I&#39;ll burn through from all the read/writes happening to the drive from continuous syncing. </p> <p>Also feel free to share disk brands, sizes, etc. that you used along with the TBW data. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/0373"> /u/0373 </a> <br/> <span><a href="/r/ethereum/comments/1olvxyg/best_hardware_for_running_eth_node/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qfhiwt/re_best_hardware_for_running_eth_node/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/re-best-hardware-for-running-eth-node</link><guid>815505</guid><author>COINS NEWS</author><dc:content /><dc:text>Re: Best hardware for running ETH node</dc:text></item><item><title>Critical Bug in ERC-4337 EntryPoint v0.8: Violation of Section 4.3.1 (Strict Gas Bound)</title><description><![CDATA[<div class="md"><p>I am disclosing a critical implementation bug in the EntryPoint contract (v0.7.0 / v0.8.0) that violates the core gas</p> <p>accounting guarantees of EIP-4337.</p> <p>Abstract</p> <p>The EntryPoint fails to enforce the paymasterPostOpGasLimit cap when a postOp call fails due to Out-of-Gas (OOG). This</p> <p>regression allows the EntryPoint&#39;s own internal execution overhead (specifically MCOPY/memory expansion for context)</p> <p>to be billed to the Paymaster in addition to their signed limit.</p> <p>The Protocol Violation</p> <p>EIP-4337 Section 4.3.1 states:</p> <p>&gt; &quot;The `paymasterPostOpGasLimit` ... is the strict upper bound on the gas the Paymaster is willing to pay for the</p> <p>`postOp` call.&quot;</p> <p>The Implementation Flaw</p> <p>In _postExecution, the gas accounting logic for the OOG failure path is:</p> <p>1 // EntryPoint.sol</p> <p>2 actualGas += preGas - gasleft() + postOpUnusedGasPenalty;</p> <p>The preGas snapshot is taken before the context data is copied to memory for the postOp call. If an attacker provides</p> <p>a maximized context, the copying cost (overhead) is significant. In the OOG path, this overhead is added to actualGas</p> <p>without being clamped to paymasterPostOpGasLimit.</p> <p>Reproduction &amp; Impact</p> <p>Using a Mainnet fork against the live EntryPoint v0.7.0 (0x000...):</p> <ol> <li><p>UserOp: Signs a paymasterPostOpGasLimit of 100,000.</p></li> <li><p>Attack: Includes a large context payload.</p></li> <li><p>Result: The Paymaster is charged ~177,000 gas.</p> <p>This 77% overcharge creates a profitable attack vector for malicious Bundlers to drain Paymaster deposits,</p> <p>particularly those using automated JIT refills.</p> <p>Proposed Solution</p> <p>The fix is to explicitly cap the gas consumption in the failure path, ensuring the Paymaster is never liable for more</p> <p>than their signature authorized.</p> <p>I have submitted a PR with the fix here:</p> <p><a href="https://github.com/Tejanadh/account-abstraction/pull/1">https://github.com/Tejanadh/account-abstraction/pull/1</a></p> <p>Disclosure Note</p> <p>This issue was originally reported in mid-2025. After multiple rounds of private disclosure and rejection, I am</p> <p>publishing this to ensure Paymaster operators are aware of the risk and to expedite the merging of the fix.</p> <p>Full reproduction repository: <a href="https://github.com/Tejanadh/account-abstraction">https://github.com/Tejanadh/account-abstraction</a></p></li> </ol> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Hefty-Standard-9185"> /u/Hefty-Standard-9185 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qfca67/critical_bug_in_erc4337_entrypoint_v08_violation/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qfca67/critical_bug_in_erc4337_entrypoint_v08_violation/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/critical-bug-in-erc-4337-entrypoint-v08-violation-of-section-431-strict-gas-bound</link><guid>816709</guid><author>COINS NEWS</author><dc:content /><dc:text>Critical Bug in ERC-4337 EntryPoint v0.8: Violation of Section 4.3.1 (Strict Gas Bound)</dc:text></item><item><title>Need help with Ethereum</title><description><![CDATA[<div class="md"><p>I&#39;m trying to sell my Maple Finance and Pepe coins to get Solana, but I don&#39;t have any Ethereum to pay the tiny network fee, which is only about $0.50-$1, and without it I can&#39;t complete the swap. If anyone has a little ETH to sell, I can pay you via PayPal for just enough to cover the fee. Any help would be massively appreciated so I can finally swap my Maple Finance and Pepe coins for Solana. My Ethereum code: 0x145cFB008d208031eF1EE471363d382Bde5389c3</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Top_Class2896"> /u/Top_Class2896 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qf5kcs/need_help_with_ethereum/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qf5kcs/need_help_with_ethereum/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/need-help-with-ethereum</link><guid>815367</guid><author>COINS NEWS</author><dc:content /><dc:text>Need help with Ethereum</dc:text></item><item><title>Daily General Discussion January 17, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qf5ctg/daily_general_discussion_january_17_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qf5ctg/daily_general_discussion_january_17_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-17-2026</link><guid>815364</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 17, 2026</dc:text></item><item><title>I have 20 hours to learn as much as I can.</title><description><![CDATA[<div class="md"><p>I have a 20 hour flight and I want to spend it studying all that I can about blockchain, ethereum, smart contracts, and web3.</p> <p>Let me know what are your best recommendations to learn about the technicals - I have a strong background in machine learning and computer science but am completely new to the blockchain as a concept (bar the 3b1b series). </p> <p>Anything works, books, videos, research papers.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Obnoxious_Criminal"> /u/Obnoxious_Criminal </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qeuzx0/i_have_20_hours_to_learn_as_much_as_i_can/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qeuzx0/i_have_20_hours_to_learn_as_much_as_i_can/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/i-have-20-hours-to-learn-as-much-as-i-can</link><guid>815366</guid><author>COINS NEWS</author><dc:content /><dc:text>I have 20 hours to learn as much as I can.</dc:text></item><item><title>2026: the year that we take back lost ground</title><description><![CDATA[<div class="md"><p>2026 is the year that we take back lost ground in terms of self-sovereignty and trustlessness.</p> <p>Some of what this practically means:</p> <p>Full nodes: thanks to ZK-EVM and BAL, it will once again become easier to locally run a node and verify the Ethereum chain on your own computer.</p> <p>Helios: actually verify the data you&#39;re receiving from RPCs instead of blindly trusting it.</p> <p>ORAM, PIR: ask for data from RPCs without revealing which data you&#39;re asking, so you can access dapps without your access patterns being sold off to dozens of third parties all around the world.</p> <p>Social recovery wallets and timelocks: wallets that don&#39;t make you lose all your money if you misplace your seedphrase, or if an online or offline attacker extracts your seedphrase, and <em>also</em> don&#39;t make all your money backdoored by Google.</p> <p>Privacy UX: make private payments from your wallet, with the same user experience as making public payments.</p> <p>Privacy censorship resistance: private payments with the ERC-4337 mempool, and soon native AA + FOCIL, without relying on the public broadcaster ecosystem.</p> <p>Application UIs: use more dapps from an onchain UI with IPFS, without relying on trusted servers that would lock you our of practical recovery of your assets if they went offline, and would give you a hijacked UI that steals your funds if they get hacked for even a millisecond.</p> <p>In many of these areas, over the last ten years we have seen serious backsliding in Ethereum. Nodes went from easy to run to hard to run. Dapps went from static pages to complicated behemoths that leak all your data to a dozen servers. Wallets went from routing everything through the RPC, which could be any node of your choice including on your own computer, to leaking your data to a dozen servers of their choice. Block building became more centralized, putting Ethereum transaction inclusion guarantees under the whims of a very small number of builders.</p> <p>In 2026, no longer. Every compromise of values that Ethereum has made up to this point - every moment where you might have been thinking, is it really worth diluting ourselves so much in the name of mainstream adoption - we are making that compromise no longer.</p> <p>It will be a long road. We will not get everything we want in the next Kohaku release, or the next hard fork, or the hard fork after that. But it will make Ethereum into an ecosystem that deserves not only its current place in the universe, but a much greater one.</p> <p>In the world computer, there is no centralized overlord.</p> <p>There is no single point of failure.</p> <p>There is only love.</p> <p>Milady.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qer9cy/2026_the_year_that_we_take_back_lost_ground/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qer9cy/2026_the_year_that_we_take_back_lost_ground/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/2026-the-year-that-we-take-back-lost-ground</link><guid>815365</guid><author>COINS NEWS</author><dc:content /><dc:text>2026: the year that we take back lost ground</dc:text></item><item><title>Total newbie question... doesn't a high ETH price stifle the underlying tokenized economy which in turn acts as a mechanism to drive ETH prices lower?</title><description><![CDATA[<div class="md"><p>I have heard ETH being compared to oil. If oil goes up too high, those, who can, will cut back its use. If ETH goes to some stupid high prices, wouldn&#39;t people cut back on its usages and help prices go lower. Wouldn&#39;t higher prices also encourage the production of more ETH... the old the solution to high prices is high prices. Please explain to me where the flaw is in my reasoning. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/NashDaypring1987"> /u/NashDaypring1987 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qejke3/total_newbie_question_doesnt_a_high_eth_price/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qejke3/total_newbie_question_doesnt_a_high_eth_price/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/total-newbie-question-doesnt-a-high-eth-price-stifle-the-underlying-tokenized-economy-which-in-turn-acts-as-a-mechanism-to-drive-eth-prices-lower</link><guid>815194</guid><author>COINS NEWS</author><dc:content /><dc:text>Total newbie question... doesn't a high ETH price stifle the underlying tokenized economy which in turn acts as a mechanism to drive ETH prices lower?</dc:text></item><item><title>What are you building on ENS?</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/OrbitalGlass"> /u/OrbitalGlass </a> <br/> <span><a href="/r/ens/comments/1qehrbv/what_are_you_building_on_ens/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qehrj6/what_are_you_building_on_ens/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/what-are-you-building-on-ens</link><guid>815196</guid><author>COINS NEWS</author><dc:content /><dc:text>What are you building on ENS?</dc:text></item><item><title>Ethereal news weekly #7 | Ethereum must pass walkaway test, Base app focuses on trading, Trail of Bits Claude Code skills</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qedycf/ethereal_news_weekly_7_ethereum_must_pass/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #7 | Ethereum must pass walkaway test, Base app focuses on trading, Trail of Bits Claude Code skills" title="Ethereal news weekly #7 | Ethereum must pass walkaway test, Base app focuses on trading, Trail of Bits Claude Code skills" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-7/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qedycf/ethereal_news_weekly_7_ethereum_must_pass/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-7-ethereum-must-pass-walkaway-test-base-app-focuses-on-trading-trail-of-bits-claude-code-skills</link><guid>815195</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #7 | Ethereum must pass walkaway test, Base app focuses on trading, Trail of Bits Claude Code skills</dc:text></item><item><title>Daily General Discussion January 16, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qe818u/daily_general_discussion_january_16_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qe818u/daily_general_discussion_january_16_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-16-2026</link><guid>815193</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 16, 2026</dc:text></item><item><title>Programmable tokens on Base.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qe3xji/programmable_tokens_on_base/"> <img src="https://external-preview.redd.it/2f36YUI4HieyplDYpus0sB1Rnc234U0ufAiESRBZdAM.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=d9bdfb48541507d4893a7c8f404686dcb3553b04" alt="Programmable tokens on Base." title="Programmable tokens on Base." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/nsjames1"> /u/nsjames1 </a> <br/> <span><a href="https://totems.fun/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qe3xji/programmable_tokens_on_base/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/programmable-tokens-on-base</link><guid>815017</guid><author>COINS NEWS</author><dc:content /><dc:text>Programmable tokens on Base.</dc:text></item><item><title>Argot Roadmap Update 2026 (1/2)</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qdyue0/argot_roadmap_update_2026_12/"> <img src="https://external-preview.redd.it/rD1_P9qAn7xejGVYJ4NQnMa7ivaANdaJb6tqv-MwiBU.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=aaaa47ea7402a3cb4db6edd2edcca11b06f0561a" alt="Argot Roadmap Update 2026 (1/2)" title="Argot Roadmap Update 2026 (1/2)" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://www.argot.org/blog/2026-01-15-argot-roadmap-update-2026-1">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qdyue0/argot_roadmap_update_2026_12/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/argot-roadmap-update-2026-12</link><guid>815016</guid><author>COINS NEWS</author><dc:content /><dc:text>Argot Roadmap Update 2026 (1/2)</dc:text></item><item><title>Real world Ethereum blockchain use case. Tamper-proof testing and compliance</title><description><![CDATA[<div class="md"><p>Element a leading global Testing, Inspection and Certification company is using blockchain through partnering with Blockchain Verified Sweden AB who use Ethereum Blockchain via smart contracts to deliver tamper proof test reports! </p> <p>Each report is cryptographically secured and instantly verifiable, which is a big deal in highly regulated industries.</p> <p>This is exactly the kind of adoption that shows blockchain’s value beyond tokens and trading. When industries with strict regulatory requirements start using decentralized verification, it is a strong signal that the tech is maturing into critical infrastructure.</p> <p>So many great use cases now becoming reality! </p> <p>It wouldn’t let me post a link but you can see the news on their website and the information around the Ethereum via Blockchain Verified website. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/The_Digital_Nugget"> /u/The_Digital_Nugget </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qdubkr/real_world_ethereum_blockchain_use_case/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qdubkr/real_world_ethereum_blockchain_use_case/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/real-world-ethereum-blockchain-use-case-tamper-proof-testing-and-compliance</link><guid>815015</guid><author>COINS NEWS</author><dc:content /><dc:text>Real world Ethereum blockchain use case. Tamper-proof testing and compliance</dc:text></item><item><title>Ethereum takes an ecosystem. From the Cypherpunks who wrote the code to the Anons shipping today.</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://x.com/Snapcrackle/status/2011710431229067317">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qde0l8/ethereum_takes_an_ecosystem_from_the_cypherpunks/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-takes-an-ecosystem-from-the-cypherpunks-who-wrote-the-code-to-the-anons-shipping-today</link><guid>814793</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum takes an ecosystem. From the Cypherpunks who wrote the code to the Anons shipping today.</dc:text></item><item><title>Daily General Discussion January 15, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qdbmtv/daily_general_discussion_january_15_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qdbmtv/daily_general_discussion_january_15_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-15-2026</link><guid>814792</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 15, 2026</dc:text></item><item><title>$20m Raised for "Quantum Readiness" for BTC and SOL... yikes.</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/eviljordan"> /u/eviljordan </a> <br/> <span><a href="https://www.theblock.co/post/385583/project-eleven-series-a-funding-crypto-quantum-threats">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qd8yt7/20m_raised_for_quantum_readiness_for_btc_and_sol/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/20m-raised-for-quantum-readiness-for-btc-and-sol-yikes</link><guid>814796</guid><author>COINS NEWS</author><dc:content /><dc:text>$20m Raised for "Quantum Readiness" for BTC and SOL... yikes.</dc:text></item><item><title>Patricio Worthalter (POAP): The impossible balance between culture alignment and survival</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qd2udr/patricio_worthalter_poap_the_impossible_balance/"> <img src="https://external-preview.redd.it/a97pU3N4O3wdl7DZ_80NJAEGh1uxaPJFiy6hGlijUmQ.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=67c2e1c26911108216631ad229b6ae2368929b40" alt="Patricio Worthalter (POAP): The impossible balance between culture alignment and survival" title="Patricio Worthalter (POAP): The impossible balance between culture alignment and survival" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jamiethingelstad"> /u/jamiethingelstad </a> <br/> <span><a href="https://www.youtube.com/watch?v=X7z4ZklhHb0">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qd2udr/patricio_worthalter_poap_the_impossible_balance/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/patricio-worthalter-poap-the-impossible-balance-between-culture-alignment-and-survival</link><guid>814795</guid><author>COINS NEWS</author><dc:content /><dc:text>Patricio Worthalter (POAP): The impossible balance between culture alignment and survival</dc:text></item><item><title>#134 "Blockchain and Belief" - Professor's Roundtable</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qd0oxt/134_blockchain_and_belief_professors_roundtable/"> <img src="https://external-preview.redd.it/OhDrv-6zomxLdBjJH47tWIRr490m8KIrMs_HZ5hAXUk.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=7af5815b586ad68ac3c1acba69782cf86045301f" alt="#134 &quot;Blockchain and Belief&quot; - Professor's Roundtable" title="#134 &quot;Blockchain and Belief&quot; - Professor's Roundtable" /> </a> </td><td> <div class="md"><p>The Weekly Doots live stream is all about showcasing the best of the week from the Daily General Discussion from the <a href="/r/ethereum">r/ethereum</a> Community on Reddit! </p> <p>Host: JT<br/> Technical Host: LogrisTheBard<br/> <a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbDNGNlljRnVwQ1BwUHo3Qy1GT0xkQ0JKRWsxUXxBQ3Jtc0tuV2tPZi1oNkNKcll3VnlMa3U0V2gxd1o5UTdNRlhOclVwNnd4dldKY0s2ckJEcUJual8zbThXZ3lwLUZpNFJsWkNGZWotOGlGUGt1TkIyVFFJdnh3QkxKb3VYY2VicHl2SjNjcFNxUGU4UF9ORVNSWQ&amp;q=https%3A%2F%2Fdailydoots.com%2F&amp;v=OnldFSbAPP0">https://dailydoots.com</a> by Hanniabu<br/> Daily Doots Curator: Tricky_Troll<br/> Weekly Doots Curator: The-A-Word<br/> Farcaster and Backend Host Support: Ben Broad<br/> Media Content Support: Twelve Meatballs<br/> Discord Bouncer and Watchdog: Treebeard </p> <p>THE PRINCESTON DECENTER PROFESSOR&#39;S ROUNDTABLE </p> <ul> <li>Carolyn Biltoft: <a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbXN3ZGYyM1JKdVprUDFOcjVpazRyYUE2QU56d3xBQ3Jtc0trLUMzTFg4Z21UYk5xWGN0a2FSa3djUE10akt5OU5fRE94ZjdLV1RqQUR1SEtYemdUWU5aa3Q0V3JsYnZwM3Y1VloweS1RYnRZdExJRmRQcm5lU09FUHR4dGpqVWk0SnQ2dzlveWxFQTVVTUdsdDRPOA&amp;q=https%3A%2F%2Fwww.graduateinstitute.ch%2Ffaculty%2Fcarolyn-biltoft&amp;v=OnldFSbAPP0">https://www.graduateinstitute.ch/facu...</a> </li> <li>Andrew Chignell: <a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbHJEdzA4VDhTN0gtQk5HMnpmTmMwOXpsOFdWQXxBQ3Jtc0tsTVU0aHJpeGw1WDRnNGU4WDZGbVdYcVZOcnhVRmp1MDJOellwX0pfOGpTR3JiRkJYd1pfUHUwUGU5WXRqa3pTVzlzZGR6NllkQ3hEeGo5TTBHVWFfUDR3OTdJVHpKRHlHdHkxQUtNTnljejQzeVBEWQ&amp;q=https%3A%2F%2Fchignell.net%2F&amp;v=OnldFSbAPP0">https://chignell.net/</a> </li> <li>Devin P. Singh: <a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbmlZTlVyanB6SEYtZHFiY2QzMjNURXpwQ2hZd3xBQ3Jtc0trUHk3Q1ZrMWNLR0U0NWFXVFFHd3dKV29oVnlNV0M4ekJJZ29wVm5vaGlmNXBYeEp1ZVE3NHlyVFJkMlZsVmZFbUNJclVndTNkcHNRaXVYRy1sakszaWRMUlV5QlBHd0p3Qms0dUZfSG80eVo4Vy02RQ&amp;q=https%3A%2F%2Freligion.dartmouth.edu%2Fpeople%2Fdevin-singh&amp;v=OnldFSbAPP0">https://religion.dartmouth.edu/people...</a> </li> <li>Gordon Grant: Principal at ChiSquared Technologies </li> <li>Mike Maizels: <a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbnpPT0RjMFJxbzFHVXhsbV9keEFZcTcwOUpvQXxBQ3Jtc0tra1BoR3ZFbDE3RWVJNkFMMDBqTFB0RXVJWUYwX2pDQlRtbUt6TzZhMDUtSTB6ZjRZNDVkd1JoQXdMQWo0SjVzQjBuaDd2RWhWLU4wZERLZFZHcGhDcUlHSGMyX0xhQW11SXphQ0tHTm01TWVrYnQtTQ&amp;q=https%3A%2F%2Fengineering.princeton.edu%2Fstaff%2Fmichael-maizels&amp;v=OnldFSbAPP0">https://engineering.princeton.edu/sta...</a> </li> </ul> <p>Carolyn Biltoft holds a PhD from Princeton University and is an Associate Professor of International History and Politics at the Geneva Graduate Institute. Carolyn writes and writes on the relationship between the history of epistemology and economic thought since the 18th century. Her acclaimed book A Violent Peace: Truth, Media and Power at the League of Nations explores media, propaganda, and truth claims in early global institutions and contains a chapter on counterfeit currency in the age of fascism. Carolyn is a founding editor of Capitalism: a journal of history and economics <a href="https://www.youtube.com/redirect?event=video_description&amp;redir_token=QUFFLUhqbWNpa1hvN01xUlVQMlc2a0Q3OHEwcUNtd3pwQXxBQ3Jtc0ttQVhWT0xpR01NRUV4SVg3ZHpSR1o3dkpQZGdtUHNQdmFaT2VickwxMDZwaWdBQ3lNYWhqaE1vUFZmN2hTcHFXSjJZWUwxWDhTMGxOMXNxMTE0ZTNMdW02SU13MHB4SmpNa1Ffd3NfcGFJSzZfRjVkQQ&amp;q=https%3A%2F%2Fwww.pennpress.org%2Fjournals%2Fjournal%2Fcapitalism%2F%C2%A0%C2%A0&amp;v=OnldFSbAPP0">https://www.pennpress.org/journals/jo...</a> </p> <p>Andrew Chignell is a professor at Princeton University&#39;s Center for Human Values, with appointments in Religion and Philosophy. His research spans the work of Immanuel Kant and other Enlightenment philosophers, philosophy of religion, epistemology and the ethics of belief, and topics in moral psychology like hope and despair. Recently, he has directed the Princeton Project in Philosophy and Religion and led efforts for a major cross-disciplinary grant on optimism, pessimism, hope, and despair. <a href="http://chignell.net">chignell.net</a> </p> <p>Devin P. Singh holds a PhD from Yale University and is an Associate Professor of Religion at Dartmouth College. His work examines intersections of Christian thought with economy, politics, money, and secularization. Recent publications include the book Economy and Modern Christian Thought and an ongoing project on the religious and social roles of debt. <a href="http://devinsingh.com">devinsingh.com</a> </p> <p>Gordon Grant is a seasoned cryptocurrency trader and derivatives expert. Graduating from Princeton University with a focus on econometrics and quantitative finance, he built his early career as a derivatives portfolio manager before he discovered Bitcoin in 2013 and made a full pivot to digital assets, He played a pivotal role at Genesis Trading from 2019 to 2023 and Today Gordon serves as Principal at ChiSquared Technologies </p> <p>Mike Maizels (Michael Maizels) is the Executive Director of Princeton University&#39;s DeCenter for blockchain and decentralization research. With a background in interdisciplinary technology and societal change, he leads efforts to advance education, research, and policy around blockchain&#39;s potential to shift power structures. He co-directs major events like the DeCenter&#39;s annual Spring Conference on decentralization&#39;s infrastructure and implications. <a href="http://decenter.princeton.edu">decenter.princeton.edu</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jtnichol"> /u/jtnichol </a> <br/> <span><a href="https://youtu.be/OnldFSbAPP0?si=EkZBNSk-CJSRm7yZ">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qd0oxt/134_blockchain_and_belief_professors_roundtable/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/134-blockchain-and-belief-professors-roundtable</link><guid>814794</guid><author>COINS NEWS</author><dc:content /><dc:text>#134 "Blockchain and Belief" - Professor's Roundtable</dc:text></item><item><title>A new staking pool idea</title><description><![CDATA[<div class="md"><p>I had a concept that I may begin programming based on what you guys say here.</p> <blockquote> <p><strong><em>What if you could earn extra yield on staked ETH just by signing a message every 6 months?</em></strong></p> </blockquote> <p>The idea is that I&#39;d make an on chain (and possibly on scaling solutions) smart contract where you can <strong>deposit your Staked ETH, then everyone needs to sign a message every 6 months</strong> for example. <strong>If they don&#39;t sign the message on the 6th month, then on the 7th month 10% of their balance gets equally distributed between all staked staked tokens</strong>. If you fail to sign you&#39;d forfeit 10% of your balance, which would keep going down every month until your wallet is eventually drained. I (The creator) would make money by charging a 2.5% fee on re-distributing the forfeited funds. It would be 6 months after you sign up, so there would in theory be consistent rewards year round (Avoiding people buying Staked Staked ETH right before the forfeit date)</p> <p>This would earn extra yield on already staked coins just by signing a message every few months. With a transparent smart contract there would be near zero need to trust me, no counterparty risk. Updates could be voted on by holding Staked Staked ETH</p> <p>Key points: •Make extra yield on staked ETH •Transparent smart contract that re-allocates funds from lost or forgotten wallets evenly between all these possible new tokens •Not risk free, you must sign the message in a 1 month period every 6 months •Receive staked ETH anytime (I wouldn’t stake the ETH, it would use a staked ETH token like stETH by Lido</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Plenty_Dog_5684"> /u/Plenty_Dog_5684 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qcp573/a_new_staking_pool_idea/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qcp573/a_new_staking_pool_idea/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/a-new-staking-pool-idea</link><guid>814797</guid><author>COINS NEWS</author><dc:content /><dc:text>A new staking pool idea</dc:text></item><item><title>ETH/USD widget for iPhone</title><description><![CDATA[<div class="md"><p>I want to see ETH price realtime on iPhone Widget. </p> <p>Yahoo Finance doesn’t have one. </p> <p>What do you use?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/mshparber"> /u/mshparber </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qch56t/ethusd_widget_for_iphone/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qch56t/ethusd_widget_for_iphone/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethusd-widget-for-iphone</link><guid>814579</guid><author>COINS NEWS</author><dc:content /><dc:text>ETH/USD widget for iPhone</dc:text></item><item><title>The web3 vision of decentralized applications</title><description><![CDATA[<div class="md"><p>In 2014, there was a vision: you can have permissionless, decentralized applications that could support finance, social media, ride sharing, governing organizations, crowdfunding, potentially create an entire alternative web, all on the backs of a suite of technologies.</p> <p>Ethereum: the blockchain. The world computer that could give any application its shared memory.</p> <p>Whisper: the data layer. Messages too expensive for a blockchain, that do no need consensus.</p> <p>Swarm: the storage layer. Store files for long-term access.</p> <p>Over the last five years, this core vision has at times become obscured, with various &quot;metas&quot; and &quot;narratives&quot; at various times taking center stage. But the core vision has never died. And in fact, the core technologies behind it are only growing stronger.</p> <p>Ethereum is now proof of stake. Ethereum is now scaling, it is now cheap, and it is on track to get more scalable and cheaper thanks to the power of ZK-EVMs. Thanks to ZK-EVM + PeerDAS, the &quot;sharding&quot; vision is effectively being realized. And L2s can give additional and different kinds of gains in speed on top.</p> <p>Whisper is now Waku ( <a href="https://docs.waku.org/">https://docs.waku.org/</a> ), and already powers many applications (eg. <a href="https://www.railway.xyz/">https://www.railway.xyz/</a>, <a href="https://status.app/">https://status.app/</a> just to name two I use). Even outside of Waku, the quality of decentralized messaging has increased. Fileverse (decentralized Google Docs and Sheets alternative: <a href="https://fileverse.io/">https://fileverse.io/</a> ) has seen massive gains in usability over the past year.</p> <p>IPFS is now highly performant and robust as a decentralized way of retrieving files, though IPFS alone does not solve the storage problem. Hence, there is still room to improve there.</p> <p>All of the prerequisites for the original web3 vision are here, in full force, and are continuing to get stronger over the next few years. Hence, it&#39;s time to buidl, and buidl decentralized.</p> <p>Fileverse is an excellent example of the right way to do things:</p> <ul> <li>It uses Ethereum and Gnosis Chain for what they are good for: names, accounts and permissioning, document registration</li> <li>It uses decentralized messaging and file storage to store documents and propagate changes to documents</li> <li>The application passes the walkaway test: <a href="https://github.com/fileverse/walk-away-ddocs">https://github.com/fileverse/walk-away-ddocs</a> (even if Fileverse disappears, you can still retrieve them and even keep editing them with the open source UI)</li> </ul> <p>This is what we mean by &quot;build a hammer that is a tool you buy once and it&#39;s yours, not a corposlop AI dishwasher that requires you to register for a google account and charges a subscription fee per month for extra washing modes, and probably spies on you and stops working if you get politically disfavored by a foreign country&quot;.</p> <p>If you think this criticism of corposlop is hyperbolic, well turns out, it&#39;s literally a concatenation of these three:</p> <ul> <li><a href="https://mein-mmo.de/en/user-buys-new-dishwasher-can-only-use-some-features-if-he-subscribes,1186249/">https://mein-mmo.de/en/user-buys-new-dishwasher-can-only-use-some-features-if-he-subscribes,1186249/</a></li> <li><a href="https://www.theguardian.com/technology/2024/nov/05/air-fryer-excessive-surveillance-smart-devices-which-watches-speakers-trackers">https://www.theguardian.com/technology/2024/nov/05/air-fryer-excessive-surveillance-smart-devices-which-watches-speakers-trackers</a></li> <li><a href="https://www.irishtimes.com/world/us/2025/12/12/its-surreal-us-sanctions-lock-international-criminal-court-judge-out-of-daily-life/">https://www.irishtimes.com/world/us/2025/12/12/its-surreal-us-sanctions-lock-international-criminal-court-judge-out-of-daily-life/</a></li> </ul> <p>In 2014, decentralized applications were toys, hundreds of times more difficult to use in web2. In 2026, fileverse is now usable enough that I regularly write documents in it and send them to other people to collaborate. The decentralized renaissance is coming, and you can be part of making it happen.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qcg3jc/the_web3_vision_of_decentralized_applications/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qcg3jc/the_web3_vision_of_decentralized_applications/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/the-web3-vision-of-decentralized-applications</link><guid>814577</guid><author>COINS NEWS</author><dc:content /><dc:text>The web3 vision of decentralized applications</dc:text></item><item><title>Daily General Discussion January 14, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qcfinw/daily_general_discussion_january_14_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qcfinw/daily_general_discussion_january_14_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-14-2026</link><guid>814576</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 14, 2026</dc:text></item><item><title>Is this a scam? Please help</title><description><![CDATA[<div class="md"><p>I deposited 0.45 RETH to Eigenlayer. It told me it was all listed as available to be withdrawn, but when I clicked &quot;withdraw all&quot; it only gave me $0.02 worth. </p> <p>Someone on the ETHstaker subreddit gave me the following instructions: </p> <p>&quot;Go to <strong><em>SCAM URL</em></strong></p> <p>Scroll down to “validation” and select “Ledger” connect manually and click on your stake Click on the stake and click on validate&quot;</p> <p>Is this a scam? Can anyone help me with what happened to the rest of my RETH?</p> <p>Thank you.</p> <p>UPDATE: I did not fall for the scam. I know better than to do that. While skeptical from the onset, I figured it was worth asking the community in case it could be legitimate. I did not and will not connect my wallet to any website I don&#39;t trust.</p> <p>My question about Eigenlayer is unrelated to the scam. I am still trying to figure out how to recover my rETH that is stuck in the protocol. There is a balance of 0 listed on the dashboard. Per the transactions listed on the blockchain, it states that I deposited 0.452 rETH to the protocol and only withdrew 0.000004 rETH. Therefore, the remaining balance must be within your protocol. Eigenlayer is a trusted protocol so I know I wasn&#39;t scammed. I&#39;m just trying to figure out if anyone has dealt with this or knows how I can access my rETH.</p> <p>My staking hash is: Oxcc27df273c91fd159d22722d55c55ffe72a7747 a7da532f3fff91639c9bd164c</p> <p>My withdraw hash is: Ox632bdc98c9315683258adf8d6168fe5746fe9 a8aa5b76a1246cafb38527f6dc6</p> <p>UPDATE 2: I&#39;ve been in correspondence with Eigenlayer&#39;s support team and my rETH is now alETH due to a redistribution slashing event. Eigenlayer has been experiencing a UI issue, so even though I should be receiving alETH, the dashboard reflects a 0 balance. It was also an error to show that my entire rETH balance was able to be withdrawn. They are working through these errors.</p> <p>For further explanation, look at BlockEnthusiast&#39;s comment.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/cldwlker"> /u/cldwlker </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qcc343/is_this_a_scam_please_help/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qcc343/is_this_a_scam_please_help/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/is-this-a-scam-please-help</link><guid>814580</guid><author>COINS NEWS</author><dc:content /><dc:text>Is this a scam? Please help</dc:text></item><item><title>Geth: security fix release recommended for all users. Resolves two p2p vulnerabilities reported through the Ethereum Foundation bug bounty program.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qcaq1y/geth_security_fix_release_recommended_for_all/"> <img src="https://external-preview.redd.it/vt9T92UPTL2Exk3ZoDXjb8-attpkTULUVu_ttwjZpD0.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=a5257e6fdc2a62c85ce74e6f83b09e7af81151e5" alt="Geth: security fix release recommended for all users. Resolves two p2p vulnerabilities reported through the Ethereum Foundation bug bounty program." title="Geth: security fix release recommended for all users. Resolves two p2p vulnerabilities reported through the Ethereum Foundation bug bounty program." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://github.com/ethereum/go-ethereum/releases/tag/v1.16.8">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qcaq1y/geth_security_fix_release_recommended_for_all/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/geth-security-fix-release-recommended-for-all-users-resolves-two-p2p-vulnerabilities-reported-through-the-ethereum-foundation-bug-bounty-program</link><guid>814578</guid><author>COINS NEWS</author><dc:content /><dc:text>Geth: security fix release recommended for all users. Resolves two p2p vulnerabilities reported through the Ethereum Foundation bug bounty program.</dc:text></item><item><title>Why more Ethereum dApps are requiring World ID - and how to get verified?</title><description><![CDATA[<div class="md"><p>You’ve probably seen it:</p> <ul> <li>Gitcoin Grants asking for “proof of personhood”</li> <li>New airdrops gating access behind World ID</li> <li>DAOs using it to prevent vote spam</li> </ul> <p>That’s because Ethereum is hitting a Sybil problem - bots drain funds, skew governance, and ruin fairness. World ID (built on zero-knowledge proofs) offers a privacy-first way to prove you’re human without revealing who you are.</p> <p>To get it, you need to visit an <a href="https://world.org/find-orb">Orb</a> - a physical device that scans your iris pattern, generates a unique hash, and doesn’t store your biometrics. Yes, really.</p> <p>I found out it&#39;s free, takes 2-3 minutes and works with MetaMask, Rainbow, and most wallets + they reward you with WLD tokens. Kinda airdrop for iris scan.</p> <p>I got mine in Berlin last month and now I can participate in gated rounds on Base, Optimism, and Ethereum L1.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Low-Mathematician137"> /u/Low-Mathematician137 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qbpo7a/why_more_ethereum_dapps_are_requiring_world_id/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbpo7a/why_more_ethereum_dapps_are_requiring_world_id/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/why-more-ethereum-dapps-are-requiring-world-id-and-how-to-get-verified</link><guid>814347</guid><author>COINS NEWS</author><dc:content /><dc:text>Why more Ethereum dApps are requiring World ID - and how to get verified?</dc:text></item><item><title>Daily General Discussion January 13, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qbjlpk/daily_general_discussion_january_13_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbjlpk/daily_general_discussion_january_13_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-13-2026</link><guid>814338</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 13, 2026</dc:text></item><item><title>Ethereum itself must pass the walkaway test.</title><description><![CDATA[<div class="md"><p>Ethereum is meant to be a home for trustless and trust-minimized applications, whether in finance, governance or elsewhere. It must support applications that are more like tools - the hammer that once you buy it&#39;s yours - than like services that lose all functionality once the vendor loses interest in maintaining them (or worse, gets hacked or becomes value-extractive). Even when applications do have functionality that depends on a vendor, Ethereum can help reduce those dependencies as much as possible, and protect the user as much as possible in those cases where the dependencies fail.</p> <p>But building such applications is not possible on a base layer which itself depends on ongoing updates from a vendor in order to continue being usable - even if that &quot;vendor&quot; is the all core devs process. Ethereum the blockchain must have the traits that we strive for in Ethereum&#39;s applications. Hence, Ethereum itself must pass the walkaway test.</p> <p>This means that Ethereum must get to a place where we <em>can ossify if we want to</em>. We do not have to stop making changes to the protocol, but we must get to a place where Ethereum&#39;s value proposition does not strictly depend on any features that are not in the protocol already.</p> <p>This includes the following:</p> <ul> <li>Full quantum-resistance. We should resist the trap of saying &quot;let&#39;s delay quantum-resistance until the last possible moment in the name of ekeing out more efficiencies for a while longer&quot;. Individual users have that right, but the protocol should not. Being able to say &quot;Ethereum&#39;s protocol, as it stands today, is cryptographically safe for a hundred years&quot; is something we should strive to get to as soon as possible, and insist on as a point of pride.</li> <li>An architecture that can expand to sufficient scalability. The protocol needs to have the properties that allow it to expand to many thousands of TPS over time, most notably ZK-EVM validation and data sampling through PeerDAS. Ideally, we get to a point where further scaling is done through &quot;parameter only&quot; changes - and ideally <em>those</em> changes are not BPO-style forks, but rather are made with the same validator voting mechanism we use for the gas limit.</li> <li>A state architecture that can last decades. This means deciding, and implementing, whatever form of partial statelessness and state expiry will let us feel comfortable letting Ethereum run with thousands of TPS for decades, without breaking sync or hard disk or I/O requirements. It also means future-proofing the tree and storage types to work well with this long-term environment.</li> <li>An account model that is general-purpose (this is &quot;full account abstraction&quot;: move away from enshrined ECDSA for signature validation)</li> <li>A gas schedule that we are confident is free of DoS vulnerabilities, both for execution and for ZK-proving</li> <li>A PoS economic model that, with all we have learned over the past half decade of proof of stake in Ethereum and full decade beyond, we are confident can last and remain decentralized for decades, and supports the usefulness of ETH as trustless collateral (eg. in governance-minimized ETH-backed stablecoins)</li> <li>A block building model that we are confident will resist centralization pressure and guarantee censorship resistance even in unknown future environments Ideally, we do the hard work over the next few years, to get to a point where in the future almost all future innovation can happen through client optimization, and get reflected in the protocol through parameter changes. Every year, we should tick off at least one of these boxes, and ideally multiple. Do the right thing once, based on knowledge of what is truly the right thing (and not compromise halfway fixes), and maximize Ethereum&#39;s technological and social robustness for the long term.</li> </ul> <p>Ethereum goes hard.</p> <p>This is the gwei.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qbj1wd/ethereum_itself_must_pass_the_walkaway_test/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbj1wd/ethereum_itself_must_pass_the_walkaway_test/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-itself-must-pass-the-walkaway-test</link><guid>814339</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum itself must pass the walkaway test.</dc:text></item><item><title>We need better decentralized stablecoins</title><description><![CDATA[<div class="md"><p>IMO there are three problems to doing so:</p> <ol> <li>Ideally figure out an index to track that&#39;s better than USD price</li> <li>Oracle design that&#39;s decentralized and is not capturable with a large pool of money</li> <li>Solve the problem that staking yield is competition Tracking USD is fine short term, but imo part of the vision of nation state resilience should be independence even from that price ticker. On a 20 year timeline, well, what if it hyperinflates, even moderately?</li> </ol> <p>If you don&#39;t have (2), then you have to ensure cost of capture &gt; protocol token market cap, which in turn implies protocol value extraction &gt; discount rate, which is quite bad for users. This is a big part of why I constantly rail against financialized governance btw: it inherently has no defense/offense asymmetry, and so high levels of extraction are the only way to be stable. And, of course, it&#39;s a big part of why I refuse to give up on DAOs entirely.</p> <p>If you don&#39;t have (3), then again you have a few percent APY suboptimal return rates, which is quite bad. The possible paths to solving (3) [treat this as enumeration of the solution space, not endorsement] are basically:</p> <p>(i) reduce staking yield to like 0.2%, basically hobbyist level (ii) create a new category of staking which has yield almost as high as regular staking, but which does not have the same slashing risk (iii) figure out how to make slashable staking compatible with usability as collateral (does it mean that slashing risk somehow passes on to stablecoin and CDP holders, so both of those need to stake and trust the same delegate?)</p> <p>If you&#39;re going to try to reason through this in detail, remember that the &quot;slashing risk&quot; to guard against is <em>both</em> self-contradiction, <em>and</em> being on the wrong side of an inactivity leak, ie. engaging in a 51% censorship attack. In general, we think too much about the former and not enough about the latter. Also remember that a stablecoin cannot be secured with a fixed amount of ETH collateral; in the event of large drops you need to be able to handle rebalancing (though of course you could choose to partially drop this goal in a clever way, eg. if ETH price moves too much you stop earning staking yield until you take some other action)</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qbj1jg/we_need_better_decentralized_stablecoins/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbj1jg/we_need_better_decentralized_stablecoins/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/we-need-better-decentralized-stablecoins</link><guid>814343</guid><author>COINS NEWS</author><dc:content /><dc:text>We need better decentralized stablecoins</dc:text></item><item><title>Corposlop vs sovereign</title><description><![CDATA[<div class="md"><p>I agree with maybe 60% of this, but one bit that is particularly important to highlight is the explicit separation between what the poster calls &quot;the open web&quot; (really, the corposlop web), and &quot;the sovereign web&quot;.</p> <p><a href="https://firefly.social/post/x/2006710624424702362">https://firefly.social/post/x/2006710624424702362</a></p> <p>This is a distinction I did not realize until recently, and I must admit the bitcoin maximalists were far ahead: a big part of their resistance to ICOs, tokens other than bitcoin, arbitrary financial applications, etc was precisely about keeping bitcoin &quot;sovereign&quot; and not &quot;corposlop&quot;. The big error that many of them made was trying to achieve this goal with either government crackdowns or user disempowerment (keeping bitcoin script limited, and rejecting many categories of applications entirely), but their fear was real.</p> <p>So what is corposlop? In essence, it is the combination of three things:</p> <ul> <li>Corporate optimization power</li> <li>An aura of respectableness of being a company with sleek polished branding</li> <li><p>Behavior that the exact opposite of respectable, because that&#39;s what&#39;s needed to maximize profit Corposlop includes things like:</p></li> <li><p>Social media that maximizes dopamine, outrage, other methods of short-term engagement, at the expense of long-term value and fulfillment</p></li> <li><p>Needless mass data collection from users, often followed by managing it carelessly or even casually selling it to third parties</p></li> <li><p>Walled gardens charging monopolistic high fees and actively preventing people from even linking to other platforms</p></li> <li><p>Hollywood releasing the 7th sequel to some tired franchise, because that&#39;s the most risk-averse thing to do</p></li> <li><p>Every corporation that rallied around slogans of diversity and equity and the need to overturn society to fight racism in 2020, and then publicly mocked those causes for engagement in 2025 This is all digital corposlop; there are big and important analogues to this in the physical world too.</p></li> </ul> <p>Corposlop is soulless: trend-following homogeneity that is both evil and lame <a href="https://vitalik.eth.limo/general/2025/12/30/balance_of_power.html#how-we-fear-big-business">https://vitalik.eth.limo/general/2025/12/30/balance_of_power.html#how-we-fear-big-business</a></p> <p>These are things that appear to serve the user, but actually disempower the user.</p> <p>I have many qualms with Apple, but aside from their monopolistic practices, they actually have many non-corposlop traits. They serve users not by constantly asking &quot;what do users want this quarter&quot;, but by having an opinionated long-term vision. They have a strong emphasis on privacy. They resist and create trends rather than following them. I just wish they could take the brave step of ending their monopolistic practices and switch to an open source first strategy. It may damage their market cap, but man must live for something higher than market caps.</p> <p>Zac from Aztec was also early to recognize the importance of this, with a post that is on the whole very pro-freedom, but at the same time does not shrink back from labeling what is essentially corposlop a primary enemy, even when it does not violate the libertarian non-aggression principle.</p> <p><a href="https://firefly.social/post/x/1986086241276657868">https://firefly.social/post/x/1986086241276657868</a></p> <p>In 2000, the understanding of &quot;sovereignty&quot; largely focused on avoiding the iron fist of government. Today, &quot;sovereignty&quot; also means securing your digital privacy through cryptography, and securing your own mind from corporate mind warfare trying to extract your attention and your dollars. It also means doing things because you believe in them, and declaring independence from the homogenizing and soul-sucking concept of &quot;the meta&quot;.</p> <p>These are the kinds of tools that we should build more of. Build tools like:</p> <ul> <li>Privacy-preserving local-first applications that minimize dependence on and data leaks to third parties</li> <li>Social media platforms and tools that let the user take control of what content they see. Appeal to people&#39;s long-term goals, not short-term impulses</li> <li>Financial tools that help users grow their wealth, and do not encourage 50x leverage or sports betting or taking out a loan to pay for a burrito</li> <li>AI tools that are maximally open and privacy and local-friendly, and that maximize productivity from merging the power of human and bot, rather than encouraging the user to sit back and let the bot do all the work, so they learn nothing</li> <li>Applications, companies, and physical environments that take an opinionated view on the kind of world they want to see, and have an opinionated culture</li> <li>DAOs that can support organizations and communities that steadfastly pursue a unique objective, and do not all get captured by the same groups. Privacy-preserving and non-tokenholder-driven voting can help here Be sovereign. Reject corposlop. Believe in somETHing.</li> </ul> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qbj11w/corposlop_vs_sovereign/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbj11w/corposlop_vs_sovereign/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/corposlop-vs-sovereign</link><guid>814344</guid><author>COINS NEWS</author><dc:content /><dc:text>Corposlop vs sovereign</dc:text></item><item><title>Increasing bandwidth is safer than reducing latency</title><description><![CDATA[<div class="md"><p>With PeerDAS and ZKPs, we know how to scale, and potentially we can scale thousands of times compared to the status quo. The numbers become far more favorable than before (eg. see analysis here, pre and post-sharding <a href="https://vitalik.eth.limo/general/2021/05/23/scaling.html">https://vitalik.eth.limo/general/2021/05/23/scaling.html</a> ). There is no law of physics that prevents combining extreme scale with decentralization.</p> <p>Reducing latency is not like this. We are fundamentally constrained by speed of light, and on top of that we are also constrained by:</p> <ul> <li>Need to support nodes (especially attesters) in rural environments, worldwide, and in home or commercial environments outside of data centers.</li> <li>Need to support censorship-resistance and anonymity for nodes (especially proposers and attesters).</li> <li>The fact that running a node in a non-super-concentrated location must be not only possible, but also economically viable. If staking outside NYC drops your revenues by 10%, over time more and more people will stake in NYC. Ethereum itself must pass the walkaway test, and so we cannot build a blockchain that depends on constant social re-juggling to ensure decentralization. Economics cannot handle the entire load, but it must handle most.</li> </ul> <p>Now, we can decrease latency quite a bit from the present-day situation without making tradeoffs. In particular:</p> <ul> <li>P2P improvements (esp erasure coding) can decrease message propagation times without requiring individual nodes to have lower bandwidth</li> <li>An available chain with a smaller node count per slot (eg. 512 instead of 30,000) can remove the need for an aggregation step, allowing the entire hot path to happen in one subnet This plausibly buys us 3-6x. Hence, I think moderate latency decreases, to a 2-4s level, are very much in the realm of possibility.</li> </ul> <p>But Ethereum is NOT the world video game server, it is the world heartbeat.</p> <p>If you need to build applications that are faster than the heartbeat, they will need to have offchain components. This is a big part of why L2s will continue to have a role even in a greatly scaled Ethereum (there are other reasons too, around VM customization, and around applications that need <em>even more scale</em>).</p> <p>Ultimately, AI will necessitate applications that go faster than the heartbeat no matter what we do. If an AI can think 1000x faster than humans, then to the AI, the &quot;subjective speed of light&quot; is only 300 km/s. Hence, it can talk near-instantly within the scope of a city, but not further. As a result, there will inevitably be AI-focused applications that will need &quot;city chains&quot;, potentially even chains localized to a single building. These will have to be L2s.</p> <p>And on the flipside, it would be too much of a cost to make it viable to run a staking node on Mars. Even Bitcoin does not strive for this. Ultimately, Ethereum belongs to Terra, and its L2s will serve both hyper-localized needs in its cities, and hyper-scaled needs planet-wide, and users on other worlds.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qbj03e/increasing_bandwidth_is_safer_than_reducing/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbj03e/increasing_bandwidth_is_safer_than_reducing/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/increasing-bandwidth-is-safer-than-reducing-latency</link><guid>814346</guid><author>COINS NEWS</author><dc:content /><dc:text>Increasing bandwidth is safer than reducing latency</dc:text></item><item><title>Linux as a north star</title><description><![CDATA[<div class="md"><p>One metaphor for Ethereum is BitTorrent, and how that p2p network combines decentralization and mass scale. Ethereum&#39;s goal is to do the same thing but with consensus.</p> <p>Another metaphor for Ethereum is Linux.</p> <ul> <li>Linux is free and open source software, and does not compromise on this</li> <li>Linux is quietly depended on by billions of people and enterprises worldwide. Governments regularly use it.</li> <li>There are many operating systems based on Linux that pursue mass adoption</li> <li>There are Linux distributions (eg. Arch) that are highly purist, minimalistic and technologically beautiful, and focus on making the user feel powerful, not comfortable</li> </ul> <p>(Actually, BitTorrent is depended on by enterprises too: many businesses and even governments (!!) use it to distribute large files to their users <a href="https://www.makeuseof.com/tag/8-legal-uses-for-bittorrent-youd-be-surprised">https://www.makeuseof.com/tag/8-legal-uses-for-bittorrent-youd-be-surprised</a> )</p> <p>We must make sure that Ethereum L1 works as the financial (and ultimately identity, social, governance...) home for individuals and organizations who want the higher level of autonomy, and give them access to the full power of the network without dependence on intermediaries. At the same time, what Linux shows is that this is fully compatible with providing value to very large numbers of people, and even being loved and trusted by enterprises worldwide. Many enterprises in fact desperately want to build on an open and resilient ecosystem - what we call trustlessness, they call prudent counterparty risk minimization.</p> <p>This is the gwei.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qbiz8k/linux_as_a_north_star/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbiz8k/linux_as_a_north_star/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/linux-as-a-north-star</link><guid>814345</guid><author>COINS NEWS</author><dc:content /><dc:text>Linux as a north star</dc:text></item><item><title>Ethereum was not created to make finance efficient or apps convenient. It was created to set people free</title><description><![CDATA[<div class="md"><p>“Ethereum was not created to make finance efficient or apps convenient. It was created to set people free”</p> <p>This was an important - and controversial - line from the Trustless Manifesto ( trustlessness.eth.limo ), and it is worth revisiting it and better understanding what it means.</p> <p>“efficient” and “convenient” have the connotation of improving the average case, in situations where it’s already pretty good. Efficiency is about telling the world&#39;s best engineers to put their souls into reducing latency from 473 ms to 368ms, or increasing yields from 4.5% APY to 5.3% APY. Convenience is about people making one click instead of three, and reducing signup times from 1 min to 20 sec.</p> <p>These things can be good to do. But we must do them under the understanding that we will never be as good at this game as the Silicon Valley corporate players. And so the primary underlying game that Ethereum plays must be a different game. What is the game? Resilience.</p> <p>Resilience is the game where it’s not about 4.5% APY vs 5.3% APY - rather, it’s about minimizing the chance that you get -100% APY.</p> <p>Resilience is the game where if you become politically unpopular and get deplatformed, or if a the developers of your application go bankrupt or disappear, or if Cloudflare goes down, or if an internet cyberwar breaks out, your 2000ms latency continues to be 2000ms.</p> <p>Resilience is the game where anyone, anywhere in the world will be able to access the network and be a first-class participant.</p> <p>Resilience is sovereignty. Not sovereignty in the sense of lobbying to become a UN member state and shaking hands at Davos in two weeks, but sovereignty in the sense that people talk about &quot;digital sovereignty&quot; or &quot;food sovereignty&quot; - aggressively reducing your vulnerabilities to external dependencies that can be taken away from you on a whim. This is the sense in which the world computer can be sovereign, and in doing so make its users also sovereign.</p> <p>This baseline is what enables interdependence as equals, and not as vassals of corporate overlords thousands of kilometers away.</p> <p>This is the game that Ethereum is suited to win, and it delivers a type of value that, in our increasingly unstable world, a lot of people are going to need.</p> <p>The fundamental DNA of web2 consumer tech is not suited to resilience. The fundamental DNA of <em>finance</em> often spends considerable effort on resilience, but it is a very partial form of resilience, good at solving for some types of risks but not others.</p> <p>Blockspace is abundant. Decentralized, permissionless and resilient blockspace is not. Ethereum must first and foremost be decentralized, permissionless and resilient block space - and then make that abundant.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qbiyvv/ethereum_was_not_created_to_make_finance/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbiyvv/ethereum_was_not_created_to_make_finance/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-was-not-created-to-make-finance-efficient-or-apps-convenient-it-was-created-to-set-people-free</link><guid>814341</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum was not created to make finance efficient or apps convenient. It was created to set people free</dc:text></item><item><title>On ZK-EVMs</title><description><![CDATA[<div class="md"><p>Now that ZKEVMs are at alpha stage (production-quality performance, remaining work is safety) and PeerDAS is live on mainnet, it&#39;s time to talk more about what this combination means for Ethereum.</p> <p>These are not minor improvements; they are shifting Ethereum into being a fundamentally new and more powerful kind of decentralized network.</p> <p>To see why, let&#39;s look at the two major types of p2p network so far:</p> <p>BitTorrent (2000): huge total bandwidth, highly decentralized, no consensus</p> <p>Bitcoin (2009): highly decentralized, consensus, but low bandwidth - because it’s not “distributed” in the sense of work being split up, it’s <em>replicated</em></p> <p>Now, Ethereum with PeerDAS (2025) and ZK-EVMs (expect small portions of the network using it in 2026), we get: decentralized, consensus and high bandwidth</p> <p>The trilemma has been solved - not on paper, but with live running code, of which one half (data availability sampling) is <em>on mainnet today</em>, and the other half (ZK-EVMs) is <em>production-quality on performance today</em> - safety is what remains.</p> <p>This was a 10-year journey (see the first commit of my original post on DAS here: github.com/ethereum/research/… , and ZK-EVM attempts started in ~2020), but it&#39;s finally here.</p> <p>Over the next ~4 years, expect to see the full extent of this vision roll out:</p> <ul> <li>In 2026, large non-ZKEVM-dependent gas limit increases due to BALs and ePBS, and we&#39;ll see the first opportunities to run a ZKEVM node</li> <li>In 2026-28, gas repricings, changes to state structure, exec payload going into blobs, and other adjustments to make higher gas limits safe</li> <li>In 2027-30, large further gas limit increases, as ZKEVM becomes the primary way to validate blocks on the network A third piece of this is distributed block building.</li> </ul> <p>A long-term ideal holy grail is to get to a future where the full block is <em>never</em> constituted in one single place. This will not be necessary for a long time, but IMO it is worth striving for us at least have the capability to do that.</p> <p>Even before that point, we want the meaningful authority in block building to be as distributed as possible. This can be done either in-protocol (eg. maybe we figure out how to expand FOCIL to make it a primary channel for txs), or out-of-protocol with distributed builder marketplaces. This reduces risk of centralized interference with real-time transaction inclusion, AND it creates a better environment for geographical fairness.</p> <p>Onward.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qbiyl2/on_zkevms/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbiyl2/on_zkevms/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/on-zk-evms</link><guid>814342</guid><author>COINS NEWS</author><dc:content /><dc:text>On ZK-EVMs</dc:text></item><item><title>Welcome to 2026!</title><description><![CDATA[<div class="md"><p>Ethereum did a lot in 2025: gas limits increased, blob count increased, node software quality improved, zkEVMs blasted through their performance milestones, and with zkEVMs and PeerDAS ethereum made its largest step toward being a fundamentally new and more powerful kind of blockchain (more on this later)</p> <p>But we have a challenge: Ethereum needs to do more to meet its own stated goals. Not the quest of &quot;winning the next meta&quot; regardless of whether it&#39;s tokenized dollars or political memecoins, not arbitrarily convincing people to help us fill up blockspace to make ETH ultrasound again, but the mission:</p> <p>To build the world computer that serves as a central infrastructure piece of a more free and open internet.</p> <p>We&#39;re building decentralized applications. Applications that run without fraud, censorship or third-party interference. Applications that pass the walkaway test: they keep running even if the original developers disappear. Applications where if you&#39;re a user, you don&#39;t even notice if Cloudflare goes down - or even if all of Cloudflare gets hacked by North Korea. Applications whose stability transcends the rise and fall of companies, ideologies and political parties. And applications that protect your privacy. All this - for finance, and also for identity, governance and whatever other civilizational infrastructure people want to build.</p> <p>These properties sound radical, but we must remember that a generation ago any wallet, kitchen appliance, book or car would fulfill every single one of them. Today, all of the above are by default becoming subscription services, consigning you to permanent dependence on some centralized overlord.</p> <p>Ethereum is the rebellion against this.</p> <p>To achieve this, it needs to be (i) usable, and usable at scale, and (ii) actually decentralized. This needs to happen at both (a) the blockchain layer, including the software we use to run and talk to the blockchain, and (b) the application layer. All of these pieces must be improved - they are already being improved, but they must be improved more.</p> <p>Fortunately, we have powerful tools on our side - but we need to apply them, and we will.</p> <p>Wishing everyone an exciting 2026.</p> <p>Milady.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/vbuterin"> /u/vbuterin </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qbiyab/welcome_to_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbiyab/welcome_to_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/welcome-to-2026</link><guid>814340</guid><author>COINS NEWS</author><dc:content /><dc:text>Welcome to 2026!</dc:text></item><item><title>I believe a malicious actor tried to exploit me to log into my wallet! Just a warning:</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qbg5s3/i_believe_a_malicious_actor_tried_to_exploit_me/"> <img src="https://b.thumbs.redditmedia.com/vC0jihiqXppftgbOcZshSK82D4StqyiLlZ0II0s0OTY.jpg" alt="I believe a malicious actor tried to exploit me to log into my wallet! Just a warning:" title="I believe a malicious actor tried to exploit me to log into my wallet! Just a warning:" /> </a> </td><td> <div class="md"><p>last month, I was contacted by someone on LinkedIn about a crypto related job and was asked to install software to view a site locally. it worked, but I did not audit it so it could have installed something malicious and shortly after, they stopped responding entirely. I didn’t think much of it at the time.</p> <p>tonight, I saw what appeared to be a large ETH transaction leaving my wallet, complete with a tx hash, block number, confirmations, and receiver. however:</p> <p>it only appeared for MY wallet, and none others</p> <p>it only appeared in my normal Firefox session (main browser)</p> <p>it disappeared completely in private mode</p> <p>it did not appear in other browsers (edge, chrome)</p> <p>i checked my wallet directly on my laptop and everything was fine</p> <p>real blockchain transactions don’t selectively appear based on browser state. that strongly suggests browser side manipulation or injected scripts rather than an actual on-chain event.</p> <p>given that I installed questionable software, I think it’s reasonable to consider whether this was an attempt to induce panic and a rushed wallet interaction, which is how people actually get burned.</p> <p>pic for reference:</p> <p><a href="https://preview.redd.it/843herzz91dg1.png?width=1263&amp;format=png&amp;auto=webp&amp;s=f43f48ae9505773b7048cd836410cbb8e5e9a9e8">https://preview.redd.it/843herzz91dg1.png?width=1263&amp;format=png&amp;auto=webp&amp;s=f43f48ae9505773b7048cd836410cbb8e5e9a9e8</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/chemtrail_injection"> /u/chemtrail_injection </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qbg5s3/i_believe_a_malicious_actor_tried_to_exploit_me/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbg5s3/i_believe_a_malicious_actor_tried_to_exploit_me/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/i-believe-a-malicious-actor-tried-to-exploit-me-to-log-into-my-wallet-just-a-warning</link><guid>814348</guid><author>COINS NEWS</author><dc:content /><dc:text>I believe a malicious actor tried to exploit me to log into my wallet! Just a warning:</dc:text></item><item><title>ETH Denver 2026 - Community Page</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qbcahz/eth_denver_2026_community_page/"> <img src="https://external-preview.redd.it/m3Si1IoWHv0UkobktRxv1syLLyreAGbUwtIZXNaAU5g.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=7455a2bacae9c8b19604bc20c2fed93ccb0daa9a" alt="ETH Denver 2026 - Community Page" title="ETH Denver 2026 - Community Page" /> </a> </td><td> <div class="md"><p>Connect with other degens attending ETH Denver and discover resources for ETH Denver. </p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Possible_Poetry8444"> /u/Possible_Poetry8444 </a> <br/> <span><a href="https://chaching.social/communities/eth-denver-2026?id=jaQBRd74TwKxDc65akj0">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qbcahz/eth_denver_2026_community_page/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/eth-denver-2026-community-page</link><guid>814161</guid><author>COINS NEWS</author><dc:content /><dc:text>ETH Denver 2026 - Community Page</dc:text></item><item><title>How effective is Monero for ETH Privacy?</title><description><![CDATA[<div class="md"><p>Wondering how effective and reliable XMR / Monero is to contribute to ETH privacy as there are issues with traditional mixers like TornadoCash, could that be a replacement? Thanks for infos, just wondering through recent price rise</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Miralunes"> /u/Miralunes </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qb5q6f/how_effective_is_monero_for_eth_privacy/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qb5q6f/how_effective_is_monero_for_eth_privacy/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/how-effective-is-monero-for-eth-privacy</link><guid>814160</guid><author>COINS NEWS</author><dc:content /><dc:text>How effective is Monero for ETH Privacy?</dc:text></item><item><title>South Korea Ends Its Crypto Ban!!</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1qb48hy/south_korea_ends_its_crypto_ban/"> <img src="https://external-preview.redd.it/e9-6TSdzpabR-Pi_bU5udjPfRXMaVRvJGUxbDnKQQls.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=cf1139db6b78e4846d6d777b096829475f8eb190" alt="South Korea Ends Its Crypto Ban!!" title="South Korea Ends Its Crypto Ban!!" /> </a> </td><td> <div class="md"><p>South Korea just opened the floodgates for institutional crypto adoption. Huge for Ethereum!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Cratos007"> /u/Cratos007 </a> <br/> <span><a href="https://dailycryptobriefs.com/news/south-korea-ends-corporate-crypto-ban-fsc-5-percent-top-20-tokens/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qb48hy/south_korea_ends_its_crypto_ban/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/south-korea-ends-its-crypto-ban</link><guid>814159</guid><author>COINS NEWS</author><dc:content /><dc:text>South Korea Ends Its Crypto Ban!!</dc:text></item><item><title>Daily General Discussion January 12, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qan48g/daily_general_discussion_january_12_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qan48g/daily_general_discussion_january_12_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-12-2026</link><guid>813981</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 12, 2026</dc:text></item><item><title>Ethereum may eventually need to embrace intentional ossification as a feature, not a bug.</title><description><![CDATA[<div class="md"><p>If a protocol is meant to become global settlement infrastructure — possibly lasting longer than any single institution — then perpetual redesign becomes a risk, not a strength. The hardest problems are governance capture, social fragmentation, and coordination failure over time.</p> <p>A possible next evolutionary step for Ethereum could be something like an EIP that defines a <strong>hard final scope for the base protocol</strong> — a clearly bounded set of guarantees that, once achieved, become permanently locked. After that point, no more breaking protocol changes; only extensions, rollups, tooling, and application layers evolve on top.</p> <p>In other words:<br/> Treat the base layer more like a constitution than a product roadmap.</p> <p>Before ossifying, the community could explicitly define:</p> <ul> <li>What the base layer must absolutely guarantee (security, neutrality, censorship resistance, settlement finality, cryptographic primitives).</li> <li>Which hard technical problems still need research before locking (scalability ceilings, cryptographic longevity, client diversity robustness, formal verification, network survivability assumptions).</li> <li>What timelines or milestones would justify declaring the base protocol “complete.”</li> </ul> <p>Bitcoin arrived at ossification accidentally through governance gridlock. Ethereum could do it intentionally — transparently and with consensus.</p> <p>The multi-client model already supports this direction: Ethereum is a protocol, not an implementation. No single team controls its evolution. Locking a well-defined base layer could further strengthen neutrality, long-term trust, and institutional adoption — exactly what you’d want if this infrastructure were ever used for planetary or interplanetary-scale coordination in the distant future.</p> <p>Everything above the base layer — rollups, execution environments, domain-specific chains, automation systems — can keep evolving freely without destabilizing the core.</p> <p>Ossification doesn’t mean stagnation. It means stability at the foundation.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/AGI-44"> /u/AGI-44 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1qabxk5/ethereum_may_eventually_need_to_embrace/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1qabxk5/ethereum_may_eventually_need_to_embrace/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ethereum-may-eventually-need-to-embrace-intentional-ossification-as-a-feature-not-a-bug</link><guid>814349</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereum may eventually need to embrace intentional ossification as a feature, not a bug.</dc:text></item><item><title>Daily General Discussion January 11, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q9rmoy/daily_general_discussion_january_11_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q9rmoy/daily_general_discussion_january_11_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-11-2026</link><guid>813876</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 11, 2026</dc:text></item><item><title>Privacy and The Cypherpunk Revival</title><description><![CDATA[<div class="md"><p>Crypto started as a cypherpunk project, but somewhere along the way, privacy got sidelined.</p> <p>Interesting enough, over the past few months, privacy has reemerged not as ideology for its own sake, but as a practical response to surveillance, regulation, and institutionalization of crypto.</p> <p>I wrote an essay regarding why the cypherpunk ethos is resurfacing now, what changed structurally, and the ramifications going forward.</p> <p><a href="https://open.substack.com/pub/defidave/p/privacy-and-the-cypherpunk-revival?r=zfakj&amp;utm_medium=ios&amp;shareImageVariant=overlay">https://open.substack.com/pub/defidave/p/privacy-and-the-cypherpunk-revival?r=zfakj&amp;utm_medium=ios&amp;shareImageVariant=overlay</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/dliebs72"> /u/dliebs72 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q9b9hn/privacy_and_the_cypherpunk_revival/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q9b9hn/privacy_and_the_cypherpunk_revival/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/privacy-and-the-cypherpunk-revival</link><guid>813743</guid><author>COINS NEWS</author><dc:content /><dc:text>Privacy and The Cypherpunk Revival</dc:text></item><item><title>YUL: Solidity’s Low-Level Language (Without the Tears), Part 1: Stack, Memory, and Calldata</title><description><![CDATA[<div class="md"><p>I just published a new article on Medium.</p> <p>This started as personal notes while learning YUL and slowly turned into a proper guide.</p> <p>Part 1 focuses on stack, memory, and calldata. If you’re curious about YUL, give it a shot.</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/k_ekse"> /u/k_ekse </a> <br/> <span><a href="https://medium.com/coinmonks/yul-soliditys-low-level-language-without-the-tears-part-1-stack-memory-and-calldata-5b06369ffa3f">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q8z5mb/yul_soliditys_lowlevel_language_without_the_tears/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/yul-soliditys-low-level-language-without-the-tears-part-1-stack-memory-and-calldata</link><guid>813626</guid><author>COINS NEWS</author><dc:content /><dc:text>YUL: Solidity’s Low-Level Language (Without the Tears), Part 1: Stack, Memory, and Calldata</dc:text></item><item><title>Vitalik Buterin Thinks Ethereum Should Be Boring, And That’s the Point</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1q8wrf2/vitalik_buterin_thinks_ethereum_should_be_boring/"> <img src="https://preview.redd.it/9iaxq0nntgcg1.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=59f536db14ad12898160b6e2db0132b6a1869c1a" alt="Vitalik Buterin Thinks Ethereum Should Be Boring, And That’s the Point" title="Vitalik Buterin Thinks Ethereum Should Be Boring, And That’s the Point" /> </a> </td><td> <div class="md"><p>Vitalik Buterin often compares Ethereum to Linux or BitTorrent: open systems that quietly power huge parts of the internet.</p> <p>The idea is that Ethereum shouldn’t feel like a startup chasing users, but like infrastructure institutions use because it reduces risk and removes intermediaries.</p> <p>If this works, Ethereum adoption won’t come with hype cycles. It will be slow, widespread, and sticky, just like real infrastructure.</p> <p>Do you think Ethereum can actually reach that stage, or does crypto always need hype to grow?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/UniqueCap5396"> /u/UniqueCap5396 </a> <br/> <span><a href="https://i.redd.it/9iaxq0nntgcg1.jpeg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q8wrf2/vitalik_buterin_thinks_ethereum_should_be_boring/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/vitalik-buterin-thinks-ethereum-should-be-boring-and-thats-the-point</link><guid>813877</guid><author>COINS NEWS</author><dc:content /><dc:text>Vitalik Buterin Thinks Ethereum Should Be Boring, And That’s the Point</dc:text></item><item><title>Daily General Discussion January 10, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q8wbyo/daily_general_discussion_january_10_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q8wbyo/daily_general_discussion_january_10_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-10-2026</link><guid>813624</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 10, 2026</dc:text></item><item><title>Heard Monthly Ethereum market sentiment (targeted prediction survey) - Round #1 results</title><description><![CDATA[<div class="md"><p>Hey</p> <p>We’re building Heard, a decision analytics platform for founders/teams: targeted surveys that help validate product + market decisions with real signal (not vibes).</p> <p>One core mechanic is prediction format: respondents don’t just answer - they predict what the crowd will answer. It tends to reduce random clicking and makes the flow more engaging.</p> <p>Why we’re doing it this way:</p> <ul> <li>More signal, less noise: prediction-style answers tend to be more deliberate than quick “vote-and-leave” polls.</li> <li>More engaging: it feels closer to a mini-game than a form, so people are more likely to finish it (and come back).</li> <li>Useful for market sentiment: you get both the “what I think” and the “what I think others think” angle, which is interesting for crypto.</li> </ul> <p>Starting now, we’ll run a monthly Ethereum market sentiment survey to both:</p> <ol> <li>understand how people feel about the market, and</li> <li>dogfood / stress-test our product as we iterate.</li> </ol> <p>Here are results:</p> <p>Top picks:</p> <ul> <li>BTC in 12 months: <strong>30–100% higher (58%)</strong></li> <li>ETH in 12 months: <strong>30–100% higher (58%)</strong></li> <li>ETH’s main competitor: <strong>Solana (97%)</strong></li> <li>ETH supply in 12 months: <strong>roughly flat / slightly deflationary (58%)</strong></li> <li>Best-return narrative (12m): <strong>RWA (45%)</strong></li> <li>Next breakout category: <strong>RWA (32%)</strong></li> <li>Biggest founder bottleneck: <strong>distribution / real users (48%)</strong></li> <li>Biggest adoption blocker: <strong>UX + onboarding (55%)</strong></li> </ul> <p><a href="https://x.com/Heard_labs/status/2003833702212890907?s=20">https://x.com/Heard_labs/status/2003833702212890907?s=20</a></p> <p>Sample size is still small (we’ve only recently launched), so treat it as “early signal”, not definitive data. Still, a few findings might be interesting, and we’ll keep publishing monthly so trends become clearer over time.</p> <p>If you have ideas for what questions we should include next month</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Kidav75"> /u/Kidav75 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q8tqux/heard_monthly_ethereum_market_sentiment_targeted/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q8tqux/heard_monthly_ethereum_market_sentiment_targeted/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/heard-monthly-ethereum-market-sentiment-targeted-prediction-survey-round-1-results</link><guid>813625</guid><author>COINS NEWS</author><dc:content /><dc:text>Heard Monthly Ethereum market sentiment (targeted prediction survey) - Round #1 results</dc:text></item><item><title>Keeping up with regulations</title><description><![CDATA[<div class="md"><p>For people that have blockchain startups or work in the digital asset space, how are you guys keeping up with all the regulatory updates that are being published in the jurisdictions you operate in?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Last-Active-101"> /u/Last-Active-101 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q8ni6a/keeping_up_with_regulations/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q8ni6a/keeping_up_with_regulations/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/keeping-up-with-regulations</link><guid>813467</guid><author>COINS NEWS</author><dc:content /><dc:text>Keeping up with regulations</dc:text></item><item><title>Need ETH to pay fees</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1q8eqq6/need_eth_to_pay_fees/"> <img src="https://preview.redd.it/y69a4tww0dcg1.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=498fa58d7c194a6dbe89efbe6cc46d3e67416dc6" alt="Need ETH to pay fees" title="Need ETH to pay fees" /> </a> </td><td> <div class="md"><p>If anyone can send me $10 of ETH please wil send $15 of USDC straight back </p> <p>I’ve ETH stuck in moonpay I want to withdraw </p> </div> <br/> <span><a href="https://i.redd.it/y69a4tww0dcg1.jpeg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q8eqq6/need_eth_to_pay_fees/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/need-eth-to-pay-fees</link><guid>813471</guid><author>COINS NEWS</author><dc:content /><dc:text>Need ETH to pay fees</dc:text></item><item><title>Was the Fusaka upgrade successful</title><description><![CDATA[<div class="md"><p>I mean did it improve performance as much as people hoped? Is it better able to compete with SOL?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/NashDaypring1987"> /u/NashDaypring1987 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q87f54/was_the_fusaka_upgrade_successful/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q87f54/was_the_fusaka_upgrade_successful/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/was-the-fusaka-upgrade-successful</link><guid>813468</guid><author>COINS NEWS</author><dc:content /><dc:text>Was the Fusaka upgrade successful</dc:text></item><item><title>Ethereal news weekly #6 | BPO2 upgrade increased blobs, write Roman Storm a letter of support, Octant epoch 10</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1q87awd/ethereal_news_weekly_6_bpo2_upgrade_increased/"> <img src="https://external-preview.redd.it/2zyY6e5Mf5R63ELydbdrYjrz_yIBJn5i9-GpP66kmzM.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=5a0bcc467e92ab01c45c72e2085e5e0169e799e6" alt="Ethereal news weekly #6 | BPO2 upgrade increased blobs, write Roman Storm a letter of support, Octant epoch 10" title="Ethereal news weekly #6 | BPO2 upgrade increased blobs, write Roman Storm a letter of support, Octant epoch 10" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/abcoathup"> /u/abcoathup </a> <br/> <span><a href="https://ethereal.news/ethereal-news-weekly-6/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q87awd/ethereal_news_weekly_6_bpo2_upgrade_increased/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/ethereal-news-weekly-6-bpo2-upgrade-increased-blobs-write-roman-storm-a-letter-of-support-octant-epoch-10</link><guid>813466</guid><author>COINS NEWS</author><dc:content /><dc:text>Ethereal news weekly #6 | BPO2 upgrade increased blobs, write Roman Storm a letter of support, Octant epoch 10</dc:text></item><item><title>Many product decisions are made blindly. Prediction surveys as an early market signal</title><description><![CDATA[<div class="md"><p>Hey! </p> <p>Many product decisions are made blindly.</p> <p>I wrote about why we’re building Heard and how prediction surveys can help teams hear the market earlier </p> <p><a href="https://medium.com/@kidav75/raison-d%C3%AAtre-heard-4e2ee2799e29">https://medium.com/@kidav75/raison-d%C3%AAtre-heard-4e2ee2799e29</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Kidav75"> /u/Kidav75 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q86d6a/many_product_decisions_are_made_blindly/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q86d6a/many_product_decisions_are_made_blindly/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/many-product-decisions-are-made-blindly-prediction-surveys-as-an-early-market-signal</link><guid>813469</guid><author>COINS NEWS</author><dc:content /><dc:text>Many product decisions are made blindly. Prediction surveys as an early market signal</dc:text></item><item><title>Is EIP-7702 really a step forward?</title><description><![CDATA[<div class="md"><p>Correct me if I&#39;m wrong, maybe I&#39;ve been out of touch with recent developments but I recently lost a lot of money and it&#39;s been 21 days of me trying to figure out how my wallet got compromised. I know for a fact, there&#39;s no way one will gain access to my wallet without my keys, so I am here baffled, studying EIP-7702 delegations and it just keeps getting scarier especially in my case where I know I didn&#39;t connect to any website to even prompt me to delegate my wallet to a third party, I can count and know the websites I have connected to. No record shows me giving delegation to the drainer but somehow they drained my wallet on deposit. The delegation transaction recorded I gave authorization exactly when the money came in, I wasn&#39;t even on my phone. It keeps getting messier for em and if anyone that&#39;s experienced would be willing to help me out please do reach out but it keeps bugging my mind, WHAT EVEN IS THE POINT OF THIS, IS IT REALLY A STEP FORWARD?</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/junaidisgood"> /u/junaidisgood </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q83fyz/is_eip7702_really_a_step_forward/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q83fyz/is_eip7702_really_a_step_forward/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/is-eip-7702-really-a-step-forward</link><guid>813470</guid><author>COINS NEWS</author><dc:content /><dc:text>Is EIP-7702 really a step forward?</dc:text></item><item><title>Daily General Discussion January 09, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q80eol/daily_general_discussion_january_09_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q80eol/daily_general_discussion_january_09_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-09-2026</link><guid>813342</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 09, 2026</dc:text></item><item><title>something that bothered me about on-chain settlement semantics</title><description><![CDATA[<div class="md"><p>this might be a stupid idea, so I’m posting it here before I waste more time on it</p> <p>one thing that has always bothered me about Ethereum is that everything settles gross by default</p> <p>in traditional systems netting happens before stuff is settled, on chain that never happens</p> <p>in the little vacation i&#39;ve had i tried to experiment with this stuff and created a set of contracts that submitted exec claims instead of transferring stuff immediately, everything enforced on-chain, nothing external</p> <p>that eventually connected to some other things that I also implemented:</p> <p>-explicit pricing for urgent execution (instead of mev/searchers implicitly pricing it)</p> <p>-and a crude on-chain clearing/default mechanism to make &quot;failure states&quot; deterministic</p> <p>i’m not convinced this is useful, or even coherent</p> <p>so, here&#39;s a few questions:</p> <p>does this break EVM mental models in a fundamental way?</p> <p>is exec-level netting just a bs rollup/batcher?</p> <p>is on-chain clearing without custody just nonsense?</p> <p>stuff isn&#39;t live anywhere i just want a sanity check before i try to make anything off it</p> <p>feel free to tear it apart or ask for more data</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Alternative_Bid_360"> /u/Alternative_Bid_360 </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q7zfvc/something_that_bothered_me_about_onchain/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q7zfvc/something_that_bothered_me_about_onchain/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/something-that-bothered-me-about-on-chain-settlement-semantics</link><guid>813343</guid><author>COINS NEWS</author><dc:content /><dc:text>something that bothered me about on-chain settlement semantics</dc:text></item><item><title>AMA: We’re DAMM Capital — a crypto-native DeFi asset manager</title><description><![CDATA[<div class="md"><h2>DAMM Capital — DeFi Frontier Lab</h2> <p>We’re a DeFi frontier lab from <strong>Buenos Aires, Argentina</strong>, building and operating <strong>self-custodial decentralized finance strategies</strong> for people and organizations that want real exposure to DeFi <strong>without having to become protocol experts</strong>.</p> <p>We started years ago doing <strong>algorithmic market making</strong> and <strong>Protocol Owned Liquidity (PoL)</strong>, and have grown into a broader <strong>on-chain asset manager</strong> serving institutions, DAOs, and companies alike.</p> <p>We believe DeFi is converging toward <strong>professional operators</strong>, much like traditional finance did — and that this only works if it’s built for the <strong>long term</strong>, not short-term incentives or hype.</p> <hr/> <h2>What We Do (at a Glance)</h2> <h3>Tokenized Investment Funds</h3> <p><em>On-chain, non-custodial, discretional, partially-algorithmic</em></p> <p><strong>DAMMstable</strong><br/> Market-neutral strategies for USD stablecoins.</p> <p><strong>DAMMeth</strong><br/> Market-neutral strategies for ETH holders.</p> <p><strong>DAMMop</strong><br/> OP-denominated algorithmic strategies.</p> <p><strong>DAMMbtc (upcoming)</strong><br/> BTC-focused strategies deployed via Ethereum and L2s.</p> <h3>DeFi-as-a-Service (DaaS)</h3> <p>DeFi execution for institutions, DAOs, and protocols.<br/> Treasury management, liquidity strategy design, and <strong>Protocol Owned Liquidity</strong>.<br/> Clients retain <strong>full ownership and control</strong> at all times.</p> <hr/> <h2>Our Values</h2> <p>We believe in the values of <strong>Ethereum</strong>. Our team is fully crypto-native and has been for years.</p> <p>We operate with a strict set of principles: no centralized exchanges, no off-chain custody, no opaque structures, and no token or emissions theater. Everything we do is transparent, verifiable, and non-custodial, designed so clients always retain control of their capital. We focus on <strong>risk-adjusted returns</strong>, build for the long term, and remain <strong>independent and aligned</strong> with the people who trust us with their capital.</p> <hr/> <h2>Links</h2> <p>Email: <a href="mailto:team@dammcap.finance">team@dammcap.finance</a><br/> Website: <a href="https://dammcap.finance">https://dammcap.finance</a><br/> Twitter / X: <a href="https://x.com/DAMM_Capital">https://x.com/DAMM_Capital</a><br/> LinkedIn: <a href="https://www.linkedin.com/company/damm-capital/">https://www.linkedin.com/company/damm-capital/</a><br/> Docs &amp; Research: <a href="https://docs.dammcap.finance">https://docs.dammcap.finance</a> </p> <hr/> <p><strong>AMA — happy to answer questions.</strong></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/DAMM_Capital_Team"> /u/DAMM_Capital_Team </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q7ih76/ama_were_damm_capital_a_cryptonative_defi_asset/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q7ih76/ama_were_damm_capital_a_cryptonative_defi_asset/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/ama-were-damm-capital-a-crypto-native-defi-asset-manager</link><guid>813249</guid><author>COINS NEWS</author><dc:content /><dc:text>AMA: We’re DAMM Capital — a crypto-native DeFi asset manager</dc:text></item><item><title>Polymarket And Delphi Digital Make History With Tradable Research</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1q7g8gh/polymarket_and_delphi_digital_make_history_with/"> <img src="https://external-preview.redd.it/00rJq2af6gYiEsmPUiKSov9SmlPU9_GDKoYpgCiLD28.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=04f63a21791779731e24be19ad55d8ca50ed1def" alt="Polymarket And Delphi Digital Make History With Tradable Research" title="Polymarket And Delphi Digital Make History With Tradable Research" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/UnstoppableWeb"> /u/UnstoppableWeb </a> <br/> <span><a href="https://www.forbes.com/sites/digital-assets/2026/01/08/polymarket-and-delphi-digital-make-history-with-tradable-research/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q7g8gh/polymarket_and_delphi_digital_make_history_with/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/polymarket-and-delphi-digital-make-history-with-tradable-research</link><guid>813251</guid><author>COINS NEWS</author><dc:content /><dc:text>Polymarket And Delphi Digital Make History With Tradable Research</dc:text></item><item><title>2026 Web3 Events Repository</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/positivmonitor"> /u/positivmonitor </a> <br/> <span><a href="https://www.thrilldlabs.io/blog-posts/2026-web3-event-repository">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q7dmjf/2026_web3_events_repository/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/2026-web3-events-repository</link><guid>813252</guid><author>COINS NEWS</author><dc:content /><dc:text>2026 Web3 Events Repository</dc:text></item><item><title>Friday Jan. 9th - 2pmET - "Blockchain and Belief" - Princeton Professors Roundtable</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1q7cjwt/friday_jan_9th_2pmet_blockchain_and_belief/"> <img src="https://external-preview.redd.it/Nmx4aDM5ZWh0NGNnMS7f8cTFY0JjyOSurZbJQquK3FCf8vKtPecSKfgB4aqu.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=9096b01c02316603c3528a15c4ca68d494cb64a2" alt="Friday Jan. 9th - 2pmET - &quot;Blockchain and Belief&quot; - Princeton Professors Roundtable" title="Friday Jan. 9th - 2pmET - &quot;Blockchain and Belief&quot; - Princeton Professors Roundtable" /> </a> </td><td> <div class="md"><p>Happy New Year <a href="/r/ethereum">r/ethereum</a>! We have a BANGER of an epsidode dropping LIVE on Youtube and X. Friday Jan. 9th - 2pmET - &quot;Blockchain and Belief&quot; - Princeton Professors Roundtable</p> <p>tl:dr: Go to <a href="http://dailydoots.com">dailydoots.com</a> and subscribe wherever you get your podcasts.</p> <p>This is a discussion about all things money, blockchain, religion, economics, and even a dash of the occult. We have some INCREDIBLE guests lined up from DeCenter of Princeton University led by Dr. Michael Maizels. Guests have wide ranging accolades from Dartmouth, Princeton, Yale, Geneva and more.</p> <p>I had the opportunity to be a guest at DeCenter/Princeton&#39;s &quot;Blockchain and Belief&quot; Conference back in November and had the privilege to represent our <a href="/r/ethereum">r/ethereum</a> and EVMavericks community with a deep dive on our Daily Doots system and our history of Hodlercons, Culture, Memes, and More. I promise...we&#39;re definitely not a cult.....definitely. If you missed it, this was my presentation at Princeton: <a href="https://youtu.be/0lLC9AJg6s0">https://youtu.be/0lLC9AJg6s0</a></p> <p>Got questions? Ask em right here on this thread!</p> <p><strong>Carolyn Biltoft</strong></p> <p>Carolyn Biltoft holds a PhD from Princeton University and is an Associate Professor of International History and Politics at the Geneva Graduate Institute. Carolyn writes and writes on the relationship between the history of epistemology and economic thought since the 18th century. Her acclaimed book <em>A Violent Peace: Truth, Media and Power at the League of Nations</em> explores media, propaganda, and truth claims in early global institutions and contains a chapter on counterfeit currency in the age of fascism. Carolyn is a founding editor of Capitalism: a journal of history and economics<a href="https://www.pennpress.org/journals/journal/capitalism/"> https://www.pennpress.org/journals/journal/capitalism/</a> </p> <p><strong>Andrew Chignell</strong></p> <p>Andrew Chignell is a professor at Princeton University&#39;s Center for Human Values, with appointments in Religion and Philosophy. His research spans Kant, philosophy of religion, ethics of belief, and topics like hope and despair. Recently, he has directed the Princeton Project in Philosophy and Religion and led efforts for a major cross-disciplinary grant on optimism, pessimism, hope, and despair. <a href="http://chignell.net">chignell.net</a></p> <p><strong>Devin P. Singh</strong></p> <p>Devin P. Singh holds a PhD from Yale University and is an Associate Professor of Religion at Dartmouth College. His work examines intersections of Christian thought with economy, politics, money, and secularization. Recent publications include the book <em>Economy and Modern Christian Thought</em> and an ongoing project on the religious and social roles of debt.<br/> <a href="http://devinsingh.com">devinsingh.com</a></p> <p><strong>Gordon Grant</strong> is a seasoned cryptocurrency trader and derivatives expert. Graduating from Princeton University with a focus on econometrics and quantitative finance, he built his early career as a derivatives portfolio manager before he discovered Bitcoin in 2013 and made a full pivot to digital assets, He played a pivotal role at Genesis Trading from 2019 to 2023 and Today Gordon serves as Principal at ChiSquared Technologies</p> <p><strong>Mike W Maizels</strong></p> <p>Mike Maizels (Michael Maizels) is the Executive Director of Princeton University&#39;s DeCenter for blockchain and decentralization research. With a background in interdisciplinary technology and societal change, he leads efforts to advance education, research, and policy around blockchain&#39;s potential to shift power structures. He co-directs major events like the DeCenter&#39;s annual Spring Conference on decentralization&#39;s infrastructure and implications.<br/> <a href="http://decenter.princeton.edu">decenter.princeton.edu</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jtnichol"> /u/jtnichol </a> <br/> <span><a href="https://v.redd.it/l5h4ivi8r4cg1">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q7cjwt/friday_jan_9th_2pmet_blockchain_and_belief/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/friday-jan-9th-2pmet-blockchain-and-belief-princeton-professors-roundtable</link><guid>813250</guid><author>COINS NEWS</author><dc:content /><dc:text>Friday Jan. 9th - 2pmET - "Blockchain and Belief" - Princeton Professors Roundtable</dc:text></item><item><title>Lost Your Validator Mnemonic? A Community Proposal to Recover BLS-Locked ETH</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1q7b9ce/lost_your_validator_mnemonic_a_community_proposal/"> <img src="https://b.thumbs.redditmedia.com/ZBuh5uE79Rl08T0A7Ko3AuKXZOsFSVEXzCMZTgLkWVQ.jpg" alt="Lost Your Validator Mnemonic? A Community Proposal to Recover BLS-Locked ETH" title="Lost Your Validator Mnemonic? A Community Proposal to Recover BLS-Locked ETH" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/uiui"> /u/uiui </a> <br/> <span><a href="/r/ethstaker/comments/1q77ejn/lost_your_validator_mnemonic_a_community_proposal/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q7b9ce/lost_your_validator_mnemonic_a_community_proposal/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/lost-your-validator-mnemonic-a-community-proposal-to-recover-bls-locked-eth</link><guid>813072</guid><author>COINS NEWS</author><dc:content /><dc:text>Lost Your Validator Mnemonic? A Community Proposal to Recover BLS-Locked ETH</dc:text></item><item><title>Daily General Discussion January 08, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q73z24/daily_general_discussion_january_08_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q73z24/daily_general_discussion_january_08_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-08-2026</link><guid>813071</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 08, 2026</dc:text></item><item><title>Does a Cyberscope Audit Prove FortisX.fi Is Secure in Web3?</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1q6smil/does_a_cyberscope_audit_prove_fortisxfi_is_secure/"> <img src="https://external-preview.redd.it/_OJQCp5np1vpE_0__Muuhd6PmkisUW72XyKGZ7IDE5U.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=e3abe399d933e191bbefb29d6d290e45a4ac6694" alt="Does a Cyberscope Audit Prove FortisX.fi Is Secure in Web3?" title="Does a Cyberscope Audit Prove FortisX.fi Is Secure in Web3?" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/lifemovesforward_"> /u/lifemovesforward_ </a> <br/> <span><a href="https://www.bitcoininsider.org/article/290237/independent-review-fortisxfi-strengthens-its-position-successful-cyberscope-audit">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q6smil/does_a_cyberscope_audit_prove_fortisxfi_is_secure/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/does-a-cyberscope-audit-prove-fortisxfi-is-secure-in-web3</link><guid>812955</guid><author>COINS NEWS</author><dc:content /><dc:text>Does a Cyberscope Audit Prove FortisX.fi Is Secure in Web3?</dc:text></item><item><title>Time-Bucketed Balance Records: Bounded-Storage Ephemeral Tokens for Resource-Constrained Systems</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/shaunscovil"> /u/shaunscovil </a> <br/> <span><a href="https://arxiv.org/pdf/2512.20962">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q6kmx8/timebucketed_balance_records_boundedstorage/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/time-bucketed-balance-records-bounded-storage-ephemeral-tokens-for-resource-constrained-systems</link><guid>812957</guid><author>COINS NEWS</author><dc:content /><dc:text>Time-Bucketed Balance Records: Bounded-Storage Ephemeral Tokens for Resource-Constrained Systems</dc:text></item><item><title>Options, futures, 0% interest loans, P2P Lending, personal AMM's, trading immune to sandwhich attacks via a new market structure - all no oracles or liquidation risk. Looking for feedback</title><description><![CDATA[&#32; submitted by &#32; <a href="https://www.reddit.com/user/Hooftly"> /u/Hooftly </a> <br/> <span><a href="/r/ethdev/comments/1q6iwx1/options_futures_0_interest_loans_p2p_lending/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q6iz01/options_futures_0_interest_loans_p2p_lending/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/options-futures-0-interest-loans-p2p-lending-personal-amms-trading-immune-to-sandwhich-attacks-via-a-new-market-structure-all-no-oracles-or-liquidation-risk-looking-for-feedback</link><guid>812956</guid><author>COINS NEWS</author><dc:content /><dc:text>Options, futures, 0% interest loans, P2P Lending, personal AMM's, trading immune to sandwhich attacks via a new market structure - all no oracles or liquidation risk. Looking for feedback</dc:text></item><item><title>Chainlink secures 80% of Ethereum's DeFi. Its Chief Scientist co-formalized Proof of Work in 1999.</title><description><![CDATA[<table> <tr><td> <a href="https://www.reddit.com/r/ethereum/comments/1q6gej8/chainlink_secures_80_of_ethereums_defi_its_chief/"> <img src="https://external-preview.redd.it/lXj9KMGnoXtGVmdR-gHLJbqfV1yijHHTtn5XwsKk9Fk.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=798ae2a050362ddaa558bd77179d1c422235d912" alt="Chainlink secures 80% of Ethereum's DeFi. Its Chief Scientist co-formalized Proof of Work in 1999." title="Chainlink secures 80% of Ethereum's DeFi. Its Chief Scientist co-formalized Proof of Work in 1999." /> </a> </td><td> <div class="md"><p>Chainlink started as an ERC-677 token on Ethereum in 2017. Today it secures over 80% of Ethereum&#39;s DeFi by Total Value Secured. Aave&#39;s $50B+ TVL in lending markets runs on Chainlink price feeds. Lido&#39;s $24B+ in liquid staked ETH relies on Chainlink oracles. Hundreds of other Ethereum protocols depend on Chainlink to function.</p> <p>The Chief Scientist behind it is Ari Juels, who co-formalized Proof of Work in a 1999 paper, NINE years before Bitcoin existed.</p> <p>SWIFT (11,500 partnering banks, $150 trillion moved annually) is building their onchain infrastructure using Chainlink. UBS completed the first production tokenized fund workflow with it. JPMorgan settled tokenized treasuries cross-chain through it.</p> <p>Yet Chainlink ranks outside the top 10 by market cap. In fact, they sit #20. Memecoins (yes, I include Ripple here) with no fundamental utility rank higher ☠️</p> <p>As an admitted Chainlink rabbit hole explorer, I have my biases. But I’ve spent considerable effort looking at the tech and the partnerships to understand why their decentralized oracle networks could be the missing link to institutional adoption of Ethereum and crypto writ large. I hope you won’t mind that I made an enthusiastic 28 minute video about it.</p> <p>Full disclosure: This is unpaid content but admittedly, I lean hyper bullish and the video shows it. I didn’t cover downside arguments such as the centralization concerns because I wanted to present the strongest possible case. Happy to take any comments and foster constructive discussion here! </p> <p>Watch my explainer here: <a href="https://youtu.be/dHiHR9jeuF8">https://youtu.be/dHiHR9jeuF8</a></p> <p>—————</p> <p>If we&#39;re meeting for the first time, hi ????! I find crypto youtube to be a giant cesspool. As a result, I started building my channel to spread the good word on good work in crypto — something with substance and humanity.</p> <p>Dropping a like, sub, and comment goes a LONG way to supporting me, so please consider doing so!</p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/haochizzle"> /u/haochizzle </a> <br/> <span><a href="https://youtu.be/dHiHR9jeuF8">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q6gej8/chainlink_secures_80_of_ethereums_defi_its_chief/">[comments]</a></span> </td></tr></table>]]></description><link>https://autodiscover.coinsnews.com/chainlink-secures-80-of-ethereums-defi-its-chief-scientist-co-formalized-proof-of-work-in-1999</link><guid>812790</guid><author>COINS NEWS</author><dc:content /><dc:text>Chainlink secures 80% of Ethereum's DeFi. Its Chief Scientist co-formalized Proof of Work in 1999.</dc:text></item><item><title>Daily General Discussion January 07, 2026</title><description><![CDATA[<div class="md"><p><strong>Welcome to the Daily General Discussion on</strong> <a href="/r/ethereum">r/ethereum</a></p> <p><a href="https://imgur.com/3y7vezP">https://imgur.com/3y7vezP</a></p> <p>Bookmarking this link will always bring you to the current daily: <a href="https://old.reddit.com/r/ethereum/about/sticky/?num=2">https://old.reddit.com/r/ethereum/about/sticky/?num=2</a></p> <p>Please use this thread to discuss Ethereum topics, news, events, and even <em>price</em>!</p> <p>Price discussion posted elsewhere in the subreddit will <strong>continue to be removed.</strong></p> <p>As always, be constructive. - <a href="https://www.reddit.com/r/ethereum/about/rules/">Subreddit Rules</a></p> <p>Want to stake? Learn more at <a href="/r/ethstaker">r/ethstaker</a></p> <p><strong>Community Links</strong></p> <ul> <li><a href="https://ethereum.org/en/community/get-involved/#ethereum-jobs">Ethereum Jobs</a>, <a href="https://x.com/ethereum">Twitter</a></li> <li><a href="https://www.youtube.com/@evmavericks">EVMavericks YouTube</a>, <a href="https://discord.gg/evmavericks">Discord</a>, <a href="https://evmavericks.libsyn.com/">Doots Podcast</a></li> <li><a href="https://dailydoots.com/">Doots Website</a>, Old Reddit <a href="https://github.com/etheralpha/ethfinance-extension">Doots Extension</a> by <a href="/u/hanniabu">u/hanniabu</a></li> </ul> <p>Calendar: <a href="https://dailydoots.com/events/">https://dailydoots.com/events/</a></p> </div> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EthereumDailyThread"> /u/EthereumDailyThread </a> <br/> <span><a href="https://www.reddit.com/r/ethereum/comments/1q67iu2/daily_general_discussion_january_07_2026/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/ethereum/comments/1q67iu2/daily_general_discussion_january_07_2026/">[comments]</a></span>]]></description><link>https://autodiscover.coinsnews.com/daily-general-discussion-january-07-2026</link><guid>812789</guid><author>COINS NEWS</author><dc:content /><dc:text>Daily General Discussion January 07, 2026</dc:text></item></channel></rss>