Skip to content

FuelLabs/sway

Folders and files

NameName
Last commit message
Last commit date

Latest commit

be5ecbd Β· Mar 5, 2025
Jun 5, 2023
Mar 5, 2025
Sep 18, 2024
Feb 5, 2025
Mar 4, 2025
Jan 25, 2025
Mar 3, 2025
Mar 4, 2025
Mar 1, 2025
Mar 1, 2025
Mar 1, 2025
Mar 1, 2025
Feb 11, 2025
Feb 22, 2025
Mar 4, 2025
Feb 17, 2025
Mar 5, 2025
Mar 4, 2025
Mar 1, 2025
Mar 5, 2025
Mar 4, 2025
Feb 28, 2025
Feb 27, 2025
Nov 15, 2024
Feb 28, 2025
Oct 16, 2024
Mar 5, 2025
Apr 26, 2024
Aug 26, 2024
Aug 9, 2023
Aug 9, 2023
Mar 3, 2025
Mar 5, 2025
Mar 5, 2025
Dec 12, 2021
Feb 19, 2025
Aug 21, 2024
May 9, 2024
Apr 29, 2024
Nov 3, 2022
May 4, 2023
Nov 4, 2024

Repository files navigation

Sway

build crates.io docs twitter 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/.

For Sway Standard library documentation, see: https://fuellabs.github.io/sway/master/std/

Also view the technical reference for the Sway programming language: https://fuellabs.github.io/sway/master/reference/

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 git@github.com: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.