@coin-voyage/paykit
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
13 lines (12 loc) • 576 B
TypeScript
import { RouteQuote, type ChainType, type PayOrder } from "@coin-voyage/shared/types";
interface PayOrderQuotesProps {
payOrder: PayOrder | undefined;
address: string | undefined;
chainType: ChainType | undefined;
}
export declare function usePayOrderQuotes({ payOrder, address, chainType }: PayOrderQuotesProps): {
quotes: RouteQuote[] | null | undefined;
isLoading: boolean;
refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise<import("@tanstack/react-query").QueryObserverResult<RouteQuote[] | null, Error>>;
};
export {};