Retrieves the gas price for a transaction on a specific chain.
import { getGasPrice } from "thirdweb"; const gasPrice = await getGasPrice({ client, chain });
function getGasPrice(options: GetGasPriceOptions): Promise<bigint>;
let options: { chain: Chain; client: ThirdwebClient; percentMultiplier?: number;};
let returnType: Promise<bigint>;
A promise that resolves to the gas price as a bigint.