@vechain/vechain-kit 1.4.0 → 1.4.1

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.d.cts CHANGED
@@ -7,7 +7,7 @@ import { P as PrivyAppInfo, T as TransactionProgress, a as TransactionStatusErro
7
7
  export { h as ExecuteWithAuthorizationSignData } from './Constants-DQeyU9X7.cjs';
8
8
  import { WalletSource, LogLevel } from '@vechain/dapp-kit';
9
9
  import { WalletConnectOptions } from '@vechain/dapp-kit-react';
10
- export { useConnex } from '@vechain/dapp-kit-react';
10
+ export { useConnex, useWallet as useDappKitWallet } from '@vechain/dapp-kit-react';
11
11
  import { CustomizedStyle, SourceInfo, I18n } from '@vechain/dapp-kit-ui';
12
12
  import * as _tanstack_react_query from '@tanstack/react-query';
13
13
  import { UseQueryResult } from '@tanstack/react-query';
@@ -17,20 +17,20 @@ import { ThorClient } from '@vechain/sdk-network';
17
17
  import { Options } from 'browser-image-compression';
18
18
  import { Interface } from 'ethers';
19
19
  import { IconType } from 'react-icons';
20
- import { ButtonProps, IconButtonProps, StackProps, ImageProps } from '@chakra-ui/react';
20
+ import { ButtonProps, IconButtonProps, PropsOf, VStack, StackProps, ImageProps } from '@chakra-ui/react';
21
21
 
22
- type Props$w = {
22
+ type Props$x = {
23
23
  isOpen: boolean;
24
24
  onClose: () => void;
25
25
  };
26
26
  type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
27
- declare const ConnectModal: ({ isOpen, onClose }: Props$w) => react_jsx_runtime.JSX.Element;
27
+ declare const ConnectModal: ({ isOpen, onClose }: Props$x) => react_jsx_runtime.JSX.Element;
28
28
 
29
- type Props$v = {
29
+ type Props$w = {
30
30
  setCurrentContent: React__default.Dispatch<React__default.SetStateAction<ConnectModalContentsTypes>>;
31
31
  onClose: () => void;
32
32
  };
33
- declare const MainContent: ({ setCurrentContent, onClose }: Props$v) => react_jsx_runtime.JSX.Element;
33
+ declare const MainContent: ({ setCurrentContent, onClose }: Props$w) => react_jsx_runtime.JSX.Element;
34
34
 
35
35
  interface ConnectionButtonProps {
36
36
  isDark: boolean;
@@ -43,51 +43,51 @@ declare const ConnectionButton: ({ isDark, onClick, text, icon, customIcon, }: C
43
43
 
44
44
  declare const EmailLoginButton: () => react_jsx_runtime.JSX.Element;
45
45
 
46
- type Props$u = {
46
+ type Props$v = {
47
47
  isDark: boolean;
48
48
  gridColumn?: number;
49
49
  };
50
- declare const VeChainLoginButton: ({ isDark, gridColumn }: Props$u) => react_jsx_runtime.JSX.Element;
50
+ declare const VeChainLoginButton: ({ isDark, gridColumn }: Props$v) => react_jsx_runtime.JSX.Element;
51
51
 
52
- type Props$t = {
52
+ type Props$u = {
53
53
  isDark: boolean;
54
54
  appsInfo: PrivyAppInfo[];
55
55
  isLoading: boolean;
56
56
  gridColumn?: number;
57
57
  };
58
- declare const EcosystemButton: ({ isDark, appsInfo, isLoading, gridColumn, }: Props$t) => react_jsx_runtime.JSX.Element;
58
+ declare const EcosystemButton: ({ isDark, appsInfo, isLoading, gridColumn, }: Props$u) => react_jsx_runtime.JSX.Element;
59
59
 
60
- type Props$s = {
60
+ type Props$t = {
61
61
  isDark: boolean;
62
62
  onViewMoreLogin: () => void;
63
63
  gridColumn?: number;
64
64
  };
65
- declare const PrivyButton: ({ isDark, onViewMoreLogin, gridColumn }: Props$s) => react_jsx_runtime.JSX.Element;
65
+ declare const PrivyButton: ({ isDark, onViewMoreLogin, gridColumn }: Props$t) => react_jsx_runtime.JSX.Element;
66
66
 
67
- type Props$r = {
67
+ type Props$s = {
68
68
  isDark: boolean;
69
69
  loginMethods?: VechainKitProviderProps['loginMethods'];
70
70
  gridColumn?: number;
71
71
  };
72
- declare const SocialLoginButtons: ({ isDark, loginMethods, gridColumn, }: Props$r) => react_jsx_runtime.JSX.Element;
72
+ declare const SocialLoginButtons: ({ isDark, loginMethods, gridColumn, }: Props$s) => react_jsx_runtime.JSX.Element;
73
73
 
74
- type Props$q = {
74
+ type Props$r = {
75
75
  isDark: boolean;
76
76
  gridColumn?: number;
77
77
  };
78
- declare const PasskeyLoginButton: ({ isDark, gridColumn }: Props$q) => react_jsx_runtime.JSX.Element;
78
+ declare const PasskeyLoginButton: ({ isDark, gridColumn }: Props$r) => react_jsx_runtime.JSX.Element;
79
79
 
80
- type Props$p = {
80
+ type Props$q = {
81
81
  isDark: boolean;
82
82
  gridColumn?: number;
83
83
  };
84
- declare const DappKitButton: ({ isDark, gridColumn }: Props$p) => react_jsx_runtime.JSX.Element;
84
+ declare const DappKitButton: ({ isDark, gridColumn }: Props$q) => react_jsx_runtime.JSX.Element;
85
85
 
86
- type Props$o = {
86
+ type Props$p = {
87
87
  isDark: boolean;
88
88
  gridColumn?: number;
89
89
  };
90
- declare const VeChainWithPrivyLoginButton: ({ isDark, gridColumn }: Props$o) => react_jsx_runtime.JSX.Element;
90
+ declare const VeChainWithPrivyLoginButton: ({ isDark, gridColumn }: Props$p) => react_jsx_runtime.JSX.Element;
91
91
 
92
92
  type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
93
93
 
@@ -128,28 +128,33 @@ type TransactionToastProps = {
128
128
  };
129
129
  declare const TransactionToast: ({ isOpen, onClose, status, txReceipt, error, resetStatus, progress, }: TransactionToastProps) => react_jsx_runtime.JSX.Element | null;
130
130
 
131
- type Props$n = {
131
+ type Props$o = {
132
132
  setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
133
133
  onClose: () => void;
134
134
  wallet: Wallet;
135
135
  };
136
- declare const AccountMainContent: ({ setCurrentContent, wallet, onClose, }: Props$n) => react_jsx_runtime.JSX.Element;
136
+ declare const AccountMainContent: ({ setCurrentContent, wallet }: Props$o) => react_jsx_runtime.JSX.Element;
137
137
 
138
- type Props$m = {
138
+ type Props$n = {
139
139
  setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
140
140
  };
141
- declare const EmbeddedWalletContent: ({ setCurrentContent }: Props$m) => react_jsx_runtime.JSX.Element;
141
+ declare const AccessAndSecurityContent: ({ setCurrentContent }: Props$n) => react_jsx_runtime.JSX.Element;
142
142
 
143
- type Props$l = {
143
+ type Props$m = {
144
144
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
145
145
  onLogoutSuccess: () => void;
146
146
  };
147
- declare const WalletSettingsContent: ({ setCurrentContent, onLogoutSuccess, }: Props$l) => react_jsx_runtime.JSX.Element;
147
+ declare const SettingsContent: ({ setCurrentContent, onLogoutSuccess, }: Props$m) => react_jsx_runtime.JSX.Element;
148
148
 
149
- type Props$k = {
149
+ type Props$l = {
150
150
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
151
151
  };
152
- declare const AccountCustomizationContent: ({ setCurrentContent }: Props$k) => react_jsx_runtime.JSX.Element;
152
+ declare const AccountCustomizationContent: ({ setCurrentContent }: Props$l) => react_jsx_runtime.JSX.Element;
153
+
154
+ type Props$k = {
155
+ setCurrentContent: (content: AccountModalContentTypes) => void;
156
+ };
157
+ declare const EmbeddedWalletContent: ({ setCurrentContent }: Props$k) => react_jsx_runtime.JSX.Element;
153
158
 
154
159
  type Token$1 = {
155
160
  symbol: string;
@@ -228,7 +233,7 @@ type Props$g = {
228
233
  };
229
234
  declare const FAQContent: ({ onGoBack }: Props$g) => react_jsx_runtime.JSX.Element;
230
235
 
231
- type AccountModalContentTypes = 'main' | 'faq' | 'settings' | 'embedded-wallet' | 'receive-token' | 'swap-token' | 'connection-details' | 'choose-name' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'account-customization' | {
236
+ type AccountModalContentTypes = 'main' | 'faq' | 'settings' | 'access-and-security' | 'embedded-wallet' | 'receive-token' | 'swap-token' | 'connection-details' | 'choose-name' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'account-customization' | {
232
237
  type: 'app-overview';
233
238
  props: {
234
239
  name: string;
@@ -293,8 +298,9 @@ type ActionButtonProps = {
293
298
  isLoading?: boolean;
294
299
  loadingText?: string;
295
300
  style?: ButtonProps;
301
+ extraContent?: React.ReactNode;
296
302
  };
297
- declare const ActionButton: ({ leftIcon, rightIcon, title, description, onClick, leftImage, hide, showComingSoon, backgroundColor, _hover, isDisabled, stacked, isLoading, loadingText, style, }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
303
+ declare const ActionButton: ({ leftIcon, rightIcon, title, onClick, leftImage, hide, showComingSoon, backgroundColor, _hover, isDisabled, stacked, isLoading, loadingText, style, extraContent, }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
298
304
 
299
305
  type Props$e = {
300
306
  wallet: Wallet;
@@ -328,6 +334,11 @@ declare const FeatureAnnouncementCard: ({ setCurrentContent, }: FeatureAnnouncem
328
334
 
329
335
  declare const ExchangeWarningAlert: () => react_jsx_runtime.JSX.Element;
330
336
 
337
+ type ProfileProps = {
338
+ onEditClick: () => void;
339
+ };
340
+ declare const Profile: ({ onEditClick }: ProfileProps) => react_jsx_runtime.JSX.Element;
341
+
331
342
  type Props$b = {
332
343
  children: ReactNode;
333
344
  };
@@ -357,8 +368,9 @@ type Props$7 = {
357
368
  wallet: Wallet;
358
369
  label?: string;
359
370
  size?: string;
371
+ style?: PropsOf<typeof VStack>;
360
372
  };
361
- declare const AddressDisplay: ({ wallet, label, size }: Props$7) => react_jsx_runtime.JSX.Element;
373
+ declare const AddressDisplay: ({ wallet, label, size, style, }: Props$7) => react_jsx_runtime.JSX.Element;
362
374
 
363
375
  type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
364
376
  declare const VersionFooter: ({ ...props }: Props$6) => react_jsx_runtime.JSX.Element;
@@ -2954,12 +2966,12 @@ declare const SendTokenModalProvider: ({ children, }: {
2954
2966
  children: ReactNode;
2955
2967
  }) => react_jsx_runtime.JSX.Element;
2956
2968
 
2957
- declare const useEmbeddedWalletSettingsModal: () => {
2969
+ declare const useAccessAndSecurityModal: () => {
2958
2970
  open: () => void;
2959
2971
  close: () => void;
2960
2972
  isOpen: boolean;
2961
2973
  };
2962
- declare const EmbeddedWalletSettingsModalProvider: ({ children, }: {
2974
+ declare const AccessAndSecurityModalProvider: ({ children, }: {
2963
2975
  children: ReactNode;
2964
2976
  }) => react_jsx_runtime.JSX.Element;
2965
2977
 
@@ -3228,4 +3240,4 @@ declare const useCrossAppConnectionCache: () => {
3228
3240
  clearConnectionCache: () => void;
3229
3241
  };
3230
3242
 
3231
- export { APP_SECURITY_LEVELS, AccountAvatar, AccountCustomizationContent, AccountCustomizationModalProvider, AccountDetailsButton, AccountMainContent, AccountModal, type AccountModalContentTypes, AccountModalProvider, AccountSelector, ActionButton, AddressDisplay, AddressDisplayCard, type AllocationRoundWithState, type AllocationVoteCastEvent, type AppConfig, type AppVotesGiven, AssetButton, AssetsSection, BalanceSection, BaseModal, ChooseNameContent, type ChooseNameContentProps, ChooseNameModalProvider, ChooseNameSearchContent, type ChooseNameSearchContentProps, ChooseNameSummaryContent, type ChooseNameSummaryContentProps, ConnectModal, type ConnectModalContentsTypes, ConnectModalProvider, ConnectionButton, ConnectionSource, CrossAppConnectionCache, DappKitButton, type Domain, type DomainsResponse, EcosystemButton, EcosystemModal, type EcosystemShortcut, EmailLoginButton, EmbeddedWalletContent, EmbeddedWalletSettingsModalProvider, EnhancedClause, ExchangeWarningAlert, ExploreEcosystemModalProvider, FAQContent, FAQModalProvider, FadeInView, FadeInViewFromBottom, FadeInViewFromLeft, FadeInViewFromRight, FeatureAnnouncementCard, type GetCallKeyParams, type IpfsImage, LoginLoadingModal, MAX_IMAGE_SIZE, MainContent, ModalBackButton, ModalFAQButton, type MostVotedAppsInRoundReturnType, NFTMediaType, type NFTMetadata, NotificationsModalProvider, PRICE_FEED_IDS, PasskeyLoginButton, PrivyAppInfo, PrivyButton, PrivyLoginMethod, PrivyWalletProvider, type PrivyWalletProviderContextType, QuickActionsSection, ReceiveModalProvider, ReceiveTokenContent, type RoundCreated, type RoundReward, RoundState, ScrollToTopWrapper, SecurityLevel, SelectTokenContent, SendTokenContent, SendTokenModalProvider, SendTokenSummaryContent, SmartAccount, type SmartAccountReturnType, SocialLoginButtons, StickyFooterContainer, StickyHeaderContainer, type SupportedToken, SwapTokenContent, type TokenBalance, TransactionModal, type TransactionModalProps, TransactionModalProvider, TransactionProgress, TransactionStatus, TransactionStatusErrorType, TransactionToast, TransactionToastProvider, type UnendorsedApp, type UploadedImage, type UseCallParams, type UseSendTransactionReturnValue, type UseWalletReturnType, type UserNode, type UserXNode, VeChainKitContext, VeChainKitProvider, VeChainLoginButton, VeChainWithPrivyLoginButton, VePassportUserStatus, type VechainKitProviderProps, VechainKitThemeProvider, VersionFooter, Wallet, WalletButton, type WalletButtonProps, type WalletDisplayVariant, WalletModalProvider, WalletSettingsContent, type XApp, type XAppMetadata, buildClaimRewardsTx, buildClaimRoundReward, compressImages, currentBlockQueryKey, fetchPrivyAppInfo, fetchVechainDomain, getAccountBalance, getAccountBalanceQueryKey, getAllEvents, getAllocationAmount, getAllocationAmountQueryKey, getAllocationsRoundState, getAllocationsRoundStateQueryKey, getAllocationsRoundsEvents, getAllocationsRoundsEventsQueryKey, getAppAdmin, getAppAdminQueryKey, getAppBalance, getAppBalanceQueryKey, getAppExistsQueryKey, getAppSecurityLevelQueryKey, getAppsEligibleInNextRound, getAppsEligibleInNextRoundQueryKey, getAppsShareClauses, getAvatar, getAvatarQueryKey, getB3trBalance, getB3trBalanceQueryKey, getB3trDonatedQueryKey, getB3trToUpgradeQueryKey, getBalanceOf, getCallKey, getChainId, getChainIdQueryKey, getConfig, getCurrentAllocationsRoundId, getCurrentAllocationsRoundIdQueryKey, getDelegateeQueryKey, getDelegatorQueryKey, getDomainsOfAddress, getDomainsOfAddressQueryKey, getEnsRecordExistsQueryKey, getEntitiesLinkedToPassportQueryKey, getEvents, getGMBaseUriQueryKey, getGMLevel, getGMbalanceQueryKey, getGetCumulativeScoreWithDecayQueryKey, getHasVotedInRound, getHasVotedInRoundQueryKey, getIpfsImage, getIpfsImageQueryKey, getIpfsMetadata, getIpfsMetadataQueryKey, getIsBlacklistedQueryKey, getIsDomainProtectedQueryKey, getIsEntityQueryKey, getIsNodeHolder, getIsNodeHolderQueryKey, getIsPassportQueryKey, getIsPersonAtTimepointQueryKey, getIsPersonQueryKey, getIsWhitelistedQueryKey, getLevelGradient, getLevelMultiplierQueryKey, getLevelOfTokenQueryKey, getNFTMetadataUri, getNFTMetadataUriQueryKey, getNodeCheckCooldownQueryKey, getNodeManagerQueryKey, getParticipatedInGovernance, getParticipatedInGovernanceQueryKey, getParticipationScoreThresholdQueryKey, getPassportForEntityQueryKey, getPassportToggleQueryKey, getPendingDelegationsQueryKeyDelegateePOV, getPendingDelegationsQueryKeyDelegatorPOV, getPendingLinkingsQueryKey, getPrivyAppInfoQueryKey, getRoundReward, getRoundRewardQueryKey, getRoundXApps, getRoundXAppsQueryKey, getSecurityMultiplierQueryKey, getSmartAccount, getSmartAccountQueryKey, getThresholdParticipationScoreAtTimepointQueryKey, getThresholdParticipationScoreQueryKey, getTokenIdByAccount, getTokenIdByAccountQueryKey, getTokenUsdPrice, getTokenUsdPriceQueryKey, getTokensInfoByOwnerQueryKey, getUserBotSignalsQueryKey, getUserNodesQueryKey, getUserRoundScoreQueryKey, getUserVotesInRound, getUserVotesInRoundQueryKey, getUserXNodes, getUserXNodesQueryKey, getVeDelegateBalance, getVeDelegateBalanceQueryKey, getVechainDomainQueryKey, getVersion, getVersionQueryKey, getVot3Balance, getVot3BalanceQueryKey, getVotesInRoundQueryKey, getXAppMetadata, getXAppMetadataQueryKey, getXAppRoundEarnings, getXAppRoundEarningsQueryKey, getXAppTotalEarningsClauses, getXAppTotalEarningsQueryKey, getXAppVotes, getXAppVotesQf, getXAppVotesQfQueryKey, getXAppVotesQueryKey, getXApps, getXAppsMetadataBaseUri, getXAppsMetadataBaseUriQueryKey, getXAppsQueryKey, getXAppsSharesQueryKey, imageCompressionOptions, pollForReceipt, useAccountBalance, useAccountCustomizationModal, useAccountLinking, useAccountModal, useAllocationAmount, useAllocationsRound, useAllocationsRoundState, useAllocationsRoundsEvents, useAppAdmin, useAppBalance, useAppExists, useAppSecurityLevel, useAppsEligibleInNextRound, useB3trDonated, useB3trToUpgrade, useBalances, useCall, useChooseNameModal, useClaimVeWorldSubdomain, useConnectModal, useContractVersion, useCrossAppConnectionCache, useCurrentAllocationsRound, useCurrentAllocationsRoundId, useCurrentBlock, useEcosystemShortcuts, useEmbeddedWalletSettingsModal, useEnsRecordExists, useExploreEcosystemModal, useFAQModal, useFeatureAnnouncement, useFetchAppInfo, useGMBaseUri, useGMbalance, useGetAvatar, useGetB3trBalance, useGetChainId, useGetCumulativeScoreWithDecay, useGetDelegatee, useGetDelegator, useGetDomainsOfAddress, useGetEntitiesLinkedToPassport, useGetNodeManager, useGetNodeUrl, useGetPassportForEntity, useGetPendingDelegationsDelegateePOV, useGetPendingDelegationsDelegatorPOV, useGetPendingLinkings, useGetTokenUsdPrice, useGetTokensInfoByOwner, useGetUserEntitiesLinkedToPassport, useGetUserNode, useGetUserNodes, useGetUserPassportForEntity, useGetUserPendingLinkings, useGetVeDelegateBalance, useGetVot3Balance, useHasVotedInRound, useIpfsImage, useIpfsImageList, useIpfsMetadata, useIpfsMetadatas, useIsBlacklisted, useIsDomainProtected, useIsEntity, useIsGMclaimable, useIsNodeHolder, useIsPWA, useIsPassport, useIsPassportCheckEnabled, useIsPerson, useIsPersonAtTimepoint, useIsUserEntity, useIsUserPassport, useIsUserPerson, useIsWhitelisted, useLevelMultiplier, useLevelOfToken, useLocalStorage, useLoginModalContent, useLoginWithOAuth, useLoginWithPasskey, useLoginWithVeChain, useMostVotedAppsInRound, useMultipleXAppRoundEarnings, useNFTImage, useNFTMetadataUri, useNotificationAlerts, useNotifications, useNotificationsModal, useParticipatedInGovernance, useParticipationScoreThreshold, usePassportChecks, usePrivyWalletProvider, useReceiveModal, useRefreshBalances, useRoundEarnings, useRoundReward, useRoundXApps, useScrollToTop, useSecurityMultiplier, useSelectedGmNft, useSendTokenModal, useSendTransaction, useSignMessage, useSignTypedData, useSingleImageUpload, useSmartAccount, useThresholdParticipationScore, useThresholdParticipationScoreAtTimepoint, useTokenIdByAccount, useTransactionModal, useTransactionToast, useTransferERC20, useTransferVET, useTxReceipt, useUpdateAvatarRecord, useUploadImages, useUserBotSignals, useUserDelegation, useUserRoundScore, useUserStatus, useUserTopVotedApps, useUserVotesInAllRounds, useUserVotesInRound, useVeChainKitConfig, useVechainDomain, useVotesInRound, useVotingRewards, useWallet, useWalletModal, useXApp, useXAppMetadata, useXAppRoundEarnings, useXAppTotalEarnings, useXAppVotes, useXAppVotesQf, useXApps, useXAppsMetadataBaseUri, useXAppsShares, useXNode, useXNodeCheckCooldown, useXNodes };
3243
+ export { APP_SECURITY_LEVELS, AccessAndSecurityContent, AccessAndSecurityModalProvider, AccountAvatar, AccountCustomizationContent, AccountCustomizationModalProvider, AccountDetailsButton, AccountMainContent, AccountModal, type AccountModalContentTypes, AccountModalProvider, AccountSelector, ActionButton, AddressDisplay, AddressDisplayCard, type AllocationRoundWithState, type AllocationVoteCastEvent, type AppConfig, type AppVotesGiven, AssetButton, AssetsSection, BalanceSection, BaseModal, ChooseNameContent, type ChooseNameContentProps, ChooseNameModalProvider, ChooseNameSearchContent, type ChooseNameSearchContentProps, ChooseNameSummaryContent, type ChooseNameSummaryContentProps, ConnectModal, type ConnectModalContentsTypes, ConnectModalProvider, ConnectionButton, ConnectionSource, CrossAppConnectionCache, DappKitButton, type Domain, type DomainsResponse, EcosystemButton, EcosystemModal, type EcosystemShortcut, EmailLoginButton, EmbeddedWalletContent, EnhancedClause, ExchangeWarningAlert, ExploreEcosystemModalProvider, FAQContent, FAQModalProvider, FadeInView, FadeInViewFromBottom, FadeInViewFromLeft, FadeInViewFromRight, FeatureAnnouncementCard, type GetCallKeyParams, type IpfsImage, LoginLoadingModal, MAX_IMAGE_SIZE, MainContent, ModalBackButton, ModalFAQButton, type MostVotedAppsInRoundReturnType, NFTMediaType, type NFTMetadata, NotificationsModalProvider, PRICE_FEED_IDS, PasskeyLoginButton, PrivyAppInfo, PrivyButton, PrivyLoginMethod, PrivyWalletProvider, type PrivyWalletProviderContextType, Profile, QuickActionsSection, ReceiveModalProvider, ReceiveTokenContent, type RoundCreated, type RoundReward, RoundState, ScrollToTopWrapper, SecurityLevel, SelectTokenContent, SendTokenContent, SendTokenModalProvider, SendTokenSummaryContent, SettingsContent, SmartAccount, type SmartAccountReturnType, SocialLoginButtons, StickyFooterContainer, StickyHeaderContainer, type SupportedToken, SwapTokenContent, type TokenBalance, TransactionModal, type TransactionModalProps, TransactionModalProvider, TransactionProgress, TransactionStatus, TransactionStatusErrorType, TransactionToast, TransactionToastProvider, type UnendorsedApp, type UploadedImage, type UseCallParams, type UseSendTransactionReturnValue, type UseWalletReturnType, type UserNode, type UserXNode, VeChainKitContext, VeChainKitProvider, VeChainLoginButton, VeChainWithPrivyLoginButton, VePassportUserStatus, type VechainKitProviderProps, VechainKitThemeProvider, VersionFooter, Wallet, WalletButton, type WalletButtonProps, type WalletDisplayVariant, WalletModalProvider, type XApp, type XAppMetadata, buildClaimRewardsTx, buildClaimRoundReward, compressImages, currentBlockQueryKey, fetchPrivyAppInfo, fetchVechainDomain, getAccountBalance, getAccountBalanceQueryKey, getAllEvents, getAllocationAmount, getAllocationAmountQueryKey, getAllocationsRoundState, getAllocationsRoundStateQueryKey, getAllocationsRoundsEvents, getAllocationsRoundsEventsQueryKey, getAppAdmin, getAppAdminQueryKey, getAppBalance, getAppBalanceQueryKey, getAppExistsQueryKey, getAppSecurityLevelQueryKey, getAppsEligibleInNextRound, getAppsEligibleInNextRoundQueryKey, getAppsShareClauses, getAvatar, getAvatarQueryKey, getB3trBalance, getB3trBalanceQueryKey, getB3trDonatedQueryKey, getB3trToUpgradeQueryKey, getBalanceOf, getCallKey, getChainId, getChainIdQueryKey, getConfig, getCurrentAllocationsRoundId, getCurrentAllocationsRoundIdQueryKey, getDelegateeQueryKey, getDelegatorQueryKey, getDomainsOfAddress, getDomainsOfAddressQueryKey, getEnsRecordExistsQueryKey, getEntitiesLinkedToPassportQueryKey, getEvents, getGMBaseUriQueryKey, getGMLevel, getGMbalanceQueryKey, getGetCumulativeScoreWithDecayQueryKey, getHasVotedInRound, getHasVotedInRoundQueryKey, getIpfsImage, getIpfsImageQueryKey, getIpfsMetadata, getIpfsMetadataQueryKey, getIsBlacklistedQueryKey, getIsDomainProtectedQueryKey, getIsEntityQueryKey, getIsNodeHolder, getIsNodeHolderQueryKey, getIsPassportQueryKey, getIsPersonAtTimepointQueryKey, getIsPersonQueryKey, getIsWhitelistedQueryKey, getLevelGradient, getLevelMultiplierQueryKey, getLevelOfTokenQueryKey, getNFTMetadataUri, getNFTMetadataUriQueryKey, getNodeCheckCooldownQueryKey, getNodeManagerQueryKey, getParticipatedInGovernance, getParticipatedInGovernanceQueryKey, getParticipationScoreThresholdQueryKey, getPassportForEntityQueryKey, getPassportToggleQueryKey, getPendingDelegationsQueryKeyDelegateePOV, getPendingDelegationsQueryKeyDelegatorPOV, getPendingLinkingsQueryKey, getPrivyAppInfoQueryKey, getRoundReward, getRoundRewardQueryKey, getRoundXApps, getRoundXAppsQueryKey, getSecurityMultiplierQueryKey, getSmartAccount, getSmartAccountQueryKey, getThresholdParticipationScoreAtTimepointQueryKey, getThresholdParticipationScoreQueryKey, getTokenIdByAccount, getTokenIdByAccountQueryKey, getTokenUsdPrice, getTokenUsdPriceQueryKey, getTokensInfoByOwnerQueryKey, getUserBotSignalsQueryKey, getUserNodesQueryKey, getUserRoundScoreQueryKey, getUserVotesInRound, getUserVotesInRoundQueryKey, getUserXNodes, getUserXNodesQueryKey, getVeDelegateBalance, getVeDelegateBalanceQueryKey, getVechainDomainQueryKey, getVersion, getVersionQueryKey, getVot3Balance, getVot3BalanceQueryKey, getVotesInRoundQueryKey, getXAppMetadata, getXAppMetadataQueryKey, getXAppRoundEarnings, getXAppRoundEarningsQueryKey, getXAppTotalEarningsClauses, getXAppTotalEarningsQueryKey, getXAppVotes, getXAppVotesQf, getXAppVotesQfQueryKey, getXAppVotesQueryKey, getXApps, getXAppsMetadataBaseUri, getXAppsMetadataBaseUriQueryKey, getXAppsQueryKey, getXAppsSharesQueryKey, imageCompressionOptions, pollForReceipt, useAccessAndSecurityModal, useAccountBalance, useAccountCustomizationModal, useAccountLinking, useAccountModal, useAllocationAmount, useAllocationsRound, useAllocationsRoundState, useAllocationsRoundsEvents, useAppAdmin, useAppBalance, useAppExists, useAppSecurityLevel, useAppsEligibleInNextRound, useB3trDonated, useB3trToUpgrade, useBalances, useCall, useChooseNameModal, useClaimVeWorldSubdomain, useConnectModal, useContractVersion, useCrossAppConnectionCache, useCurrentAllocationsRound, useCurrentAllocationsRoundId, useCurrentBlock, useEcosystemShortcuts, useEnsRecordExists, useExploreEcosystemModal, useFAQModal, useFeatureAnnouncement, useFetchAppInfo, useGMBaseUri, useGMbalance, useGetAvatar, useGetB3trBalance, useGetChainId, useGetCumulativeScoreWithDecay, useGetDelegatee, useGetDelegator, useGetDomainsOfAddress, useGetEntitiesLinkedToPassport, useGetNodeManager, useGetNodeUrl, useGetPassportForEntity, useGetPendingDelegationsDelegateePOV, useGetPendingDelegationsDelegatorPOV, useGetPendingLinkings, useGetTokenUsdPrice, useGetTokensInfoByOwner, useGetUserEntitiesLinkedToPassport, useGetUserNode, useGetUserNodes, useGetUserPassportForEntity, useGetUserPendingLinkings, useGetVeDelegateBalance, useGetVot3Balance, useHasVotedInRound, useIpfsImage, useIpfsImageList, useIpfsMetadata, useIpfsMetadatas, useIsBlacklisted, useIsDomainProtected, useIsEntity, useIsGMclaimable, useIsNodeHolder, useIsPWA, useIsPassport, useIsPassportCheckEnabled, useIsPerson, useIsPersonAtTimepoint, useIsUserEntity, useIsUserPassport, useIsUserPerson, useIsWhitelisted, useLevelMultiplier, useLevelOfToken, useLocalStorage, useLoginModalContent, useLoginWithOAuth, useLoginWithPasskey, useLoginWithVeChain, useMostVotedAppsInRound, useMultipleXAppRoundEarnings, useNFTImage, useNFTMetadataUri, useNotificationAlerts, useNotifications, useNotificationsModal, useParticipatedInGovernance, useParticipationScoreThreshold, usePassportChecks, usePrivyWalletProvider, useReceiveModal, useRefreshBalances, useRoundEarnings, useRoundReward, useRoundXApps, useScrollToTop, useSecurityMultiplier, useSelectedGmNft, useSendTokenModal, useSendTransaction, useSignMessage, useSignTypedData, useSingleImageUpload, useSmartAccount, useThresholdParticipationScore, useThresholdParticipationScoreAtTimepoint, useTokenIdByAccount, useTransactionModal, useTransactionToast, useTransferERC20, useTransferVET, useTxReceipt, useUpdateAvatarRecord, useUploadImages, useUserBotSignals, useUserDelegation, useUserRoundScore, useUserStatus, useUserTopVotedApps, useUserVotesInAllRounds, useUserVotesInRound, useVeChainKitConfig, useVechainDomain, useVotesInRound, useVotingRewards, useWallet, useWalletModal, useXApp, useXAppMetadata, useXAppRoundEarnings, useXAppTotalEarnings, useXAppVotes, useXAppVotesQf, useXApps, useXAppsMetadataBaseUri, useXAppsShares, useXNode, useXNodeCheckCooldown, useXNodes };
package/dist/index.d.ts CHANGED
@@ -7,7 +7,7 @@ import { P as PrivyAppInfo, T as TransactionProgress, a as TransactionStatusErro
7
7
  export { h as ExecuteWithAuthorizationSignData } from './Constants-DQeyU9X7.js';
8
8
  import { WalletSource, LogLevel } from '@vechain/dapp-kit';
9
9
  import { WalletConnectOptions } from '@vechain/dapp-kit-react';
10
- export { useConnex } from '@vechain/dapp-kit-react';
10
+ export { useConnex, useWallet as useDappKitWallet } from '@vechain/dapp-kit-react';
11
11
  import { CustomizedStyle, SourceInfo, I18n } from '@vechain/dapp-kit-ui';
12
12
  import * as _tanstack_react_query from '@tanstack/react-query';
13
13
  import { UseQueryResult } from '@tanstack/react-query';
@@ -17,20 +17,20 @@ import { ThorClient } from '@vechain/sdk-network';
17
17
  import { Options } from 'browser-image-compression';
18
18
  import { Interface } from 'ethers';
19
19
  import { IconType } from 'react-icons';
20
- import { ButtonProps, IconButtonProps, StackProps, ImageProps } from '@chakra-ui/react';
20
+ import { ButtonProps, IconButtonProps, PropsOf, VStack, StackProps, ImageProps } from '@chakra-ui/react';
21
21
 
22
- type Props$w = {
22
+ type Props$x = {
23
23
  isOpen: boolean;
24
24
  onClose: () => void;
25
25
  };
26
26
  type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
27
- declare const ConnectModal: ({ isOpen, onClose }: Props$w) => react_jsx_runtime.JSX.Element;
27
+ declare const ConnectModal: ({ isOpen, onClose }: Props$x) => react_jsx_runtime.JSX.Element;
28
28
 
29
- type Props$v = {
29
+ type Props$w = {
30
30
  setCurrentContent: React__default.Dispatch<React__default.SetStateAction<ConnectModalContentsTypes>>;
31
31
  onClose: () => void;
32
32
  };
33
- declare const MainContent: ({ setCurrentContent, onClose }: Props$v) => react_jsx_runtime.JSX.Element;
33
+ declare const MainContent: ({ setCurrentContent, onClose }: Props$w) => react_jsx_runtime.JSX.Element;
34
34
 
35
35
  interface ConnectionButtonProps {
36
36
  isDark: boolean;
@@ -43,51 +43,51 @@ declare const ConnectionButton: ({ isDark, onClick, text, icon, customIcon, }: C
43
43
 
44
44
  declare const EmailLoginButton: () => react_jsx_runtime.JSX.Element;
45
45
 
46
- type Props$u = {
46
+ type Props$v = {
47
47
  isDark: boolean;
48
48
  gridColumn?: number;
49
49
  };
50
- declare const VeChainLoginButton: ({ isDark, gridColumn }: Props$u) => react_jsx_runtime.JSX.Element;
50
+ declare const VeChainLoginButton: ({ isDark, gridColumn }: Props$v) => react_jsx_runtime.JSX.Element;
51
51
 
52
- type Props$t = {
52
+ type Props$u = {
53
53
  isDark: boolean;
54
54
  appsInfo: PrivyAppInfo[];
55
55
  isLoading: boolean;
56
56
  gridColumn?: number;
57
57
  };
58
- declare const EcosystemButton: ({ isDark, appsInfo, isLoading, gridColumn, }: Props$t) => react_jsx_runtime.JSX.Element;
58
+ declare const EcosystemButton: ({ isDark, appsInfo, isLoading, gridColumn, }: Props$u) => react_jsx_runtime.JSX.Element;
59
59
 
60
- type Props$s = {
60
+ type Props$t = {
61
61
  isDark: boolean;
62
62
  onViewMoreLogin: () => void;
63
63
  gridColumn?: number;
64
64
  };
65
- declare const PrivyButton: ({ isDark, onViewMoreLogin, gridColumn }: Props$s) => react_jsx_runtime.JSX.Element;
65
+ declare const PrivyButton: ({ isDark, onViewMoreLogin, gridColumn }: Props$t) => react_jsx_runtime.JSX.Element;
66
66
 
67
- type Props$r = {
67
+ type Props$s = {
68
68
  isDark: boolean;
69
69
  loginMethods?: VechainKitProviderProps['loginMethods'];
70
70
  gridColumn?: number;
71
71
  };
72
- declare const SocialLoginButtons: ({ isDark, loginMethods, gridColumn, }: Props$r) => react_jsx_runtime.JSX.Element;
72
+ declare const SocialLoginButtons: ({ isDark, loginMethods, gridColumn, }: Props$s) => react_jsx_runtime.JSX.Element;
73
73
 
74
- type Props$q = {
74
+ type Props$r = {
75
75
  isDark: boolean;
76
76
  gridColumn?: number;
77
77
  };
78
- declare const PasskeyLoginButton: ({ isDark, gridColumn }: Props$q) => react_jsx_runtime.JSX.Element;
78
+ declare const PasskeyLoginButton: ({ isDark, gridColumn }: Props$r) => react_jsx_runtime.JSX.Element;
79
79
 
80
- type Props$p = {
80
+ type Props$q = {
81
81
  isDark: boolean;
82
82
  gridColumn?: number;
83
83
  };
84
- declare const DappKitButton: ({ isDark, gridColumn }: Props$p) => react_jsx_runtime.JSX.Element;
84
+ declare const DappKitButton: ({ isDark, gridColumn }: Props$q) => react_jsx_runtime.JSX.Element;
85
85
 
86
- type Props$o = {
86
+ type Props$p = {
87
87
  isDark: boolean;
88
88
  gridColumn?: number;
89
89
  };
90
- declare const VeChainWithPrivyLoginButton: ({ isDark, gridColumn }: Props$o) => react_jsx_runtime.JSX.Element;
90
+ declare const VeChainWithPrivyLoginButton: ({ isDark, gridColumn }: Props$p) => react_jsx_runtime.JSX.Element;
91
91
 
92
92
  type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
93
93
 
@@ -128,28 +128,33 @@ type TransactionToastProps = {
128
128
  };
129
129
  declare const TransactionToast: ({ isOpen, onClose, status, txReceipt, error, resetStatus, progress, }: TransactionToastProps) => react_jsx_runtime.JSX.Element | null;
130
130
 
131
- type Props$n = {
131
+ type Props$o = {
132
132
  setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
133
133
  onClose: () => void;
134
134
  wallet: Wallet;
135
135
  };
136
- declare const AccountMainContent: ({ setCurrentContent, wallet, onClose, }: Props$n) => react_jsx_runtime.JSX.Element;
136
+ declare const AccountMainContent: ({ setCurrentContent, wallet }: Props$o) => react_jsx_runtime.JSX.Element;
137
137
 
138
- type Props$m = {
138
+ type Props$n = {
139
139
  setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
140
140
  };
141
- declare const EmbeddedWalletContent: ({ setCurrentContent }: Props$m) => react_jsx_runtime.JSX.Element;
141
+ declare const AccessAndSecurityContent: ({ setCurrentContent }: Props$n) => react_jsx_runtime.JSX.Element;
142
142
 
143
- type Props$l = {
143
+ type Props$m = {
144
144
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
145
145
  onLogoutSuccess: () => void;
146
146
  };
147
- declare const WalletSettingsContent: ({ setCurrentContent, onLogoutSuccess, }: Props$l) => react_jsx_runtime.JSX.Element;
147
+ declare const SettingsContent: ({ setCurrentContent, onLogoutSuccess, }: Props$m) => react_jsx_runtime.JSX.Element;
148
148
 
149
- type Props$k = {
149
+ type Props$l = {
150
150
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
151
151
  };
152
- declare const AccountCustomizationContent: ({ setCurrentContent }: Props$k) => react_jsx_runtime.JSX.Element;
152
+ declare const AccountCustomizationContent: ({ setCurrentContent }: Props$l) => react_jsx_runtime.JSX.Element;
153
+
154
+ type Props$k = {
155
+ setCurrentContent: (content: AccountModalContentTypes) => void;
156
+ };
157
+ declare const EmbeddedWalletContent: ({ setCurrentContent }: Props$k) => react_jsx_runtime.JSX.Element;
153
158
 
154
159
  type Token$1 = {
155
160
  symbol: string;
@@ -228,7 +233,7 @@ type Props$g = {
228
233
  };
229
234
  declare const FAQContent: ({ onGoBack }: Props$g) => react_jsx_runtime.JSX.Element;
230
235
 
231
- type AccountModalContentTypes = 'main' | 'faq' | 'settings' | 'embedded-wallet' | 'receive-token' | 'swap-token' | 'connection-details' | 'choose-name' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'account-customization' | {
236
+ type AccountModalContentTypes = 'main' | 'faq' | 'settings' | 'access-and-security' | 'embedded-wallet' | 'receive-token' | 'swap-token' | 'connection-details' | 'choose-name' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'account-customization' | {
232
237
  type: 'app-overview';
233
238
  props: {
234
239
  name: string;
@@ -293,8 +298,9 @@ type ActionButtonProps = {
293
298
  isLoading?: boolean;
294
299
  loadingText?: string;
295
300
  style?: ButtonProps;
301
+ extraContent?: React.ReactNode;
296
302
  };
297
- declare const ActionButton: ({ leftIcon, rightIcon, title, description, onClick, leftImage, hide, showComingSoon, backgroundColor, _hover, isDisabled, stacked, isLoading, loadingText, style, }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
303
+ declare const ActionButton: ({ leftIcon, rightIcon, title, onClick, leftImage, hide, showComingSoon, backgroundColor, _hover, isDisabled, stacked, isLoading, loadingText, style, extraContent, }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
298
304
 
299
305
  type Props$e = {
300
306
  wallet: Wallet;
@@ -328,6 +334,11 @@ declare const FeatureAnnouncementCard: ({ setCurrentContent, }: FeatureAnnouncem
328
334
 
329
335
  declare const ExchangeWarningAlert: () => react_jsx_runtime.JSX.Element;
330
336
 
337
+ type ProfileProps = {
338
+ onEditClick: () => void;
339
+ };
340
+ declare const Profile: ({ onEditClick }: ProfileProps) => react_jsx_runtime.JSX.Element;
341
+
331
342
  type Props$b = {
332
343
  children: ReactNode;
333
344
  };
@@ -357,8 +368,9 @@ type Props$7 = {
357
368
  wallet: Wallet;
358
369
  label?: string;
359
370
  size?: string;
371
+ style?: PropsOf<typeof VStack>;
360
372
  };
361
- declare const AddressDisplay: ({ wallet, label, size }: Props$7) => react_jsx_runtime.JSX.Element;
373
+ declare const AddressDisplay: ({ wallet, label, size, style, }: Props$7) => react_jsx_runtime.JSX.Element;
362
374
 
363
375
  type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
364
376
  declare const VersionFooter: ({ ...props }: Props$6) => react_jsx_runtime.JSX.Element;
@@ -2954,12 +2966,12 @@ declare const SendTokenModalProvider: ({ children, }: {
2954
2966
  children: ReactNode;
2955
2967
  }) => react_jsx_runtime.JSX.Element;
2956
2968
 
2957
- declare const useEmbeddedWalletSettingsModal: () => {
2969
+ declare const useAccessAndSecurityModal: () => {
2958
2970
  open: () => void;
2959
2971
  close: () => void;
2960
2972
  isOpen: boolean;
2961
2973
  };
2962
- declare const EmbeddedWalletSettingsModalProvider: ({ children, }: {
2974
+ declare const AccessAndSecurityModalProvider: ({ children, }: {
2963
2975
  children: ReactNode;
2964
2976
  }) => react_jsx_runtime.JSX.Element;
2965
2977
 
@@ -3228,4 +3240,4 @@ declare const useCrossAppConnectionCache: () => {
3228
3240
  clearConnectionCache: () => void;
3229
3241
  };
3230
3242
 
3231
- export { APP_SECURITY_LEVELS, AccountAvatar, AccountCustomizationContent, AccountCustomizationModalProvider, AccountDetailsButton, AccountMainContent, AccountModal, type AccountModalContentTypes, AccountModalProvider, AccountSelector, ActionButton, AddressDisplay, AddressDisplayCard, type AllocationRoundWithState, type AllocationVoteCastEvent, type AppConfig, type AppVotesGiven, AssetButton, AssetsSection, BalanceSection, BaseModal, ChooseNameContent, type ChooseNameContentProps, ChooseNameModalProvider, ChooseNameSearchContent, type ChooseNameSearchContentProps, ChooseNameSummaryContent, type ChooseNameSummaryContentProps, ConnectModal, type ConnectModalContentsTypes, ConnectModalProvider, ConnectionButton, ConnectionSource, CrossAppConnectionCache, DappKitButton, type Domain, type DomainsResponse, EcosystemButton, EcosystemModal, type EcosystemShortcut, EmailLoginButton, EmbeddedWalletContent, EmbeddedWalletSettingsModalProvider, EnhancedClause, ExchangeWarningAlert, ExploreEcosystemModalProvider, FAQContent, FAQModalProvider, FadeInView, FadeInViewFromBottom, FadeInViewFromLeft, FadeInViewFromRight, FeatureAnnouncementCard, type GetCallKeyParams, type IpfsImage, LoginLoadingModal, MAX_IMAGE_SIZE, MainContent, ModalBackButton, ModalFAQButton, type MostVotedAppsInRoundReturnType, NFTMediaType, type NFTMetadata, NotificationsModalProvider, PRICE_FEED_IDS, PasskeyLoginButton, PrivyAppInfo, PrivyButton, PrivyLoginMethod, PrivyWalletProvider, type PrivyWalletProviderContextType, QuickActionsSection, ReceiveModalProvider, ReceiveTokenContent, type RoundCreated, type RoundReward, RoundState, ScrollToTopWrapper, SecurityLevel, SelectTokenContent, SendTokenContent, SendTokenModalProvider, SendTokenSummaryContent, SmartAccount, type SmartAccountReturnType, SocialLoginButtons, StickyFooterContainer, StickyHeaderContainer, type SupportedToken, SwapTokenContent, type TokenBalance, TransactionModal, type TransactionModalProps, TransactionModalProvider, TransactionProgress, TransactionStatus, TransactionStatusErrorType, TransactionToast, TransactionToastProvider, type UnendorsedApp, type UploadedImage, type UseCallParams, type UseSendTransactionReturnValue, type UseWalletReturnType, type UserNode, type UserXNode, VeChainKitContext, VeChainKitProvider, VeChainLoginButton, VeChainWithPrivyLoginButton, VePassportUserStatus, type VechainKitProviderProps, VechainKitThemeProvider, VersionFooter, Wallet, WalletButton, type WalletButtonProps, type WalletDisplayVariant, WalletModalProvider, WalletSettingsContent, type XApp, type XAppMetadata, buildClaimRewardsTx, buildClaimRoundReward, compressImages, currentBlockQueryKey, fetchPrivyAppInfo, fetchVechainDomain, getAccountBalance, getAccountBalanceQueryKey, getAllEvents, getAllocationAmount, getAllocationAmountQueryKey, getAllocationsRoundState, getAllocationsRoundStateQueryKey, getAllocationsRoundsEvents, getAllocationsRoundsEventsQueryKey, getAppAdmin, getAppAdminQueryKey, getAppBalance, getAppBalanceQueryKey, getAppExistsQueryKey, getAppSecurityLevelQueryKey, getAppsEligibleInNextRound, getAppsEligibleInNextRoundQueryKey, getAppsShareClauses, getAvatar, getAvatarQueryKey, getB3trBalance, getB3trBalanceQueryKey, getB3trDonatedQueryKey, getB3trToUpgradeQueryKey, getBalanceOf, getCallKey, getChainId, getChainIdQueryKey, getConfig, getCurrentAllocationsRoundId, getCurrentAllocationsRoundIdQueryKey, getDelegateeQueryKey, getDelegatorQueryKey, getDomainsOfAddress, getDomainsOfAddressQueryKey, getEnsRecordExistsQueryKey, getEntitiesLinkedToPassportQueryKey, getEvents, getGMBaseUriQueryKey, getGMLevel, getGMbalanceQueryKey, getGetCumulativeScoreWithDecayQueryKey, getHasVotedInRound, getHasVotedInRoundQueryKey, getIpfsImage, getIpfsImageQueryKey, getIpfsMetadata, getIpfsMetadataQueryKey, getIsBlacklistedQueryKey, getIsDomainProtectedQueryKey, getIsEntityQueryKey, getIsNodeHolder, getIsNodeHolderQueryKey, getIsPassportQueryKey, getIsPersonAtTimepointQueryKey, getIsPersonQueryKey, getIsWhitelistedQueryKey, getLevelGradient, getLevelMultiplierQueryKey, getLevelOfTokenQueryKey, getNFTMetadataUri, getNFTMetadataUriQueryKey, getNodeCheckCooldownQueryKey, getNodeManagerQueryKey, getParticipatedInGovernance, getParticipatedInGovernanceQueryKey, getParticipationScoreThresholdQueryKey, getPassportForEntityQueryKey, getPassportToggleQueryKey, getPendingDelegationsQueryKeyDelegateePOV, getPendingDelegationsQueryKeyDelegatorPOV, getPendingLinkingsQueryKey, getPrivyAppInfoQueryKey, getRoundReward, getRoundRewardQueryKey, getRoundXApps, getRoundXAppsQueryKey, getSecurityMultiplierQueryKey, getSmartAccount, getSmartAccountQueryKey, getThresholdParticipationScoreAtTimepointQueryKey, getThresholdParticipationScoreQueryKey, getTokenIdByAccount, getTokenIdByAccountQueryKey, getTokenUsdPrice, getTokenUsdPriceQueryKey, getTokensInfoByOwnerQueryKey, getUserBotSignalsQueryKey, getUserNodesQueryKey, getUserRoundScoreQueryKey, getUserVotesInRound, getUserVotesInRoundQueryKey, getUserXNodes, getUserXNodesQueryKey, getVeDelegateBalance, getVeDelegateBalanceQueryKey, getVechainDomainQueryKey, getVersion, getVersionQueryKey, getVot3Balance, getVot3BalanceQueryKey, getVotesInRoundQueryKey, getXAppMetadata, getXAppMetadataQueryKey, getXAppRoundEarnings, getXAppRoundEarningsQueryKey, getXAppTotalEarningsClauses, getXAppTotalEarningsQueryKey, getXAppVotes, getXAppVotesQf, getXAppVotesQfQueryKey, getXAppVotesQueryKey, getXApps, getXAppsMetadataBaseUri, getXAppsMetadataBaseUriQueryKey, getXAppsQueryKey, getXAppsSharesQueryKey, imageCompressionOptions, pollForReceipt, useAccountBalance, useAccountCustomizationModal, useAccountLinking, useAccountModal, useAllocationAmount, useAllocationsRound, useAllocationsRoundState, useAllocationsRoundsEvents, useAppAdmin, useAppBalance, useAppExists, useAppSecurityLevel, useAppsEligibleInNextRound, useB3trDonated, useB3trToUpgrade, useBalances, useCall, useChooseNameModal, useClaimVeWorldSubdomain, useConnectModal, useContractVersion, useCrossAppConnectionCache, useCurrentAllocationsRound, useCurrentAllocationsRoundId, useCurrentBlock, useEcosystemShortcuts, useEmbeddedWalletSettingsModal, useEnsRecordExists, useExploreEcosystemModal, useFAQModal, useFeatureAnnouncement, useFetchAppInfo, useGMBaseUri, useGMbalance, useGetAvatar, useGetB3trBalance, useGetChainId, useGetCumulativeScoreWithDecay, useGetDelegatee, useGetDelegator, useGetDomainsOfAddress, useGetEntitiesLinkedToPassport, useGetNodeManager, useGetNodeUrl, useGetPassportForEntity, useGetPendingDelegationsDelegateePOV, useGetPendingDelegationsDelegatorPOV, useGetPendingLinkings, useGetTokenUsdPrice, useGetTokensInfoByOwner, useGetUserEntitiesLinkedToPassport, useGetUserNode, useGetUserNodes, useGetUserPassportForEntity, useGetUserPendingLinkings, useGetVeDelegateBalance, useGetVot3Balance, useHasVotedInRound, useIpfsImage, useIpfsImageList, useIpfsMetadata, useIpfsMetadatas, useIsBlacklisted, useIsDomainProtected, useIsEntity, useIsGMclaimable, useIsNodeHolder, useIsPWA, useIsPassport, useIsPassportCheckEnabled, useIsPerson, useIsPersonAtTimepoint, useIsUserEntity, useIsUserPassport, useIsUserPerson, useIsWhitelisted, useLevelMultiplier, useLevelOfToken, useLocalStorage, useLoginModalContent, useLoginWithOAuth, useLoginWithPasskey, useLoginWithVeChain, useMostVotedAppsInRound, useMultipleXAppRoundEarnings, useNFTImage, useNFTMetadataUri, useNotificationAlerts, useNotifications, useNotificationsModal, useParticipatedInGovernance, useParticipationScoreThreshold, usePassportChecks, usePrivyWalletProvider, useReceiveModal, useRefreshBalances, useRoundEarnings, useRoundReward, useRoundXApps, useScrollToTop, useSecurityMultiplier, useSelectedGmNft, useSendTokenModal, useSendTransaction, useSignMessage, useSignTypedData, useSingleImageUpload, useSmartAccount, useThresholdParticipationScore, useThresholdParticipationScoreAtTimepoint, useTokenIdByAccount, useTransactionModal, useTransactionToast, useTransferERC20, useTransferVET, useTxReceipt, useUpdateAvatarRecord, useUploadImages, useUserBotSignals, useUserDelegation, useUserRoundScore, useUserStatus, useUserTopVotedApps, useUserVotesInAllRounds, useUserVotesInRound, useVeChainKitConfig, useVechainDomain, useVotesInRound, useVotingRewards, useWallet, useWalletModal, useXApp, useXAppMetadata, useXAppRoundEarnings, useXAppTotalEarnings, useXAppVotes, useXAppVotesQf, useXApps, useXAppsMetadataBaseUri, useXAppsShares, useXNode, useXNodeCheckCooldown, useXNodes };
3243
+ export { APP_SECURITY_LEVELS, AccessAndSecurityContent, AccessAndSecurityModalProvider, AccountAvatar, AccountCustomizationContent, AccountCustomizationModalProvider, AccountDetailsButton, AccountMainContent, AccountModal, type AccountModalContentTypes, AccountModalProvider, AccountSelector, ActionButton, AddressDisplay, AddressDisplayCard, type AllocationRoundWithState, type AllocationVoteCastEvent, type AppConfig, type AppVotesGiven, AssetButton, AssetsSection, BalanceSection, BaseModal, ChooseNameContent, type ChooseNameContentProps, ChooseNameModalProvider, ChooseNameSearchContent, type ChooseNameSearchContentProps, ChooseNameSummaryContent, type ChooseNameSummaryContentProps, ConnectModal, type ConnectModalContentsTypes, ConnectModalProvider, ConnectionButton, ConnectionSource, CrossAppConnectionCache, DappKitButton, type Domain, type DomainsResponse, EcosystemButton, EcosystemModal, type EcosystemShortcut, EmailLoginButton, EmbeddedWalletContent, EnhancedClause, ExchangeWarningAlert, ExploreEcosystemModalProvider, FAQContent, FAQModalProvider, FadeInView, FadeInViewFromBottom, FadeInViewFromLeft, FadeInViewFromRight, FeatureAnnouncementCard, type GetCallKeyParams, type IpfsImage, LoginLoadingModal, MAX_IMAGE_SIZE, MainContent, ModalBackButton, ModalFAQButton, type MostVotedAppsInRoundReturnType, NFTMediaType, type NFTMetadata, NotificationsModalProvider, PRICE_FEED_IDS, PasskeyLoginButton, PrivyAppInfo, PrivyButton, PrivyLoginMethod, PrivyWalletProvider, type PrivyWalletProviderContextType, Profile, QuickActionsSection, ReceiveModalProvider, ReceiveTokenContent, type RoundCreated, type RoundReward, RoundState, ScrollToTopWrapper, SecurityLevel, SelectTokenContent, SendTokenContent, SendTokenModalProvider, SendTokenSummaryContent, SettingsContent, SmartAccount, type SmartAccountReturnType, SocialLoginButtons, StickyFooterContainer, StickyHeaderContainer, type SupportedToken, SwapTokenContent, type TokenBalance, TransactionModal, type TransactionModalProps, TransactionModalProvider, TransactionProgress, TransactionStatus, TransactionStatusErrorType, TransactionToast, TransactionToastProvider, type UnendorsedApp, type UploadedImage, type UseCallParams, type UseSendTransactionReturnValue, type UseWalletReturnType, type UserNode, type UserXNode, VeChainKitContext, VeChainKitProvider, VeChainLoginButton, VeChainWithPrivyLoginButton, VePassportUserStatus, type VechainKitProviderProps, VechainKitThemeProvider, VersionFooter, Wallet, WalletButton, type WalletButtonProps, type WalletDisplayVariant, WalletModalProvider, type XApp, type XAppMetadata, buildClaimRewardsTx, buildClaimRoundReward, compressImages, currentBlockQueryKey, fetchPrivyAppInfo, fetchVechainDomain, getAccountBalance, getAccountBalanceQueryKey, getAllEvents, getAllocationAmount, getAllocationAmountQueryKey, getAllocationsRoundState, getAllocationsRoundStateQueryKey, getAllocationsRoundsEvents, getAllocationsRoundsEventsQueryKey, getAppAdmin, getAppAdminQueryKey, getAppBalance, getAppBalanceQueryKey, getAppExistsQueryKey, getAppSecurityLevelQueryKey, getAppsEligibleInNextRound, getAppsEligibleInNextRoundQueryKey, getAppsShareClauses, getAvatar, getAvatarQueryKey, getB3trBalance, getB3trBalanceQueryKey, getB3trDonatedQueryKey, getB3trToUpgradeQueryKey, getBalanceOf, getCallKey, getChainId, getChainIdQueryKey, getConfig, getCurrentAllocationsRoundId, getCurrentAllocationsRoundIdQueryKey, getDelegateeQueryKey, getDelegatorQueryKey, getDomainsOfAddress, getDomainsOfAddressQueryKey, getEnsRecordExistsQueryKey, getEntitiesLinkedToPassportQueryKey, getEvents, getGMBaseUriQueryKey, getGMLevel, getGMbalanceQueryKey, getGetCumulativeScoreWithDecayQueryKey, getHasVotedInRound, getHasVotedInRoundQueryKey, getIpfsImage, getIpfsImageQueryKey, getIpfsMetadata, getIpfsMetadataQueryKey, getIsBlacklistedQueryKey, getIsDomainProtectedQueryKey, getIsEntityQueryKey, getIsNodeHolder, getIsNodeHolderQueryKey, getIsPassportQueryKey, getIsPersonAtTimepointQueryKey, getIsPersonQueryKey, getIsWhitelistedQueryKey, getLevelGradient, getLevelMultiplierQueryKey, getLevelOfTokenQueryKey, getNFTMetadataUri, getNFTMetadataUriQueryKey, getNodeCheckCooldownQueryKey, getNodeManagerQueryKey, getParticipatedInGovernance, getParticipatedInGovernanceQueryKey, getParticipationScoreThresholdQueryKey, getPassportForEntityQueryKey, getPassportToggleQueryKey, getPendingDelegationsQueryKeyDelegateePOV, getPendingDelegationsQueryKeyDelegatorPOV, getPendingLinkingsQueryKey, getPrivyAppInfoQueryKey, getRoundReward, getRoundRewardQueryKey, getRoundXApps, getRoundXAppsQueryKey, getSecurityMultiplierQueryKey, getSmartAccount, getSmartAccountQueryKey, getThresholdParticipationScoreAtTimepointQueryKey, getThresholdParticipationScoreQueryKey, getTokenIdByAccount, getTokenIdByAccountQueryKey, getTokenUsdPrice, getTokenUsdPriceQueryKey, getTokensInfoByOwnerQueryKey, getUserBotSignalsQueryKey, getUserNodesQueryKey, getUserRoundScoreQueryKey, getUserVotesInRound, getUserVotesInRoundQueryKey, getUserXNodes, getUserXNodesQueryKey, getVeDelegateBalance, getVeDelegateBalanceQueryKey, getVechainDomainQueryKey, getVersion, getVersionQueryKey, getVot3Balance, getVot3BalanceQueryKey, getVotesInRoundQueryKey, getXAppMetadata, getXAppMetadataQueryKey, getXAppRoundEarnings, getXAppRoundEarningsQueryKey, getXAppTotalEarningsClauses, getXAppTotalEarningsQueryKey, getXAppVotes, getXAppVotesQf, getXAppVotesQfQueryKey, getXAppVotesQueryKey, getXApps, getXAppsMetadataBaseUri, getXAppsMetadataBaseUriQueryKey, getXAppsQueryKey, getXAppsSharesQueryKey, imageCompressionOptions, pollForReceipt, useAccessAndSecurityModal, useAccountBalance, useAccountCustomizationModal, useAccountLinking, useAccountModal, useAllocationAmount, useAllocationsRound, useAllocationsRoundState, useAllocationsRoundsEvents, useAppAdmin, useAppBalance, useAppExists, useAppSecurityLevel, useAppsEligibleInNextRound, useB3trDonated, useB3trToUpgrade, useBalances, useCall, useChooseNameModal, useClaimVeWorldSubdomain, useConnectModal, useContractVersion, useCrossAppConnectionCache, useCurrentAllocationsRound, useCurrentAllocationsRoundId, useCurrentBlock, useEcosystemShortcuts, useEnsRecordExists, useExploreEcosystemModal, useFAQModal, useFeatureAnnouncement, useFetchAppInfo, useGMBaseUri, useGMbalance, useGetAvatar, useGetB3trBalance, useGetChainId, useGetCumulativeScoreWithDecay, useGetDelegatee, useGetDelegator, useGetDomainsOfAddress, useGetEntitiesLinkedToPassport, useGetNodeManager, useGetNodeUrl, useGetPassportForEntity, useGetPendingDelegationsDelegateePOV, useGetPendingDelegationsDelegatorPOV, useGetPendingLinkings, useGetTokenUsdPrice, useGetTokensInfoByOwner, useGetUserEntitiesLinkedToPassport, useGetUserNode, useGetUserNodes, useGetUserPassportForEntity, useGetUserPendingLinkings, useGetVeDelegateBalance, useGetVot3Balance, useHasVotedInRound, useIpfsImage, useIpfsImageList, useIpfsMetadata, useIpfsMetadatas, useIsBlacklisted, useIsDomainProtected, useIsEntity, useIsGMclaimable, useIsNodeHolder, useIsPWA, useIsPassport, useIsPassportCheckEnabled, useIsPerson, useIsPersonAtTimepoint, useIsUserEntity, useIsUserPassport, useIsUserPerson, useIsWhitelisted, useLevelMultiplier, useLevelOfToken, useLocalStorage, useLoginModalContent, useLoginWithOAuth, useLoginWithPasskey, useLoginWithVeChain, useMostVotedAppsInRound, useMultipleXAppRoundEarnings, useNFTImage, useNFTMetadataUri, useNotificationAlerts, useNotifications, useNotificationsModal, useParticipatedInGovernance, useParticipationScoreThreshold, usePassportChecks, usePrivyWalletProvider, useReceiveModal, useRefreshBalances, useRoundEarnings, useRoundReward, useRoundXApps, useScrollToTop, useSecurityMultiplier, useSelectedGmNft, useSendTokenModal, useSendTransaction, useSignMessage, useSignTypedData, useSingleImageUpload, useSmartAccount, useThresholdParticipationScore, useThresholdParticipationScoreAtTimepoint, useTokenIdByAccount, useTransactionModal, useTransactionToast, useTransferERC20, useTransferVET, useTxReceipt, useUpdateAvatarRecord, useUploadImages, useUserBotSignals, useUserDelegation, useUserRoundScore, useUserStatus, useUserTopVotedApps, useUserVotesInAllRounds, useUserVotesInRound, useVeChainKitConfig, useVechainDomain, useVotesInRound, useVotingRewards, useWallet, useWalletModal, useXApp, useXAppMetadata, useXAppRoundEarnings, useXAppTotalEarnings, useXAppVotes, useXAppVotesQf, useXApps, useXAppsMetadataBaseUri, useXAppsShares, useXNode, useXNodeCheckCooldown, useXNodes };