UNPKG

@aptos-labs/react

Version:

React library for Aptos applications.

9 lines 729 B
import { UseQueryOptions } from "../types/queries.js"; import { FetchFungibleAssetMetadataParameters, FetchFungibleAssetMetadataResult } from "@aptos-labs/js-pro"; export declare const getUseFungibleAssetMetadataQueryKey: (params: { network: string; asset?: string; }) => (string | undefined)[]; export type UseFungibleAssetMetadataQueryParameters = Partial<FetchFungibleAssetMetadataParameters> & UseQueryOptions<FetchFungibleAssetMetadataResult>; export declare function useFungibleAssetMetadata({ network, asset, ...queryOptions }?: UseFungibleAssetMetadataQueryParameters): import("@tanstack/react-query").UseQueryResult<FetchFungibleAssetMetadataResult, Error>; //# sourceMappingURL=useFungibleAssetMetadata.d.ts.map