UNPKG

@cyberk/hyperion-sdk

Version:

Hyperion SDK from Cyberk

10 lines (9 loc) 666 B
import type { QueryObserverOptions } from "@tanstack/query-core"; import { CHAIN_IDS } from "../constants"; import { getRegisteredNativeTokenDecimalsQueryKey } from "../query/getRegisteredNativeTokenDecimals"; export declare const useRegisteredNativeTokenDecimals: ({ factoryAddress, chainId, denom, options: observerOptions, }: { factoryAddress?: string; chainId: CHAIN_IDS; denom?: string; options?: Omit<QueryObserverOptions<number | undefined, Error, number | undefined, ReturnType<typeof getRegisteredNativeTokenDecimalsQueryKey>>, "queryKey" | "queryFn">; }) => import("@tanstack/react-query").DefinedUseQueryResult<number | undefined, Error>;