Business Insights
  • Home
  • Crypto
  • Finance Expert
  • Business
  • Invest News
  • Investing
  • Trading
  • Forex
  • Videos
  • Economy
  • Tech
  • Contact

Archives

  • August 2025
  • July 2025
  • June 2025
  • May 2025
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • August 2023
  • January 2023
  • December 2021
  • July 2021
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • July 2019
  • June 2019
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019

Categories

  • Business
  • Crypto
  • Economy
  • Finance Expert
  • Forex
  • Invest News
  • Investing
  • Tech
  • Trading
  • Uncategorized
  • Videos
Apply Loan
Money Visa
Advertise Us
Money Visa
  • Home
  • Crypto
  • Finance Expert
  • Business
  • Invest News
  • Investing
  • Trading
  • Forex
  • Videos
  • Economy
  • Tech
  • Contact
Announcing the Trillion Dollar Security Initiative
  • Forex

Roundup Round III | Ethereum Foundation Blog

  • August 31, 2025
  • Roubens Andy King
Total
0
Shares
0
0
0
Total
0
Shares
Share 0
Tweet 0
Pin it 0

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.
Total
0
Shares
Share 0
Tweet 0
Pin it 0
Roubens Andy King

Previous Article
Not all ETFs will fit your investing diet
  • Finance Expert

Not all ETFs will fit your investing diet

  • August 31, 2025
  • Roubens Andy King
Read More
Next Article
Bitcoin Price Lags Below 0K — On-Chain Levels To Watch
  • Crypto

Bitcoin Price Lags Below $110K — On-Chain Levels To Watch

  • August 31, 2025
  • Roubens Andy King
Read More
You May Also Like
XRP Price Enters Consolidation Before Next Major Breakout Move
Read More
  • Forex

XRP Price Enters Consolidation Before Next Major Breakout Move

  • Roubens Andy King
  • August 31, 2025
Venture Capital Firms Eyeing Revenue-Generating Crypto Projects
Read More
  • Forex

Venture Capital Firms Eyeing Revenue-Generating Crypto Projects

  • Roubens Andy King
  • August 31, 2025
Ethereum cofounder Joseph Lubin, ‘ETH will likely 100x from here’
Read More
  • Forex

Ethereum cofounder Joseph Lubin, ‘ETH will likely 100x from here’

  • Roubens Andy King
  • August 31, 2025
Bitcoin Price Closes Below STH Realized Price For The 2nd Time In 2025 — Details
Read More
  • Forex

Bitcoin Price Closes Below STH Realized Price For The 2nd Time In 2025 — Details

  • Roubens Andy King
  • August 31, 2025
Bitcoin No Longer Plays Gold’s Game
Read More
  • Forex

Bitcoin No Longer Plays Gold’s Game

  • Roubens Andy King
  • August 31, 2025
Bitcoin Risks Deeper Losses If 7,800 Line Fails To Hold – Details
Read More
  • Forex

Bitcoin Risks Deeper Losses If $107,800 Line Fails To Hold – Details

  • Roubens Andy King
  • August 31, 2025
Can BTCfi Keep Miners Secure?
Read More
  • Forex

Can BTCfi Keep Miners Secure?

  • Roubens Andy King
  • August 31, 2025
Whale Adds 5-M Ethereum As Institutional Demand Drives Market
Read More
  • Forex

Whale Adds $435-M Ethereum As Institutional Demand Drives Market

  • Roubens Andy King
  • August 31, 2025

Recent Posts

  • L B Foster Co (FSTR) Delivers First 320-Foot Rail Train to Lake State Railway
  • Kevin O’Leary reveals why Americans are fleeing to Canada — and it’s not because they dislike the US. Do you agree?
  • Are bonds back in focus as interest rates fall?
  • Analysts unveil surprising Dell stock target after slump
  • Microsoft deploys a custom Azure Integrated HSM chip across all servers to combat the $10.2 trillion cybercrime pandemic
Featured Posts
  • L B Foster Co (FSTR) Delivers First 320-Foot Rail Train to Lake State Railway 1
    L B Foster Co (FSTR) Delivers First 320-Foot Rail Train to Lake State Railway
    • August 31, 2025
  • Kevin O’Leary reveals why Americans are fleeing to Canada — and it’s not because they dislike the US. Do you agree? 2
    Kevin O’Leary reveals why Americans are fleeing to Canada — and it’s not because they dislike the US. Do you agree?
    • August 31, 2025
  • Are bonds back in focus as interest rates fall? 3
    Are bonds back in focus as interest rates fall?
    • August 31, 2025
  • Analysts unveil surprising Dell stock target after slump 4
    Analysts unveil surprising Dell stock target after slump
    • August 31, 2025
  • Microsoft deploys a custom Azure Integrated HSM chip across all servers to combat the .2 trillion cybercrime pandemic 5
    Microsoft deploys a custom Azure Integrated HSM chip across all servers to combat the $10.2 trillion cybercrime pandemic
    • August 31, 2025
Recent Posts
  • BTC Traders Remain Far From -12% Capitulation Zone
    BTC Traders Remain Far From -12% Capitulation Zone
    • August 31, 2025
  • XRP Price Enters Consolidation Before Next Major Breakout Move
    XRP Price Enters Consolidation Before Next Major Breakout Move
    • August 31, 2025
  • She Financed Her Daughter’s ,000 Car And Now Wants A HELOC To Pay It Off. Dave Ramsey Asked, ‘Are You A Multimillionaire?’
    She Financed Her Daughter’s $27,000 Car And Now Wants A HELOC To Pay It Off. Dave Ramsey Asked, ‘Are You A Multimillionaire?’
    • August 31, 2025
Categories
  • Business (2,002)
  • Crypto (1,396)
  • Economy (115)
  • Finance Expert (1,652)
  • Forex (1,394)
  • Invest News (2,288)
  • Investing (1,393)
  • Tech (1,986)
  • Trading (1,971)
  • Uncategorized (2)
  • Videos (805)

Subscribe

Subscribe now to our newsletter

Money Visa
  • Privacy Policy
  • DMCA
  • Terms of Use
Money & Invest Advices

Input your search keywords and press Enter.