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

Sean Young 3514264c78 v0.3.2 Brasília (#1496) преди 2 години
.github 03a420ca71 Use Ubuntu 20.04 rather than 22.04 (#1483) преди 2 години
docs 3514264c78 v0.3.2 Brasília (#1496) преди 2 години
examples de921953ee add contract author and version flags (#1392) преди 2 години
integration 4c5fc506f5 Solana: Allow address and bytes to be used as @seed (#1497) преди 2 години
solana-library 90c687ecb5 Fix incorrect deserialization (#1478) преди 2 години
solang-parser 3514264c78 v0.3.2 Brasília (#1496) преди 2 години
src 8d416ad129 Polkadot: Prevent storage initializers overwriting the contract input in scratch buf (#1501) преди 2 години
stdlib de11ed32ae Avoid overflow in transfer (#1485) преди 2 години
testdata 373cff71f2 Updates for Solidity 0.8.21 (#1473) преди 2 години
tests 8d416ad129 Polkadot: Prevent storage initializers overwriting the contract input in scratch buf (#1501) преди 2 години
vscode 5d1702d4bb Implement Goto Definition functionality in the language server (#1411) преди 2 години
.dockerignore 3d9a197990 Rename scripts to build преди 4 години
.gitignore 8180872ee9 Polkadot: Bubble up reverts (#1454) преди 2 години
.gitmodules c9e7abfb38 Rename Substrate to Polkadot (#1414) преди 2 години
.readthedocs.yaml b961ce1d26 Unbreak readthedocs build (#1304) преди 2 години
CHANGELOG.md 3514264c78 v0.3.2 Brasília (#1496) преди 2 години
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 3514264c78 v0.3.2 Brasília (#1496) преди 2 години
Dockerfile 03a420ca71 Use Ubuntu 20.04 rather than 22.04 (#1483) преди 2 години
LICENSE 9d35806f37 Update license file to reflect that Solang is Apache-2.0 only преди 4 години
MAINTAINERS.md 0cfb7f3de2 Add Cyrill to maintainers list (#917) преди 3 години
README.md b2e313ed80 Link to the Solana getting started guide (#1476) преди 2 години
RELEASE_CHECKLIST.md 75c4a9027c Update Release Checklist (#1442) преди 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 In progress

License

Apache 2.0