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

Sean Young 96a1cc842a Appease rust 1.78.0 clippies (#1643) пре 1 година
.github 10c6e57c78 Add GitHub ARM64 runners (#1642) пре 1 година
docs 9c06f58296 Update the Hyperledger Solang logo (#1641) пре 1 година
examples 00bcabb6b9 Remove gpl files (#1616) пре 1 година
integration be8cc2193f Fix subxt integration test off-by-one test case (#1640) пре 1 година
solana-library 2c29fd7571 Add function annotations 🚀 (#1557) пре 2 година
solang-parser 0bea68ce28 Fix `1.76` clippies (#1626) пре 1 година
src 96a1cc842a Appease rust 1.78.0 clippies (#1643) пре 1 година
stdlib 45f01b4718 Implement string.concat() and bytes.concat() (#1590) пре 2 година
testdata 2bf9c04046 Fix CI: SPDX headers in shell scripts (#1638) пре 1 година
tests 96a1cc842a Appease rust 1.78.0 clippies (#1643) пре 1 година
vscode d409c1e152 Bump dependencies (#1634) пре 1 година
.dockerignore dd810b156f Update and fix target config file templates (#1546) пре 2 година
.gitignore 8180872ee9 Polkadot: Bubble up reverts (#1454) пре 2 година
.gitmodules 855b22bb22 Update tests to solc v0.8.22 and fix a few tests (#1579) пре 2 година
.readthedocs.yaml b961ce1d26 Unbreak readthedocs build (#1304) пре 2 година
CHANGELOG.md 0f032dcec2 Bump polkadot node version (#1617) пре 1 година
CODEOWNERS c9e7abfb38 Rename Substrate to Polkadot (#1414) пре 2 година
CODE_OF_CONDUCT.md 3d8f6ba7af Add standard repo files пре 5 година
CONTRIBUTING.md 3d8f6ba7af Add standard repo files пре 5 година
Cargo.toml d409c1e152 Bump dependencies (#1634) пре 1 година
Dockerfile 5cab937c1e MSRV 1.74 (#1625) пре 1 година
LICENSE 9d35806f37 Update license file to reflect that Solang is Apache-2.0 only пре 4 година
MAINTAINERS.md cda91989d1 Add salaheldin to MAINTAINERS.md пре 1 година
README.md 3aa48c9b18 Documentation: Solang Aqd (#1588) пре 2 година
RELEASE_CHECKLIST.md b6b3f5f7bb Fix common lsp panics (#1575) пре 2 година
SECURITY.md 1ab0e6d503 Correct Hyperledger Defect Response link пре 4 година
build.rs 200560e189 Enable tests for stdlib (#1299) пре 2 година
clippy.toml bd48744e1f Reduce arguments passed around in sema by using ExprContext пре 3 година

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