browser-solc
browser-solc copied to clipboard
Solc in the browser.
Hello ! The link you use to gather the list of the solc json sources is a bit outdated, so I switched to a more recent link (https://ethereum.github.io/solc-bin/bin/list.js). Cheers
Hi there! Been using this for an in-browser Solidity browser and but can't seem to migrate to Solidity 0.5.x. It seems to be related to this issue of `import` and...
Allows browser-solc to work with soljson-v0.5.x+, tested up to soljson-v0.6.9+ current latest branch. Notes for new contract compilation format and solcjson latest version autoload.
Hey! I'd like to asynchronously load `browser-solc` on a webpage. Right now for non-IE browsers, the main handler is listening for `DOMContentLoaded` before it attaches `BrowserSolc` to `window` ([here](https://github.com/ericxtang/browser-solc/blob/master/src/index.js#L12-L14)). However,...
Solc Version Loaded: soljson-v0.4.25-nightly.2018.8.7+commit.cda3fbda.js ethereum.github.io/solc-bin/bin/soljson-v0.4.25-nightly.2018.8.7+commit.cda3fbda.js:1 Uncaught RangeError: Maximum call stack size exceeded at Object.Ueb [as dynCall_viiiiii] (ethereum.github.io/solc-bin/bin/soljson-v0.4.25-nightly.2018.8.7+commit.cda3fbda.js:12) at invoke_viiiiii (ethereum.github.io/solc-bin/bin/soljson-v0.4.25-nightly.2018.8.7+commit.cda3fbda.js:1) at Array.Yva (ethereum.github.io/solc-bin/bin/soljson-v0.4.25-nightly.2018.8.7+commit.cda3fbda.js:13) at Object.Fab [as dynCall_vi] (ethereum.github.io/solc-bin/bin/soljson-v0.4.25-nightly.2018.8.7+commit.cda3fbda.js:12) at invoke_vi...
Unable to compile simple contract on browser-solc with soljson version 0.4.20+ Testing on URL: https://s3.amazonaws.com/browser-solc.dappbench.com/index.html With code: ``` pragma solidity ^0.4.19; contract Sample { function Sample() { } } ```...