Mirroring https://github.com/hyperledger-solang/solang

Samuel Moelius 8eac360fa7 Check command statuses in build.rs (#1778) 6 maanden geleden
.github 6f9b624573 Fix build and 1.86.0 clippies (#1790) 6 maanden geleden
docs 6f9b624573 Fix build and 1.86.0 clippies (#1790) 6 maanden geleden
examples 00bcabb6b9 Remove gpl files (#1616) 1 jaar geleden
fmt 6f9b624573 Fix build and 1.86.0 clippies (#1790) 6 maanden geleden
integration 279ee91126 Refactor Soroban decoding/encoding logic (#1752) 8 maanden geleden
solana-library aa9efe98e9 chore: fix typos (#1644) 1 jaar geleden
solang-parser 6f9b624573 Fix build and 1.86.0 clippies (#1790) 6 maanden geleden
src 6f9b624573 Fix build and 1.86.0 clippies (#1790) 6 maanden geleden
stdlib 11ceb8fab9 Make CI tests pass again (#1710) 9 maanden geleden
testdata 2bf9c04046 Fix CI: SPDX headers in shell scripts (#1638) 1 jaar geleden
tests 6f9b624573 Fix build and 1.86.0 clippies (#1790) 6 maanden geleden
vscode cf3e66ea7d fix: typos in documentation files (#1683) 9 maanden geleden
.dockerignore dd810b156f Update and fix target config file templates (#1546) 2 jaren geleden
.gitignore 07ad1a12b0 Add support for Soroban external calls 🎉 (#1679) 9 maanden geleden
.gitmodules 855b22bb22 Update tests to solc v0.8.22 and fix a few tests (#1579) 2 jaren geleden
.readthedocs.yaml b961ce1d26 Unbreak readthedocs build (#1304) 2 jaren geleden
CHANGELOG.md 5176166545 Move to new hyperledger-solang org 1 jaar geleden
CODEOWNERS 32a45ea1ef Add salaheldin to CODEOWNERS (#1678) 11 maanden geleden
CODE_OF_CONDUCT.md 3d8f6ba7af Add standard repo files 5 jaren geleden
CONTRIBUTING.md 3d8f6ba7af Add standard repo files 5 jaren geleden
Cargo.toml 6f9b624573 Fix build and 1.86.0 clippies (#1790) 6 maanden geleden
Dockerfile 6f9b624573 Fix build and 1.86.0 clippies (#1790) 6 maanden geleden
LICENSE 9d35806f37 Update license file to reflect that Solang is Apache-2.0 only 4 jaren geleden
MAINTAINERS.md cda91989d1 Add salaheldin to MAINTAINERS.md 1 jaar geleden
README.md 5176166545 Move to new hyperledger-solang org 1 jaar geleden
RELEASE_CHECKLIST.md 5176166545 Move to new hyperledger-solang org 1 jaar geleden
SECURITY.md 1ab0e6d503 Correct Hyperledger Defect Response link 4 jaren geleden
build.rs 8eac360fa7 Check command statuses in build.rs (#1778) 6 maanden geleden
clippy.toml bd48744e1f Reduce arguments passed around in sema by using ExprContext 3 jaren geleden

README.md

Solang Logo

solang - Solidity Compiler for Solana and Polkadot

Discord CI Documentation Status license LoC

Welcome to Solang, a new Solidity compiler written in rust which uses llvm as the compiler backend. Solang can compile Solidity for Solana and Polkadot Parachains with the contracts pallet. Solang is source compatible with Solidity 0.8, with some caveats due to differences in the underlying blockchain.

Solang is under active development right now, and has extensive documentation.

Solana

Please follow the Solang Getting Started Guide.

Solang is part of the Solana Tools Suite (version v1.16.3 and higher). There is no need to install it separately.

Installation

Solang is available as a Brew cask for MacOS, with the following command:

brew install hyperledger/solang/solang

For other operating systems, please check the installation guide.

Build for Polkadot

Run the following command, selecting the flipper example available on Solang's repository:

solang compile --target polkadot examples/polkadot/flipper.sol

Alternatively if you want to use the solang container, run:

docker run --rm -it -v $(pwd):/sources ghcr.io/hyperledger/solang compile -v -o /sources --target polkadot /sources/flipper.sol

You will have a file called flipper.contract. You can use this directly in the Contracts UI, as if your smart contract was written using ink!.

Tentative roadmap

Solang has a high level of compatibility with many blockchains. We are trying to ensure the compiler stays up to date with the newest Solidity syntax and features. In addition, we focus on bringing new performance optimizations and improve developer experience. Here is a brief description of what we envision for the next versions.

V0.4

Feature Status
Improve management over optimization passes Not started
Adopt single static assignment for code generation In progress
Support openzeppelin on Polkadot target In progress
Provide Solidity -> Polkadot porting guide Not started
Declare accounts for a Solidity function on Solana In progress
Tooling for calls between ink! <> solidity In progress
Provide CLI for node interactions Done

License

Apache 2.0