UNPKG

@funkit/connect

Version:

Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.

10 lines (9 loc) 280 B
import type { Address } from 'viem'; export declare function useAssetPrice({ chainId, assetTokenAddress, }: { chainId: string | undefined; assetTokenAddress: Address | undefined; }): { error: Error | null; isLoading: boolean; unitPrice: number | undefined; };