@nexus-cross/dapp-ui 1.3.5-beta.1 → 1.3.5-beta.2
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 +22 -21
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +64 -3
- package/dist/index.d.ts +64 -3
- package/dist/index.js +22 -21
- package/dist/index.js.map +1 -0
- package/package.json +3 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Scope } from '@sentry/react';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { Component, ReactNode, ErrorInfo, CSSProperties } from 'react';
|
|
4
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
5
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
5
6
|
|
|
6
7
|
type Environment = "dev" | "stage" | "production";
|
|
@@ -15,6 +16,66 @@ declare function announceAppLauncherUsage(options?: {
|
|
|
15
16
|
connectKitVersion?: string;
|
|
16
17
|
}): void;
|
|
17
18
|
|
|
19
|
+
interface InitDappUiSentryOptions {
|
|
20
|
+
/** Falls back to VITE_CROSSX_ENVIRONMENT / NEXT_PUBLIC_CROSSX_ENVIRONMENT detection. */
|
|
21
|
+
environment?: Environment | "dev" | "stg" | "staging" | "prod" | "prd";
|
|
22
|
+
/** Defaults to true only on prod; dev/stg init but do not send. */
|
|
23
|
+
enabled?: boolean;
|
|
24
|
+
/** Override DSN (tests / self-hosted relay). */
|
|
25
|
+
dsn?: string;
|
|
26
|
+
/** 0–1 sample rate for ui:/funnel: analytics events (default 1). Errors are never sampled. */
|
|
27
|
+
analyticsSampleRate?: number;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* dapp-ui is embedded in host apps that may run their own Sentry, so we never
|
|
31
|
+
* call `Sentry.init()`: it claims the global hub and either clobbers the host
|
|
32
|
+
* client or gets clobbered by it. Instead we keep a dedicated BrowserClient on
|
|
33
|
+
* an isolated Scope, with no global integrations (no window.onerror, no
|
|
34
|
+
* fetch/XHR patching) — errors reach the dapp-ui project only through explicit
|
|
35
|
+
* captureDappUiException calls, and the host's Sentry is never touched.
|
|
36
|
+
*/
|
|
37
|
+
declare function initDappUiSentry(options?: InitDappUiSentryOptions): Scope | null;
|
|
38
|
+
declare function getDappUiSentryScope(): Scope | null;
|
|
39
|
+
/** Lazily initializes with defaults so error boundaries work without host setup. */
|
|
40
|
+
declare function captureDappUiException(error: unknown, extra?: Record<string, unknown>): string | undefined;
|
|
41
|
+
|
|
42
|
+
interface DappUiErrorBoundaryProps {
|
|
43
|
+
children: ReactNode;
|
|
44
|
+
/** Rendered when a child throws; defaults to rendering nothing. */
|
|
45
|
+
fallback?: ReactNode;
|
|
46
|
+
/** Identifies which popup/root failed, e.g. "app-launcher". */
|
|
47
|
+
name?: string;
|
|
48
|
+
}
|
|
49
|
+
interface DappUiErrorBoundaryState {
|
|
50
|
+
hasError: boolean;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Reports to the isolated dapp-ui Sentry client instead of the global hub —
|
|
54
|
+
* Sentry.ErrorBoundary would send to whichever client the host app installed.
|
|
55
|
+
*/
|
|
56
|
+
declare class DappUiErrorBoundary extends Component<DappUiErrorBoundaryProps, DappUiErrorBoundaryState> {
|
|
57
|
+
state: DappUiErrorBoundaryState;
|
|
58
|
+
static getDerivedStateFromError(): DappUiErrorBoundaryState;
|
|
59
|
+
componentDidCatch(error: Error, info: ErrorInfo): void;
|
|
60
|
+
render(): ReactNode;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
type DappUiFeature = "app_launcher" | "bridge" | "connect_button" | "send" | "skills" | "wallet_connect" | "wallet_info" | "wallet_portfolio";
|
|
64
|
+
type DappUiFlow = "connect" | "send" | "bridge" | "withdraw";
|
|
65
|
+
type DappUiFailureReason = "user-rejected" | "insufficient-gas" | "timeout" | "contract-reverted" | "network" | "unknown";
|
|
66
|
+
interface TrackDappUiFunnelOptions {
|
|
67
|
+
status?: "success" | "failure";
|
|
68
|
+
reason?: DappUiFailureReason;
|
|
69
|
+
tags?: Record<string, string>;
|
|
70
|
+
}
|
|
71
|
+
declare function setDappUiAnalyticsUser(address?: string): void;
|
|
72
|
+
/** Button/UI usage event: message `ui: <feature>_<action>` on the isolated client. */
|
|
73
|
+
declare function trackDappUiEvent(feature: DappUiFeature, action: string, tags?: Record<string, string>): void;
|
|
74
|
+
/** Funnel step event: message `funnel: <flow>_<step>` with funnel_status/failure_reason tags. */
|
|
75
|
+
declare function trackDappUiFunnel(flow: DappUiFlow, step: string, options?: TrackDappUiFunnelOptions): void;
|
|
76
|
+
/** Maps arbitrary wallet/RPC errors onto the fixed failure_reason vocabulary. */
|
|
77
|
+
declare function normalizeFailureReason(error: unknown): DappUiFailureReason;
|
|
78
|
+
|
|
18
79
|
interface AppLauncherProps {
|
|
19
80
|
env?: Environment;
|
|
20
81
|
theme?: Theme;
|
|
@@ -1588,4 +1649,4 @@ interface SkillsButtonProps {
|
|
|
1588
1649
|
declare const DEFAULT_SKILLS_HREF = "https://www.onechain.nexus/skills";
|
|
1589
1650
|
declare function SkillsButton({ label, href, onClick, className, style, theme, disabled, isLoading, loadingLabel, openInNewTab, type, }: SkillsButtonProps): react_jsx_runtime.JSX.Element;
|
|
1590
1651
|
|
|
1591
|
-
export { APPLE_ICON, AppLauncher, AppLauncherContent, type AppLauncherContentProps, type AppLauncherProps, AppLauncherTrigger, type AppLauncherTriggerProps, type AppLauncherTriggerStyle, type AppLauncherUsageMode, BINANCE_ICON, type BridgeAmountSource, type BridgeApprovalInfo, type BridgeApproveFn, type BridgeFailedInfo, BridgeFlow, type BridgeFlowProps, type BridgeGetApprovalFn, type BridgeGetToTokensFn, type BridgeHistoryItem, type BridgeInfoRow, type BridgeInfoTokenRef, type BridgeLiquidityInfo, type BridgePathType, type BridgeQuoteFn, type BridgeQuoteInput, type BridgeQuoteResult, type BridgeStatus, type BridgeStep, type BridgeSubmitFn, type BridgeSubmittedInfo, type BridgeToken, type BridgeTxSummary, CONNECTOR_REGISTRY, CROSSX_ICON, type ChainId, ConnectButton, type ConnectButtonProps, type ConnectButtonStyle, ConnectorId, type ConnectorMeta, DEFAULT_SKILLS_HREF, type DrawerDirection$1 as DrawerDirection, type Environment, type EstimateGasArgs, type EstimateGasFn, GOOGLE_ICON, type GameSwapPool, type GameSwapTokenRef, type GasEstimate, type GetTransactionReceiptArgs, type GetTransactionReceiptFn, type GlobalMenu, type GlobalMenuItem, type GlobalMenuItemAssetUrl, type GlobalMenuItemServiceStatus, type GlobalMenuItemUrl, type LpBalanceInfo, type LpBalanceReaderFn, METAMASK_ICON, type OnOutlink, type OutlinkCategory, type OutlinkContext, type OutlinkOrigin, PORTFOLIO_SECTIONS, type PortfolioSection, type PreferredToken, type RecentSendAddress, SOCIAL_REGISTRY, type SendAccount, type SendAsset, SendFlow, type SendFlowProps, type SendPageProps, type SendStatus, type SendTransactionArgs, type SendTransactionFn, SkillsButton, type SkillsButtonProps, type SkillsButtonStyle, type SocialConfig, type SocialHandlers, type SocialId, type StakingRewardsInfo, type StakingRewardsReaderFn, TOKEN_STATS_QUERY_KEY, type Theme, type TokenBalance, type TokenBalanceResponse, type TokenStats, type TokenStatsResponse, type TransactionReceiptResult, USER_BALANCE_QUERY_KEY, WALLET_REGISTRY, type WalletConfig, WalletConnectModal, type WalletConnectModalContentProps, type WalletConnectModalProps, type WalletConnectModalStyle, type WalletConnectModalTriggerProps, type WalletHandlers, type WalletId, WalletInfo, type WalletInfoContentProps, type WalletInfoFooterProps, type WalletInfoNavProps, type WalletInfoProps, type WalletInfoStyle, type WalletInfoTriggerProps, WalletPortfolio, WalletPortfolioBody, type WalletPortfolioBodyProps, type WalletPortfolioContentProps, type WalletPortfolioProps, type WalletPortfolioTriggerProps, type WalletProvider, announceAppLauncherUsage, resolveEnvironment, useGlobalMenu, useTokenBalance, useTokenStats, useWalletDetect };
|
|
1652
|
+
export { APPLE_ICON, AppLauncher, AppLauncherContent, type AppLauncherContentProps, type AppLauncherProps, AppLauncherTrigger, type AppLauncherTriggerProps, type AppLauncherTriggerStyle, type AppLauncherUsageMode, BINANCE_ICON, type BridgeAmountSource, type BridgeApprovalInfo, type BridgeApproveFn, type BridgeFailedInfo, BridgeFlow, type BridgeFlowProps, type BridgeGetApprovalFn, type BridgeGetToTokensFn, type BridgeHistoryItem, type BridgeInfoRow, type BridgeInfoTokenRef, type BridgeLiquidityInfo, type BridgePathType, type BridgeQuoteFn, type BridgeQuoteInput, type BridgeQuoteResult, type BridgeStatus, type BridgeStep, type BridgeSubmitFn, type BridgeSubmittedInfo, type BridgeToken, type BridgeTxSummary, CONNECTOR_REGISTRY, CROSSX_ICON, type ChainId, ConnectButton, type ConnectButtonProps, type ConnectButtonStyle, ConnectorId, type ConnectorMeta, DEFAULT_SKILLS_HREF, DappUiErrorBoundary, type DappUiErrorBoundaryProps, type DappUiFailureReason, type DappUiFeature, type DappUiFlow, type DrawerDirection$1 as DrawerDirection, type Environment, type EstimateGasArgs, type EstimateGasFn, GOOGLE_ICON, type GameSwapPool, type GameSwapTokenRef, type GasEstimate, type GetTransactionReceiptArgs, type GetTransactionReceiptFn, type GlobalMenu, type GlobalMenuItem, type GlobalMenuItemAssetUrl, type GlobalMenuItemServiceStatus, type GlobalMenuItemUrl, type InitDappUiSentryOptions, type LpBalanceInfo, type LpBalanceReaderFn, METAMASK_ICON, type OnOutlink, type OutlinkCategory, type OutlinkContext, type OutlinkOrigin, PORTFOLIO_SECTIONS, type PortfolioSection, type PreferredToken, type RecentSendAddress, SOCIAL_REGISTRY, type SendAccount, type SendAsset, SendFlow, type SendFlowProps, type SendPageProps, type SendStatus, type SendTransactionArgs, type SendTransactionFn, SkillsButton, type SkillsButtonProps, type SkillsButtonStyle, type SocialConfig, type SocialHandlers, type SocialId, type StakingRewardsInfo, type StakingRewardsReaderFn, TOKEN_STATS_QUERY_KEY, type Theme, type TokenBalance, type TokenBalanceResponse, type TokenStats, type TokenStatsResponse, type TrackDappUiFunnelOptions, type TransactionReceiptResult, USER_BALANCE_QUERY_KEY, WALLET_REGISTRY, type WalletConfig, WalletConnectModal, type WalletConnectModalContentProps, type WalletConnectModalProps, type WalletConnectModalStyle, type WalletConnectModalTriggerProps, type WalletHandlers, type WalletId, WalletInfo, type WalletInfoContentProps, type WalletInfoFooterProps, type WalletInfoNavProps, type WalletInfoProps, type WalletInfoStyle, type WalletInfoTriggerProps, WalletPortfolio, WalletPortfolioBody, type WalletPortfolioBodyProps, type WalletPortfolioContentProps, type WalletPortfolioProps, type WalletPortfolioTriggerProps, type WalletProvider, announceAppLauncherUsage, captureDappUiException, getDappUiSentryScope, initDappUiSentry, normalizeFailureReason, resolveEnvironment, setDappUiAnalyticsUser, trackDappUiEvent, trackDappUiFunnel, useGlobalMenu, useTokenBalance, useTokenStats, useWalletDetect };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Scope } from '@sentry/react';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { Component, ReactNode, ErrorInfo, CSSProperties } from 'react';
|
|
4
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
5
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
5
6
|
|
|
6
7
|
type Environment = "dev" | "stage" | "production";
|
|
@@ -15,6 +16,66 @@ declare function announceAppLauncherUsage(options?: {
|
|
|
15
16
|
connectKitVersion?: string;
|
|
16
17
|
}): void;
|
|
17
18
|
|
|
19
|
+
interface InitDappUiSentryOptions {
|
|
20
|
+
/** Falls back to VITE_CROSSX_ENVIRONMENT / NEXT_PUBLIC_CROSSX_ENVIRONMENT detection. */
|
|
21
|
+
environment?: Environment | "dev" | "stg" | "staging" | "prod" | "prd";
|
|
22
|
+
/** Defaults to true only on prod; dev/stg init but do not send. */
|
|
23
|
+
enabled?: boolean;
|
|
24
|
+
/** Override DSN (tests / self-hosted relay). */
|
|
25
|
+
dsn?: string;
|
|
26
|
+
/** 0–1 sample rate for ui:/funnel: analytics events (default 1). Errors are never sampled. */
|
|
27
|
+
analyticsSampleRate?: number;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* dapp-ui is embedded in host apps that may run their own Sentry, so we never
|
|
31
|
+
* call `Sentry.init()`: it claims the global hub and either clobbers the host
|
|
32
|
+
* client or gets clobbered by it. Instead we keep a dedicated BrowserClient on
|
|
33
|
+
* an isolated Scope, with no global integrations (no window.onerror, no
|
|
34
|
+
* fetch/XHR patching) — errors reach the dapp-ui project only through explicit
|
|
35
|
+
* captureDappUiException calls, and the host's Sentry is never touched.
|
|
36
|
+
*/
|
|
37
|
+
declare function initDappUiSentry(options?: InitDappUiSentryOptions): Scope | null;
|
|
38
|
+
declare function getDappUiSentryScope(): Scope | null;
|
|
39
|
+
/** Lazily initializes with defaults so error boundaries work without host setup. */
|
|
40
|
+
declare function captureDappUiException(error: unknown, extra?: Record<string, unknown>): string | undefined;
|
|
41
|
+
|
|
42
|
+
interface DappUiErrorBoundaryProps {
|
|
43
|
+
children: ReactNode;
|
|
44
|
+
/** Rendered when a child throws; defaults to rendering nothing. */
|
|
45
|
+
fallback?: ReactNode;
|
|
46
|
+
/** Identifies which popup/root failed, e.g. "app-launcher". */
|
|
47
|
+
name?: string;
|
|
48
|
+
}
|
|
49
|
+
interface DappUiErrorBoundaryState {
|
|
50
|
+
hasError: boolean;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Reports to the isolated dapp-ui Sentry client instead of the global hub —
|
|
54
|
+
* Sentry.ErrorBoundary would send to whichever client the host app installed.
|
|
55
|
+
*/
|
|
56
|
+
declare class DappUiErrorBoundary extends Component<DappUiErrorBoundaryProps, DappUiErrorBoundaryState> {
|
|
57
|
+
state: DappUiErrorBoundaryState;
|
|
58
|
+
static getDerivedStateFromError(): DappUiErrorBoundaryState;
|
|
59
|
+
componentDidCatch(error: Error, info: ErrorInfo): void;
|
|
60
|
+
render(): ReactNode;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
type DappUiFeature = "app_launcher" | "bridge" | "connect_button" | "send" | "skills" | "wallet_connect" | "wallet_info" | "wallet_portfolio";
|
|
64
|
+
type DappUiFlow = "connect" | "send" | "bridge" | "withdraw";
|
|
65
|
+
type DappUiFailureReason = "user-rejected" | "insufficient-gas" | "timeout" | "contract-reverted" | "network" | "unknown";
|
|
66
|
+
interface TrackDappUiFunnelOptions {
|
|
67
|
+
status?: "success" | "failure";
|
|
68
|
+
reason?: DappUiFailureReason;
|
|
69
|
+
tags?: Record<string, string>;
|
|
70
|
+
}
|
|
71
|
+
declare function setDappUiAnalyticsUser(address?: string): void;
|
|
72
|
+
/** Button/UI usage event: message `ui: <feature>_<action>` on the isolated client. */
|
|
73
|
+
declare function trackDappUiEvent(feature: DappUiFeature, action: string, tags?: Record<string, string>): void;
|
|
74
|
+
/** Funnel step event: message `funnel: <flow>_<step>` with funnel_status/failure_reason tags. */
|
|
75
|
+
declare function trackDappUiFunnel(flow: DappUiFlow, step: string, options?: TrackDappUiFunnelOptions): void;
|
|
76
|
+
/** Maps arbitrary wallet/RPC errors onto the fixed failure_reason vocabulary. */
|
|
77
|
+
declare function normalizeFailureReason(error: unknown): DappUiFailureReason;
|
|
78
|
+
|
|
18
79
|
interface AppLauncherProps {
|
|
19
80
|
env?: Environment;
|
|
20
81
|
theme?: Theme;
|
|
@@ -1588,4 +1649,4 @@ interface SkillsButtonProps {
|
|
|
1588
1649
|
declare const DEFAULT_SKILLS_HREF = "https://www.onechain.nexus/skills";
|
|
1589
1650
|
declare function SkillsButton({ label, href, onClick, className, style, theme, disabled, isLoading, loadingLabel, openInNewTab, type, }: SkillsButtonProps): react_jsx_runtime.JSX.Element;
|
|
1590
1651
|
|
|
1591
|
-
export { APPLE_ICON, AppLauncher, AppLauncherContent, type AppLauncherContentProps, type AppLauncherProps, AppLauncherTrigger, type AppLauncherTriggerProps, type AppLauncherTriggerStyle, type AppLauncherUsageMode, BINANCE_ICON, type BridgeAmountSource, type BridgeApprovalInfo, type BridgeApproveFn, type BridgeFailedInfo, BridgeFlow, type BridgeFlowProps, type BridgeGetApprovalFn, type BridgeGetToTokensFn, type BridgeHistoryItem, type BridgeInfoRow, type BridgeInfoTokenRef, type BridgeLiquidityInfo, type BridgePathType, type BridgeQuoteFn, type BridgeQuoteInput, type BridgeQuoteResult, type BridgeStatus, type BridgeStep, type BridgeSubmitFn, type BridgeSubmittedInfo, type BridgeToken, type BridgeTxSummary, CONNECTOR_REGISTRY, CROSSX_ICON, type ChainId, ConnectButton, type ConnectButtonProps, type ConnectButtonStyle, ConnectorId, type ConnectorMeta, DEFAULT_SKILLS_HREF, type DrawerDirection$1 as DrawerDirection, type Environment, type EstimateGasArgs, type EstimateGasFn, GOOGLE_ICON, type GameSwapPool, type GameSwapTokenRef, type GasEstimate, type GetTransactionReceiptArgs, type GetTransactionReceiptFn, type GlobalMenu, type GlobalMenuItem, type GlobalMenuItemAssetUrl, type GlobalMenuItemServiceStatus, type GlobalMenuItemUrl, type LpBalanceInfo, type LpBalanceReaderFn, METAMASK_ICON, type OnOutlink, type OutlinkCategory, type OutlinkContext, type OutlinkOrigin, PORTFOLIO_SECTIONS, type PortfolioSection, type PreferredToken, type RecentSendAddress, SOCIAL_REGISTRY, type SendAccount, type SendAsset, SendFlow, type SendFlowProps, type SendPageProps, type SendStatus, type SendTransactionArgs, type SendTransactionFn, SkillsButton, type SkillsButtonProps, type SkillsButtonStyle, type SocialConfig, type SocialHandlers, type SocialId, type StakingRewardsInfo, type StakingRewardsReaderFn, TOKEN_STATS_QUERY_KEY, type Theme, type TokenBalance, type TokenBalanceResponse, type TokenStats, type TokenStatsResponse, type TransactionReceiptResult, USER_BALANCE_QUERY_KEY, WALLET_REGISTRY, type WalletConfig, WalletConnectModal, type WalletConnectModalContentProps, type WalletConnectModalProps, type WalletConnectModalStyle, type WalletConnectModalTriggerProps, type WalletHandlers, type WalletId, WalletInfo, type WalletInfoContentProps, type WalletInfoFooterProps, type WalletInfoNavProps, type WalletInfoProps, type WalletInfoStyle, type WalletInfoTriggerProps, WalletPortfolio, WalletPortfolioBody, type WalletPortfolioBodyProps, type WalletPortfolioContentProps, type WalletPortfolioProps, type WalletPortfolioTriggerProps, type WalletProvider, announceAppLauncherUsage, resolveEnvironment, useGlobalMenu, useTokenBalance, useTokenStats, useWalletDetect };
|
|
1652
|
+
export { APPLE_ICON, AppLauncher, AppLauncherContent, type AppLauncherContentProps, type AppLauncherProps, AppLauncherTrigger, type AppLauncherTriggerProps, type AppLauncherTriggerStyle, type AppLauncherUsageMode, BINANCE_ICON, type BridgeAmountSource, type BridgeApprovalInfo, type BridgeApproveFn, type BridgeFailedInfo, BridgeFlow, type BridgeFlowProps, type BridgeGetApprovalFn, type BridgeGetToTokensFn, type BridgeHistoryItem, type BridgeInfoRow, type BridgeInfoTokenRef, type BridgeLiquidityInfo, type BridgePathType, type BridgeQuoteFn, type BridgeQuoteInput, type BridgeQuoteResult, type BridgeStatus, type BridgeStep, type BridgeSubmitFn, type BridgeSubmittedInfo, type BridgeToken, type BridgeTxSummary, CONNECTOR_REGISTRY, CROSSX_ICON, type ChainId, ConnectButton, type ConnectButtonProps, type ConnectButtonStyle, ConnectorId, type ConnectorMeta, DEFAULT_SKILLS_HREF, DappUiErrorBoundary, type DappUiErrorBoundaryProps, type DappUiFailureReason, type DappUiFeature, type DappUiFlow, type DrawerDirection$1 as DrawerDirection, type Environment, type EstimateGasArgs, type EstimateGasFn, GOOGLE_ICON, type GameSwapPool, type GameSwapTokenRef, type GasEstimate, type GetTransactionReceiptArgs, type GetTransactionReceiptFn, type GlobalMenu, type GlobalMenuItem, type GlobalMenuItemAssetUrl, type GlobalMenuItemServiceStatus, type GlobalMenuItemUrl, type InitDappUiSentryOptions, type LpBalanceInfo, type LpBalanceReaderFn, METAMASK_ICON, type OnOutlink, type OutlinkCategory, type OutlinkContext, type OutlinkOrigin, PORTFOLIO_SECTIONS, type PortfolioSection, type PreferredToken, type RecentSendAddress, SOCIAL_REGISTRY, type SendAccount, type SendAsset, SendFlow, type SendFlowProps, type SendPageProps, type SendStatus, type SendTransactionArgs, type SendTransactionFn, SkillsButton, type SkillsButtonProps, type SkillsButtonStyle, type SocialConfig, type SocialHandlers, type SocialId, type StakingRewardsInfo, type StakingRewardsReaderFn, TOKEN_STATS_QUERY_KEY, type Theme, type TokenBalance, type TokenBalanceResponse, type TokenStats, type TokenStatsResponse, type TrackDappUiFunnelOptions, type TransactionReceiptResult, USER_BALANCE_QUERY_KEY, WALLET_REGISTRY, type WalletConfig, WalletConnectModal, type WalletConnectModalContentProps, type WalletConnectModalProps, type WalletConnectModalStyle, type WalletConnectModalTriggerProps, type WalletHandlers, type WalletId, WalletInfo, type WalletInfoContentProps, type WalletInfoFooterProps, type WalletInfoNavProps, type WalletInfoProps, type WalletInfoStyle, type WalletInfoTriggerProps, WalletPortfolio, WalletPortfolioBody, type WalletPortfolioBodyProps, type WalletPortfolioContentProps, type WalletPortfolioProps, type WalletPortfolioTriggerProps, type WalletProvider, announceAppLauncherUsage, captureDappUiException, getDappUiSentryScope, initDappUiSentry, normalizeFailureReason, resolveEnvironment, setDappUiAnalyticsUser, trackDappUiEvent, trackDappUiFunnel, useGlobalMenu, useTokenBalance, useTokenStats, useWalletDetect };
|