@tuwaio/nova-connect 1.0.0-fix-test-alpha.4.bd69225 → 1.0.0-fix-test-alpha.6.2ae3a34
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/evm/index.cjs +1 -1
- package/dist/evm/index.cjs.map +1 -1
- package/dist/evm/index.d.cts +1 -8
- package/dist/evm/index.d.ts +1 -8
- package/dist/evm/index.js +1 -1
- package/dist/evm/index.js.map +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +27 -44
- package/dist/index.d.ts +27 -44
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/solana/index.cjs +1 -1
- package/dist/solana/index.cjs.map +1 -1
- package/dist/solana/index.d.cts +2 -9
- package/dist/solana/index.d.ts +2 -9
- package/dist/solana/index.js +1 -1
- package/dist/solana/index.js.map +1 -1
- package/dist/{types-C0Vlrba-.d.cts → types-DGsiEwne.d.cts} +1 -26
- package/dist/{types-C0Vlrba-.d.ts → types-DGsiEwne.d.ts} +1 -26
- package/package.json +6 -8
package/dist/index.d.cts
CHANGED
|
@@ -4,12 +4,13 @@ import * as React$1 from 'react';
|
|
|
4
4
|
import React__default, { ComponentType, ReactNode, ComponentPropsWithoutRef } from 'react';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import * as Select from '@radix-ui/react-select';
|
|
7
|
+
import { I as InitialChains, C as ChainIdentifierArray } from './types-DGsiEwne.cjs';
|
|
8
|
+
export { A as AllChainConfigs } from './types-DGsiEwne.cjs';
|
|
7
9
|
import { TransactionPool, Transaction, TxAdapter } from '@tuwaio/pulsar-core';
|
|
10
|
+
import { BaseWallet } from '@tuwaio/satellite-core';
|
|
8
11
|
import { Dialog, DialogContent, StarsBackground } from '@tuwaio/nova-core';
|
|
9
|
-
import {
|
|
10
|
-
export {
|
|
11
|
-
import { ISatelliteConnectStore, BaseWallet } from '@tuwaio/satellite-core';
|
|
12
|
-
import { StoreApi } from 'zustand/index';
|
|
12
|
+
import { Connector } from '@tuwaio/satellite-react';
|
|
13
|
+
export { AllConnectors, AllWallets, Connector, SatelliteConnectProvider, SatelliteConnectProviderProps, SatelliteStoreContext, Wallet, useInitializeAutoConnect, useSatelliteConnectStore } from '@tuwaio/satellite-react';
|
|
13
14
|
import { ToastContainer, toast, ToastPosition } from 'react-toastify';
|
|
14
15
|
|
|
15
16
|
/**
|
|
@@ -427,7 +428,7 @@ type ChainSelectorCustomization = {
|
|
|
427
428
|
/**
|
|
428
429
|
* Props for the ChainSelector component.
|
|
429
430
|
*/
|
|
430
|
-
interface ChainSelectorProps extends InitialChains
|
|
431
|
+
interface ChainSelectorProps extends InitialChains {
|
|
431
432
|
/** Comprehensive customization options */
|
|
432
433
|
customization?: ChainSelectorCustomization;
|
|
433
434
|
/** Custom CSS classes for the main container */
|
|
@@ -442,7 +443,7 @@ interface ChainSelectorProps extends InitialChains, Pick<ConnectButtonProps, 'st
|
|
|
442
443
|
* @param props - Props for the ChainSelector component
|
|
443
444
|
* @returns The chain selector component or null if no wallet is connected
|
|
444
445
|
*/
|
|
445
|
-
declare function ChainSelector({ appChains, solanaRPCUrls,
|
|
446
|
+
declare function ChainSelector({ appChains, solanaRPCUrls, customization, className, 'aria-label': ariaLabel, }: ChainSelectorProps): react_jsx_runtime.JSX.Element | null;
|
|
446
447
|
|
|
447
448
|
/**
|
|
448
449
|
* @file Highly customizable scrollable chain list with comprehensive styling and behavior control.
|
|
@@ -881,7 +882,7 @@ interface ConnectButtonData {
|
|
|
881
882
|
/** Current labels from i18n */
|
|
882
883
|
labels: ReturnType<typeof useNovaConnectLabels>;
|
|
883
884
|
/** Active wallet information */
|
|
884
|
-
activeWallet:
|
|
885
|
+
activeWallet: BaseWallet | undefined;
|
|
885
886
|
}
|
|
886
887
|
type NavigationProps$1 = {
|
|
887
888
|
className?: string;
|
|
@@ -987,7 +988,7 @@ type ConnectButtonCustomization = {
|
|
|
987
988
|
/**
|
|
988
989
|
* Base props for ConnectButton component
|
|
989
990
|
*/
|
|
990
|
-
type ConnectButtonProps = InitialChains &
|
|
991
|
+
type ConnectButtonProps = InitialChains & {
|
|
991
992
|
/** CSS classes to apply to the button */
|
|
992
993
|
className?: string;
|
|
993
994
|
/** Transaction pool for pending transactions display */
|
|
@@ -1171,7 +1172,7 @@ type ConnectedContentCustomization = {
|
|
|
1171
1172
|
showBalanceDivider?: boolean;
|
|
1172
1173
|
};
|
|
1173
1174
|
};
|
|
1174
|
-
interface ConnectedContentProps extends Pick<ConnectButtonProps, 'transactionPool' | '
|
|
1175
|
+
interface ConnectedContentProps extends Pick<ConnectButtonProps, 'transactionPool' | 'withBalance'> {
|
|
1175
1176
|
/** Custom CSS classes for the container */
|
|
1176
1177
|
className?: string;
|
|
1177
1178
|
/** Custom aria-label for the container */
|
|
@@ -1624,7 +1625,7 @@ type CloseButtonProps = {
|
|
|
1624
1625
|
labels: Record<string, string>;
|
|
1625
1626
|
className?: string;
|
|
1626
1627
|
};
|
|
1627
|
-
type MainContentProps = Pick<ConnectButtonProps, 'transactionPool' | '
|
|
1628
|
+
type MainContentProps = Pick<ConnectButtonProps, 'transactionPool' | 'pulsarAdapter'> & {
|
|
1628
1629
|
contentType: ConnectedModalContentType;
|
|
1629
1630
|
balance: NativeBalanceResult | null;
|
|
1630
1631
|
ensNameAbbreviated: string | undefined;
|
|
@@ -2044,7 +2045,7 @@ type ConnectedModalFooterCustomization = {
|
|
|
2044
2045
|
/**
|
|
2045
2046
|
* Props for the ConnectedModalFooter component
|
|
2046
2047
|
*/
|
|
2047
|
-
interface ConnectedModalFooterProps
|
|
2048
|
+
interface ConnectedModalFooterProps {
|
|
2048
2049
|
/** Callback to control modal visibility */
|
|
2049
2050
|
setIsOpen: (isOpen: boolean) => void;
|
|
2050
2051
|
/** Custom CSS classes for the container */
|
|
@@ -2140,7 +2141,7 @@ type LoadingIndicatorProps = {
|
|
|
2140
2141
|
className?: string;
|
|
2141
2142
|
};
|
|
2142
2143
|
type AvatarSectionProps = {
|
|
2143
|
-
activeWallet:
|
|
2144
|
+
activeWallet: BaseWallet;
|
|
2144
2145
|
ensAvatar: string | null;
|
|
2145
2146
|
walletName: string;
|
|
2146
2147
|
connectorsCount: number;
|
|
@@ -2333,7 +2334,7 @@ type ConnectedModalMainContentCustomization = {
|
|
|
2333
2334
|
/**
|
|
2334
2335
|
* Props for the ConnectedModalMainContent component
|
|
2335
2336
|
*/
|
|
2336
|
-
interface ConnectedModalMainContentProps extends Pick<ConnectButtonProps, 'transactionPool'
|
|
2337
|
+
interface ConnectedModalMainContentProps extends Pick<ConnectButtonProps, 'transactionPool'> {
|
|
2337
2338
|
/** List of available chains for the current wallet */
|
|
2338
2339
|
chainsList: (string | number)[];
|
|
2339
2340
|
ensAvatar: string | null;
|
|
@@ -2445,14 +2446,14 @@ declare const ConnectedModalMainContent: React__default.ForwardRefExoticComponen
|
|
|
2445
2446
|
|
|
2446
2447
|
type WalletNameDisplayProps = {
|
|
2447
2448
|
ensNameAbbreviated?: string;
|
|
2448
|
-
activeWallet:
|
|
2449
|
+
activeWallet: BaseWallet;
|
|
2449
2450
|
labels: Record<string, string>;
|
|
2450
2451
|
className?: string;
|
|
2451
2452
|
};
|
|
2452
2453
|
type CopyButtonProps = {
|
|
2453
2454
|
isCopied: boolean;
|
|
2454
2455
|
onCopy: () => Promise<void>;
|
|
2455
|
-
activeWallet:
|
|
2456
|
+
activeWallet: BaseWallet;
|
|
2456
2457
|
labels: Record<string, string>;
|
|
2457
2458
|
className?: string;
|
|
2458
2459
|
disabled?: boolean;
|
|
@@ -2465,7 +2466,7 @@ type BalanceDisplayProps = {
|
|
|
2465
2466
|
};
|
|
2466
2467
|
type ScreenReaderFeedbackProps = {
|
|
2467
2468
|
isCopied: boolean;
|
|
2468
|
-
activeWallet:
|
|
2469
|
+
activeWallet: BaseWallet;
|
|
2469
2470
|
labels: Record<string, string>;
|
|
2470
2471
|
className?: string;
|
|
2471
2472
|
};
|
|
@@ -4192,7 +4193,7 @@ type ConnectorsBlockCustomization = {
|
|
|
4192
4193
|
/**
|
|
4193
4194
|
* Props for the ConnectorsBlock component
|
|
4194
4195
|
*/
|
|
4195
|
-
interface ConnectorsBlockProps extends Pick<ConnectorsSelectionsProps, 'waitForPredict' | 'setIsOpen' | 'setIsConnected' | 'onClick' | 'appChains' | 'solanaRPCUrls'
|
|
4196
|
+
interface ConnectorsBlockProps extends Pick<ConnectorsSelectionsProps, 'waitForPredict' | 'setIsOpen' | 'setIsConnected' | 'onClick' | 'appChains' | 'solanaRPCUrls'> {
|
|
4196
4197
|
/** Currently selected network adapter */
|
|
4197
4198
|
selectedAdapter: OrbitAdapter | undefined;
|
|
4198
4199
|
/** Array of grouped wallet connectors to display */
|
|
@@ -4483,7 +4484,7 @@ type ConnectorsSelectionsCustomization = {
|
|
|
4483
4484
|
/**
|
|
4484
4485
|
* Props for the ConnectorsSelections component
|
|
4485
4486
|
*/
|
|
4486
|
-
interface ConnectorsSelectionsProps extends Pick<ConnectButtonProps, 'withImpersonated'
|
|
4487
|
+
interface ConnectorsSelectionsProps extends Pick<ConnectButtonProps, 'withImpersonated'>, InitialChains {
|
|
4487
4488
|
/** Currently selected network adapter */
|
|
4488
4489
|
selectedAdapter: OrbitAdapter | undefined;
|
|
4489
4490
|
/** Array of grouped wallet connectors */
|
|
@@ -5206,7 +5207,7 @@ type ImpersonateFormCustomization = {
|
|
|
5206
5207
|
/**
|
|
5207
5208
|
* Props for the ImpersonateForm component
|
|
5208
5209
|
*/
|
|
5209
|
-
interface ImpersonateFormProps
|
|
5210
|
+
interface ImpersonateFormProps {
|
|
5210
5211
|
/** Current impersonated wallet address value */
|
|
5211
5212
|
impersonatedAddress: string;
|
|
5212
5213
|
/** Callback to update the impersonated address */
|
|
@@ -6643,7 +6644,7 @@ interface WalletNameAndAvatarData {
|
|
|
6643
6644
|
/** Function to retry the name resolution manually. */
|
|
6644
6645
|
retry: () => void;
|
|
6645
6646
|
}
|
|
6646
|
-
interface UseGetWalletNameAndAvatarOptions
|
|
6647
|
+
interface UseGetWalletNameAndAvatarOptions {
|
|
6647
6648
|
/** Number of characters to show on each side when abbreviating (default: 12) */
|
|
6648
6649
|
abbreviateSymbols?: number;
|
|
6649
6650
|
/** Maximum length before abbreviation is applied (default: 30) */
|
|
@@ -6697,7 +6698,6 @@ type ButtonTxStatus = 'idle' | 'loading' | 'succeed' | 'failed' | 'replaced';
|
|
|
6697
6698
|
type ConnectContentType = 'network' | 'connectors' | 'about' | 'getWallet' | 'connecting' | 'impersonate';
|
|
6698
6699
|
type ConnectedContentType = 'main' | 'transactions' | 'chains';
|
|
6699
6700
|
interface NovaConnectProviderProps {
|
|
6700
|
-
store: StoreApi<ISatelliteConnectStore<Connector, Wallet>>;
|
|
6701
6701
|
children: React.ReactNode;
|
|
6702
6702
|
labels?: Partial<NovaConnectLabels>;
|
|
6703
6703
|
}
|
|
@@ -6706,8 +6706,6 @@ interface WalletBalance {
|
|
|
6706
6706
|
symbol: string;
|
|
6707
6707
|
}
|
|
6708
6708
|
interface NovaConnectProviderType {
|
|
6709
|
-
activeWallet: BaseWallet | undefined;
|
|
6710
|
-
walletConnectionError: string | undefined;
|
|
6711
6709
|
isConnectModalOpen: boolean;
|
|
6712
6710
|
setIsConnectModalOpen: (value: boolean) => void;
|
|
6713
6711
|
isConnectedModalOpen: boolean;
|
|
@@ -7001,7 +6999,7 @@ interface NativeBalanceData {
|
|
|
7001
6999
|
* }
|
|
7002
7000
|
* ```
|
|
7003
7001
|
*/
|
|
7004
|
-
declare function useWalletNativeBalance(
|
|
7002
|
+
declare function useWalletNativeBalance(): NativeBalanceData;
|
|
7005
7003
|
|
|
7006
7004
|
type CustomToastErrorProps = {
|
|
7007
7005
|
title: string;
|
|
@@ -7068,7 +7066,7 @@ type ErrorsProviderCustomization = {
|
|
|
7068
7066
|
errorType: 'wallet' | 'switch' | null;
|
|
7069
7067
|
}) => string | null;
|
|
7070
7068
|
};
|
|
7071
|
-
interface ErrorsProviderProps
|
|
7069
|
+
interface ErrorsProviderProps {
|
|
7072
7070
|
/** Custom container ID for toast notifications */
|
|
7073
7071
|
containerId?: string;
|
|
7074
7072
|
/** Custom position for toast notifications */
|
|
@@ -7084,7 +7082,7 @@ interface ErrorsProviderProps extends Pick<NovaConnectProviderProps, 'store'> {
|
|
|
7084
7082
|
* A highly customizable error toast provider with extensive styling options and component replacement capabilities.
|
|
7085
7083
|
* Provides comprehensive customization for appearance, behavior, and error handling logic while maintaining accessibility.
|
|
7086
7084
|
*/
|
|
7087
|
-
declare function ErrorsProvider({
|
|
7085
|
+
declare function ErrorsProvider({ containerId, position, autoClose, draggable, customization, }: ErrorsProviderProps): react_jsx_runtime.JSX.Element;
|
|
7088
7086
|
declare namespace ErrorsProvider {
|
|
7089
7087
|
var displayName: string;
|
|
7090
7088
|
}
|
|
@@ -7134,7 +7132,7 @@ type CustomLabelsProviderProps = {
|
|
|
7134
7132
|
/**
|
|
7135
7133
|
* Props for custom ErrorsProvider component
|
|
7136
7134
|
*/
|
|
7137
|
-
type CustomErrorsProviderProps =
|
|
7135
|
+
type CustomErrorsProviderProps = {
|
|
7138
7136
|
customization?: ErrorsProviderCustomization;
|
|
7139
7137
|
};
|
|
7140
7138
|
/**
|
|
@@ -7184,15 +7182,6 @@ type NovaConnectProviderCustomization = {
|
|
|
7184
7182
|
};
|
|
7185
7183
|
/** ErrorsProvider customization - passed through to ErrorsProvider */
|
|
7186
7184
|
errors?: ErrorsProviderCustomization;
|
|
7187
|
-
/** Custom initialization logic */
|
|
7188
|
-
initialization?: {
|
|
7189
|
-
/** Custom logic after store subscription setup */
|
|
7190
|
-
onStoreSubscribed?: (context: ProviderContext) => void;
|
|
7191
|
-
/** Custom logic when connection state changes */
|
|
7192
|
-
onConnectionStateChange?: (isConnected: boolean, activeWallet: BaseWallet | undefined, context: ProviderContext) => void;
|
|
7193
|
-
/** Custom logic when error state changes */
|
|
7194
|
-
onErrorStateChange?: (error: string | undefined, context: ProviderContext) => void;
|
|
7195
|
-
};
|
|
7196
7185
|
/** Custom context value transformation */
|
|
7197
7186
|
contextValue?: {
|
|
7198
7187
|
/** Transform context value before providing to children */
|
|
@@ -7229,7 +7218,6 @@ interface NovaConnectProviderPropsWithCustomization extends NovaConnectProviderP
|
|
|
7229
7218
|
* - Modal and UI state coordination
|
|
7230
7219
|
* - Extensive customization API for all aspects
|
|
7231
7220
|
* - Custom component replacement capabilities
|
|
7232
|
-
* - Advanced initialization and lifecycle hooks
|
|
7233
7221
|
*
|
|
7234
7222
|
* @example Basic usage
|
|
7235
7223
|
* ```tsx
|
|
@@ -7251,11 +7239,6 @@ interface NovaConnectProviderPropsWithCustomization extends NovaConnectProviderP
|
|
|
7251
7239
|
* ToastError: CustomToastError
|
|
7252
7240
|
* }
|
|
7253
7241
|
* },
|
|
7254
|
-
* initialization: {
|
|
7255
|
-
* onConnectionStateChange: (isConnected, wallet) => {
|
|
7256
|
-
* console.log('Connection state:', isConnected, wallet);
|
|
7257
|
-
* }
|
|
7258
|
-
* }
|
|
7259
7242
|
* }}
|
|
7260
7243
|
* >
|
|
7261
7244
|
* <App />
|
|
@@ -7264,7 +7247,7 @@ interface NovaConnectProviderPropsWithCustomization extends NovaConnectProviderP
|
|
|
7264
7247
|
*
|
|
7265
7248
|
* @param props - Provider configuration and customization options
|
|
7266
7249
|
*/
|
|
7267
|
-
declare function NovaConnectProvider({ labels,
|
|
7250
|
+
declare function NovaConnectProvider({ labels, children, customization }: NovaConnectProviderPropsWithCustomization): react_jsx_runtime.JSX.Element;
|
|
7268
7251
|
declare namespace NovaConnectProvider {
|
|
7269
7252
|
var displayName: string;
|
|
7270
7253
|
}
|
|
@@ -8137,4 +8120,4 @@ declare function initializeBlockchainSupport(): Promise<InitializationResult>;
|
|
|
8137
8120
|
*/
|
|
8138
8121
|
declare function isAdapterSupported(adapter: OrbitAdapter): Promise<boolean>;
|
|
8139
8122
|
|
|
8140
|
-
export { AboutWallets, type AboutWalletsCustomization, type AboutWalletsProps, type AdapterInfo, type AdapterLoadStatus, type AnimationConfig, type BadgeAnimationConfig, type BadgeGradientConfig, type BlockchainUtilities, type BlockchainUtilityResult, type ButtonTxStatus, type ChainAdapter, ChainIdentifierArray, ChainListRenderer, type ChainListRendererCustomization, type ChainListRendererProps, ChainSelector, type ChainSelectorCustomization, type ChainSelectorProps, type ChainTriggerButtonCustomization, ConnectButton, type ConnectButtonCustomization, type ConnectButtonData, type ConnectButtonProps, ConnectCard, type ConnectCardCustomization, type ConnectCardData, type ConnectContentType, ConnectedContent, type ConnectedContentCustomization, type ConnectedContentProps, type ConnectedContentType, ConnectedModal, type ConnectedModalCustomization, ConnectedModalFooter, type ConnectedModalFooterCustomization, type ConnectedModalFooterProps, ConnectedModalMainContent, type ConnectedModalMainContentCustomization, type ConnectedModalMainContentProps, ConnectedModalNameAndBalance, type ConnectedModalNameAndBalanceCustomization, type ConnectedModalNameAndBalanceProps, type ConnectedModalProps, ConnectedModalTxHistory, type ConnectedModalTxHistoryCustomization, type ConnectedModalTxHistoryProps, Connecting, type ConnectingCustomization, type ConnectingProps, type ConnectingStatusData, type ConnectionState,
|
|
8123
|
+
export { AboutWallets, type AboutWalletsCustomization, type AboutWalletsProps, type AdapterInfo, type AdapterLoadStatus, type AnimationConfig, type BadgeAnimationConfig, type BadgeGradientConfig, type BlockchainUtilities, type BlockchainUtilityResult, type ButtonTxStatus, type ChainAdapter, ChainIdentifierArray, ChainListRenderer, type ChainListRendererCustomization, type ChainListRendererProps, ChainSelector, type ChainSelectorCustomization, type ChainSelectorProps, type ChainTriggerButtonCustomization, ConnectButton, type ConnectButtonCustomization, type ConnectButtonData, type ConnectButtonProps, ConnectCard, type ConnectCardCustomization, type ConnectCardData, type ConnectContentType, ConnectedContent, type ConnectedContentCustomization, type ConnectedContentProps, type ConnectedContentType, ConnectedModal, type ConnectedModalCustomization, ConnectedModalFooter, type ConnectedModalFooterCustomization, type ConnectedModalFooterProps, ConnectedModalMainContent, type ConnectedModalMainContentCustomization, type ConnectedModalMainContentProps, ConnectedModalNameAndBalance, type ConnectedModalNameAndBalanceCustomization, type ConnectedModalNameAndBalanceProps, type ConnectedModalProps, ConnectedModalTxHistory, type ConnectedModalTxHistoryCustomization, type ConnectedModalTxHistoryProps, Connecting, type ConnectingCustomization, type ConnectingProps, type ConnectingStatusData, type ConnectionState, type ConnectorItemData, ConnectorsBlock, type ConnectorsBlockCustomization, type ConnectorsBlockData, ConnectorsSelections, type ConnectorsSelectionsCustomization, type ConnectorsSelectionsData, type ConnectorsSelectionsProps, Disclaimer, type DisclaimerCustomization, type DisclaimerProps, ErrorsProvider, type ErrorsProviderCustomization, type ErrorsProviderProps, GetWallet, type GetWalletCustomization, type GetWalletProps, type GroupedConnector, IconButton, type IconButtonCustomization, type IconButtonProps, ImpersonateForm, type ImpersonateFormCustomization, type ImpersonateFormProps, type ImpersonateSectionData, InitialChains, type InitializationResult, type LabelCategory, type NativeBalanceResult, type NetworkIconsCustomization, NetworkSelections, type NetworkSelectionsCustomization, type NetworkSelectionsData, type NetworkTabData, NetworkTabs, type NetworkTabsCustomization, type NetworkTabsProps, type NovaConnectLabels, NovaConnectLabelsContext, NovaConnectLabelsProvider, NovaConnectProvider, NovaConnectProviderContext, type NovaConnectProviderCustomization, NovaConnectProviderError, type NovaConnectProviderProps, type NovaConnectProviderPropsWithCustomization, type NovaConnectProviderType, RecentBadge, type RecentBadgeCustomization, type RecentBadgeProps, ScrollableChainList, type ScrollableChainListCustomization, type ScrollableChainListProps, SelectContentAnimated, type SelectContentAnimatedProps, StatusIcon, type StatusIconCustomization, type StatusIconProps$1 as StatusIconProps, ToBottomButton, type ToBottomButtonCustomization, type ToBottomButtonProps, ToTopButton, type ToTopButtonCustomization, type ToTopButtonProps, ToastError, type ToastErrorCustomization, type ToastErrorProps, type ValidationConfig, WaitForConnectionContent, type WaitForConnectionContentCustomization, type WaitForConnectionContentProps, WalletAvatar, type WalletAvatarCustomization, type WalletAvatarProps, type WalletAvatarSize, type WalletBalance, WalletIcon, type WalletIconConfig, type WalletIconCustomization, type WalletIconProps, type WalletNameAndAvatarData, createLabelsSubset, defaultLabels, getAdapterStatus, getAllAdaptersStatus, getAvailableChainIds, getAvailableSolanaClusters, getAvailableSolanaClusters$1 as getAvailableSolanaClustersAsync, getBlockchainUtilities, getChainsListByWalletTypeSync as getChainsListByWalletType, getChainsListByWalletType as getChainsListByWalletTypeAsync, getChainsListByWalletTypeSync, getConnectChainId, getEvmUtils, getFilteredConnectors, getGroupedConnectors, getLabelWithFallback, getNetworkIcon, getSolanaUtils, getWalletChains, hasAvailableConnectors, hasConnectorsForAdapter, hasLabel, initializeBlockchainSupport, isAdapterSupported, isDefaultLabels, isEvmChainListSync as isEvmChainList, isEvmChainList as isEvmChainListAsync, isEvmChainListSync, isSolanaChainListSync as isSolanaChainList, isSolanaChainList as isSolanaChainListAsync, isSolanaChainListSync, isValidSolanaCluster, isValidSolanaCluster$1 as isValidSolanaClusterAsync, networksLinks, preloadChainAdapters, ukrainianLabels, useGetWalletNameAndAvatar, useHasNovaConnectContext, useLabelsByCategory, useNovaConnect, useNovaConnectLabel, useNovaConnectLabels, useNovaConnectLabelsSubset, useNovaConnectOptional, useWalletNativeBalance };
|
package/dist/index.d.ts
CHANGED
|
@@ -4,12 +4,13 @@ import * as React$1 from 'react';
|
|
|
4
4
|
import React__default, { ComponentType, ReactNode, ComponentPropsWithoutRef } from 'react';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import * as Select from '@radix-ui/react-select';
|
|
7
|
+
import { I as InitialChains, C as ChainIdentifierArray } from './types-DGsiEwne.js';
|
|
8
|
+
export { A as AllChainConfigs } from './types-DGsiEwne.js';
|
|
7
9
|
import { TransactionPool, Transaction, TxAdapter } from '@tuwaio/pulsar-core';
|
|
10
|
+
import { BaseWallet } from '@tuwaio/satellite-core';
|
|
8
11
|
import { Dialog, DialogContent, StarsBackground } from '@tuwaio/nova-core';
|
|
9
|
-
import {
|
|
10
|
-
export {
|
|
11
|
-
import { ISatelliteConnectStore, BaseWallet } from '@tuwaio/satellite-core';
|
|
12
|
-
import { StoreApi } from 'zustand/index';
|
|
12
|
+
import { Connector } from '@tuwaio/satellite-react';
|
|
13
|
+
export { AllConnectors, AllWallets, Connector, SatelliteConnectProvider, SatelliteConnectProviderProps, SatelliteStoreContext, Wallet, useInitializeAutoConnect, useSatelliteConnectStore } from '@tuwaio/satellite-react';
|
|
13
14
|
import { ToastContainer, toast, ToastPosition } from 'react-toastify';
|
|
14
15
|
|
|
15
16
|
/**
|
|
@@ -427,7 +428,7 @@ type ChainSelectorCustomization = {
|
|
|
427
428
|
/**
|
|
428
429
|
* Props for the ChainSelector component.
|
|
429
430
|
*/
|
|
430
|
-
interface ChainSelectorProps extends InitialChains
|
|
431
|
+
interface ChainSelectorProps extends InitialChains {
|
|
431
432
|
/** Comprehensive customization options */
|
|
432
433
|
customization?: ChainSelectorCustomization;
|
|
433
434
|
/** Custom CSS classes for the main container */
|
|
@@ -442,7 +443,7 @@ interface ChainSelectorProps extends InitialChains, Pick<ConnectButtonProps, 'st
|
|
|
442
443
|
* @param props - Props for the ChainSelector component
|
|
443
444
|
* @returns The chain selector component or null if no wallet is connected
|
|
444
445
|
*/
|
|
445
|
-
declare function ChainSelector({ appChains, solanaRPCUrls,
|
|
446
|
+
declare function ChainSelector({ appChains, solanaRPCUrls, customization, className, 'aria-label': ariaLabel, }: ChainSelectorProps): react_jsx_runtime.JSX.Element | null;
|
|
446
447
|
|
|
447
448
|
/**
|
|
448
449
|
* @file Highly customizable scrollable chain list with comprehensive styling and behavior control.
|
|
@@ -881,7 +882,7 @@ interface ConnectButtonData {
|
|
|
881
882
|
/** Current labels from i18n */
|
|
882
883
|
labels: ReturnType<typeof useNovaConnectLabels>;
|
|
883
884
|
/** Active wallet information */
|
|
884
|
-
activeWallet:
|
|
885
|
+
activeWallet: BaseWallet | undefined;
|
|
885
886
|
}
|
|
886
887
|
type NavigationProps$1 = {
|
|
887
888
|
className?: string;
|
|
@@ -987,7 +988,7 @@ type ConnectButtonCustomization = {
|
|
|
987
988
|
/**
|
|
988
989
|
* Base props for ConnectButton component
|
|
989
990
|
*/
|
|
990
|
-
type ConnectButtonProps = InitialChains &
|
|
991
|
+
type ConnectButtonProps = InitialChains & {
|
|
991
992
|
/** CSS classes to apply to the button */
|
|
992
993
|
className?: string;
|
|
993
994
|
/** Transaction pool for pending transactions display */
|
|
@@ -1171,7 +1172,7 @@ type ConnectedContentCustomization = {
|
|
|
1171
1172
|
showBalanceDivider?: boolean;
|
|
1172
1173
|
};
|
|
1173
1174
|
};
|
|
1174
|
-
interface ConnectedContentProps extends Pick<ConnectButtonProps, 'transactionPool' | '
|
|
1175
|
+
interface ConnectedContentProps extends Pick<ConnectButtonProps, 'transactionPool' | 'withBalance'> {
|
|
1175
1176
|
/** Custom CSS classes for the container */
|
|
1176
1177
|
className?: string;
|
|
1177
1178
|
/** Custom aria-label for the container */
|
|
@@ -1624,7 +1625,7 @@ type CloseButtonProps = {
|
|
|
1624
1625
|
labels: Record<string, string>;
|
|
1625
1626
|
className?: string;
|
|
1626
1627
|
};
|
|
1627
|
-
type MainContentProps = Pick<ConnectButtonProps, 'transactionPool' | '
|
|
1628
|
+
type MainContentProps = Pick<ConnectButtonProps, 'transactionPool' | 'pulsarAdapter'> & {
|
|
1628
1629
|
contentType: ConnectedModalContentType;
|
|
1629
1630
|
balance: NativeBalanceResult | null;
|
|
1630
1631
|
ensNameAbbreviated: string | undefined;
|
|
@@ -2044,7 +2045,7 @@ type ConnectedModalFooterCustomization = {
|
|
|
2044
2045
|
/**
|
|
2045
2046
|
* Props for the ConnectedModalFooter component
|
|
2046
2047
|
*/
|
|
2047
|
-
interface ConnectedModalFooterProps
|
|
2048
|
+
interface ConnectedModalFooterProps {
|
|
2048
2049
|
/** Callback to control modal visibility */
|
|
2049
2050
|
setIsOpen: (isOpen: boolean) => void;
|
|
2050
2051
|
/** Custom CSS classes for the container */
|
|
@@ -2140,7 +2141,7 @@ type LoadingIndicatorProps = {
|
|
|
2140
2141
|
className?: string;
|
|
2141
2142
|
};
|
|
2142
2143
|
type AvatarSectionProps = {
|
|
2143
|
-
activeWallet:
|
|
2144
|
+
activeWallet: BaseWallet;
|
|
2144
2145
|
ensAvatar: string | null;
|
|
2145
2146
|
walletName: string;
|
|
2146
2147
|
connectorsCount: number;
|
|
@@ -2333,7 +2334,7 @@ type ConnectedModalMainContentCustomization = {
|
|
|
2333
2334
|
/**
|
|
2334
2335
|
* Props for the ConnectedModalMainContent component
|
|
2335
2336
|
*/
|
|
2336
|
-
interface ConnectedModalMainContentProps extends Pick<ConnectButtonProps, 'transactionPool'
|
|
2337
|
+
interface ConnectedModalMainContentProps extends Pick<ConnectButtonProps, 'transactionPool'> {
|
|
2337
2338
|
/** List of available chains for the current wallet */
|
|
2338
2339
|
chainsList: (string | number)[];
|
|
2339
2340
|
ensAvatar: string | null;
|
|
@@ -2445,14 +2446,14 @@ declare const ConnectedModalMainContent: React__default.ForwardRefExoticComponen
|
|
|
2445
2446
|
|
|
2446
2447
|
type WalletNameDisplayProps = {
|
|
2447
2448
|
ensNameAbbreviated?: string;
|
|
2448
|
-
activeWallet:
|
|
2449
|
+
activeWallet: BaseWallet;
|
|
2449
2450
|
labels: Record<string, string>;
|
|
2450
2451
|
className?: string;
|
|
2451
2452
|
};
|
|
2452
2453
|
type CopyButtonProps = {
|
|
2453
2454
|
isCopied: boolean;
|
|
2454
2455
|
onCopy: () => Promise<void>;
|
|
2455
|
-
activeWallet:
|
|
2456
|
+
activeWallet: BaseWallet;
|
|
2456
2457
|
labels: Record<string, string>;
|
|
2457
2458
|
className?: string;
|
|
2458
2459
|
disabled?: boolean;
|
|
@@ -2465,7 +2466,7 @@ type BalanceDisplayProps = {
|
|
|
2465
2466
|
};
|
|
2466
2467
|
type ScreenReaderFeedbackProps = {
|
|
2467
2468
|
isCopied: boolean;
|
|
2468
|
-
activeWallet:
|
|
2469
|
+
activeWallet: BaseWallet;
|
|
2469
2470
|
labels: Record<string, string>;
|
|
2470
2471
|
className?: string;
|
|
2471
2472
|
};
|
|
@@ -4192,7 +4193,7 @@ type ConnectorsBlockCustomization = {
|
|
|
4192
4193
|
/**
|
|
4193
4194
|
* Props for the ConnectorsBlock component
|
|
4194
4195
|
*/
|
|
4195
|
-
interface ConnectorsBlockProps extends Pick<ConnectorsSelectionsProps, 'waitForPredict' | 'setIsOpen' | 'setIsConnected' | 'onClick' | 'appChains' | 'solanaRPCUrls'
|
|
4196
|
+
interface ConnectorsBlockProps extends Pick<ConnectorsSelectionsProps, 'waitForPredict' | 'setIsOpen' | 'setIsConnected' | 'onClick' | 'appChains' | 'solanaRPCUrls'> {
|
|
4196
4197
|
/** Currently selected network adapter */
|
|
4197
4198
|
selectedAdapter: OrbitAdapter | undefined;
|
|
4198
4199
|
/** Array of grouped wallet connectors to display */
|
|
@@ -4483,7 +4484,7 @@ type ConnectorsSelectionsCustomization = {
|
|
|
4483
4484
|
/**
|
|
4484
4485
|
* Props for the ConnectorsSelections component
|
|
4485
4486
|
*/
|
|
4486
|
-
interface ConnectorsSelectionsProps extends Pick<ConnectButtonProps, 'withImpersonated'
|
|
4487
|
+
interface ConnectorsSelectionsProps extends Pick<ConnectButtonProps, 'withImpersonated'>, InitialChains {
|
|
4487
4488
|
/** Currently selected network adapter */
|
|
4488
4489
|
selectedAdapter: OrbitAdapter | undefined;
|
|
4489
4490
|
/** Array of grouped wallet connectors */
|
|
@@ -5206,7 +5207,7 @@ type ImpersonateFormCustomization = {
|
|
|
5206
5207
|
/**
|
|
5207
5208
|
* Props for the ImpersonateForm component
|
|
5208
5209
|
*/
|
|
5209
|
-
interface ImpersonateFormProps
|
|
5210
|
+
interface ImpersonateFormProps {
|
|
5210
5211
|
/** Current impersonated wallet address value */
|
|
5211
5212
|
impersonatedAddress: string;
|
|
5212
5213
|
/** Callback to update the impersonated address */
|
|
@@ -6643,7 +6644,7 @@ interface WalletNameAndAvatarData {
|
|
|
6643
6644
|
/** Function to retry the name resolution manually. */
|
|
6644
6645
|
retry: () => void;
|
|
6645
6646
|
}
|
|
6646
|
-
interface UseGetWalletNameAndAvatarOptions
|
|
6647
|
+
interface UseGetWalletNameAndAvatarOptions {
|
|
6647
6648
|
/** Number of characters to show on each side when abbreviating (default: 12) */
|
|
6648
6649
|
abbreviateSymbols?: number;
|
|
6649
6650
|
/** Maximum length before abbreviation is applied (default: 30) */
|
|
@@ -6697,7 +6698,6 @@ type ButtonTxStatus = 'idle' | 'loading' | 'succeed' | 'failed' | 'replaced';
|
|
|
6697
6698
|
type ConnectContentType = 'network' | 'connectors' | 'about' | 'getWallet' | 'connecting' | 'impersonate';
|
|
6698
6699
|
type ConnectedContentType = 'main' | 'transactions' | 'chains';
|
|
6699
6700
|
interface NovaConnectProviderProps {
|
|
6700
|
-
store: StoreApi<ISatelliteConnectStore<Connector, Wallet>>;
|
|
6701
6701
|
children: React.ReactNode;
|
|
6702
6702
|
labels?: Partial<NovaConnectLabels>;
|
|
6703
6703
|
}
|
|
@@ -6706,8 +6706,6 @@ interface WalletBalance {
|
|
|
6706
6706
|
symbol: string;
|
|
6707
6707
|
}
|
|
6708
6708
|
interface NovaConnectProviderType {
|
|
6709
|
-
activeWallet: BaseWallet | undefined;
|
|
6710
|
-
walletConnectionError: string | undefined;
|
|
6711
6709
|
isConnectModalOpen: boolean;
|
|
6712
6710
|
setIsConnectModalOpen: (value: boolean) => void;
|
|
6713
6711
|
isConnectedModalOpen: boolean;
|
|
@@ -7001,7 +6999,7 @@ interface NativeBalanceData {
|
|
|
7001
6999
|
* }
|
|
7002
7000
|
* ```
|
|
7003
7001
|
*/
|
|
7004
|
-
declare function useWalletNativeBalance(
|
|
7002
|
+
declare function useWalletNativeBalance(): NativeBalanceData;
|
|
7005
7003
|
|
|
7006
7004
|
type CustomToastErrorProps = {
|
|
7007
7005
|
title: string;
|
|
@@ -7068,7 +7066,7 @@ type ErrorsProviderCustomization = {
|
|
|
7068
7066
|
errorType: 'wallet' | 'switch' | null;
|
|
7069
7067
|
}) => string | null;
|
|
7070
7068
|
};
|
|
7071
|
-
interface ErrorsProviderProps
|
|
7069
|
+
interface ErrorsProviderProps {
|
|
7072
7070
|
/** Custom container ID for toast notifications */
|
|
7073
7071
|
containerId?: string;
|
|
7074
7072
|
/** Custom position for toast notifications */
|
|
@@ -7084,7 +7082,7 @@ interface ErrorsProviderProps extends Pick<NovaConnectProviderProps, 'store'> {
|
|
|
7084
7082
|
* A highly customizable error toast provider with extensive styling options and component replacement capabilities.
|
|
7085
7083
|
* Provides comprehensive customization for appearance, behavior, and error handling logic while maintaining accessibility.
|
|
7086
7084
|
*/
|
|
7087
|
-
declare function ErrorsProvider({
|
|
7085
|
+
declare function ErrorsProvider({ containerId, position, autoClose, draggable, customization, }: ErrorsProviderProps): react_jsx_runtime.JSX.Element;
|
|
7088
7086
|
declare namespace ErrorsProvider {
|
|
7089
7087
|
var displayName: string;
|
|
7090
7088
|
}
|
|
@@ -7134,7 +7132,7 @@ type CustomLabelsProviderProps = {
|
|
|
7134
7132
|
/**
|
|
7135
7133
|
* Props for custom ErrorsProvider component
|
|
7136
7134
|
*/
|
|
7137
|
-
type CustomErrorsProviderProps =
|
|
7135
|
+
type CustomErrorsProviderProps = {
|
|
7138
7136
|
customization?: ErrorsProviderCustomization;
|
|
7139
7137
|
};
|
|
7140
7138
|
/**
|
|
@@ -7184,15 +7182,6 @@ type NovaConnectProviderCustomization = {
|
|
|
7184
7182
|
};
|
|
7185
7183
|
/** ErrorsProvider customization - passed through to ErrorsProvider */
|
|
7186
7184
|
errors?: ErrorsProviderCustomization;
|
|
7187
|
-
/** Custom initialization logic */
|
|
7188
|
-
initialization?: {
|
|
7189
|
-
/** Custom logic after store subscription setup */
|
|
7190
|
-
onStoreSubscribed?: (context: ProviderContext) => void;
|
|
7191
|
-
/** Custom logic when connection state changes */
|
|
7192
|
-
onConnectionStateChange?: (isConnected: boolean, activeWallet: BaseWallet | undefined, context: ProviderContext) => void;
|
|
7193
|
-
/** Custom logic when error state changes */
|
|
7194
|
-
onErrorStateChange?: (error: string | undefined, context: ProviderContext) => void;
|
|
7195
|
-
};
|
|
7196
7185
|
/** Custom context value transformation */
|
|
7197
7186
|
contextValue?: {
|
|
7198
7187
|
/** Transform context value before providing to children */
|
|
@@ -7229,7 +7218,6 @@ interface NovaConnectProviderPropsWithCustomization extends NovaConnectProviderP
|
|
|
7229
7218
|
* - Modal and UI state coordination
|
|
7230
7219
|
* - Extensive customization API for all aspects
|
|
7231
7220
|
* - Custom component replacement capabilities
|
|
7232
|
-
* - Advanced initialization and lifecycle hooks
|
|
7233
7221
|
*
|
|
7234
7222
|
* @example Basic usage
|
|
7235
7223
|
* ```tsx
|
|
@@ -7251,11 +7239,6 @@ interface NovaConnectProviderPropsWithCustomization extends NovaConnectProviderP
|
|
|
7251
7239
|
* ToastError: CustomToastError
|
|
7252
7240
|
* }
|
|
7253
7241
|
* },
|
|
7254
|
-
* initialization: {
|
|
7255
|
-
* onConnectionStateChange: (isConnected, wallet) => {
|
|
7256
|
-
* console.log('Connection state:', isConnected, wallet);
|
|
7257
|
-
* }
|
|
7258
|
-
* }
|
|
7259
7242
|
* }}
|
|
7260
7243
|
* >
|
|
7261
7244
|
* <App />
|
|
@@ -7264,7 +7247,7 @@ interface NovaConnectProviderPropsWithCustomization extends NovaConnectProviderP
|
|
|
7264
7247
|
*
|
|
7265
7248
|
* @param props - Provider configuration and customization options
|
|
7266
7249
|
*/
|
|
7267
|
-
declare function NovaConnectProvider({ labels,
|
|
7250
|
+
declare function NovaConnectProvider({ labels, children, customization }: NovaConnectProviderPropsWithCustomization): react_jsx_runtime.JSX.Element;
|
|
7268
7251
|
declare namespace NovaConnectProvider {
|
|
7269
7252
|
var displayName: string;
|
|
7270
7253
|
}
|
|
@@ -8137,4 +8120,4 @@ declare function initializeBlockchainSupport(): Promise<InitializationResult>;
|
|
|
8137
8120
|
*/
|
|
8138
8121
|
declare function isAdapterSupported(adapter: OrbitAdapter): Promise<boolean>;
|
|
8139
8122
|
|
|
8140
|
-
export { AboutWallets, type AboutWalletsCustomization, type AboutWalletsProps, type AdapterInfo, type AdapterLoadStatus, type AnimationConfig, type BadgeAnimationConfig, type BadgeGradientConfig, type BlockchainUtilities, type BlockchainUtilityResult, type ButtonTxStatus, type ChainAdapter, ChainIdentifierArray, ChainListRenderer, type ChainListRendererCustomization, type ChainListRendererProps, ChainSelector, type ChainSelectorCustomization, type ChainSelectorProps, type ChainTriggerButtonCustomization, ConnectButton, type ConnectButtonCustomization, type ConnectButtonData, type ConnectButtonProps, ConnectCard, type ConnectCardCustomization, type ConnectCardData, type ConnectContentType, ConnectedContent, type ConnectedContentCustomization, type ConnectedContentProps, type ConnectedContentType, ConnectedModal, type ConnectedModalCustomization, ConnectedModalFooter, type ConnectedModalFooterCustomization, type ConnectedModalFooterProps, ConnectedModalMainContent, type ConnectedModalMainContentCustomization, type ConnectedModalMainContentProps, ConnectedModalNameAndBalance, type ConnectedModalNameAndBalanceCustomization, type ConnectedModalNameAndBalanceProps, type ConnectedModalProps, ConnectedModalTxHistory, type ConnectedModalTxHistoryCustomization, type ConnectedModalTxHistoryProps, Connecting, type ConnectingCustomization, type ConnectingProps, type ConnectingStatusData, type ConnectionState,
|
|
8123
|
+
export { AboutWallets, type AboutWalletsCustomization, type AboutWalletsProps, type AdapterInfo, type AdapterLoadStatus, type AnimationConfig, type BadgeAnimationConfig, type BadgeGradientConfig, type BlockchainUtilities, type BlockchainUtilityResult, type ButtonTxStatus, type ChainAdapter, ChainIdentifierArray, ChainListRenderer, type ChainListRendererCustomization, type ChainListRendererProps, ChainSelector, type ChainSelectorCustomization, type ChainSelectorProps, type ChainTriggerButtonCustomization, ConnectButton, type ConnectButtonCustomization, type ConnectButtonData, type ConnectButtonProps, ConnectCard, type ConnectCardCustomization, type ConnectCardData, type ConnectContentType, ConnectedContent, type ConnectedContentCustomization, type ConnectedContentProps, type ConnectedContentType, ConnectedModal, type ConnectedModalCustomization, ConnectedModalFooter, type ConnectedModalFooterCustomization, type ConnectedModalFooterProps, ConnectedModalMainContent, type ConnectedModalMainContentCustomization, type ConnectedModalMainContentProps, ConnectedModalNameAndBalance, type ConnectedModalNameAndBalanceCustomization, type ConnectedModalNameAndBalanceProps, type ConnectedModalProps, ConnectedModalTxHistory, type ConnectedModalTxHistoryCustomization, type ConnectedModalTxHistoryProps, Connecting, type ConnectingCustomization, type ConnectingProps, type ConnectingStatusData, type ConnectionState, type ConnectorItemData, ConnectorsBlock, type ConnectorsBlockCustomization, type ConnectorsBlockData, ConnectorsSelections, type ConnectorsSelectionsCustomization, type ConnectorsSelectionsData, type ConnectorsSelectionsProps, Disclaimer, type DisclaimerCustomization, type DisclaimerProps, ErrorsProvider, type ErrorsProviderCustomization, type ErrorsProviderProps, GetWallet, type GetWalletCustomization, type GetWalletProps, type GroupedConnector, IconButton, type IconButtonCustomization, type IconButtonProps, ImpersonateForm, type ImpersonateFormCustomization, type ImpersonateFormProps, type ImpersonateSectionData, InitialChains, type InitializationResult, type LabelCategory, type NativeBalanceResult, type NetworkIconsCustomization, NetworkSelections, type NetworkSelectionsCustomization, type NetworkSelectionsData, type NetworkTabData, NetworkTabs, type NetworkTabsCustomization, type NetworkTabsProps, type NovaConnectLabels, NovaConnectLabelsContext, NovaConnectLabelsProvider, NovaConnectProvider, NovaConnectProviderContext, type NovaConnectProviderCustomization, NovaConnectProviderError, type NovaConnectProviderProps, type NovaConnectProviderPropsWithCustomization, type NovaConnectProviderType, RecentBadge, type RecentBadgeCustomization, type RecentBadgeProps, ScrollableChainList, type ScrollableChainListCustomization, type ScrollableChainListProps, SelectContentAnimated, type SelectContentAnimatedProps, StatusIcon, type StatusIconCustomization, type StatusIconProps$1 as StatusIconProps, ToBottomButton, type ToBottomButtonCustomization, type ToBottomButtonProps, ToTopButton, type ToTopButtonCustomization, type ToTopButtonProps, ToastError, type ToastErrorCustomization, type ToastErrorProps, type ValidationConfig, WaitForConnectionContent, type WaitForConnectionContentCustomization, type WaitForConnectionContentProps, WalletAvatar, type WalletAvatarCustomization, type WalletAvatarProps, type WalletAvatarSize, type WalletBalance, WalletIcon, type WalletIconConfig, type WalletIconCustomization, type WalletIconProps, type WalletNameAndAvatarData, createLabelsSubset, defaultLabels, getAdapterStatus, getAllAdaptersStatus, getAvailableChainIds, getAvailableSolanaClusters, getAvailableSolanaClusters$1 as getAvailableSolanaClustersAsync, getBlockchainUtilities, getChainsListByWalletTypeSync as getChainsListByWalletType, getChainsListByWalletType as getChainsListByWalletTypeAsync, getChainsListByWalletTypeSync, getConnectChainId, getEvmUtils, getFilteredConnectors, getGroupedConnectors, getLabelWithFallback, getNetworkIcon, getSolanaUtils, getWalletChains, hasAvailableConnectors, hasConnectorsForAdapter, hasLabel, initializeBlockchainSupport, isAdapterSupported, isDefaultLabels, isEvmChainListSync as isEvmChainList, isEvmChainList as isEvmChainListAsync, isEvmChainListSync, isSolanaChainListSync as isSolanaChainList, isSolanaChainList as isSolanaChainListAsync, isSolanaChainListSync, isValidSolanaCluster, isValidSolanaCluster$1 as isValidSolanaClusterAsync, networksLinks, preloadChainAdapters, ukrainianLabels, useGetWalletNameAndAvatar, useHasNovaConnectContext, useLabelsByCategory, useNovaConnect, useNovaConnectLabel, useNovaConnectLabels, useNovaConnectLabelsSubset, useNovaConnectOptional, useWalletNativeBalance };
|