@nexus-cross/dapp-ui 1.3.7-beta.3 → 1.3.7-beta.5
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 +23 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +47 -5
- package/dist/index.d.ts +47 -5
- package/dist/index.js +23 -22
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.cts
CHANGED
|
@@ -10,6 +10,37 @@ type DrawerDirection$1 = "right" | "bottom" | "left";
|
|
|
10
10
|
|
|
11
11
|
declare function resolveEnvironment(env?: Environment | "staging" | "prd" | "prod" | "stg"): Environment;
|
|
12
12
|
|
|
13
|
+
declare const CHAINS_CONFIG_FILE = "chains.json";
|
|
14
|
+
/** 체인 하나의 표시 메타. 지정 안 된 필드는 호출부 폴백(온체인/하드코딩)으로. */
|
|
15
|
+
type ChainDisplayMeta = {
|
|
16
|
+
/** 체인 표시명 (예: 'One Mainnet'). */
|
|
17
|
+
name?: string;
|
|
18
|
+
/** 네이티브 통화 표시 심볼 (예: 'ONE' / 'tONE'). DISPLAY 전용. */
|
|
19
|
+
nativeSymbol?: string;
|
|
20
|
+
};
|
|
21
|
+
/** chains.json 스키마 — chainId(10진 문자열) → 표시 메타. */
|
|
22
|
+
type ChainsConfig = {
|
|
23
|
+
chains?: Record<string, ChainDisplayMeta>;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* chains.json에서 특정 chainId의 표시 메타를 비동기로 반환한다.
|
|
27
|
+
* fetch 실패·미정의면 `{}` — 호출부에서 `?? 폴백`으로 처리.
|
|
28
|
+
* React 밖(설정 생성·유틸)에서 사용.
|
|
29
|
+
*/
|
|
30
|
+
declare function getChainDisplay(chainId: number, env: Environment): Promise<ChainDisplayMeta>;
|
|
31
|
+
/**
|
|
32
|
+
* 컴포넌트에서 chainId의 표시명·네이티브 심볼을 구독하는 훅.
|
|
33
|
+
* chainId 변경(네트워크 전환) 시 재조회한다. 로딩 중/미정의면 각 필드
|
|
34
|
+
* undefined — 호출부에서 `?? 온체인/하드코딩 폴백`으로 처리한다.
|
|
35
|
+
*/
|
|
36
|
+
declare function useChainDisplay(chainId: number | undefined, env: Environment): ChainDisplayMeta;
|
|
37
|
+
/**
|
|
38
|
+
* chains.json의 전체 chainId→표시 메타 맵을 구독한다. 여러 체인의 표시명을
|
|
39
|
+
* 한 번에 매핑해야 하는 곳(네트워크 스위처 등)에서 사용한다. 로딩 전/실패 시
|
|
40
|
+
* 빈 객체 — 호출부에서 `map[String(id)]?.name ?? 폴백`으로 처리한다.
|
|
41
|
+
*/
|
|
42
|
+
declare function useChainsConfig(env: Environment): Record<string, ChainDisplayMeta>;
|
|
43
|
+
|
|
13
44
|
type AppLauncherUsageMode = "dapp-ui" | "connect-kit-react";
|
|
14
45
|
declare function announceAppLauncherUsage(options?: {
|
|
15
46
|
mode?: AppLauncherUsageMode;
|
|
@@ -204,6 +235,10 @@ interface TokenStats {
|
|
|
204
235
|
address: string;
|
|
205
236
|
price: string;
|
|
206
237
|
percent_change_24h: string;
|
|
238
|
+
/** 시장 유통량. `/v1/public/token/stats`가 제공(문자열). 상세화면 Total Supply 표기용. */
|
|
239
|
+
circulating_supply?: string;
|
|
240
|
+
market_cap?: string;
|
|
241
|
+
volume_24h?: string;
|
|
207
242
|
}
|
|
208
243
|
interface TokenStatsResponse {
|
|
209
244
|
code: number;
|
|
@@ -529,7 +564,7 @@ interface CrossdPositionDetail {
|
|
|
529
564
|
* dapp-ui가 렌더하는 outlink의 대분류.
|
|
530
565
|
* `portfolio`는 세부적으로 `origin`으로 더 나뉜다.
|
|
531
566
|
*/
|
|
532
|
-
type OutlinkCategory = "terms" | "privacy" | "portfolio" | "send";
|
|
567
|
+
type OutlinkCategory = "terms" | "privacy" | "portfolio" | "send" | "token-detail";
|
|
533
568
|
/**
|
|
534
569
|
* `onOutlink` 콜백에 전달되는 호출 컨텍스트. `category` + `origin`으로
|
|
535
570
|
* 호출측이 목적지별 분기를 할 수 있고, `portfolio-*`의 경우 해당 섹션의
|
|
@@ -591,6 +626,13 @@ type OutlinkContext = {
|
|
|
591
626
|
chainId: number;
|
|
592
627
|
txHash: `0x${string}`;
|
|
593
628
|
};
|
|
629
|
+
} | {
|
|
630
|
+
category: "token-detail";
|
|
631
|
+
origin: "token-network" | "token-social" | "token-tx";
|
|
632
|
+
payload: {
|
|
633
|
+
address: string;
|
|
634
|
+
txHash?: string;
|
|
635
|
+
};
|
|
594
636
|
};
|
|
595
637
|
type OutlinkOrigin = OutlinkContext["origin"];
|
|
596
638
|
/**
|
|
@@ -1289,20 +1331,20 @@ declare function AppleIcon(): react_jsx_runtime.JSX.Element;
|
|
|
1289
1331
|
declare const WALLET_REGISTRY: {
|
|
1290
1332
|
cross_embedded: {
|
|
1291
1333
|
id: string;
|
|
1292
|
-
name:
|
|
1334
|
+
name: "ONEwallet with Social";
|
|
1293
1335
|
description: string;
|
|
1294
1336
|
icon: typeof CROSSxIcon;
|
|
1295
1337
|
};
|
|
1296
1338
|
cross_wallet: {
|
|
1297
1339
|
id: string;
|
|
1298
|
-
name:
|
|
1340
|
+
name: "ONEwallet+";
|
|
1299
1341
|
description: string;
|
|
1300
1342
|
icon: typeof CROSSxIcon;
|
|
1301
1343
|
featured: true;
|
|
1302
1344
|
};
|
|
1303
1345
|
cross_extension: {
|
|
1304
1346
|
id: string;
|
|
1305
|
-
name:
|
|
1347
|
+
name: "ONEwallet+ Extension";
|
|
1306
1348
|
description: string;
|
|
1307
1349
|
icon: typeof CROSSxIcon;
|
|
1308
1350
|
rdns: string;
|
|
@@ -1706,4 +1748,4 @@ interface SkillsButtonProps {
|
|
|
1706
1748
|
declare const DEFAULT_SKILLS_HREF = "https://www.onechain.nexus/skills";
|
|
1707
1749
|
declare function SkillsButton({ label, href, onClick, className, style, theme, disabled, isLoading, loadingLabel, openInNewTab, type, }: SkillsButtonProps): react_jsx_runtime.JSX.Element;
|
|
1708
1750
|
|
|
1709
|
-
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, type CrossdPosition, type CrossdPositionDetail, type CrossdPositionPoolRef, type CrossdPositionTokenRef, 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 };
|
|
1751
|
+
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, CHAINS_CONFIG_FILE, CONNECTOR_REGISTRY, CROSSX_ICON, type ChainDisplayMeta, type ChainId, type ChainsConfig, ConnectButton, type ConnectButtonProps, type ConnectButtonStyle, ConnectorId, type ConnectorMeta, type CrossdPosition, type CrossdPositionDetail, type CrossdPositionPoolRef, type CrossdPositionTokenRef, 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, getChainDisplay, getDappUiSentryScope, initDappUiSentry, normalizeFailureReason, resolveEnvironment, setDappUiAnalyticsUser, trackDappUiEvent, trackDappUiFunnel, useChainDisplay, useChainsConfig, useGlobalMenu, useTokenBalance, useTokenStats, useWalletDetect };
|
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,37 @@ type DrawerDirection$1 = "right" | "bottom" | "left";
|
|
|
10
10
|
|
|
11
11
|
declare function resolveEnvironment(env?: Environment | "staging" | "prd" | "prod" | "stg"): Environment;
|
|
12
12
|
|
|
13
|
+
declare const CHAINS_CONFIG_FILE = "chains.json";
|
|
14
|
+
/** 체인 하나의 표시 메타. 지정 안 된 필드는 호출부 폴백(온체인/하드코딩)으로. */
|
|
15
|
+
type ChainDisplayMeta = {
|
|
16
|
+
/** 체인 표시명 (예: 'One Mainnet'). */
|
|
17
|
+
name?: string;
|
|
18
|
+
/** 네이티브 통화 표시 심볼 (예: 'ONE' / 'tONE'). DISPLAY 전용. */
|
|
19
|
+
nativeSymbol?: string;
|
|
20
|
+
};
|
|
21
|
+
/** chains.json 스키마 — chainId(10진 문자열) → 표시 메타. */
|
|
22
|
+
type ChainsConfig = {
|
|
23
|
+
chains?: Record<string, ChainDisplayMeta>;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* chains.json에서 특정 chainId의 표시 메타를 비동기로 반환한다.
|
|
27
|
+
* fetch 실패·미정의면 `{}` — 호출부에서 `?? 폴백`으로 처리.
|
|
28
|
+
* React 밖(설정 생성·유틸)에서 사용.
|
|
29
|
+
*/
|
|
30
|
+
declare function getChainDisplay(chainId: number, env: Environment): Promise<ChainDisplayMeta>;
|
|
31
|
+
/**
|
|
32
|
+
* 컴포넌트에서 chainId의 표시명·네이티브 심볼을 구독하는 훅.
|
|
33
|
+
* chainId 변경(네트워크 전환) 시 재조회한다. 로딩 중/미정의면 각 필드
|
|
34
|
+
* undefined — 호출부에서 `?? 온체인/하드코딩 폴백`으로 처리한다.
|
|
35
|
+
*/
|
|
36
|
+
declare function useChainDisplay(chainId: number | undefined, env: Environment): ChainDisplayMeta;
|
|
37
|
+
/**
|
|
38
|
+
* chains.json의 전체 chainId→표시 메타 맵을 구독한다. 여러 체인의 표시명을
|
|
39
|
+
* 한 번에 매핑해야 하는 곳(네트워크 스위처 등)에서 사용한다. 로딩 전/실패 시
|
|
40
|
+
* 빈 객체 — 호출부에서 `map[String(id)]?.name ?? 폴백`으로 처리한다.
|
|
41
|
+
*/
|
|
42
|
+
declare function useChainsConfig(env: Environment): Record<string, ChainDisplayMeta>;
|
|
43
|
+
|
|
13
44
|
type AppLauncherUsageMode = "dapp-ui" | "connect-kit-react";
|
|
14
45
|
declare function announceAppLauncherUsage(options?: {
|
|
15
46
|
mode?: AppLauncherUsageMode;
|
|
@@ -204,6 +235,10 @@ interface TokenStats {
|
|
|
204
235
|
address: string;
|
|
205
236
|
price: string;
|
|
206
237
|
percent_change_24h: string;
|
|
238
|
+
/** 시장 유통량. `/v1/public/token/stats`가 제공(문자열). 상세화면 Total Supply 표기용. */
|
|
239
|
+
circulating_supply?: string;
|
|
240
|
+
market_cap?: string;
|
|
241
|
+
volume_24h?: string;
|
|
207
242
|
}
|
|
208
243
|
interface TokenStatsResponse {
|
|
209
244
|
code: number;
|
|
@@ -529,7 +564,7 @@ interface CrossdPositionDetail {
|
|
|
529
564
|
* dapp-ui가 렌더하는 outlink의 대분류.
|
|
530
565
|
* `portfolio`는 세부적으로 `origin`으로 더 나뉜다.
|
|
531
566
|
*/
|
|
532
|
-
type OutlinkCategory = "terms" | "privacy" | "portfolio" | "send";
|
|
567
|
+
type OutlinkCategory = "terms" | "privacy" | "portfolio" | "send" | "token-detail";
|
|
533
568
|
/**
|
|
534
569
|
* `onOutlink` 콜백에 전달되는 호출 컨텍스트. `category` + `origin`으로
|
|
535
570
|
* 호출측이 목적지별 분기를 할 수 있고, `portfolio-*`의 경우 해당 섹션의
|
|
@@ -591,6 +626,13 @@ type OutlinkContext = {
|
|
|
591
626
|
chainId: number;
|
|
592
627
|
txHash: `0x${string}`;
|
|
593
628
|
};
|
|
629
|
+
} | {
|
|
630
|
+
category: "token-detail";
|
|
631
|
+
origin: "token-network" | "token-social" | "token-tx";
|
|
632
|
+
payload: {
|
|
633
|
+
address: string;
|
|
634
|
+
txHash?: string;
|
|
635
|
+
};
|
|
594
636
|
};
|
|
595
637
|
type OutlinkOrigin = OutlinkContext["origin"];
|
|
596
638
|
/**
|
|
@@ -1289,20 +1331,20 @@ declare function AppleIcon(): react_jsx_runtime.JSX.Element;
|
|
|
1289
1331
|
declare const WALLET_REGISTRY: {
|
|
1290
1332
|
cross_embedded: {
|
|
1291
1333
|
id: string;
|
|
1292
|
-
name:
|
|
1334
|
+
name: "ONEwallet with Social";
|
|
1293
1335
|
description: string;
|
|
1294
1336
|
icon: typeof CROSSxIcon;
|
|
1295
1337
|
};
|
|
1296
1338
|
cross_wallet: {
|
|
1297
1339
|
id: string;
|
|
1298
|
-
name:
|
|
1340
|
+
name: "ONEwallet+";
|
|
1299
1341
|
description: string;
|
|
1300
1342
|
icon: typeof CROSSxIcon;
|
|
1301
1343
|
featured: true;
|
|
1302
1344
|
};
|
|
1303
1345
|
cross_extension: {
|
|
1304
1346
|
id: string;
|
|
1305
|
-
name:
|
|
1347
|
+
name: "ONEwallet+ Extension";
|
|
1306
1348
|
description: string;
|
|
1307
1349
|
icon: typeof CROSSxIcon;
|
|
1308
1350
|
rdns: string;
|
|
@@ -1706,4 +1748,4 @@ interface SkillsButtonProps {
|
|
|
1706
1748
|
declare const DEFAULT_SKILLS_HREF = "https://www.onechain.nexus/skills";
|
|
1707
1749
|
declare function SkillsButton({ label, href, onClick, className, style, theme, disabled, isLoading, loadingLabel, openInNewTab, type, }: SkillsButtonProps): react_jsx_runtime.JSX.Element;
|
|
1708
1750
|
|
|
1709
|
-
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, type CrossdPosition, type CrossdPositionDetail, type CrossdPositionPoolRef, type CrossdPositionTokenRef, 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 };
|
|
1751
|
+
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, CHAINS_CONFIG_FILE, CONNECTOR_REGISTRY, CROSSX_ICON, type ChainDisplayMeta, type ChainId, type ChainsConfig, ConnectButton, type ConnectButtonProps, type ConnectButtonStyle, ConnectorId, type ConnectorMeta, type CrossdPosition, type CrossdPositionDetail, type CrossdPositionPoolRef, type CrossdPositionTokenRef, 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, getChainDisplay, getDappUiSentryScope, initDappUiSentry, normalizeFailureReason, resolveEnvironment, setDappUiAnalyticsUser, trackDappUiEvent, trackDappUiFunnel, useChainDisplay, useChainsConfig, useGlobalMenu, useTokenBalance, useTokenStats, useWalletDetect };
|