Icon HelpCircleForumIcon Link

⌘K

Icon HelpCircleForumIcon Link
Fuels CLI

Icon LinkFuels CLI

The quickest way to build full stack Fuel dApps.

  • fuels init — Creates a new fuels.config.ts file
  • fuels build — Build forc workspace and generate Typescript types for everything
  • fuels deploy — Deploy workspace contracts and save their IDs to JSON file
  • fuels dev — Start local Fuel Core node and build + deploy on every file change

Icon LinkGetting started

Imagine you have this file structure:

my-fuel-dapp # NextJS app or similar
├── sway-programs # Forc's workspace
│   ├── src
│   ├── ...
│   └── Forc.toml
├── public
│   └── ...
├── src
│   ├── app
│   ├── ...
├   └── sway-programs-api # Type-safe generated API
└── package.json

Icon LinkPrerequisites

The Fuel Toolchain Icon Link and its components (namely forc and fuel-core) are pre-requisite for several operations with the Fuels CLI. For example:

Follow the installation guide Icon Link if you don't have them installed already.

Icon LinkInstallation

Add it to your my-fuel-dapp project:

Icon LinkDouble-checking

Icon LinkNext Step

Use fuels init to create a fuel.config.ts file.