Farooq Ahmad
Results
2
comments of
Farooq Ahmad
@chriseth when I use ``` var worker = new Worker("wasm_worker.js"); fetch('solc').then(response => response.arrayBuffer() ).then(bytes => WebAssembly.compile(bytes) ).then(mod => worker.postMessage(mod) ); ``` it shows another error `Uncaught (in promise) CompileError: WebAssembly.compile():...
I am totally frustrated, please help me to require solc for my react web app to add solidity compiler in the web.