Retrieves the current fuel account and returns the account address <string | undefined>
.
const { account } = useAccount();
console.log(account);
// fuel1r20zhd...
Fetches the balance <number | undefined>
of a specified address and asset ID. Additionally, it includes a listener that triggers a balance refresh when the window gains focus.
const { balance } = useBalance({
address: 'fuel1r20zhd...',
assetId: '0x000000000...',
});
console.log(balance);
// 1000 (example balance)
Fetches information about the current Fuel network <ChainInfo | undefined>
.
const { chain } = useChain();
console.log(chain.name);
// beta-4
Facilitates the connection to the Fuel wallet. Allows selecting a connector by name. It also provides a function <UseMutateAsyncFunction<boolean | undefined>>
to initiate the connection and relevant mutation properties for managing the connection state.
const { connect } = useConnect();
const handleConnect = async () => {
await connect('exampleConnectorName');
};
handleConnect();
Retrieves a list of available connectors <Array<FuelWalletConnector>>
for connecting to Fuel.
const { connector } = useConnectors();
console.log(connectors);
Facilitates disconnection from the Fuel Wallet. It provides a function <UseMutateAsyncFunction<boolean | undefined>>
to initiate disconnection.
const { disconnect } = useDisconnect();
const handleDisconnect = async () => {
await disconnect();
};
handleDisconnect();
Checks whether the user is connected to the Fuel protocol. It provides a boolean indicating the connection.
const { isConnected } = useIsConnected();
console.log(isConnected);
// true
Asynchronously retrieves information about the connected node, checks compatibility with a specified version. The function returns isCompatible <boolean>
and node information.
const { isCompatible } = useNodeInfo();
Returns the provider from the Fuel object instance.
const { provider } = useProvider();
Retrieves transaction information associated with a specific transaction ID by using the provider.getTransaction
method.
const { transaction } = useTransaction({ txId: 'fuel1r20zhd...' });
Retrieves transaction receipts <TransactionResponse.Receipts>
associated with a specific transaction ID using the useFuel
hook.
const { transactionReceipts } = useTransactionReceipts({
txId: 'fuel1r20zhd...',
});
Retrieves wallet instance <FuelWalletLocked | undefined>
and ensures the presence of a valid address and fuel instance.
const { wallet } = useWallet({ address: 'fuel1r20zhd...' });