This guide will walk you through the process of setting up and using the Fuels-ts library in your front-end project.
We expect you to install the Fuel Toolchain before using this library. Follow this guide to get this installed.
To begin, you need to add the fuels
dependency to your project. You can do this using the following command:
pnpm add fuels@0.82.0
Note: Use version 0.82.0
to ensure compatibility with beta-5
network—check the docs .
If you are using bun, you'll need to add a trustedDependencies
field to your package.json
:
{
// ...
"trustedDependencies": ["@fuel-ts/fuel-core", "@fuel-ts/forc"]
}
This is to ensure that bun includes the fuel-core
and forc
binaries in your project.
IMPORTANT: We don't officially support
bun
yet; use it at your own risk.
With the Fuels dependency set up, you can now create a React component that will connect to the Fuel provider and retrieve the base asset balance for a given wallet address. Here's an example of how to do this:
import { BN, Provider, Wallet } from "fuels";
import { useEffect, useState } from "react";
function App() {
const [balance, setBalance] = useState(0);
useEffect(() => {
async () => {
const provider = await Provider.create("https://beta-5.fuel.network/graphql");
const myWallet = Wallet.fromAddress("0x...", provider);
myWallet.getBalances().then((data) => {
setBalance(new BN(data[0].amount).toNumber());
});
}()
}, []);
return <div>My Balance: {balance}</div>;
}
export default App;
For a quick test or just playing around, you can load it in your Web Apps straight from our CDN.
<script type="module">
import {
Wallet,
Provider,
} from "https://cdnjs.cloudflare.com/ajax/libs/fuels/0.82.0/browser.mjs";
const exec = async () => {
const provider = await Provider.create(
"https://beta-5.fuel.network/graphql",
);
const { name } = provider.getChain();
console.log(name);
};
exec();
</script>
At a high level, you can use the Fuel TypeScript SDK to build applications that can run computations on the Fuel Virtual Machine through interactions with smart contracts written in Sway.
For this interaction to work, the SDK must be able to communicate with a fuel-core
node; you have two options at your disposal:
The Testnet is a public network that allows you to interact with a Fuel Virtual Machine and is used for testing and development purposes.
[!NOTE] Latest Testnet Beta 5
https://beta-5.fuel.network/graphql
We have some useful resources for the Testnet:
In the example below, we connect a Provider to the latest testnet and create a new wallet from a private key.
Note: New wallets on the Testnet will not have any assets! You can use the Faucet to fund your wallet.
// #import { Provider, Wallet, FUEL_BETA_5_NETWORK_URL };
// Create a provider, with the Latest Testnet URL.
const provider = await Provider.create(FUEL_BETA_5_NETWORK_URL);
// Create our wallet (with a private key).
const PRIVATE_KEY = 'a1447cd75accc6b71a976fd3401a1f6ce318d27ba660b0315ee6ac347bf39568';
const wallet = Wallet.fromPrivateKey(PRIVATE_KEY, provider);
// Perform a balance check.
const balances = await wallet.getBalances();
// [{ assetId: '0x..', amount: bn(..) }, ..]
Firstly, you will need a local node running on your machine. We recommend one of the following methods:
In the following example, we create a provider to connect to the local node and sign a message.
// #import { Provider, Wallet };
// Create a provider.
const LOCAL_FUEL_NETWORK = 'http://127.0.0.1:4000/graphql';
const provider = await Provider.create(LOCAL_FUEL_NETWORK);
// Create our wallet (with a private key).
const PRIVATE_KEY = 'a1447cd75accc6b71a976fd3401a1f6ce318d27ba660b0315ee6ac347bf39568';
const wallet = Wallet.fromPrivateKey(PRIVATE_KEY, provider);
For a more in-depth, step-by-step guide on working with the wider Fuel ecosystem, check out the Developer Quickstart . This guide covers:
Installing all tools needed to develop with the Fuel ecosystem.
Writing your first Sway Project.
Deploying your contract.
Building a simple front-end dApp to interact with your deployed contract.