- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
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)
|
|
}
|