Docs

useEstimateGas

A hook to estimate the gas used by given transaction.

Example

import { useEstimateGas } from "thirdweb/react";
const { mutate: estimateGas, data: gasEstimate } = useEstimateGas();
// later
const estimatedGas = await estimateGas(tx);

Returns

A mutation object to estimate gas.