From 6ef04ac259083bc530c49bcb5ed4e5bbe2e39080 Mon Sep 17 00:00:00 2001 From: Cyrill Leutwiler Date: Thu, 9 Mar 2023 23:14:03 +0100 Subject: [PATCH] Include Solang as another way to run Solidity code The [solang compiler](https://github.com/hyperledger/solang) can be used to compile Solidity contracts to pallet-contracts compatible WASM contracts directly. It is compatible with the latest pallet-contracts version and ink! v4.0. Would be great to mention that in the README too :smile: --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 933f191..3b109cb 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Sumi is a binding generator specifically designed for [Astar Network](https://astar.network) ecosystem with XVM in mind. It takes EVM metadata and converts it to an ink! module that can later be used to call into original EVM smart contract. Reverse ink! to EVM mode is also supported but is highly experimental and should be considered as a PoC for now. -Please note that Sumi is not a transpiler, it's a binding generator. If you need to convert your existing Solidity smart contract to ink! please use [Sol2ink](https://github.com/Supercolony-net/sol2ink) instead. +Please note that Sumi is not a transpiler, it's a binding generator. If you need to convert your existing Solidity smart contract to ink! please use [Sol2ink](https://github.com/Supercolony-net/sol2ink) or the [solang compiler](https://github.com/hyperledger/solang) instead. # Why Sumi?