import type { EIP1193RequestFn, EIP1474Methods } from "viem"; /** * Retrieves the current gas price from the Ethereum network. * @param request - The EIP1193 request function. * @returns A promise that resolves to the gas price as a bigint. * @rpc * @example * ```ts * import { getRpcClient, eth_gasPrice } from "thirdweb/rpc"; * const rpcRequest = getRpcClient({ client, chain }); * const gasPrice = await eth_gasPrice(rpcRequest); * ``` */ export declare function eth_gasPrice(request: EIP1193RequestFn): Promise; //# sourceMappingURL=eth_gasPrice.d.ts.map