UNPKG

viem

Version:

TypeScript Interface for Ethereum

41 lines (37 loc) 1.38 kB
import type { Account } from '../../accounts/types.js' import type { Client } from '../../clients/createClient.js' import type { Transport } from '../../clients/transports/createTransport.js' import type { ErrorType } from '../../errors/utils.js' import type { Chain } from '../../types/chain.js' import type { RequestErrorType } from '../../utils/buildRequest.js' export type GetGasPriceReturnType = bigint export type GetGasPriceErrorType = RequestErrorType | ErrorType /** * Returns the current price of gas (in wei). * * - Docs: https://viem.sh/docs/actions/public/getGasPrice * - JSON-RPC Methods: [`eth_gasPrice`](https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_gasprice) * * @param client - Client to use * @returns The gas price (in wei). {@link GetGasPriceReturnType} * * @example * import { createPublicClient, http } from 'viem' * import { mainnet } from 'viem/chains' * import { getGasPrice } from 'viem/public' * * const client = createPublicClient({ * chain: mainnet, * transport: http(), * }) * const gasPrice = await getGasPrice(client) */ export async function getGasPrice< chain extends Chain | undefined, account extends Account | undefined, >(client: Client<Transport, chain, account>): Promise<GetGasPriceReturnType> { const gasPrice = await client.request({ method: 'eth_gasPrice', }) return BigInt(gasPrice) }