Icon HelpCircleForumIcon Link

⌘K

Icon HelpCircleForumIcon Link

Icon LinkRunning a local Fuel node connected to Mainnet using P2P

Icon InfoCircle

Fuel is preparing for the next major client release, upgrading the network from version 0.40.x to 0.41.x. This will be a required upgrade for all node operators. The mainnet upgrade is scheduled for March 6. You can upgrade immediately to the 0.41.6 Icon Link release and sync with the current network using the latest release. This release brings database optimizations for some API queries. To take full advantage of these improvements, we recommend re-syncing the chain from the genesis block. While not mandatory, doing so will ensure the best performance.

Icon LinkInstallation

To install the Fuel toolchain, you can use the fuelup-init script. This will install forc, forc-client, forc-fmt, forc-lsp, forc-wallet as well as fuel-core in ~/.fuelup/bin.

curl https://install.fuel.network | sh
Icon InfoCircle

Having problems? Visit the installation guide Icon Link or post your question in our forum Icon Link.

Icon LinkGetting a mainnet Ethereum API Key

An API key from any RPC provider that supports the Sepolia network will work. Relayers will help listen to events from the Ethereum network. We recommend either Infura Icon Link or Alchemy Icon Link

The endpoints should look like the following:

Icon LinkInfura

https://mainnet.infura.io/v3/{YOUR_API_KEY}

Icon LinkAlchemy

https://eth-mainnet.g.alchemy.com/v2/{YOUR_API_KEY}

Note that using other network endpoints will result in the relayer failing to start.

Icon LinkUsing forc node to run a Mainnet Node

Icon InfoCircle

If you wish to still use the fuel-core binary directly, you can skip this section and continue with the steps below.

Make sure you have the latest version of fuelup installed or updated Icon Link. forc node abstracts all the flags and configuration options of the fuel-core binary and is intended for ease of use. To run a mainnet node using forc, you can use the following command:

forc node ignition

This command will prompt for two things:

  1. You will be asked to create a keypair if you don't already have one.
  2. You will be asked to provide an Ethereum RPC endpoint that you retrieved from the Getting a mainnet Ethereum API Key section above.

The default configuration is highlighted in green at the top of the command output.

If you want to specify a custom configuration, you can use the --help flag to see the available options. For example:

forc node ignition --help

Icon LinkDry-run mode

Users of this new plugin may want to review the parameters before running the node. To accommodate this, forc-node includes a dry-run mode, which can be enabled using:

forc-node --dry-run ignition

Instead of starting the node, this command will print the exact command that would be run, allowing you to verify the parameters beforehand.

Icon LinkUsing fuel-core binary to run a local node

If you wish to still use the fuel-core binary directly, you can follow the steps below.

Icon LinkGenerating a P2P Key

Generate a new P2P key pairing by running the following command:

fuel-core-keygen new --key-type peering
{
  "peer_id":"16Uiu2HAmEtVt2nZjzpXcAH7dkPcFDiL3z7haj6x78Tj659Ri8nrs",
  "secret":"b0ab3227974e06d236d265bd1077bb0522d38ead16c4326a5dff2f30edf88496",
  "type":"peering"
}
### Do not share or lose this private key! Press any key to complete. ###

Make sure you save this somewhere safe so you don't need to generate a new key pair in the future.

Icon LinkChain Configuration

To run a local node with persistence, you must have a folder with the following chain configuration files:

For simplicity, clone the repository Icon Link into the directory of your choice.

When using the --snapshot flag later, you can replace ./your/path/to/chain_config_folder with the ignition folder of the repository you just cloned ./chain-configuration/ignition/.

Icon LinkRunning a Local Node

First ensure your environments open files limit Icon Link ulimit is increased, example:

ulimit -S -n 32768
Icon InfoCircle

Please make sure you have the latest version Icon Link of the Fuel toolchain installed and properly configured before continuing.

Finally to put everything together to start the node, run the following command:

fuel-core run \
--enable-relayer \
--service-name fuel-mainnet-node \
--keypair {P2P_PRIVATE_KEY} \
--relayer {ETHEREUM_RPC_ENDPOINT} \
--ip=0.0.0.0 --port 4000 --peering-port 30333 \
--db-path ~/.fuel-mainnet \
--snapshot ./your/path/to/chain_config_folder \
--utxo-validation --poa-instant false --enable-p2p \
--bootstrap-nodes /dnsaddr/mainnet.fuel.network \
--sync-header-batch-size 50 \
--relayer-v2-listening-contracts=0xAEB0c00D0125A8a788956ade4f4F12Ead9f65DDf \
--relayer-da-deploy-height=20620434 \
--relayer-log-page-size=100 \
--sync-block-stream-buffer-size 30

For the full description details of each flag above, run:

fuel-core run --help

Icon LinkConnecting to the local node from a browser wallet

To connect to the local node using a browser wallet, import the network address as:

http://0.0.0.0:4000/v1/graphql