UNPKG

@funkit/connect

Version:

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

12 lines (11 loc) 645 B
import type { FunCheckoutStep } from '../CheckoutModal/FunCheckoutStep'; import type { CheckoutModalCommonState, ModalStepInfo } from '../CheckoutModal/stepTransition'; /** * Per-step state for the perps transfer screen. Balances are not carried in on * navigation — the step reads them from the shared balance cache (see * {@link usePolymarketAccountBalances}), the same cache the deposit picker * populates, so there's no reload flash on entry. */ export type PerpsTransferState = CheckoutModalCommonState; export type PerpsTransferNext = null; export declare const PerpsTransferStepInfo: ModalStepInfo<FunCheckoutStep.PERPS_TRANSFER>;