@swype-org/react-sdk 0.2.364 → 0.2.375
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +331 -99
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +43 -1
- package/dist/index.d.ts +43 -1
- package/dist/index.js +330 -100
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -814,6 +814,25 @@ declare function BlinkPayment(props: BlinkPaymentProps): react_jsx_runtime.JSX.E
|
|
|
814
814
|
|
|
815
815
|
/** True when a USD balance would render above `$0.00` at two-decimal precision. */
|
|
816
816
|
declare function isVisibleUsdAmountAtTwoDecimals(amount: number): boolean;
|
|
817
|
+
/**
|
|
818
|
+
* A native gas-asset row (ETH, MON, SOL, …) the wallet holds but Permit2 /
|
|
819
|
+
* SPL delegate cannot authorize. Rendered as a dimmed, unselectable "Not
|
|
820
|
+
* supported" row on the Link Token screen with a native-unit balance.
|
|
821
|
+
*/
|
|
822
|
+
interface NativeUnsupportedEntry {
|
|
823
|
+
tokenSymbol: string;
|
|
824
|
+
chainName: string;
|
|
825
|
+
/** Native amount (e.g. 0.7 for 0.7 SOL). */
|
|
826
|
+
amount: number;
|
|
827
|
+
/** Server-provided token logo URI (Relay CDN), if configured. */
|
|
828
|
+
logoURI?: string | null;
|
|
829
|
+
}
|
|
830
|
+
/**
|
|
831
|
+
* Maps SELECT_SOURCE `nativeUnsupportedOptions` to display rows. Unlike
|
|
832
|
+
* {@link buildSelectSourceChoices}, this does NOT apply the USD-min filter —
|
|
833
|
+
* the balance is a native amount, not USD — and only drops zero balances.
|
|
834
|
+
*/
|
|
835
|
+
declare function buildNativeUnsupportedEntries(options: SourceOption[]): NativeUnsupportedEntry[];
|
|
817
836
|
interface SelectSourceChainChoice {
|
|
818
837
|
chainName: string;
|
|
819
838
|
balance: number;
|
|
@@ -1744,6 +1763,8 @@ interface StepRendererDerivedProps {
|
|
|
1744
1763
|
selectSourceChoices: SelectSourceChainChoice[];
|
|
1745
1764
|
/** Balances on chains the WalletConnect session did not approve — rendered as disabled "Not supported" rows. */
|
|
1746
1765
|
selectSourceUnsupportedChoices: SelectSourceChainChoice[];
|
|
1766
|
+
/** Native gas assets (ETH, MON, SOL, …) the wallet holds but Permit2 can't authorize — disabled "Not supported" rows. */
|
|
1767
|
+
selectSourceNativeChoices: NativeUnsupportedEntry[];
|
|
1747
1768
|
selectSourceRecommended: {
|
|
1748
1769
|
chainName: string;
|
|
1749
1770
|
tokenSymbol: string;
|
|
@@ -2308,8 +2329,21 @@ interface LinkTokenEntry {
|
|
|
2308
2329
|
* chain (missing from both the session's approved chains and the Reown
|
|
2309
2330
|
* registry). Renders the "Not supported, deposit manually" pill and makes
|
|
2310
2331
|
* the row unselectable.
|
|
2332
|
+
*
|
|
2333
|
+
* Also set for native gas assets (ETH, MON, SOL, …) that Permit2 / SPL
|
|
2334
|
+
* delegate cannot authorize — see `balanceLabel` / `tokenLogoUri` below.
|
|
2311
2335
|
*/
|
|
2312
2336
|
notSupported?: boolean;
|
|
2337
|
+
/**
|
|
2338
|
+
* Server-provided token logo URI (Relay CDN). Used for native gas-asset
|
|
2339
|
+
* rows; supported stablecoins fall back to the bundled `TOKEN_LOGOS` map.
|
|
2340
|
+
*/
|
|
2341
|
+
tokenLogoUri?: string | null;
|
|
2342
|
+
/**
|
|
2343
|
+
* Preformatted native-unit balance (e.g. "0.7 SOL"). When set, it renders
|
|
2344
|
+
* verbatim on the right instead of the `$X.XX` USD figure.
|
|
2345
|
+
*/
|
|
2346
|
+
balanceLabel?: string;
|
|
2313
2347
|
}
|
|
2314
2348
|
interface LinkTokensScreenProps {
|
|
2315
2349
|
entries: LinkTokenEntry[];
|
|
@@ -2721,6 +2755,14 @@ interface GuestTokenPickerScreenProps {
|
|
|
2721
2755
|
}
|
|
2722
2756
|
declare function GuestTokenPickerScreen({ entries, loading, bridgePhase, error, pendingEntry, onSelect, onConfirm, onBack, oneTapEnabled, onToggleOneTap, oneTapLimit, onSetOneTapLimit, variant, closeListOnSelect, emptyMessage, }: GuestTokenPickerScreenProps): react_jsx_runtime.JSX.Element;
|
|
2723
2757
|
|
|
2758
|
+
/**
|
|
2759
|
+
* Formats a native-asset amount for display (e.g. `0.7`, `1.2345`, `12.5`).
|
|
2760
|
+
* Caps at `maxDecimals` significant fraction digits and trims trailing zeros
|
|
2761
|
+
* so balances stay compact. Sub-threshold dust renders as `< 0.0001` rather
|
|
2762
|
+
* than a misleading `0`.
|
|
2763
|
+
*/
|
|
2764
|
+
declare function formatNativeAmount(value: number, maxDecimals?: number): string;
|
|
2765
|
+
|
|
2724
2766
|
declare function isTerminalTransferStatus(status: string): boolean;
|
|
2725
2767
|
/**
|
|
2726
2768
|
* True when reducer `transfer` should keep the processing screen until a terminal status.
|
|
@@ -2821,4 +2863,4 @@ declare function clearDebugEntries(): void;
|
|
|
2821
2863
|
*/
|
|
2822
2864
|
declare function useBlinkDebugLog(): DebugEntry[];
|
|
2823
2865
|
|
|
2824
|
-
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkDepositButton, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, ManualTransferPasskeyScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SolanaAccountSwitchDeps, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountChange, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, WelcomeBackScreen, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useSolanaAccountSwitchEffect, useTransferPolling, useTransferSigning };
|
|
2866
|
+
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkDepositButton, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, ManualTransferPasskeyScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, type NativeUnsupportedEntry, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SolanaAccountSwitchDeps, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountChange, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, WelcomeBackScreen, appendDebug, api as blinkApi, buildNativeUnsupportedEntries, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, formatNativeAmount, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useSolanaAccountSwitchEffect, useTransferPolling, useTransferSigning };
|
package/dist/index.d.ts
CHANGED
|
@@ -814,6 +814,25 @@ declare function BlinkPayment(props: BlinkPaymentProps): react_jsx_runtime.JSX.E
|
|
|
814
814
|
|
|
815
815
|
/** True when a USD balance would render above `$0.00` at two-decimal precision. */
|
|
816
816
|
declare function isVisibleUsdAmountAtTwoDecimals(amount: number): boolean;
|
|
817
|
+
/**
|
|
818
|
+
* A native gas-asset row (ETH, MON, SOL, …) the wallet holds but Permit2 /
|
|
819
|
+
* SPL delegate cannot authorize. Rendered as a dimmed, unselectable "Not
|
|
820
|
+
* supported" row on the Link Token screen with a native-unit balance.
|
|
821
|
+
*/
|
|
822
|
+
interface NativeUnsupportedEntry {
|
|
823
|
+
tokenSymbol: string;
|
|
824
|
+
chainName: string;
|
|
825
|
+
/** Native amount (e.g. 0.7 for 0.7 SOL). */
|
|
826
|
+
amount: number;
|
|
827
|
+
/** Server-provided token logo URI (Relay CDN), if configured. */
|
|
828
|
+
logoURI?: string | null;
|
|
829
|
+
}
|
|
830
|
+
/**
|
|
831
|
+
* Maps SELECT_SOURCE `nativeUnsupportedOptions` to display rows. Unlike
|
|
832
|
+
* {@link buildSelectSourceChoices}, this does NOT apply the USD-min filter —
|
|
833
|
+
* the balance is a native amount, not USD — and only drops zero balances.
|
|
834
|
+
*/
|
|
835
|
+
declare function buildNativeUnsupportedEntries(options: SourceOption[]): NativeUnsupportedEntry[];
|
|
817
836
|
interface SelectSourceChainChoice {
|
|
818
837
|
chainName: string;
|
|
819
838
|
balance: number;
|
|
@@ -1744,6 +1763,8 @@ interface StepRendererDerivedProps {
|
|
|
1744
1763
|
selectSourceChoices: SelectSourceChainChoice[];
|
|
1745
1764
|
/** Balances on chains the WalletConnect session did not approve — rendered as disabled "Not supported" rows. */
|
|
1746
1765
|
selectSourceUnsupportedChoices: SelectSourceChainChoice[];
|
|
1766
|
+
/** Native gas assets (ETH, MON, SOL, …) the wallet holds but Permit2 can't authorize — disabled "Not supported" rows. */
|
|
1767
|
+
selectSourceNativeChoices: NativeUnsupportedEntry[];
|
|
1747
1768
|
selectSourceRecommended: {
|
|
1748
1769
|
chainName: string;
|
|
1749
1770
|
tokenSymbol: string;
|
|
@@ -2308,8 +2329,21 @@ interface LinkTokenEntry {
|
|
|
2308
2329
|
* chain (missing from both the session's approved chains and the Reown
|
|
2309
2330
|
* registry). Renders the "Not supported, deposit manually" pill and makes
|
|
2310
2331
|
* the row unselectable.
|
|
2332
|
+
*
|
|
2333
|
+
* Also set for native gas assets (ETH, MON, SOL, …) that Permit2 / SPL
|
|
2334
|
+
* delegate cannot authorize — see `balanceLabel` / `tokenLogoUri` below.
|
|
2311
2335
|
*/
|
|
2312
2336
|
notSupported?: boolean;
|
|
2337
|
+
/**
|
|
2338
|
+
* Server-provided token logo URI (Relay CDN). Used for native gas-asset
|
|
2339
|
+
* rows; supported stablecoins fall back to the bundled `TOKEN_LOGOS` map.
|
|
2340
|
+
*/
|
|
2341
|
+
tokenLogoUri?: string | null;
|
|
2342
|
+
/**
|
|
2343
|
+
* Preformatted native-unit balance (e.g. "0.7 SOL"). When set, it renders
|
|
2344
|
+
* verbatim on the right instead of the `$X.XX` USD figure.
|
|
2345
|
+
*/
|
|
2346
|
+
balanceLabel?: string;
|
|
2313
2347
|
}
|
|
2314
2348
|
interface LinkTokensScreenProps {
|
|
2315
2349
|
entries: LinkTokenEntry[];
|
|
@@ -2721,6 +2755,14 @@ interface GuestTokenPickerScreenProps {
|
|
|
2721
2755
|
}
|
|
2722
2756
|
declare function GuestTokenPickerScreen({ entries, loading, bridgePhase, error, pendingEntry, onSelect, onConfirm, onBack, oneTapEnabled, onToggleOneTap, oneTapLimit, onSetOneTapLimit, variant, closeListOnSelect, emptyMessage, }: GuestTokenPickerScreenProps): react_jsx_runtime.JSX.Element;
|
|
2723
2757
|
|
|
2758
|
+
/**
|
|
2759
|
+
* Formats a native-asset amount for display (e.g. `0.7`, `1.2345`, `12.5`).
|
|
2760
|
+
* Caps at `maxDecimals` significant fraction digits and trims trailing zeros
|
|
2761
|
+
* so balances stay compact. Sub-threshold dust renders as `< 0.0001` rather
|
|
2762
|
+
* than a misleading `0`.
|
|
2763
|
+
*/
|
|
2764
|
+
declare function formatNativeAmount(value: number, maxDecimals?: number): string;
|
|
2765
|
+
|
|
2724
2766
|
declare function isTerminalTransferStatus(status: string): boolean;
|
|
2725
2767
|
/**
|
|
2726
2768
|
* True when reducer `transfer` should keep the processing screen until a terminal status.
|
|
@@ -2821,4 +2863,4 @@ declare function clearDebugEntries(): void;
|
|
|
2821
2863
|
*/
|
|
2822
2864
|
declare function useBlinkDebugLog(): DebugEntry[];
|
|
2823
2865
|
|
|
2824
|
-
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkDepositButton, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, ManualTransferPasskeyScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SolanaAccountSwitchDeps, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountChange, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, WelcomeBackScreen, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useSolanaAccountSwitchEffect, useTransferPolling, useTransferSigning };
|
|
2866
|
+
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkDepositButton, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, ManualTransferPasskeyScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, type NativeUnsupportedEntry, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SolanaAccountSwitchDeps, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountChange, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, WelcomeBackScreen, appendDebug, api as blinkApi, buildNativeUnsupportedEntries, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, formatNativeAmount, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useSolanaAccountSwitchEffect, useTransferPolling, useTransferSigning };
|