SOLL
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
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...
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"; }...