# Optimizing Fuel Contract Calls When you call a contract function via the `fuels` SDK, it makes two essential network requests: 1. **Preparing the transaction**: This involves creating the transaction request, fetching dependencies for it and funding it properly. 1. **Sending the transaction**: This involves sending the transaction to the network and waiting for it to be confirmed. The below flowchart shows this entire process: ![Transaction Lifecycle in the SDK without prefetching](https://hackmd.io/_uploads/SyTujYFHke.png) The SDK will prepare the contract call _after_ the user has submitted the transaction at the application level. This is so the transaction is funded in it's finalised state. However this makes the chain feel slower than it actually is as we are making two network requests. This can be mitigated by preparing the contract call _before_ the user submits the transaction. If the transaction is prepared beforehand, the SDK only has to send the transaction to the network and wait for it to be confirmed. This reflects the actual speed of the chain to the user. You can experience this yourself by trying out this [demo](https://fuel-wallet-prefetch-experiment.vercel.app/). ![Transaction Lifecycle in the SDK with prefetching](https://hackmd.io/_uploads/By4hjtFrye.png) Because of the massive performance gains, we recommend this strategy for all contract calls. > Achieving this performance gain involved multiple optimisations. The steps outlined in this guide will help you gain a decent amount of performance (~2x), but will still not get you to the fastest possible time i.e. ~1.2s. The guide still doesn't cover one of the last optmisations. > Soon, we will make a new TS SDK release with a new helper and we will update this guide which will help you get there. Until then, you can go through the source code of the demo (File of interest is `Contract.tsx`): https://github.com/Dhaiwat10/fuel-wallet-prefetch-experiment ## Recommended Implementation > [!Tip] This is an example for React, but the same logic can be applied to any framework. We recommend creating a `usePrepareContractCall` hook: ```tsx import { FunctionInvocationScope, ScriptTransactionRequest } from "fuels"; import { useEffect, useState, useCallback, useRef } from "react"; export const usePrepareContractCall = (fn?: FunctionInvocationScope) => { const [preparedTxReq, setPreparedTxReq] = useState<ScriptTransactionRequest>(); const fnRef = useRef(fn); useEffect(() => { if (fn && fn !== fnRef.current) { fnRef.current = fn; (async () => { const txReq = await fn.fundWithRequiredCoins(); setPreparedTxReq(txReq); })(); } }, [fn]); const reprepareTxReq = useCallback(async () => { if (!fnRef.current) { return; } const txReq = await fnRef.current.fundWithRequiredCoins(); setPreparedTxReq(txReq); }, []); return { preparedTxReq, reprepareTxReq, }; }; ``` This hook will prepare the transaction request for your contract call beforehand, and you can use the `reprepareTxReq` function to reprepare the transaction request if needed. You can use this hook in your UI logic like this: ```tsx function YourPage() { // It is important to memoize the function call object. const incrementFunction = useMemo(() => { if (!contract || !wallet) return undefined; return contract.functions.increment_counter(amount); }, [contract, wallet, amount]); const { preparedTxReq, reprepareTxReq } = usePrepareContractCall(incrementFunction); const onIncrementPressed = async () => { if (preparedTxReq) { // Use the prepared transaction request if it is available. Much faster. await wallet.sendTransaction(preparedTxReq); } else { // Fallback to the regular call if the transaction request is not available. await contract.functions.increment_counter(1).call(); } /* * Reprepare the transaction request since the user may want to increment again. * This is important, since the old `preparedTxReq` will not be valid anymore * because it contains UTXOs that have been used among other things. * * You *must* re-prepare any prepared transaction requests whenever * the user does any transaction. */ await reprepareTxReq(); }; } ``` You can view the full code for this example [here](https://github.com/Dhaiwat10/fuel-wallet-prefetch-experiment/blob/main/src/components/Contract.tsx). ## Important Things to Note - You _must_ re-prepare any prepared transaction requests whenever the user does any transaction. This is because the prepared transaction request will contain UTXOs that have been used among other things, and will therefore not be valid anymore. - You _must_ memoize the function call object. This is because the function call object is used to prepare the transaction request, and if it is not memoized, the function call object will be recreated on every render, and the transaction request will not be prepared correctly.