SOLL icon indicating copy to clipboard operation
SOLL copied to clipboard

SOLL is a new compiler for generate Ewasm from solidity and yul. See a demo here: https://asciinema.org/a/ezJqNLicn5fya02zwu4VXIo8a

Results 32 SOLL issues
Sort by recently updated
recently updated
newest added

When I was navigating the decompiled wasm code from the Token example, I found that there is no multiplexer structure in the `main` function for dealing with appropriate calldata, which...

documentation

Here´s the original solidity source code: ``` // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // RUN: %soll %s contract HelloWorld { function sayHello() public pure returns (string) { return "Hello World"; }...