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

Archives

  • September 2025
  • 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
  • Crypto

C++ DEV Update – July edition

  • September 6, 2025
  • Roubens Andy King
Total
0
Shares
0
0
0
Total
0
Shares
Share 0
Tweet 0
Pin it 0

Since the last C++ DEV Update, a lot of things happened in the engine room which were not really visible to the outside. This post wants to give an overview about what we are currently working on.

Apart from the features side, Bob has been working on a proposed process for re-licensing of the C++ runtime client code to Apache 2.0, as has been mentioned a few times in the past month or two. Expect more news on that very soon.

Eth Unit-Test Mode

Not only because it is essential for being able to perform our Solidity end-to-end tests via IPC, Dimitry Khoklov and others added some new RPC endpoints to the eth client which allow much more flexibility for testing smart contracts. If you use eth –test -d /tmp/test and connect to the ipc port at /tmp/test/geth.ipc (we recommend using ethereum-console for that because it already has these features added) you can:

  • change the blockchain parameters (e.g. remove proof of work checking and pre-fund certain accounts)
  • mine a certain amount of blocks (at around 30 blocks per second)
  • modify the timestamp of the current block (to e.g. test timeouts in your contracts)
  • revert the blockchain to a given block number

This allows us to run our currently 305 Solidity end-to-end tests in around 46 seconds on a moderate computer. Each of these tests include at least two (often more) transactions and the same amount of mined blocks.

More information about these features can be found at https://github.com/ethereum/ethereum-console.

Please note that this is currently only available for the binary that is provided via the ubuntu dev ppa.

Virtual Machine Speedup

Greg Colvin spent the last months speeding up the C++ implementation of the EVM interpreter. He harvested what he calls the low-hanging fruits (he worked for Oracle on the Java interpreter before…).   The most important improvements so far have been replacing 256-bit calculations with 64-bit calculations for gas metering, and making sure that no more metering calculations are done for each VM operation than necessary.  These and other changes resulted in the following results for Paweł Bylica’s nascent benchmark suite. The following chart shows the speedup relative to the old cpp ethereum interpreter (cpp int (old)).

To be fair, we have to tell what these benchmarks measure. The first benchmark (where the evmjit goes off the scale with a speedup of 472x) does a million empty loops, and shows how slow the EVM’s computed goto is compared to the direct jump of a JIT – fixing that is next on the stack.  The second benchmark is a bad random number generator that does a million loops with four multiplications and four additions per loop.  It is dominated by 256-bit calculations, so a JIT makes less difference.  (Note that the Go JIT does not compile to native code, but to a faster interpreted representation.)

In practice, these speedups will only be relevant to “number-crunching” contracts because the computation time is otherwise largely dominated by storage access. On the other hand, the “rng” benchmark is quite similar to cryptographic operations which pulls such things further into the realm of actual on-chain implementations.

Paweł Bylica is working on a C-language interface between the virtual machine implementation and the client that hosts it, with the goal of being able to plug different VMs into an Ethereum client. This way, geth can also potentially benefit from our changes to the C++ virtual machine and especially from the LLVM just-in-time compiler.

Note that these changes are not yet released, but they are part of the ubuntu dev ppa.

Remix

Yann Levreau and Liana Husikyan are working on our new EVM debugger remix. We released the alpha version some days ago:

Application – Instructions

For now, you can “only” use it to inspect every single step in the execution of any transaction in the blockchain, look at the current stack, memory and storage contents and see the sequence of instructions. The next step will be to also allow source-level debugging where you can see the current position in the source code, step on line or instruction level and see the decoded values of the variables (instead of only the raw hex values).

The debugger is for you, the community, and we were delighted to hear that etherscan has already integrated Remix into their blockchain explorer.

Repository Reorganisation

Bob Summerwill is dedicated to bringing back C++-Ethereum to its former home, https://github.com/ethereum/cpp-ethereum and thus remove the unnecessary and confusing split into multiple sub-repositories. We are making great progress there, one of the first really visible steps was to decouple the testing infrastructure of Solidity from the virtual machine implementation. The Solidity tests can now be compiled without the virtual machine and they are run by communicating with a specially configured eth process (the one mentioned above) over the regular IPC interface.

The next steps here are to disentangle the rest of the code, modify the test automation and continuous integration accordingly and perform the actual move.

Together with this step, we unfortunately have to say goodbye to Mix and AlethZero (the spirit of mix will live on in the new remix project). The burden they drag along would be too big, because it includes Qt and a tight coupling with Solidity. As already explained in earlier posts, a loose IPC-based coupling of these tools to a small client implementation makes us much more flexible and the community support that comes with a change to JavaScript and Web-based tools like remix and browser-solidity is just overwhelming in comparison.

Formal Verification

We are extending the existing formal verification tools integrated with Solidity to cross-contract calls. This would enable automated proofs that e.g. a recursive call attack is not possible against a certain contract. Also, as why3 (the tool we use to do the heavy lifting) was recently ported to browsers, we can probably expect it to be available right inside browser-solidity and other tools like blockchain explorers!

There is a first proof of concept including explanations that shows how automated verification can be used to show that it is impossible to steal money from a solidity contract, even if recursive calls are allowed.

