The Hosted Compiler is a tool used to help Remix Online IDE to remotely compile contracts.
The Hosted Compiler is built by ApeWorX LTD.
If you have any questions please ask in our discord ApeWorX Discord server.
The compiler is built with Ape and FastAPI. It has multiple routes to engage the compiler in different parts of your journey to compiler the contract.
To show that it works, clone this repo and deploy the local host server with:
uvicorn main:app
Using the post route: Send an EthPM v3 (EIP-2678) compatible package manifest object containing the sources and compiler configurations you wish to compile with to this hosted service.
Wait for it compile and while you wait, you can use the task ID to check the status of it.
Once the status says success, you can use the get artifacts
route and return a package manifest containing all compilation artifacts for the sources that were provided.
NOTE: Only the supported compilers will appear in the resulting manifest.
Compiler Name | Supported |
---|---|
Solidity | No |
Vyper | Yes |
... | ... |
To use the docker implementation:
docker run -p 8000:8000 ghcr.io/apeworx/hosted-compiler:latest
Use the uvicorn
and the example client to assist in developing the hosted compiler.
Start the dev server using uvicorn
:
uvicorn main:app --reload
Then, run the example client, which compiles an example project:
ape run client