A hook to estimate the gas for a given transaction.
import { useEstimateGas } from "thirdweb/react";const { mutate: estimateGas, data: gasEstimate } = useEstimateGas();// laterconst estimatedGas = await estimateGas(tx);
A mutation object to estimate gas.