Icon HelpCircleForumIcon Link

⌘K

Icon HelpCircleForumIcon Link
Fuel Toolchain

Icon LinkThe Fuel Toolchain

The Fuel toolchain consists of several components.

Icon LinkForc (forc)

The "Fuel Orchestrator" Forc Icon Link is our equivalent of Rust's Cargo Icon Link. It is the primary entry point for creating, building, testing, and deploying Sway projects.

Icon LinkSway Language Server (forc-lsp)

The Sway Language Server forc-lsp is provided to expose features to IDEs. Installation instructions .

Icon LinkSway Formatter (forc-fmt)

A canonical formatter is provided with forc-fmt. Installation instructions . It can be run manually with

forc fmt

The Visual Studio Code plugin Icon Link will automatically format Sway files with forc-fmt on save, though you might have to explicitly set the Sway plugin as the default formatter, like this:

"[sway]": {
  "editor.defaultFormatter": "FuelLabs.sway-vscode-plugin"
}

Icon LinkFuel Core (fuel-core)

An implementation of the Fuel protocol, Fuel Core Icon Link, is provided together with the Sway toolchain to form the Fuel toolchain. The Rust SDK Icon Link will automatically start and stop an instance of the node during tests, so there is no need to manually run a node unless using Forc directly without the SDK.