evm2near icon indicating copy to clipboard operation
evm2near copied to clipboard

evm2near compiles Solidity contracts into NEAR WebAssembly contracts.

Results 2 evm2near issues
Sort by recently updated
recently updated
newest added

Hi all, I have installed everything and am trying to execute the example in the README. ``` (base) sidsridhar@Siddarths-MacBook-Pro evm2near-master 2 % ./evm2near test/calc.sol -o calc.wasm -b wasi Failed to...

```Dart // SPDX-License-Identifier: Unlicense pragma solidity ^0.8.16; contract Calc { address public owner; uint256 public num; function multiply(address addr) public returns (address) { return addr; } } ``` The contract...