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

salaheldinsoliman af3142447c soroban(fix): try fix CI tests (#1839) 1 mese fa
.github af3142447c soroban(fix): try fix CI tests (#1839) 1 mese fa
docs 1a53fc97d3 Typo fix in builtins.rst & types.rst (#1792) 4 mesi fa
examples f6307aeeb7 Release 0.3.4 London (#1811) 5 mesi fa
fmt 53202f876d Apply cargo fmt (#1813) 5 mesi fa
integration af3142447c soroban(fix): try fix CI tests (#1839) 1 mese fa
solana-library aa9efe98e9 chore: fix typos (#1644) 1 anno fa
solang-parser f6307aeeb7 Release 0.3.4 London (#1811) 5 mesi fa
src e2b90b2f18 Silence `mismatched_lifetime_syntaxes` lint (#1837) 1 mese fa
stdlib 11ceb8fab9 Make CI tests pass again (#1710) 9 mesi fa
testdata cdf32abd34 fix: typos in documentation files (#1745) 6 mesi fa
tests c07ac96e81 Fix: propagate strict_soroban_types and re-enable soroban_testcases (#1835) 1 mese fa
vscode 5b33677df0 chore: fix typos (#1820) 3 mesi fa
.dockerignore dd810b156f Update and fix target config file templates (#1546) 2 anni fa
.gitignore f6307aeeb7 Release 0.3.4 London (#1811) 5 mesi fa
.gitmodules 855b22bb22 Update tests to solc v0.8.22 and fix a few tests (#1579) 2 anni fa
.readthedocs.yaml b961ce1d26 Unbreak readthedocs build (#1304) 2 anni fa
CHANGELOG.md f6307aeeb7 Release 0.3.4 London (#1811) 5 mesi fa
CODEOWNERS b85f19d153 Move Lucas and Xermicus to Emeritus Maintainers (#1819) 4 mesi fa
CODE_OF_CONDUCT.md 3d8f6ba7af Add standard repo files 5 anni fa
CONTRIBUTING.md 3d8f6ba7af Add standard repo files 5 anni fa
Cargo.toml af3142447c soroban(fix): try fix CI tests (#1839) 1 mese fa
Dockerfile af3142447c soroban(fix): try fix CI tests (#1839) 1 mese fa
LICENSE 9d35806f37 Update license file to reflect that Solang is Apache-2.0 only 4 anni fa
MAINTAINERS.md b85f19d153 Move Lucas and Xermicus to Emeritus Maintainers (#1819) 4 mesi fa
README.md f6307aeeb7 Release 0.3.4 London (#1811) 5 mesi fa
RELEASE_CHECKLIST.md 5176166545 Move to new hyperledger-solang org 1 anno fa
SECURITY.md 1ab0e6d503 Correct Hyperledger Defect Response link 4 anni fa
build.rs 8eac360fa7 Check command statuses in build.rs (#1778) 6 mesi fa
clippy.toml 73b7dc6627 Rename `binary` to `bin` (#1802) 5 mesi fa

README.md

Solang Logo

solang - Solidity Compiler for Solana, Polkadot and Soroban

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, Soroban and the 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!.

Build for Soroban

Select one of the supported contracts for Soroban, available in on Solang's repository:

solang compile --target soroban examples/soroban/token.sol

You will have a file called token.wasm. Deploy it using the Stellar CLI, after following the Stellar CLI Setup Manual:

stellar contract deploy --source-account alice --wasm token.wasm --network testnet -- --_admin alice --_name SolangToken --_symbol SOLT --_decimals 18
ℹ️  Skipping install because wasm already installed
ℹ️  Using wasm hash b1c84d8b8057a62fb6d77ef55c9e7fb2e66c74136c7df32efd87a1c9d475f1b0
ℹ️  Simulating deploy transaction…
ℹ️  Transaction hash is fc3b1f00d2940e646d210e6e96347fd45dc8dd873009604ec67957edb6f6589d
🔗 https://stellar.expert/explorer/testnet/tx/fc3b1f00d2940e646d210e6e96347fd45dc8dd873009604ec67957edb6f6589d
ℹ️  Signing transaction: fc3b1f00d2940e646d210e6e96347fd45dc8dd873009604ec67957edb6f6589d
🌎 Submitting deploy transaction…
🔗 https://stellar.expert/explorer/testnet/contract/CDGUMUXA6IRRVMMKIVQJWLZZONDXBJ4AITHQS757PTBVAL4U54HI3KEW
✅ Deployed!
CDGUMUXA6IRRVMMKIVQJWLZZONDXBJ4AITHQS757PTBVAL4U54HI3KEW

Once deployed, copy the deployed contract ID and interact with it:

stellar contract invoke --network testnet --id CDGUMUXA6IRRVMMKIVQJWLZZONDXBJ4AITHQS757PTBVAL4U54HI3KEW  --source-account alice -- mint --to alice --amount 120
ℹ️  Signing transaction: e0d68ae85bfbe0fceed8bcadd6613e12b3159f27dbf7c18e35e94de2b4a11ee2

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
Support all Soroban examples In progress

License

Apache 2.0