Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

POC for getting fetch-and-compile functioning in the browser #5760

Draft
wants to merge 11 commits into
base: develop
Choose a base branch
from

Conversation

eggplantzzz
Copy link
Contributor

@eggplantzzz eggplantzzz commented Dec 6, 2022

This is a POC for getting fetch-and-compile working in the browser. The webpack configs created for this are kind of hacky with all the ridiculous shimming and a very narrow code path is attempted to avoid using the filesystem.

The biggest challenge was getting compile-solidity working in the browser. I wanted to leverage the CompilerSupplier infrastructure. I added a loadSoljson method and it was necessary to create a WebWorker in which to complete compilation as the browser would complain about not being able to use some of the web assembly api in the main thread. We pass the WebWorker the soljson and execute the compilation there before passing the result back to the main thread.

userSpecification &&
(fs.existsSync(userSpecification) || path.isAbsolute(userSpecification));
let useSpecifiedLocal: boolean | string | undefined;
if (!userSpecification) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There should be a better way to do this; currently this hack is here just to prevent disk access.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For now I changed this to just check for window.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant