Skip to content

FuelLabs/sway

Folders and files

NameName
Last commit message
Last commit date
May 26, 2022
May 25, 2022
May 30, 2022
Apr 8, 2022
May 30, 2022
May 28, 2022
May 28, 2022
May 28, 2022
May 28, 2022
May 28, 2022
May 27, 2022
May 31, 2022
May 28, 2022
May 28, 2022
May 28, 2022
May 26, 2022
May 30, 2022
May 28, 2022
May 28, 2022
May 28, 2022
May 28, 2022
May 26, 2022
May 31, 2022
Apr 29, 2022
May 9, 2022
May 28, 2022
May 23, 2022
Dec 12, 2021
Mar 20, 2022
Sep 24, 2021

Repository files navigation

Sway

build crates.io docs discord

Sway is a language developed for the Fuel blockchain. It is heavily inspired by Rust and aims to bring modern language development and performance to the blockchain ecosystem.

Documentation

For user documentation, including installing release builds, see the Sway Book: https://fuellabs.github.io/sway/latest/.

Building from Source

This section is for developing the Sway compiler and toolchain. For developing contracts and using Sway, see the above documentation section.

Dependencies

Sway is built in Rust. To begin, install the Rust toolchain following instructions at https://www.rust-lang.org/tools/install. Then configure your Rust toolchain to use Rust stable:

rustup default stable

If not already done, add the Cargo bin directory to your PATH by adding the following line to ~/.profile and restarting the shell session.

export PATH="${HOME}/.cargo/bin:${PATH}"

Building Forc

Clone the repository and build the Sway toolchain:

git clone [email protected]:FuelLabs/sway.git
cd sway
cargo build

Confirm the Sway toolchain built successfully:

cargo run --bin forc -- --help

Contributing to Sway

We welcome contributions to Sway!

Please see the Contributing To Sway section of the Sway book for guidelines and instructions to help you get started.