This proof of concept will hopefully evolve into a usable tool in the next weeks.


Several people from the community and from inside the Foundation are currently working on tools for Solidity or the EVM in general. These include:

  1. Solidity AST analysis for warnings by Dave Hoover (@redsquirrel)
  2. A Read-Eval-Print version of Solidity by raineorshine: Solidity-repl
  3. Control-flow analysis graph also by raineorshine
  4. EVM disassembler by Nick Johnson
Total
0
Shares
Share 0
Tweet 0
Pin it 0
Roubens Andy King

Previous Article
Taylor’s Summer Update | Ethereum Foundation Blog
  • Forex

Taylor’s Summer Update | Ethereum Foundation Blog

  • September 6, 2025
  • Roubens Andy King
Read More
Next Article
Ethereum spot ETFs see second-largest outflow surge ever
  • Forex

Ethereum spot ETFs see second-largest outflow surge ever

  • September 6, 2025
  • Roubens Andy King
Read More
You May Also Like
The Devcon2 site is now live!
Read More
  • Crypto

The Devcon2 site is now live!

  • Roubens Andy King
  • September 6, 2025
Bitcoin Price Holds Above 0,000—How Weak Job Data Could Fuel Next Wave
Read More
  • Crypto

Bitcoin Price Holds Above $110,000—How Weak Job Data Could Fuel Next Wave

  • Roubens Andy King
  • September 6, 2025
Who really controls Bitcoin’s price in 2025? Whales, devs or governments, explained
Read More
  • Crypto

Who really controls Bitcoin’s price in 2025? Whales, devs or governments, explained

  • Roubens Andy King
  • September 6, 2025
Ripple’s XRP Ledger Just Introduced A Pivotal Update In Its Quest For Dominance
Read More
  • Crypto

Ripple’s XRP Ledger Just Introduced A Pivotal Update In Its Quest For Dominance

  • Roubens Andy King
  • September 6, 2025
Offshore Crypto Exchange’s Won’t Use FBOT Framework To Do Business in US
Read More
  • Crypto

Offshore Crypto Exchange’s Won’t Use FBOT Framework To Do Business in US

  • Roubens Andy King
  • September 6, 2025
Trump-Tied Thumzup Raises M, Merges Dogecoin Mining With XRP Plans
Read More
  • Crypto

Trump-Tied Thumzup Raises $50M, Merges Dogecoin Mining With XRP Plans

  • Roubens Andy King
  • September 6, 2025
Decentralized Money Didn’t Come From Nowhere
Read More
  • Crypto

Decentralized Money Didn’t Come From Nowhere

  • Roubens Andy King
  • September 6, 2025
Bitcoin Reaches 2,900 Ahead of US Jobs Report
Read More
  • Crypto

Bitcoin Reaches $112,900 Ahead of US Jobs Report

  • Roubens Andy King
  • September 6, 2025

Recent Posts

  • The Devcon2 site is now live!
  • Bitcoin Price Vs. BTC Treasury Companies: Interesting 1:4 Ratio Pops Up
  • Bitcoin (BTC) Doesn’t Cheer Fed Cut Bets. What Next?
  • Bitcoin Price Holds Above $110,000—How Weak Job Data Could Fuel Next Wave
  • The most widely used Bitcoin strategy, explained
Featured Posts
  • The Devcon2 site is now live! 1
    The Devcon2 site is now live!
    • September 6, 2025
  • Bitcoin Price Vs. BTC Treasury Companies: Interesting 1:4 Ratio Pops Up 2
    Bitcoin Price Vs. BTC Treasury Companies: Interesting 1:4 Ratio Pops Up
    • September 6, 2025
  • Bitcoin (BTC) Doesn’t Cheer Fed Cut Bets. What Next? 3
    Bitcoin (BTC) Doesn’t Cheer Fed Cut Bets. What Next?
    • September 6, 2025
  • Bitcoin Price Holds Above 0,000—How Weak Job Data Could Fuel Next Wave 4
    Bitcoin Price Holds Above $110,000—How Weak Job Data Could Fuel Next Wave
    • September 6, 2025
  • The most widely used Bitcoin strategy, explained 5
    The most widely used Bitcoin strategy, explained
    • September 6, 2025
Recent Posts
  • Who really controls Bitcoin’s price in 2025? Whales, devs or governments, explained
    Who really controls Bitcoin’s price in 2025? Whales, devs or governments, explained
    • September 6, 2025
  • SUI Price To ? Analyst Predicts Altcoin’s Path To New ATH
    SUI Price To $7? Analyst Predicts Altcoin’s Path To New ATH
    • September 6, 2025
  • Ripple’s XRP Ledger Just Introduced A Pivotal Update In Its Quest For Dominance
    Ripple’s XRP Ledger Just Introduced A Pivotal Update In Its Quest For Dominance
    • September 6, 2025
Categories
  • Business (2,057)
  • Crypto (1,537)
  • Economy (120)
  • Finance Expert (1,687)
  • Forex (1,536)
  • Invest News (2,359)
  • Investing (1,482)
  • Tech (2,056)
  • Trading (2,024)
  • Uncategorized (2)
  • Videos (811)

Subscribe

Subscribe now to our newsletter

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

Input your search keywords and press Enter.