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

Cyrill Leutwiler 81c58a304b Release v0.2.0 Berlin (#1090) 3 ani în urmă
.github 1aa5263c66 Release v0.2.0 Berlin (#1090) 3 ani în urmă
docs 1aa5263c66 Release v0.2.0 Berlin (#1090) 3 ani în urmă
examples 6a055a8851 Create Solana's System Instruction library and 'solana-library' folder (#996) 3 ani în urmă
integration b52cb401ab Add basic `ink!` to solidity call integration test (#1087) 3 ani în urmă
solana-library c9c1f75c2c Solana NFT example (#1002) 3 ani în urmă
solang-parser 1aa5263c66 Release v0.2.0 Berlin (#1090) 3 ani în urmă
src 8de116f65b Encode custom width integers using the next power of two width (#1081) 3 ani în urmă
stdlib be65cc0397 Add check for SPDX headers (#1057) 3 ani în urmă
tests 8de116f65b Encode custom width integers using the next power of two width (#1081) 3 ani în urmă
vscode 5b2f7786a7 Small fixes (#1085) 3 ani în urmă
.dockerignore 3d9a197990 Rename scripts to build 4 ani în urmă
.gitignore 0344a87cf8 Feature ink metadata for substrate (#989) 3 ani în urmă
.gitmodules f2bbcbd954 test(parser): semantic & syntax tests from ethereum/solidity (#787) 3 ani în urmă
CHANGELOG.md 1aa5263c66 Release v0.2.0 Berlin (#1090) 3 ani în urmă
CODEOWNERS 3d8f6ba7af Add standard repo files 5 ani în urmă
CODE_OF_CONDUCT.md 3d8f6ba7af Add standard repo files 5 ani în urmă
CONTRIBUTING.md 3d8f6ba7af Add standard repo files 5 ani în urmă
Cargo.toml 1aa5263c66 Release v0.2.0 Berlin (#1090) 3 ani în urmă
Dockerfile fa484630e4 Require rust 1.63.0 3 ani în urmă
LICENSE 9d35806f37 Update license file to reflect that Solang is Apache-2.0 only 4 ani în urmă
MAINTAINERS.md 0cfb7f3de2 Add Cyrill to maintainers list (#917) 3 ani în urmă
README.md 1aa5263c66 Release v0.2.0 Berlin (#1090) 3 ani în urmă
RELEASE_CHECKLIST.md f1f90b538e Remove references to hyperledger-labs (#993) 3 ani în urmă
SECURITY.md 1ab0e6d503 Correct Hyperledger Defect Response link 4 ani în urmă
build.rs 38fe852e48 Faster checkouts and use the same version of rust everywhere (#1036) 3 ani în urmă
clippy.toml bd48744e1f Reduce arguments passed around in sema by using ExprContext 3 ani în urmă
requirements.txt 00cfbdf846 Add yul documentation (#855) 3 ani în urmă

README.md

Solang Logo

solang - Solidity Compiler for Solana and Substrate

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 Substrate. 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.

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.

Simple example

After installing the compiler, write the following to flipper.sol:

contract flipper {
	bool private value;

	constructor(bool initvalue) public {
		value = initvalue;
	}

	function flip() public {
		value = !value;
	}

	function get() public view returns (bool) {
		return value;
	}
}

Build for Solana

Run:

solang compile --target solana 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 solana /sources/flipper.sol

A file called flipper.abi and bundle.so. Now install @solana/solidity:

npm install @solana/solidity

Save the following to flipper.js:

const { Connection, LAMPORTS_PER_SOL, Keypair } = require('@solana/web3.js');
const { Contract, Program } = require('@solana/solidity');
const { readFileSync } = require('fs');

const FLIPPER_ABI = JSON.parse(readFileSync('./flipper.abi', 'utf8'));
const PROGRAM_SO = readFileSync('./bundle.so');

(async function () {
    console.log('Connecting to your local Solana node ...');
    const connection = new Connection('http://localhost:8899', 'confirmed');

    const payer = Keypair.generate();

    console.log('Airdropping SOL to a new wallet ...');
    const signature = await connection.requestAirdrop(payer.publicKey, LAMPORTS_PER_SOL);
    await connection.confirmTransaction(signature, 'confirmed');

    const program = Keypair.generate();
    const storage = Keypair.generate();

    const contract = new Contract(connection, program.publicKey, storage.publicKey, FLIPPER_ABI, payer);

    await contract.load(program, PROGRAM_SO);

    console.log('Program deployment finished, deploying the flipper contract ...');

    await contract.deploy('flipper', [true], storage, 17);

    const res = await contract.functions.get();
    console.log('state: ' + res.result);

    await contract.functions.flip();

    const res2 = await contract.functions.get();
    console.log('state: ' + res2.result);
})();

And now run:

node flipper.js

Build for Substrate

Run:

solang compile --target substrate flipper.sol

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

docker run --rm -it -v $(pwd):/sources ghcr.io/hyperledger/solang -v -o /sources --target substrate /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.2

Milestone Status
Solana SPL tokens compatibility Completed
Parse and resolve inline assembly Completed
Generate code for inline assembly Completed
Support latest Substrate production target Completed
Improve parser resilience Completed

V0.3

Milestone Status
Call Solana's Rust contracts from Solidity In progress
Improvements in overflow checking In progress
Support Solana's Program Derived Addresses In Progress
Call Solidity from Solana's Rust contracts Not started
Improve developer experience for Substrate Not started
Tooling for calls between ink! <> solidity Not started
Support chain extensions for Substrate Not started
Provide CLI for node interactions Not started

V0.4

Milestone Status
Improve management over optimization passes Not started
Specify values as "1 sol" and "1e9 lamports" In progress
Adopt single static assignment for code generation Not started
Support openzeppelin on Substrate target Not started
Provide Solidity -> Substrate porting guide Not started

License

Apache 2.0