Solidity – Remix Issue: Uncaught JavaScript Exception: abort(“NO_DYNAMIC_EXECUTION was set, cannot eval

remixsolidity

The remix browser was working before.
I was getting "Origin http://localhost is not allowed by Access-Control-Allow-Origin.". SO, I added Allow-Control-Allow-Origin: * Chrome Extension.
But the remix stopped working then. Not sure, if this is related.

I have now, removed the extension and cleared the application storage. Still the issue persists.

enter image description here

Best Answer

Select the appropriate compiler version and try again.

Example:

If you're using -

    pragma solidity ^0.4.17;

then use the following compiler version -

    0.4.17+commit.bdeb9e52

Hope this helps someone!

Related Topic