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

Sean Young 4dcc89b1aa Ensure the documentation can be built 3 年之前
.github 4dcc89b1aa Ensure the documentation can be built 3 年之前
docs 4dcc89b1aa Ensure the documentation can be built 3 年之前
examples 2a69dbe797 full_example.sol was a full example a long time ago 3 年之前
integration cf01ec9a98 Fix solana integration tests 3 年之前
solang-parser f2bbcbd954 test(parser): semantic & syntax tests from ethereum/solidity (#787) 3 年之前
src e22e008d3f Parse override(list) syntax on variable definition 3 年之前
stdlib 7d03fffdd4 Pushing onto two different arrays causes many reallocations 3 年之前
tests 000a509e81 Allow types to be called error (#843) 3 年之前
vscode 6fadcac1de Remove szabo and finney units 3 年之前
.dockerignore 3d9a197990 Rename scripts to build 4 年之前
.gitignore be73b62d98 Implement tests for unused variable detection 4 年之前
.gitmodules f2bbcbd954 test(parser): semantic & syntax tests from ethereum/solidity (#787) 3 年之前
CHANGELOG.md 077e9fc29e Nuremberg release 3 年之前
CODEOWNERS 3d8f6ba7af Add standard repo files 5 年之前
CODE_OF_CONDUCT.md 3d8f6ba7af Add standard repo files 5 年之前
CONTRIBUTING.md 3d8f6ba7af Add standard repo files 5 年之前
Cargo.toml e3a3f38aeb Fix parse location of FunctionCallBlock (#842) 3 年之前
Dockerfile 5c75bca16e Rust 1.59.0 is now required 3 年之前
LICENSE 9d35806f37 Update license file to reflect that Solang is Apache-2.0 only 4 年之前
MAINTAINERS.md 8bdda4ba44 Update MAINTAINERS.md (#703) 3 年之前
README.md 1cf0ecaaed Update the development progree in README (#737) 3 年之前
RELEASE_CHECKLIST.md 7fe9b50887 Barcelona Release 3 年之前
SECURITY.md 1ab0e6d503 Correct Hyperledger Defect Response link 4 年之前
build.rs da91ea4cf4 unify parser code 3 年之前
clippy.toml bd48744e1f Reduce arguments passed around in sema by using ExprContext 3 年之前
requirements.txt 8650b8ba1c Another atempt to make readthedocs work 4 年之前

README.md

solang - Solidity Compiler for Solana, Substrate, and ewasm

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, Substrate, and ewasm. Solang is source compatible with Solidity 0.7, with some caveats due to differences in the underlying blockchain.

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

Simple example

First build Solang or use the container, then 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 --target solana flipper.sol

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

docker run --rm -it -v $(pwd):/sources ghcr.io/hyperledger-labs/solang -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], program, 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 --target substrate flipper.sol

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

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

You will have a file called flipper.contract. You can use this directly in the Polkadot 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
Specify values as "1 sol" and "1e9 lamports" In progress
Solana SPL tokens compatibility In progress

V0.3

Milestone Status
Call Rust contracts from Solidity Not started
Parse and resolve inline assembly Completed
Improvements in overflow checking Not started

V0.4

Milestone Status
Call Solidity from Rust Not started
Generate code for inline assembly Not started
Improve management over optimization passes Not Started
Dead code elimination Not started
ewasm target Not started

License

Apache 2.0