@coin-voyage/paykit
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
13 lines (12 loc) • 336 B
TypeScript
import type { ChainType, CurrencyWithAmount } from "@coin-voyage/shared/types";
import { ROUTES } from "./routes";
export type InitState = {
payOrderId: string;
chainType: ChainType;
open: boolean;
walletId: string;
route?: ROUTES;
};
export type CurrencyAndQuoteID = CurrencyWithAmount & {
quoteId?: string;
};