Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    Czech police arrest infamous darknet operator in Bitcoin-for-favors scandal

    August 15, 2025

    EOS founder Dan Larimer predicts biblical apocalypse next week

    August 15, 2025

    Web3 esports platform Miomi Game integrates AUSD on Polygon

    August 15, 2025
    Facebook X (Twitter) Instagram
    Ai Crypto TimesAi Crypto Times
    • Altcoins
      • Bitcoin
      • Coinbase
      • Litecoin
    • Blockchain
    • Crypto
    • Ethereum
    • Lithosphere News Releases
    X (Twitter) Instagram YouTube LinkedIn
    Ai Crypto TimesAi Crypto Times
    Home » Roundup Round III | Ethereum Foundation Blog

    Roundup Round III | Ethereum Foundation Blog

    Michael JohnsonBy Michael JohnsonJuly 22, 2025No Comments6 Mins Read
    Facebook Twitter Pinterest LinkedIn Tumblr Reddit Telegram Email
    Share
    Facebook Twitter LinkedIn Pinterest Email


    Over the last month and a half we saw vigorous ongoing research and development on all sides of the Ethereum roadmap, and progress is rapidly starting to translate into real results that can be run and verified inside of an Ethereum client.

    On Metropolis:

    • Agendas for core dev meetings 15 and 16 here: https://github.com/ethereum/pm/issues/13 and https://github.com/ethereum/pm/issues/14
    • List of accepted EIPs here: https://github.com/ethereum/EIPs/blob/master/README.md (mostly agreed on, though we are still going back and forth on details such as gas costs)
    • Most of the EIPs have been implemented in C++ and Python and are being implemented in other clients; tests are being actively written and added here https://github.com/ethereum/tests/tree/develop/GeneralStateTests (see the various branches for different tests)
    • Clients that have not implemented GeneralStateTests could provide a docker image for   Hive testing (contact Martin Swende). All GeneralStateTests are being converted into BlockChainTests and run on Hive.
    • A release date has still not been finalized; the general consensus is to wait until all tests are passing on major clients before setting one. Because of the rapid increases in block difficulty, the ice age continues to be delayed; current prognosis assuming no further increases (arguably a very pessimistic estimate) is that block times will not exceed 20s until July 12, and will not exceed 30s until Sep 12.

    The Ethereum blockchain has hit several new all-time highs:

    • Difficulty (450 TH) and hashrate (28.5 TH)
    • Transactions per day (187115, or ~2.16 per sec)
    • Gas usage per day has not yet reached the all-time high of Jun 18, when the blockchain was heavily spammed as part of the DAO attack and various counterattacks, but is nearing it with an 11-month high of 10.7 billion per day. That’s 1991878 gas per block, or ~45% full blocks for the day (reminder: gas limits are dynamically adjusting, so congestion with rapidly increasing fees is not likely) . Uncle rate on that day was only ~7.4%.

    On various side projects:

    • ENS has been deployed, and auctions are ongoing.
    • Whisper is getting a proper API, which is in alignment with our general RPC, the API should be ready soon and a workable whisper version will be released.

      • Swarm has made a number of significant improvements, including (i) supporting directory upload and download via the http interface, (ii) full FUSE support, (iii) a new protocol pss for node-to-node messaging, (iv) replacing the chunk hash with a Merkle tree hash to enable more efficient data inclusion proofs. Progress toward POC3 is going at full steam.

    Pyethereum development has picked up quickly:

    • Jan Xie and his team have successfully synced a pyethapp node to the most recent block on the mainnet.
    • Several bugs in the implementation have been fixed, and the client is now passing all state tests and most pre-Metropolis blockchain tests. Work to find the remaining issues is ongoing.
    • Most Metropolis EIPs have been implemented, including the four new precompiles.
    • The tester module has been revamped so that it is fully based on the Chain module, and a new and more convenient interface has been added, including functionality such as creating state tests.

    Casper research is now in the process of fine-tuning the incentives for liveness, and implementing the logic inside of pyethereum. This includes:


    Other research stuff:


    Geth development:

    • Removed the artificial 20 shannon minimum gas limit from the transaction pool, enabling Geth nodes to accept and relay arbitrarily priced transactions. This should help enable a real gas market.
    • Identified a sync regression for HDD users, resulting in a heavy rewrite of fast sync code, making it much more robust and stable.
    • Identified and fixed a few EVM bottlenecks, causing complex contracts to execute up to 60% faster doing up to 95% less memory allocations.
    • Polishing the light client and its mobile bindings in collaboration with Status, Walleth and others. Preliminary proof-of-concept done for light client event retrievals.
    • Working on a new filtering mechanism, with very promising results, reducing the time required to filter the entire blockchain for contract events from minutes to seconds.
    • Investigating a new mining strategy, which should move transaction processing for miners completely parallel to mining, hence reducing the overhead of transaction inclusion to 0. This should permit miners to lower fees without transactions impacting the probability of finding blocks and/or having them included.
    • Slowly adding minor polishes to Puppeth, Clique and Rinkeby, such as a tiered faucet for Ether withdrawals, configurable gas dynamics for private network miners and automatic ENS integration.
    • An external security-audit has been performed by Truesec AB. No critical issues were found.

    C++ development:

    • the monitoring node achieved a full sync to the mainnet
    • metropolis EIPs are almost complete
    • work on fast sync and snapshot sync has begun
    • Testeth tool has new option –statediff for debug information on a praticular test case as well as new test format  GeneralStateTests (enhancement of the old statetests) [4074]

    Remix:

    • almost finished a new static analysis module that can detect reentrancy bugs (externally contributed by “soad003”) [508]
    • added a folder view to show open files inside folders – files imported via e.g. import “github.com/ethereum/solidity/std/StandardToken.sol”; are now visible in the folder view [449]
    • debugger can now display mappings [498]
    • rearranged tabs to provide better overview [496]

    Solidity:

    • we released the unified standard json interface to interact with the compiler [1639]
    • added “interface contract” feature[1688]
    • added some more safety checks: statements without effect, and unary plus and unused variables [2139, 2152, 2199]
    • further work on the new intermediate language including web assembly and EVM1.5 backends [2129 and lots more]
    • almost finished work on exporting and especially also importing the AST (this will allow mutation testing and lots of other extensions) [1810 and others]

    Mist:

    • Decouple geth specific hard-coded node and network handling, allow for arbitrary nodes and networks defined by local or remote clientBinaries.json
    • Refactor of the settings backend in preparation for a settings UI
    • Added macOS and Windows Code-Signing, preparing github/swarm based auto-updater
    • Many of the audit findings will incorporated in the coming releases

    Changes to the provider will make Mist and other Projects like MetaMask and status.im more future proof, as developers don’t need to depend on high level libraries not changing over time. There will be a few announcements concerning the new provider. Discussion about that is happening at https://github.com/ethereum/interfaces/issues/16

    Web3.js:

    • We are currently adding generation and signing with private keys right into web3.js. So that you can easily create wallets and sign messages in your dapps. You can find the current experimental docs here: http://web3js.readthedocs.io/en/1.0/web3-eth-accounts.html
    • The next steps will be adding @maiavictor’s swarm library and the new whisper API and the new web3.js should be ready for test drive by the community.



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Michael Johnson

    Related Posts

    Join Us: EF Protocol Reddit AMA – August 29th, 2025

    August 15, 2025

    SIGN price soars 11% as Sign Foundation completes $12M token buyback

    August 13, 2025

    Fear & Greed Index hits 63 as Bitcoin, ETH, and SOL rebound

    August 7, 2025
    Leave A Reply Cancel Reply

    Don't Miss

    Czech police arrest infamous darknet operator in Bitcoin-for-favors scandal

    Crypto August 15, 2025

    The man behind Sheep Marketplace, a defunct darknet hub, now faces fresh charges after allegedly…

    EOS founder Dan Larimer predicts biblical apocalypse next week

    August 15, 2025

    Web3 esports platform Miomi Game integrates AUSD on Polygon

    August 15, 2025

    VCs secretly cashed out rewards on ‘locked’ EIGEN tokens

    August 15, 2025
    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo
    Our Picks

    AGII Develops Adaptive Intelligence Layers to Improve Web3 Workflow Precision

    August 15, 2025

    Imagen Network Enhances Content Discovery and Interaction with Grok AI Integration

    August 15, 2025

    Imagen Network Integrates Grok AI to Deliver More Personalized and Engaging Social Experiences

    August 14, 2025

    Imagen Network (IMAGE) Boosts User Engagement Using XRP for Instant Social Transactions

    August 13, 2025

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    Demo
    • Popular
    • Recent
    • Top Reviews

    Polyhedra’s ZKJ token collapses following ‘abnormal on-chain activity’

    June 17, 2025

    Polyhedra’s ZKJ token collapses following ‘abnormal on-chain activity’

    June 17, 2025

    Colle AI Releases Design-Focused NFT Tools for Real-Time Creator Prototyping

    June 17, 2025

    Czech police arrest infamous darknet operator in Bitcoin-for-favors scandal

    August 15, 2025

    EOS founder Dan Larimer predicts biblical apocalypse next week

    August 15, 2025

    Web3 esports platform Miomi Game integrates AUSD on Polygon

    August 15, 2025
    Latest Galleries
    [latest_gallery cat="all" number="5" type="slider"]
    Latest Reviews
    Demo
    Top Posts

    AGII Develops Adaptive Intelligence Layers to Improve Web3 Workflow Precision

    August 15, 20250 Views

    Imagen Network Enhances Content Discovery and Interaction with Grok AI Integration

    August 15, 20250 Views

    Imagen Network Integrates Grok AI to Deliver More Personalized and Engaging Social Experiences

    August 14, 20250 Views

    Imagen Network (IMAGE) Boosts User Engagement Using XRP for Instant Social Transactions

    August 13, 20250 Views
    Don't Miss

    Czech police arrest infamous darknet operator in Bitcoin-for-favors scandal

    Crypto August 15, 2025

    The man behind Sheep Marketplace, a defunct darknet hub, now faces fresh charges after allegedly…

    EOS founder Dan Larimer predicts biblical apocalypse next week

    August 15, 2025

    Web3 esports platform Miomi Game integrates AUSD on Polygon

    August 15, 2025

    VCs secretly cashed out rewards on ‘locked’ EIGEN tokens

    August 15, 2025
    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    Demo
    Top Posts

    Bitcoin.com Wallet Earns WalletConnect Certified Badge! | by Bitcoin.com | Jul, 2025

    July 18, 202565 Views

    Justin Sun sues Bloomberg after report claims he owns 60% of TRON tokens

    August 14, 202538 Views

    SIGN price soars 11% as Sign Foundation completes $12M token buyback

    August 13, 202514 Views

    ProfitFarmers Review – Is it Legit? July 2025

    July 7, 20251 Views
    Don't Miss

    Czech police arrest infamous darknet operator in Bitcoin-for-favors scandal

    Crypto August 15, 2025

    The man behind Sheep Marketplace, a defunct darknet hub, now faces fresh charges after allegedly…

    EOS founder Dan Larimer predicts biblical apocalypse next week

    August 15, 2025

    Web3 esports platform Miomi Game integrates AUSD on Polygon

    August 15, 2025

    VCs secretly cashed out rewards on ‘locked’ EIGEN tokens

    August 15, 2025
    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    X (Twitter) Instagram YouTube LinkedIn
    Our Picks

    Czech police arrest infamous darknet operator in Bitcoin-for-favors scandal

    August 15, 2025

    EOS founder Dan Larimer predicts biblical apocalypse next week

    August 15, 2025

    Web3 esports platform Miomi Game integrates AUSD on Polygon

    August 15, 2025
    Recent Posts
    • Czech police arrest infamous darknet operator in Bitcoin-for-favors scandal
    • EOS founder Dan Larimer predicts biblical apocalypse next week
    • Web3 esports platform Miomi Game integrates AUSD on Polygon
    • VCs secretly cashed out rewards on ‘locked’ EIGEN tokens
    • Federal Reserve drops program that increased banks scrutiny of crypto
    © 2025 - 2026

    Type above and press Enter to search. Press Esc to cancel.