@vechain/vechain-kit 1.5.13 → 1.6.0

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
@@ -3,8 +3,8 @@ import * as React$1 from 'react';
3
3
  import React__default, { ReactNode, ReactElement, ElementType } from 'react';
4
4
  import { WalletListEntry, SignTypedDataParams, User } from '@privy-io/react-auth';
5
5
  export { useMfaEnrollment, usePrivy, useSetWalletRecovery } from '@privy-io/react-auth';
6
- import { P as PrivyLoginMethod, N as NETWORK_TYPE, a as Network, T as TogglePassportCheck, V as VePassportUserStatus, E as EnhancedClause, b as PrivyAppInfo, c as TransactionStatus, d as TransactionStatusErrorType, W as Wallet, S as SmartAccount, C as ConnectionSource, e as ENSRecords, f as NFTMediaType, g as CrossAppConnectionCache } from './Constants-aAc8EZtG.cjs';
7
- export { i as ExecuteBatchWithAuthorizationSignData, h as ExecuteWithAuthorizationSignData } from './Constants-aAc8EZtG.cjs';
6
+ import { P as PrivyLoginMethod, N as NETWORK_TYPE, a as Network, T as TogglePassportCheck, V as VePassportUserStatus, E as EnhancedClause, b as PrivyAppInfo, c as TransactionStatus, d as TransactionStatusErrorType, W as Wallet, S as SmartAccount, C as ConnectionSource, e as ENSRecords, f as NFTMediaType, g as CrossAppConnectionCache } from './Constants-LR_GjzdJ.cjs';
7
+ export { i as ExecuteBatchWithAuthorizationSignData, h as ExecuteWithAuthorizationSignData } from './Constants-LR_GjzdJ.cjs';
8
8
  import { WalletSource, LogLevel } from '@vechain/dapp-kit';
9
9
  import { WalletConnectOptions } from '@vechain/dapp-kit-react';
10
10
  export { WalletButton as DAppKitWalletButton, useConnex, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from '@vechain/dapp-kit-react';
@@ -2198,7 +2198,7 @@ declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string)
2198
2198
  * @param networkType - The network type
2199
2199
  * @returns The avatar URL from the API
2200
2200
  */
2201
- declare const getAvatar: (name: string, networkType: NETWORK_TYPE) => Promise<string | null>;
2201
+ declare const getAvatar: (name: string, network: VechainKitProviderProps["network"]) => Promise<string | null>;
2202
2202
  declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => string[];
2203
2203
  /**
2204
2204
  * Hook to fetch the avatar URL for a VET domain name
@@ -2230,7 +2230,7 @@ type UseSendTransactionProps = {
2230
2230
  signerAccountAddress?: string | null;
2231
2231
  clauses?: EnhancedClause[] | (() => EnhancedClause[]) | (() => Promise<EnhancedClause[]>);
2232
2232
  onTxConfirmed?: () => void | Promise<void>;
2233
- onTxFailedOrCancelled?: () => void | Promise<void>;
2233
+ onTxFailedOrCancelled?: (error?: Error | string) => void | Promise<void>;
2234
2234
  suggestedMaxGas?: number;
2235
2235
  privyUIOptions?: {
2236
2236
  title?: string;
@@ -2299,7 +2299,7 @@ type UpdateTextRecordVariables = {
2299
2299
  };
2300
2300
  type UseUpdateTextRecordProps = {
2301
2301
  onSuccess?: () => void | Promise<void>;
2302
- onError?: () => void | Promise<void>;
2302
+ onError?: (error?: Error) => void | Promise<void>;
2303
2303
  signerAccountAddress?: string;
2304
2304
  resolverAddress?: string;
2305
2305
  };
@@ -2438,7 +2438,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
2438
2438
 
2439
2439
  declare const useWalletMetadata: (address: string, networkType: NETWORK_TYPE) => {
2440
2440
  domain: string | undefined;
2441
- image: string;
2441
+ image: string | undefined;
2442
2442
  records: ENSRecords;
2443
2443
  isLoading: boolean;
2444
2444
  };
@@ -3005,8 +3005,9 @@ interface ConnectionButtonProps {
3005
3005
  rightIcon?: ReactElement;
3006
3006
  style?: ButtonProps;
3007
3007
  variant?: string;
3008
+ iconWidth?: string;
3008
3009
  }
3009
- declare const ConnectionButton: ({ onClick, text, icon, customIcon, rightIcon, style, variant, }: ConnectionButtonProps) => react_jsx_runtime.JSX.Element | null;
3010
+ declare const ConnectionButton: ({ onClick, text, icon, customIcon, rightIcon, style, variant, iconWidth, }: ConnectionButtonProps) => react_jsx_runtime.JSX.Element | null;
3010
3011
 
3011
3012
  declare const EmailLoginButton: () => react_jsx_runtime.JSX.Element;
3012
3013
 
@@ -3022,7 +3023,7 @@ type Props$r = {
3022
3023
  isLoading: boolean;
3023
3024
  gridColumn?: number;
3024
3025
  };
3025
- declare const EcosystemButton: ({ isDark, appsInfo, isLoading, gridColumn, }: Props$r) => react_jsx_runtime.JSX.Element;
3026
+ declare const EcosystemButton: ({ appsInfo, isLoading }: Props$r) => react_jsx_runtime.JSX.Element;
3026
3027
 
3027
3028
  type Props$q = {
3028
3029
  isDark: boolean;
@@ -3115,14 +3116,14 @@ type TransactionToastProps = {
3115
3116
  declare const TransactionToast: ({ isOpen, onClose, status, txReceipt, txError, onTryAgain, description, }: TransactionToastProps) => react_jsx_runtime.JSX.Element | null;
3116
3117
 
3117
3118
  type Props$k = {
3118
- setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
3119
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3119
3120
  onClose: () => void;
3120
3121
  wallet: Wallet;
3121
3122
  };
3122
3123
  declare const AccountMainContent: ({ setCurrentContent, wallet }: Props$k) => react_jsx_runtime.JSX.Element;
3123
3124
 
3124
3125
  type Props$j = {
3125
- setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
3126
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3126
3127
  };
3127
3128
  declare const AccessAndSecurityContent: ({ setCurrentContent }: Props$j) => react_jsx_runtime.JSX.Element;
3128
3129
 
@@ -3157,7 +3158,7 @@ type SendTokenContentProps = {
3157
3158
  preselectedToken?: Token;
3158
3159
  onBack?: () => void;
3159
3160
  };
3160
- declare const SendTokenContent: ({ setCurrentContent, isNavigatingFromMain, preselectedToken, onBack, }: SendTokenContentProps) => react_jsx_runtime.JSX.Element;
3161
+ declare const SendTokenContent: ({ setCurrentContent, isNavigatingFromMain, preselectedToken, onBack: parentOnBack, }: SendTokenContentProps) => react_jsx_runtime.JSX.Element;
3161
3162
 
3162
3163
  type SendTokenSummaryContentProps = {
3163
3164
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3208,9 +3209,11 @@ type FAQContentProps = {
3208
3209
  };
3209
3210
  declare const FAQContent: ({ onGoBack }: FAQContentProps) => react_jsx_runtime.JSX.Element;
3210
3211
 
3211
- declare const CustomizationContent: ({ setCurrentContent, }: {
3212
+ type AccountCustomizationContentProps = {
3212
3213
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3213
- }) => react_jsx_runtime.JSX.Element;
3214
+ initialContentSource?: AccountModalContentTypes;
3215
+ };
3216
+ declare const CustomizationContent: ({ setCurrentContent, initialContentSource, }: AccountCustomizationContentProps) => react_jsx_runtime.JSX.Element;
3214
3217
 
3215
3218
  type CustomizationSummaryContentProps = {
3216
3219
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3222,8 +3225,9 @@ type CustomizationSummaryContentProps = {
3222
3225
  website?: string;
3223
3226
  email?: string;
3224
3227
  };
3228
+ onDoneRedirectContent: AccountModalContentTypes;
3225
3229
  };
3226
- declare const CustomizationSummaryContent: ({ setCurrentContent, changes, }: CustomizationSummaryContentProps) => react_jsx_runtime.JSX.Element;
3230
+ declare const CustomizationSummaryContent: ({ setCurrentContent, changes, onDoneRedirectContent, }: CustomizationSummaryContentProps) => react_jsx_runtime.JSX.Element;
3227
3231
 
3228
3232
  type ProfileContentProps = {
3229
3233
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3276,7 +3280,10 @@ type SuccessfulOperationContentProps$1 = {
3276
3280
  showSocialButtons?: boolean;
3277
3281
  };
3278
3282
 
3279
- type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'access-and-security' | 'embedded-wallet' | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'account-customization' | 'add-custom-token' | 'assets' | 'bridge' | {
3283
+ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'access-and-security' | 'embedded-wallet' | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'bridge' | {
3284
+ type: 'account-customization';
3285
+ props: AccountCustomizationContentProps;
3286
+ } | {
3280
3287
  type: 'successful-operation';
3281
3288
  props: SuccessfulOperationContentProps$1;
3282
3289
  } | {
@@ -3420,8 +3427,9 @@ type Props$5 = {
3420
3427
  label?: string;
3421
3428
  style?: PropsOf<typeof VStack>;
3422
3429
  showHumanAddress?: boolean;
3430
+ fromScreen?: string;
3423
3431
  };
3424
- declare const AddressDisplay: ({ wallet, label, style, showHumanAddress, }: Props$5) => react_jsx_runtime.JSX.Element;
3432
+ declare const AddressDisplay: ({ wallet, label, style, showHumanAddress, fromScreen, }: Props$5) => react_jsx_runtime.JSX.Element;
3425
3433
 
3426
3434
  type Props$4 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3427
3435
  declare const VersionFooter: ({ ...props }: Props$4) => react_jsx_runtime.JSX.Element;
@@ -3492,6 +3500,7 @@ type TransactionButtonAndStatusProps = {
3492
3500
  isSubmitting: boolean;
3493
3501
  isTxWaitingConfirmation: boolean;
3494
3502
  onConfirm: () => void;
3503
+ onRetry?: () => void;
3495
3504
  transactionPendingText: string;
3496
3505
  txReceipt: Connex.Thor.Transaction.Receipt | null;
3497
3506
  transactionError?: Error | TransactionStatusErrorType | null;
@@ -3501,8 +3510,9 @@ type TransactionButtonAndStatusProps = {
3501
3510
  style?: {
3502
3511
  accentColor?: string;
3503
3512
  };
3513
+ onError?: (error: string) => void;
3504
3514
  };
3505
- declare const TransactionButtonAndStatus: ({ transactionError, isSubmitting, isTxWaitingConfirmation, onConfirm, transactionPendingText, txReceipt, isSubmitForm, buttonText, isDisabled, style, }: TransactionButtonAndStatusProps) => react_jsx_runtime.JSX.Element;
3515
+ declare const TransactionButtonAndStatus: ({ transactionError, isSubmitting, isTxWaitingConfirmation, onConfirm, onRetry, transactionPendingText, txReceipt, isSubmitForm, buttonText, isDisabled, style, onError, }: TransactionButtonAndStatusProps) => react_jsx_runtime.JSX.Element;
3506
3516
 
3507
3517
  type LoginLoadingModalProps = {
3508
3518
  isOpen: boolean;
@@ -3589,7 +3599,7 @@ type useTransferERC20Props = {
3589
3599
  tokenName: string;
3590
3600
  onSuccess?: () => void;
3591
3601
  onSuccessMessageTitle?: number;
3592
- onError?: () => void;
3602
+ onError?: (error?: string) => void;
3593
3603
  };
3594
3604
  type useTransferERC20ReturnValue = {
3595
3605
  sendTransaction: () => Promise<void>;
@@ -3601,7 +3611,7 @@ type useTransferVETProps = {
3601
3611
  receiverAddress: string;
3602
3612
  amount: string;
3603
3613
  onSuccess?: () => void;
3604
- onError?: () => void;
3614
+ onError?: (error?: string) => void;
3605
3615
  };
3606
3616
  type useTransferVETReturnValue = {
3607
3617
  sendTransaction: () => Promise<void>;
@@ -3747,4 +3757,4 @@ declare const useCrossAppConnectionCache: () => {
3747
3757
  clearConnectionCache: () => void;
3748
3758
  };
3749
3759
 
3750
- export { APP_SECURITY_LEVELS, AccessAndSecurityContent, AccessAndSecurityModalProvider, AccountAvatar, AccountCustomizationModalProvider, AccountDetailsButton, AccountMainContent, AccountModal, type AccountModalContentTypes, AccountModalProvider, AccountSelector, ActionButton, AddressDisplay, AddressDisplayCard, type AllocationRoundWithState, type AllocationVoteCastEvent, type AppConfig, type AppVotesGiven, AssetButton, AssetsContent, type AssetsContentProps, AssetsSection, BalanceSection, BaseModal, BridgeContent, ChooseNameContent, type ChooseNameContentProps, ChooseNameModalProvider, ChooseNameSearchContent, type ChooseNameSearchContentProps, ChooseNameSummaryContent, type ChooseNameSummaryContentProps, ConnectModal, type ConnectModalContentsTypes, ConnectModalProvider, ConnectPopover, ConnectionButton, ConnectionSource, CrossAppConnectionCache, CrossAppConnectionSecurityCard, type CustomTokenInfo, CustomizationContent, CustomizationSummaryContent, type CustomizationSummaryContentProps, DappKitButton, type DecodedFunction, type Domain, DomainRequiredAlert, type DomainsResponse, ENSRecords, ENS_TEXT_RECORDS, EcosystemButton, EcosystemModal, type EcosystemShortcut, EmailLoginButton, EmbeddedWalletContent, EnhancedClause, ExchangeWarningAlert, ExploreEcosystemModalProvider, FAQContent, FAQModalProvider, FadeInView, FadeInViewFromBottom, FadeInViewFromLeft, FadeInViewFromRight, FeatureAnnouncementCard, type GetCallKeyParams, type IpfsImage, LoginLoadingModal, LoginWithGoogleButton, MAX_IMAGE_SIZE, MainContent, ManageCustomTokenContent, type ManageCustomTokenContentProps, ModalBackButton, ModalFAQButton, type MostVotedAppsInRoundReturnType, NFTMediaType, type NFTMetadata, NotificationsModalProvider, PRICE_FEED_IDS, PasskeyLoginButton, PrivyAppInfo, PrivyButton, PrivyLoginMethod, PrivyWalletProvider, type PrivyWalletProviderContextType, ProfileCard, type ProfileCardProps, ProfileContent, type ProfileContentProps, ProfileModalProvider, QuickActionsSection, ReceiveModalProvider, ReceiveTokenContent, type RoundCreated, type RoundReward, RoundState, ScrollToTopWrapper, SecurityLevel, SelectTokenContent, SendTokenContent, SendTokenModalProvider, SendTokenSummaryContent, SettingsContent, type SettingsContentProps, ShareButtons, SmartAccount, type SmartAccountReturnType, SocialIcons, StickyFooterContainer, StickyHeaderContainer, type SupportedToken, SwapTokenContent, type TextRecords, type TokenBalance, type TokenWithBalance, TransactionButtonAndStatus, type TransactionButtonAndStatusProps, TransactionModal, TransactionModalContent, type TransactionModalProps, TransactionModalProvider, TransactionStatus, TransactionStatusErrorType, TransactionToast, TransactionToastProvider, type UnendorsedApp, UpgradeSmartAccountContent, type UpgradeSmartAccountContentProps, UpgradeSmartAccountModal, type UpgradeSmartAccountModalContentsTypes, UpgradeSmartAccountModalProvider, type UpgradeSmartAccountModalStyle, 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, decodeFunctionSignature, fetchPrivyAppInfo, fetchPrivyStatus, fetchVechainDomain, getAccountAddress, getAccountAddressQueryKey, getAccountBalance, getAccountBalanceQueryKey, getAccountImplementationAddress, getAccountImplementationAddressQueryKey, getAccountVersion, getAccountVersionQueryKey, getAllEvents, getAllocationAmount, getAllocationAmountQueryKey, getAllocationsRoundState, getAllocationsRoundStateQueryKey, getAllocationsRoundsEvents, getAllocationsRoundsEventsQueryKey, getAppAdmin, getAppAdminQueryKey, getAppBalance, getAppBalanceQueryKey, getAppExistsQueryKey, getAppSecurityLevelQueryKey, getAppsEligibleInNextRound, getAppsEligibleInNextRoundQueryKey, getAppsShareClauses, getAvatar, getAvatarLegacy, getAvatarLegacyQueryKey, getAvatarOfAddressQueryKey, getAvatarQueryKey, getB3trBalance, getB3trBalanceQueryKey, getB3trDonatedQueryKey, getB3trToUpgradeQueryKey, getBalanceOf, getCallKey, getChainId, getChainIdQueryKey, getConfig, getCurrentAccountImplementationVersion, getCurrentAccountImplementationVersionQueryKey, getCurrentAllocationsRoundId, getCurrentAllocationsRoundIdQueryKey, getCustomTokenBalance, getCustomTokenBalanceQueryKey, getCustomTokenInfo, getDelegateeQueryKey, getDelegatorQueryKey, getDomainsOfAddress, getDomainsOfAddressQueryKey, getEnsRecordExistsQueryKey, getEntitiesLinkedToPassportQueryKey, getErc20Balance, getErc20BalanceQueryKey, getEvents, getGMBaseUriQueryKey, getGMLevel, getGMbalanceQueryKey, getGetCumulativeScoreWithDecayQueryKey, getHasV1SmartAccount, getHasV1SmartAccountQueryKey, getHasVotedInRound, getHasVotedInRoundQueryKey, getIpfsImage, getIpfsImageQueryKey, getIpfsMetadata, getIpfsMetadataQueryKey, getIsBlacklistedQueryKey, getIsDeployed, getIsDeployedQueryKey, getIsDomainProtectedQueryKey, getIsEntityQueryKey, getIsNodeHolder, getIsNodeHolderQueryKey, getIsPassportQueryKey, getIsPersonAtTimepointQueryKey, getIsPersonQueryKey, getIsWhitelistedQueryKey, getLevelGradient, getLevelMultiplierQueryKey, getLevelOfTokenQueryKey, getNFTMetadataUri, getNFTMetadataUriQueryKey, getNodeCheckCooldownQueryKey, getNodeManagerQueryKey, getParticipatedInGovernance, getParticipatedInGovernanceQueryKey, getParticipationScoreThresholdQueryKey, getPassportForEntityQueryKey, getPassportToggleQueryKey, getPendingDelegationsQueryKeyDelegateePOV, getPendingDelegationsQueryKeyDelegatorPOV, getPendingLinkingsQueryKey, getPrivyAppInfoQueryKey, getResolverAddress, getResolverAddressQueryKey, getRoundReward, getRoundRewardQueryKey, getRoundXApps, getRoundXAppsQueryKey, getSecurityMultiplierQueryKey, getSmartAccount, getSmartAccountQueryKey, getTextRecords, getTextRecordsQueryKey, getThresholdParticipationScoreAtTimepointQueryKey, getThresholdParticipationScoreQueryKey, getTokenIdByAccount, getTokenIdByAccountQueryKey, getTokenInfo, getTokenUsdPrice, getTokenUsdPriceQueryKey, getTokensInfoByOwnerQueryKey, getUpgradeRequired, getUpgradeRequiredForAccount, getUpgradeRequiredForAccountQueryKey, getUpgradeRequiredQueryKey, 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, useAccountImplementationAddress, useAccountLinking, useAccountModal, useAllocationAmount, useAllocationsRound, useAllocationsRoundState, useAllocationsRoundsEvents, useAppAdmin, useAppBalance, useAppExists, useAppSecurityLevel, useAppsEligibleInNextRound, useB3trDonated, useB3trToUpgrade, useBalances, useCall, useChooseNameModal, useClaimVeWorldSubdomain, useClaimVetDomain, useConnectModal, useCrossAppConnectionCache, useCurrentAccountImplementationVersion, useCurrentAllocationsRound, useCurrentAllocationsRoundId, useCurrentBlock, useDecodeFunctionSignature, useEcosystemShortcuts, useEnsRecordExists, useExploreEcosystemModal, useFAQModal, useFeatureAnnouncement, useFetchAppInfo, useFetchPrivyStatus, useGMBaseUri, useGMbalance, useGetAccountAddress, useGetAccountVersion, useGetAvatar, useGetAvatarLegacy, useGetAvatarOfAddress, useGetB3trBalance, useGetChainId, useGetCumulativeScoreWithDecay, useGetCustomTokenBalances, useGetCustomTokenInfo, useGetDelegatee, useGetDelegator, useGetDomainsOfAddress, useGetEntitiesLinkedToPassport, useGetErc20Balance, useGetNodeManager, useGetNodeUrl, useGetPassportForEntity, useGetPendingDelegationsDelegateePOV, useGetPendingDelegationsDelegatorPOV, useGetPendingLinkings, useGetResolverAddress, useGetTextRecords, useGetTokenUsdPrice, useGetTokensInfoByOwner, useGetUserEntitiesLinkedToPassport, useGetUserNode, useGetUserNodes, useGetUserPassportForEntity, useGetUserPendingLinkings, useGetVeDelegateBalance, useGetVot3Balance, useHasV1SmartAccount, useHasVotedInRound, useIpfsImage, useIpfsImageList, useIpfsMetadata, useIpfsMetadatas, useIsBlacklisted, useIsDomainProtected, useIsEntity, useIsGMclaimable, useIsNodeHolder, useIsPWA, useIsPassport, useIsPassportCheckEnabled, useIsPerson, useIsPersonAtTimepoint, useIsSmartAccountDeployed, useIsUserEntity, useIsUserPassport, useIsUserPerson, useIsWhitelisted, useLevelMultiplier, useLevelOfToken, useLocalStorage, useLoginModalContent, useLoginWithOAuth, useLoginWithPasskey, useLoginWithVeChain, useMostVotedAppsInRound, useMultipleXAppRoundEarnings, useNFTImage, useNFTMetadataUri, useNotificationAlerts, useNotifications, useNotificationsModal, useParticipatedInGovernance, useParticipationScoreThreshold, usePassportChecks, usePrivyWalletProvider, useProfileModal, useReceiveModal, useRefreshBalances, useRefreshMetadata, useRoundEarnings, useRoundReward, useRoundXApps, useScrollToTop, useSecurityMultiplier, useSelectedGmNft, useSendTokenModal, useSendTransaction, useSignMessage, useSignTypedData, useSingleImageUpload, useSmartAccount, useSmartAccountVersion, useThresholdParticipationScore, useThresholdParticipationScoreAtTimepoint, useTokenIdByAccount, useTransactionModal, useTransactionToast, useTransferERC20, useTransferVET, useTxReceipt, useUnsetDomain, useUpdateTextRecord, useUpgradeRequired, useUpgradeRequiredForAccount, useUpgradeSmartAccount, useUpgradeSmartAccountModal, useUploadImages, useUserBotSignals, useUserDelegation, useUserRoundScore, useUserStatus, useUserTopVotedApps, useUserVotesInAllRounds, useUserVotesInRound, useVeChainKitConfig, useVechainDomain, useVotesInRound, useVotingRewards, useWallet, useWalletMetadata, useWalletModal, useXApp, useXAppMetadata, useXAppRoundEarnings, useXAppTotalEarnings, useXAppVotes, useXAppVotesQf, useXApps, useXAppsMetadataBaseUri, useXAppsShares, useXNode, useXNodeCheckCooldown, useXNodes };
3760
+ export { APP_SECURITY_LEVELS, AccessAndSecurityContent, AccessAndSecurityModalProvider, AccountAvatar, type AccountCustomizationContentProps, AccountCustomizationModalProvider, AccountDetailsButton, AccountMainContent, AccountModal, type AccountModalContentTypes, AccountModalProvider, AccountSelector, ActionButton, AddressDisplay, AddressDisplayCard, type AllocationRoundWithState, type AllocationVoteCastEvent, type AppConfig, type AppVotesGiven, AssetButton, AssetsContent, type AssetsContentProps, AssetsSection, BalanceSection, BaseModal, BridgeContent, ChooseNameContent, type ChooseNameContentProps, ChooseNameModalProvider, ChooseNameSearchContent, type ChooseNameSearchContentProps, ChooseNameSummaryContent, type ChooseNameSummaryContentProps, ConnectModal, type ConnectModalContentsTypes, ConnectModalProvider, ConnectPopover, ConnectionButton, ConnectionSource, CrossAppConnectionCache, CrossAppConnectionSecurityCard, type CustomTokenInfo, CustomizationContent, CustomizationSummaryContent, type CustomizationSummaryContentProps, DappKitButton, type DecodedFunction, type Domain, DomainRequiredAlert, type DomainsResponse, ENSRecords, ENS_TEXT_RECORDS, EcosystemButton, EcosystemModal, type EcosystemShortcut, EmailLoginButton, EmbeddedWalletContent, EnhancedClause, ExchangeWarningAlert, ExploreEcosystemModalProvider, FAQContent, FAQModalProvider, FadeInView, FadeInViewFromBottom, FadeInViewFromLeft, FadeInViewFromRight, FeatureAnnouncementCard, type GetCallKeyParams, type IpfsImage, LoginLoadingModal, LoginWithGoogleButton, MAX_IMAGE_SIZE, MainContent, ManageCustomTokenContent, type ManageCustomTokenContentProps, ModalBackButton, ModalFAQButton, type MostVotedAppsInRoundReturnType, NFTMediaType, type NFTMetadata, NotificationsModalProvider, PRICE_FEED_IDS, PasskeyLoginButton, PrivyAppInfo, PrivyButton, PrivyLoginMethod, PrivyWalletProvider, type PrivyWalletProviderContextType, ProfileCard, type ProfileCardProps, ProfileContent, type ProfileContentProps, ProfileModalProvider, QuickActionsSection, ReceiveModalProvider, ReceiveTokenContent, type RoundCreated, type RoundReward, RoundState, ScrollToTopWrapper, SecurityLevel, SelectTokenContent, SendTokenContent, SendTokenModalProvider, SendTokenSummaryContent, SettingsContent, type SettingsContentProps, ShareButtons, SmartAccount, type SmartAccountReturnType, SocialIcons, StickyFooterContainer, StickyHeaderContainer, type SupportedToken, SwapTokenContent, type TextRecords, type TokenBalance, type TokenWithBalance, TransactionButtonAndStatus, type TransactionButtonAndStatusProps, TransactionModal, TransactionModalContent, type TransactionModalProps, TransactionModalProvider, TransactionStatus, TransactionStatusErrorType, TransactionToast, TransactionToastProvider, type UnendorsedApp, UpgradeSmartAccountContent, type UpgradeSmartAccountContentProps, UpgradeSmartAccountModal, type UpgradeSmartAccountModalContentsTypes, UpgradeSmartAccountModalProvider, type UpgradeSmartAccountModalStyle, 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, decodeFunctionSignature, fetchPrivyAppInfo, fetchPrivyStatus, fetchVechainDomain, getAccountAddress, getAccountAddressQueryKey, getAccountBalance, getAccountBalanceQueryKey, getAccountImplementationAddress, getAccountImplementationAddressQueryKey, getAccountVersion, getAccountVersionQueryKey, getAllEvents, getAllocationAmount, getAllocationAmountQueryKey, getAllocationsRoundState, getAllocationsRoundStateQueryKey, getAllocationsRoundsEvents, getAllocationsRoundsEventsQueryKey, getAppAdmin, getAppAdminQueryKey, getAppBalance, getAppBalanceQueryKey, getAppExistsQueryKey, getAppSecurityLevelQueryKey, getAppsEligibleInNextRound, getAppsEligibleInNextRoundQueryKey, getAppsShareClauses, getAvatar, getAvatarLegacy, getAvatarLegacyQueryKey, getAvatarOfAddressQueryKey, getAvatarQueryKey, getB3trBalance, getB3trBalanceQueryKey, getB3trDonatedQueryKey, getB3trToUpgradeQueryKey, getBalanceOf, getCallKey, getChainId, getChainIdQueryKey, getConfig, getCurrentAccountImplementationVersion, getCurrentAccountImplementationVersionQueryKey, getCurrentAllocationsRoundId, getCurrentAllocationsRoundIdQueryKey, getCustomTokenBalance, getCustomTokenBalanceQueryKey, getCustomTokenInfo, getDelegateeQueryKey, getDelegatorQueryKey, getDomainsOfAddress, getDomainsOfAddressQueryKey, getEnsRecordExistsQueryKey, getEntitiesLinkedToPassportQueryKey, getErc20Balance, getErc20BalanceQueryKey, getEvents, getGMBaseUriQueryKey, getGMLevel, getGMbalanceQueryKey, getGetCumulativeScoreWithDecayQueryKey, getHasV1SmartAccount, getHasV1SmartAccountQueryKey, getHasVotedInRound, getHasVotedInRoundQueryKey, getIpfsImage, getIpfsImageQueryKey, getIpfsMetadata, getIpfsMetadataQueryKey, getIsBlacklistedQueryKey, getIsDeployed, getIsDeployedQueryKey, getIsDomainProtectedQueryKey, getIsEntityQueryKey, getIsNodeHolder, getIsNodeHolderQueryKey, getIsPassportQueryKey, getIsPersonAtTimepointQueryKey, getIsPersonQueryKey, getIsWhitelistedQueryKey, getLevelGradient, getLevelMultiplierQueryKey, getLevelOfTokenQueryKey, getNFTMetadataUri, getNFTMetadataUriQueryKey, getNodeCheckCooldownQueryKey, getNodeManagerQueryKey, getParticipatedInGovernance, getParticipatedInGovernanceQueryKey, getParticipationScoreThresholdQueryKey, getPassportForEntityQueryKey, getPassportToggleQueryKey, getPendingDelegationsQueryKeyDelegateePOV, getPendingDelegationsQueryKeyDelegatorPOV, getPendingLinkingsQueryKey, getPrivyAppInfoQueryKey, getResolverAddress, getResolverAddressQueryKey, getRoundReward, getRoundRewardQueryKey, getRoundXApps, getRoundXAppsQueryKey, getSecurityMultiplierQueryKey, getSmartAccount, getSmartAccountQueryKey, getTextRecords, getTextRecordsQueryKey, getThresholdParticipationScoreAtTimepointQueryKey, getThresholdParticipationScoreQueryKey, getTokenIdByAccount, getTokenIdByAccountQueryKey, getTokenInfo, getTokenUsdPrice, getTokenUsdPriceQueryKey, getTokensInfoByOwnerQueryKey, getUpgradeRequired, getUpgradeRequiredForAccount, getUpgradeRequiredForAccountQueryKey, getUpgradeRequiredQueryKey, 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, useAccountImplementationAddress, useAccountLinking, useAccountModal, useAllocationAmount, useAllocationsRound, useAllocationsRoundState, useAllocationsRoundsEvents, useAppAdmin, useAppBalance, useAppExists, useAppSecurityLevel, useAppsEligibleInNextRound, useB3trDonated, useB3trToUpgrade, useBalances, useCall, useChooseNameModal, useClaimVeWorldSubdomain, useClaimVetDomain, useConnectModal, useCrossAppConnectionCache, useCurrentAccountImplementationVersion, useCurrentAllocationsRound, useCurrentAllocationsRoundId, useCurrentBlock, useDecodeFunctionSignature, useEcosystemShortcuts, useEnsRecordExists, useExploreEcosystemModal, useFAQModal, useFeatureAnnouncement, useFetchAppInfo, useFetchPrivyStatus, useGMBaseUri, useGMbalance, useGetAccountAddress, useGetAccountVersion, useGetAvatar, useGetAvatarLegacy, useGetAvatarOfAddress, useGetB3trBalance, useGetChainId, useGetCumulativeScoreWithDecay, useGetCustomTokenBalances, useGetCustomTokenInfo, useGetDelegatee, useGetDelegator, useGetDomainsOfAddress, useGetEntitiesLinkedToPassport, useGetErc20Balance, useGetNodeManager, useGetNodeUrl, useGetPassportForEntity, useGetPendingDelegationsDelegateePOV, useGetPendingDelegationsDelegatorPOV, useGetPendingLinkings, useGetResolverAddress, useGetTextRecords, useGetTokenUsdPrice, useGetTokensInfoByOwner, useGetUserEntitiesLinkedToPassport, useGetUserNode, useGetUserNodes, useGetUserPassportForEntity, useGetUserPendingLinkings, useGetVeDelegateBalance, useGetVot3Balance, useHasV1SmartAccount, useHasVotedInRound, useIpfsImage, useIpfsImageList, useIpfsMetadata, useIpfsMetadatas, useIsBlacklisted, useIsDomainProtected, useIsEntity, useIsGMclaimable, useIsNodeHolder, useIsPWA, useIsPassport, useIsPassportCheckEnabled, useIsPerson, useIsPersonAtTimepoint, useIsSmartAccountDeployed, useIsUserEntity, useIsUserPassport, useIsUserPerson, useIsWhitelisted, useLevelMultiplier, useLevelOfToken, useLocalStorage, useLoginModalContent, useLoginWithOAuth, useLoginWithPasskey, useLoginWithVeChain, useMostVotedAppsInRound, useMultipleXAppRoundEarnings, useNFTImage, useNFTMetadataUri, useNotificationAlerts, useNotifications, useNotificationsModal, useParticipatedInGovernance, useParticipationScoreThreshold, usePassportChecks, usePrivyWalletProvider, useProfileModal, useReceiveModal, useRefreshBalances, useRefreshMetadata, useRoundEarnings, useRoundReward, useRoundXApps, useScrollToTop, useSecurityMultiplier, useSelectedGmNft, useSendTokenModal, useSendTransaction, useSignMessage, useSignTypedData, useSingleImageUpload, useSmartAccount, useSmartAccountVersion, useThresholdParticipationScore, useThresholdParticipationScoreAtTimepoint, useTokenIdByAccount, useTransactionModal, useTransactionToast, useTransferERC20, useTransferVET, useTxReceipt, useUnsetDomain, useUpdateTextRecord, useUpgradeRequired, useUpgradeRequiredForAccount, useUpgradeSmartAccount, useUpgradeSmartAccountModal, useUploadImages, useUserBotSignals, useUserDelegation, useUserRoundScore, useUserStatus, useUserTopVotedApps, useUserVotesInAllRounds, useUserVotesInRound, useVeChainKitConfig, useVechainDomain, useVotesInRound, useVotingRewards, useWallet, useWalletMetadata, useWalletModal, useXApp, useXAppMetadata, useXAppRoundEarnings, useXAppTotalEarnings, useXAppVotes, useXAppVotesQf, useXApps, useXAppsMetadataBaseUri, useXAppsShares, useXNode, useXNodeCheckCooldown, useXNodes };
package/dist/index.d.ts CHANGED
@@ -3,8 +3,8 @@ import * as React$1 from 'react';
3
3
  import React__default, { ReactNode, ReactElement, ElementType } from 'react';
4
4
  import { WalletListEntry, SignTypedDataParams, User } from '@privy-io/react-auth';
5
5
  export { useMfaEnrollment, usePrivy, useSetWalletRecovery } from '@privy-io/react-auth';
6
- import { P as PrivyLoginMethod, N as NETWORK_TYPE, a as Network, T as TogglePassportCheck, V as VePassportUserStatus, E as EnhancedClause, b as PrivyAppInfo, c as TransactionStatus, d as TransactionStatusErrorType, W as Wallet, S as SmartAccount, C as ConnectionSource, e as ENSRecords, f as NFTMediaType, g as CrossAppConnectionCache } from './Constants-aAc8EZtG.js';
7
- export { i as ExecuteBatchWithAuthorizationSignData, h as ExecuteWithAuthorizationSignData } from './Constants-aAc8EZtG.js';
6
+ import { P as PrivyLoginMethod, N as NETWORK_TYPE, a as Network, T as TogglePassportCheck, V as VePassportUserStatus, E as EnhancedClause, b as PrivyAppInfo, c as TransactionStatus, d as TransactionStatusErrorType, W as Wallet, S as SmartAccount, C as ConnectionSource, e as ENSRecords, f as NFTMediaType, g as CrossAppConnectionCache } from './Constants-LR_GjzdJ.js';
7
+ export { i as ExecuteBatchWithAuthorizationSignData, h as ExecuteWithAuthorizationSignData } from './Constants-LR_GjzdJ.js';
8
8
  import { WalletSource, LogLevel } from '@vechain/dapp-kit';
9
9
  import { WalletConnectOptions } from '@vechain/dapp-kit-react';
10
10
  export { WalletButton as DAppKitWalletButton, useConnex, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from '@vechain/dapp-kit-react';
@@ -2198,7 +2198,7 @@ declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string)
2198
2198
  * @param networkType - The network type
2199
2199
  * @returns The avatar URL from the API
2200
2200
  */
2201
- declare const getAvatar: (name: string, networkType: NETWORK_TYPE) => Promise<string | null>;
2201
+ declare const getAvatar: (name: string, network: VechainKitProviderProps["network"]) => Promise<string | null>;
2202
2202
  declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => string[];
2203
2203
  /**
2204
2204
  * Hook to fetch the avatar URL for a VET domain name
@@ -2230,7 +2230,7 @@ type UseSendTransactionProps = {
2230
2230
  signerAccountAddress?: string | null;
2231
2231
  clauses?: EnhancedClause[] | (() => EnhancedClause[]) | (() => Promise<EnhancedClause[]>);
2232
2232
  onTxConfirmed?: () => void | Promise<void>;
2233
- onTxFailedOrCancelled?: () => void | Promise<void>;
2233
+ onTxFailedOrCancelled?: (error?: Error | string) => void | Promise<void>;
2234
2234
  suggestedMaxGas?: number;
2235
2235
  privyUIOptions?: {
2236
2236
  title?: string;
@@ -2299,7 +2299,7 @@ type UpdateTextRecordVariables = {
2299
2299
  };
2300
2300
  type UseUpdateTextRecordProps = {
2301
2301
  onSuccess?: () => void | Promise<void>;
2302
- onError?: () => void | Promise<void>;
2302
+ onError?: (error?: Error) => void | Promise<void>;
2303
2303
  signerAccountAddress?: string;
2304
2304
  resolverAddress?: string;
2305
2305
  };
@@ -2438,7 +2438,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
2438
2438
 
2439
2439
  declare const useWalletMetadata: (address: string, networkType: NETWORK_TYPE) => {
2440
2440
  domain: string | undefined;
2441
- image: string;
2441
+ image: string | undefined;
2442
2442
  records: ENSRecords;
2443
2443
  isLoading: boolean;
2444
2444
  };
@@ -3005,8 +3005,9 @@ interface ConnectionButtonProps {
3005
3005
  rightIcon?: ReactElement;
3006
3006
  style?: ButtonProps;
3007
3007
  variant?: string;
3008
+ iconWidth?: string;
3008
3009
  }
3009
- declare const ConnectionButton: ({ onClick, text, icon, customIcon, rightIcon, style, variant, }: ConnectionButtonProps) => react_jsx_runtime.JSX.Element | null;
3010
+ declare const ConnectionButton: ({ onClick, text, icon, customIcon, rightIcon, style, variant, iconWidth, }: ConnectionButtonProps) => react_jsx_runtime.JSX.Element | null;
3010
3011
 
3011
3012
  declare const EmailLoginButton: () => react_jsx_runtime.JSX.Element;
3012
3013
 
@@ -3022,7 +3023,7 @@ type Props$r = {
3022
3023
  isLoading: boolean;
3023
3024
  gridColumn?: number;
3024
3025
  };
3025
- declare const EcosystemButton: ({ isDark, appsInfo, isLoading, gridColumn, }: Props$r) => react_jsx_runtime.JSX.Element;
3026
+ declare const EcosystemButton: ({ appsInfo, isLoading }: Props$r) => react_jsx_runtime.JSX.Element;
3026
3027
 
3027
3028
  type Props$q = {
3028
3029
  isDark: boolean;
@@ -3115,14 +3116,14 @@ type TransactionToastProps = {
3115
3116
  declare const TransactionToast: ({ isOpen, onClose, status, txReceipt, txError, onTryAgain, description, }: TransactionToastProps) => react_jsx_runtime.JSX.Element | null;
3116
3117
 
3117
3118
  type Props$k = {
3118
- setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
3119
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3119
3120
  onClose: () => void;
3120
3121
  wallet: Wallet;
3121
3122
  };
3122
3123
  declare const AccountMainContent: ({ setCurrentContent, wallet }: Props$k) => react_jsx_runtime.JSX.Element;
3123
3124
 
3124
3125
  type Props$j = {
3125
- setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
3126
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3126
3127
  };
3127
3128
  declare const AccessAndSecurityContent: ({ setCurrentContent }: Props$j) => react_jsx_runtime.JSX.Element;
3128
3129
 
@@ -3157,7 +3158,7 @@ type SendTokenContentProps = {
3157
3158
  preselectedToken?: Token;
3158
3159
  onBack?: () => void;
3159
3160
  };
3160
- declare const SendTokenContent: ({ setCurrentContent, isNavigatingFromMain, preselectedToken, onBack, }: SendTokenContentProps) => react_jsx_runtime.JSX.Element;
3161
+ declare const SendTokenContent: ({ setCurrentContent, isNavigatingFromMain, preselectedToken, onBack: parentOnBack, }: SendTokenContentProps) => react_jsx_runtime.JSX.Element;
3161
3162
 
3162
3163
  type SendTokenSummaryContentProps = {
3163
3164
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3208,9 +3209,11 @@ type FAQContentProps = {
3208
3209
  };
3209
3210
  declare const FAQContent: ({ onGoBack }: FAQContentProps) => react_jsx_runtime.JSX.Element;
3210
3211
 
3211
- declare const CustomizationContent: ({ setCurrentContent, }: {
3212
+ type AccountCustomizationContentProps = {
3212
3213
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3213
- }) => react_jsx_runtime.JSX.Element;
3214
+ initialContentSource?: AccountModalContentTypes;
3215
+ };
3216
+ declare const CustomizationContent: ({ setCurrentContent, initialContentSource, }: AccountCustomizationContentProps) => react_jsx_runtime.JSX.Element;
3214
3217
 
3215
3218
  type CustomizationSummaryContentProps = {
3216
3219
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3222,8 +3225,9 @@ type CustomizationSummaryContentProps = {
3222
3225
  website?: string;
3223
3226
  email?: string;
3224
3227
  };
3228
+ onDoneRedirectContent: AccountModalContentTypes;
3225
3229
  };
3226
- declare const CustomizationSummaryContent: ({ setCurrentContent, changes, }: CustomizationSummaryContentProps) => react_jsx_runtime.JSX.Element;
3230
+ declare const CustomizationSummaryContent: ({ setCurrentContent, changes, onDoneRedirectContent, }: CustomizationSummaryContentProps) => react_jsx_runtime.JSX.Element;
3227
3231
 
3228
3232
  type ProfileContentProps = {
3229
3233
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3276,7 +3280,10 @@ type SuccessfulOperationContentProps$1 = {
3276
3280
  showSocialButtons?: boolean;
3277
3281
  };
3278
3282
 
3279
- type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'access-and-security' | 'embedded-wallet' | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'account-customization' | 'add-custom-token' | 'assets' | 'bridge' | {
3283
+ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'access-and-security' | 'embedded-wallet' | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'bridge' | {
3284
+ type: 'account-customization';
3285
+ props: AccountCustomizationContentProps;
3286
+ } | {
3280
3287
  type: 'successful-operation';
3281
3288
  props: SuccessfulOperationContentProps$1;
3282
3289
  } | {
@@ -3420,8 +3427,9 @@ type Props$5 = {
3420
3427
  label?: string;
3421
3428
  style?: PropsOf<typeof VStack>;
3422
3429
  showHumanAddress?: boolean;
3430
+ fromScreen?: string;
3423
3431
  };
3424
- declare const AddressDisplay: ({ wallet, label, style, showHumanAddress, }: Props$5) => react_jsx_runtime.JSX.Element;
3432
+ declare const AddressDisplay: ({ wallet, label, style, showHumanAddress, fromScreen, }: Props$5) => react_jsx_runtime.JSX.Element;
3425
3433
 
3426
3434
  type Props$4 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3427
3435
  declare const VersionFooter: ({ ...props }: Props$4) => react_jsx_runtime.JSX.Element;
@@ -3492,6 +3500,7 @@ type TransactionButtonAndStatusProps = {
3492
3500
  isSubmitting: boolean;
3493
3501
  isTxWaitingConfirmation: boolean;
3494
3502
  onConfirm: () => void;
3503
+ onRetry?: () => void;
3495
3504
  transactionPendingText: string;
3496
3505
  txReceipt: Connex.Thor.Transaction.Receipt | null;
3497
3506
  transactionError?: Error | TransactionStatusErrorType | null;
@@ -3501,8 +3510,9 @@ type TransactionButtonAndStatusProps = {
3501
3510
  style?: {
3502
3511
  accentColor?: string;
3503
3512
  };
3513
+ onError?: (error: string) => void;
3504
3514
  };
3505
- declare const TransactionButtonAndStatus: ({ transactionError, isSubmitting, isTxWaitingConfirmation, onConfirm, transactionPendingText, txReceipt, isSubmitForm, buttonText, isDisabled, style, }: TransactionButtonAndStatusProps) => react_jsx_runtime.JSX.Element;
3515
+ declare const TransactionButtonAndStatus: ({ transactionError, isSubmitting, isTxWaitingConfirmation, onConfirm, onRetry, transactionPendingText, txReceipt, isSubmitForm, buttonText, isDisabled, style, onError, }: TransactionButtonAndStatusProps) => react_jsx_runtime.JSX.Element;
3506
3516
 
3507
3517
  type LoginLoadingModalProps = {
3508
3518
  isOpen: boolean;
@@ -3589,7 +3599,7 @@ type useTransferERC20Props = {
3589
3599
  tokenName: string;
3590
3600
  onSuccess?: () => void;
3591
3601
  onSuccessMessageTitle?: number;
3592
- onError?: () => void;
3602
+ onError?: (error?: string) => void;
3593
3603
  };
3594
3604
  type useTransferERC20ReturnValue = {
3595
3605
  sendTransaction: () => Promise<void>;
@@ -3601,7 +3611,7 @@ type useTransferVETProps = {
3601
3611
  receiverAddress: string;
3602
3612
  amount: string;
3603
3613
  onSuccess?: () => void;
3604
- onError?: () => void;
3614
+ onError?: (error?: string) => void;
3605
3615
  };
3606
3616
  type useTransferVETReturnValue = {
3607
3617
  sendTransaction: () => Promise<void>;
@@ -3747,4 +3757,4 @@ declare const useCrossAppConnectionCache: () => {
3747
3757
  clearConnectionCache: () => void;
3748
3758
  };
3749
3759
 
3750
- export { APP_SECURITY_LEVELS, AccessAndSecurityContent, AccessAndSecurityModalProvider, AccountAvatar, AccountCustomizationModalProvider, AccountDetailsButton, AccountMainContent, AccountModal, type AccountModalContentTypes, AccountModalProvider, AccountSelector, ActionButton, AddressDisplay, AddressDisplayCard, type AllocationRoundWithState, type AllocationVoteCastEvent, type AppConfig, type AppVotesGiven, AssetButton, AssetsContent, type AssetsContentProps, AssetsSection, BalanceSection, BaseModal, BridgeContent, ChooseNameContent, type ChooseNameContentProps, ChooseNameModalProvider, ChooseNameSearchContent, type ChooseNameSearchContentProps, ChooseNameSummaryContent, type ChooseNameSummaryContentProps, ConnectModal, type ConnectModalContentsTypes, ConnectModalProvider, ConnectPopover, ConnectionButton, ConnectionSource, CrossAppConnectionCache, CrossAppConnectionSecurityCard, type CustomTokenInfo, CustomizationContent, CustomizationSummaryContent, type CustomizationSummaryContentProps, DappKitButton, type DecodedFunction, type Domain, DomainRequiredAlert, type DomainsResponse, ENSRecords, ENS_TEXT_RECORDS, EcosystemButton, EcosystemModal, type EcosystemShortcut, EmailLoginButton, EmbeddedWalletContent, EnhancedClause, ExchangeWarningAlert, ExploreEcosystemModalProvider, FAQContent, FAQModalProvider, FadeInView, FadeInViewFromBottom, FadeInViewFromLeft, FadeInViewFromRight, FeatureAnnouncementCard, type GetCallKeyParams, type IpfsImage, LoginLoadingModal, LoginWithGoogleButton, MAX_IMAGE_SIZE, MainContent, ManageCustomTokenContent, type ManageCustomTokenContentProps, ModalBackButton, ModalFAQButton, type MostVotedAppsInRoundReturnType, NFTMediaType, type NFTMetadata, NotificationsModalProvider, PRICE_FEED_IDS, PasskeyLoginButton, PrivyAppInfo, PrivyButton, PrivyLoginMethod, PrivyWalletProvider, type PrivyWalletProviderContextType, ProfileCard, type ProfileCardProps, ProfileContent, type ProfileContentProps, ProfileModalProvider, QuickActionsSection, ReceiveModalProvider, ReceiveTokenContent, type RoundCreated, type RoundReward, RoundState, ScrollToTopWrapper, SecurityLevel, SelectTokenContent, SendTokenContent, SendTokenModalProvider, SendTokenSummaryContent, SettingsContent, type SettingsContentProps, ShareButtons, SmartAccount, type SmartAccountReturnType, SocialIcons, StickyFooterContainer, StickyHeaderContainer, type SupportedToken, SwapTokenContent, type TextRecords, type TokenBalance, type TokenWithBalance, TransactionButtonAndStatus, type TransactionButtonAndStatusProps, TransactionModal, TransactionModalContent, type TransactionModalProps, TransactionModalProvider, TransactionStatus, TransactionStatusErrorType, TransactionToast, TransactionToastProvider, type UnendorsedApp, UpgradeSmartAccountContent, type UpgradeSmartAccountContentProps, UpgradeSmartAccountModal, type UpgradeSmartAccountModalContentsTypes, UpgradeSmartAccountModalProvider, type UpgradeSmartAccountModalStyle, 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, decodeFunctionSignature, fetchPrivyAppInfo, fetchPrivyStatus, fetchVechainDomain, getAccountAddress, getAccountAddressQueryKey, getAccountBalance, getAccountBalanceQueryKey, getAccountImplementationAddress, getAccountImplementationAddressQueryKey, getAccountVersion, getAccountVersionQueryKey, getAllEvents, getAllocationAmount, getAllocationAmountQueryKey, getAllocationsRoundState, getAllocationsRoundStateQueryKey, getAllocationsRoundsEvents, getAllocationsRoundsEventsQueryKey, getAppAdmin, getAppAdminQueryKey, getAppBalance, getAppBalanceQueryKey, getAppExistsQueryKey, getAppSecurityLevelQueryKey, getAppsEligibleInNextRound, getAppsEligibleInNextRoundQueryKey, getAppsShareClauses, getAvatar, getAvatarLegacy, getAvatarLegacyQueryKey, getAvatarOfAddressQueryKey, getAvatarQueryKey, getB3trBalance, getB3trBalanceQueryKey, getB3trDonatedQueryKey, getB3trToUpgradeQueryKey, getBalanceOf, getCallKey, getChainId, getChainIdQueryKey, getConfig, getCurrentAccountImplementationVersion, getCurrentAccountImplementationVersionQueryKey, getCurrentAllocationsRoundId, getCurrentAllocationsRoundIdQueryKey, getCustomTokenBalance, getCustomTokenBalanceQueryKey, getCustomTokenInfo, getDelegateeQueryKey, getDelegatorQueryKey, getDomainsOfAddress, getDomainsOfAddressQueryKey, getEnsRecordExistsQueryKey, getEntitiesLinkedToPassportQueryKey, getErc20Balance, getErc20BalanceQueryKey, getEvents, getGMBaseUriQueryKey, getGMLevel, getGMbalanceQueryKey, getGetCumulativeScoreWithDecayQueryKey, getHasV1SmartAccount, getHasV1SmartAccountQueryKey, getHasVotedInRound, getHasVotedInRoundQueryKey, getIpfsImage, getIpfsImageQueryKey, getIpfsMetadata, getIpfsMetadataQueryKey, getIsBlacklistedQueryKey, getIsDeployed, getIsDeployedQueryKey, getIsDomainProtectedQueryKey, getIsEntityQueryKey, getIsNodeHolder, getIsNodeHolderQueryKey, getIsPassportQueryKey, getIsPersonAtTimepointQueryKey, getIsPersonQueryKey, getIsWhitelistedQueryKey, getLevelGradient, getLevelMultiplierQueryKey, getLevelOfTokenQueryKey, getNFTMetadataUri, getNFTMetadataUriQueryKey, getNodeCheckCooldownQueryKey, getNodeManagerQueryKey, getParticipatedInGovernance, getParticipatedInGovernanceQueryKey, getParticipationScoreThresholdQueryKey, getPassportForEntityQueryKey, getPassportToggleQueryKey, getPendingDelegationsQueryKeyDelegateePOV, getPendingDelegationsQueryKeyDelegatorPOV, getPendingLinkingsQueryKey, getPrivyAppInfoQueryKey, getResolverAddress, getResolverAddressQueryKey, getRoundReward, getRoundRewardQueryKey, getRoundXApps, getRoundXAppsQueryKey, getSecurityMultiplierQueryKey, getSmartAccount, getSmartAccountQueryKey, getTextRecords, getTextRecordsQueryKey, getThresholdParticipationScoreAtTimepointQueryKey, getThresholdParticipationScoreQueryKey, getTokenIdByAccount, getTokenIdByAccountQueryKey, getTokenInfo, getTokenUsdPrice, getTokenUsdPriceQueryKey, getTokensInfoByOwnerQueryKey, getUpgradeRequired, getUpgradeRequiredForAccount, getUpgradeRequiredForAccountQueryKey, getUpgradeRequiredQueryKey, 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, useAccountImplementationAddress, useAccountLinking, useAccountModal, useAllocationAmount, useAllocationsRound, useAllocationsRoundState, useAllocationsRoundsEvents, useAppAdmin, useAppBalance, useAppExists, useAppSecurityLevel, useAppsEligibleInNextRound, useB3trDonated, useB3trToUpgrade, useBalances, useCall, useChooseNameModal, useClaimVeWorldSubdomain, useClaimVetDomain, useConnectModal, useCrossAppConnectionCache, useCurrentAccountImplementationVersion, useCurrentAllocationsRound, useCurrentAllocationsRoundId, useCurrentBlock, useDecodeFunctionSignature, useEcosystemShortcuts, useEnsRecordExists, useExploreEcosystemModal, useFAQModal, useFeatureAnnouncement, useFetchAppInfo, useFetchPrivyStatus, useGMBaseUri, useGMbalance, useGetAccountAddress, useGetAccountVersion, useGetAvatar, useGetAvatarLegacy, useGetAvatarOfAddress, useGetB3trBalance, useGetChainId, useGetCumulativeScoreWithDecay, useGetCustomTokenBalances, useGetCustomTokenInfo, useGetDelegatee, useGetDelegator, useGetDomainsOfAddress, useGetEntitiesLinkedToPassport, useGetErc20Balance, useGetNodeManager, useGetNodeUrl, useGetPassportForEntity, useGetPendingDelegationsDelegateePOV, useGetPendingDelegationsDelegatorPOV, useGetPendingLinkings, useGetResolverAddress, useGetTextRecords, useGetTokenUsdPrice, useGetTokensInfoByOwner, useGetUserEntitiesLinkedToPassport, useGetUserNode, useGetUserNodes, useGetUserPassportForEntity, useGetUserPendingLinkings, useGetVeDelegateBalance, useGetVot3Balance, useHasV1SmartAccount, useHasVotedInRound, useIpfsImage, useIpfsImageList, useIpfsMetadata, useIpfsMetadatas, useIsBlacklisted, useIsDomainProtected, useIsEntity, useIsGMclaimable, useIsNodeHolder, useIsPWA, useIsPassport, useIsPassportCheckEnabled, useIsPerson, useIsPersonAtTimepoint, useIsSmartAccountDeployed, useIsUserEntity, useIsUserPassport, useIsUserPerson, useIsWhitelisted, useLevelMultiplier, useLevelOfToken, useLocalStorage, useLoginModalContent, useLoginWithOAuth, useLoginWithPasskey, useLoginWithVeChain, useMostVotedAppsInRound, useMultipleXAppRoundEarnings, useNFTImage, useNFTMetadataUri, useNotificationAlerts, useNotifications, useNotificationsModal, useParticipatedInGovernance, useParticipationScoreThreshold, usePassportChecks, usePrivyWalletProvider, useProfileModal, useReceiveModal, useRefreshBalances, useRefreshMetadata, useRoundEarnings, useRoundReward, useRoundXApps, useScrollToTop, useSecurityMultiplier, useSelectedGmNft, useSendTokenModal, useSendTransaction, useSignMessage, useSignTypedData, useSingleImageUpload, useSmartAccount, useSmartAccountVersion, useThresholdParticipationScore, useThresholdParticipationScoreAtTimepoint, useTokenIdByAccount, useTransactionModal, useTransactionToast, useTransferERC20, useTransferVET, useTxReceipt, useUnsetDomain, useUpdateTextRecord, useUpgradeRequired, useUpgradeRequiredForAccount, useUpgradeSmartAccount, useUpgradeSmartAccountModal, useUploadImages, useUserBotSignals, useUserDelegation, useUserRoundScore, useUserStatus, useUserTopVotedApps, useUserVotesInAllRounds, useUserVotesInRound, useVeChainKitConfig, useVechainDomain, useVotesInRound, useVotingRewards, useWallet, useWalletMetadata, useWalletModal, useXApp, useXAppMetadata, useXAppRoundEarnings, useXAppTotalEarnings, useXAppVotes, useXAppVotesQf, useXApps, useXAppsMetadataBaseUri, useXAppsShares, useXNode, useXNodeCheckCooldown, useXNodes };
3760
+ export { APP_SECURITY_LEVELS, AccessAndSecurityContent, AccessAndSecurityModalProvider, AccountAvatar, type AccountCustomizationContentProps, AccountCustomizationModalProvider, AccountDetailsButton, AccountMainContent, AccountModal, type AccountModalContentTypes, AccountModalProvider, AccountSelector, ActionButton, AddressDisplay, AddressDisplayCard, type AllocationRoundWithState, type AllocationVoteCastEvent, type AppConfig, type AppVotesGiven, AssetButton, AssetsContent, type AssetsContentProps, AssetsSection, BalanceSection, BaseModal, BridgeContent, ChooseNameContent, type ChooseNameContentProps, ChooseNameModalProvider, ChooseNameSearchContent, type ChooseNameSearchContentProps, ChooseNameSummaryContent, type ChooseNameSummaryContentProps, ConnectModal, type ConnectModalContentsTypes, ConnectModalProvider, ConnectPopover, ConnectionButton, ConnectionSource, CrossAppConnectionCache, CrossAppConnectionSecurityCard, type CustomTokenInfo, CustomizationContent, CustomizationSummaryContent, type CustomizationSummaryContentProps, DappKitButton, type DecodedFunction, type Domain, DomainRequiredAlert, type DomainsResponse, ENSRecords, ENS_TEXT_RECORDS, EcosystemButton, EcosystemModal, type EcosystemShortcut, EmailLoginButton, EmbeddedWalletContent, EnhancedClause, ExchangeWarningAlert, ExploreEcosystemModalProvider, FAQContent, FAQModalProvider, FadeInView, FadeInViewFromBottom, FadeInViewFromLeft, FadeInViewFromRight, FeatureAnnouncementCard, type GetCallKeyParams, type IpfsImage, LoginLoadingModal, LoginWithGoogleButton, MAX_IMAGE_SIZE, MainContent, ManageCustomTokenContent, type ManageCustomTokenContentProps, ModalBackButton, ModalFAQButton, type MostVotedAppsInRoundReturnType, NFTMediaType, type NFTMetadata, NotificationsModalProvider, PRICE_FEED_IDS, PasskeyLoginButton, PrivyAppInfo, PrivyButton, PrivyLoginMethod, PrivyWalletProvider, type PrivyWalletProviderContextType, ProfileCard, type ProfileCardProps, ProfileContent, type ProfileContentProps, ProfileModalProvider, QuickActionsSection, ReceiveModalProvider, ReceiveTokenContent, type RoundCreated, type RoundReward, RoundState, ScrollToTopWrapper, SecurityLevel, SelectTokenContent, SendTokenContent, SendTokenModalProvider, SendTokenSummaryContent, SettingsContent, type SettingsContentProps, ShareButtons, SmartAccount, type SmartAccountReturnType, SocialIcons, StickyFooterContainer, StickyHeaderContainer, type SupportedToken, SwapTokenContent, type TextRecords, type TokenBalance, type TokenWithBalance, TransactionButtonAndStatus, type TransactionButtonAndStatusProps, TransactionModal, TransactionModalContent, type TransactionModalProps, TransactionModalProvider, TransactionStatus, TransactionStatusErrorType, TransactionToast, TransactionToastProvider, type UnendorsedApp, UpgradeSmartAccountContent, type UpgradeSmartAccountContentProps, UpgradeSmartAccountModal, type UpgradeSmartAccountModalContentsTypes, UpgradeSmartAccountModalProvider, type UpgradeSmartAccountModalStyle, 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, decodeFunctionSignature, fetchPrivyAppInfo, fetchPrivyStatus, fetchVechainDomain, getAccountAddress, getAccountAddressQueryKey, getAccountBalance, getAccountBalanceQueryKey, getAccountImplementationAddress, getAccountImplementationAddressQueryKey, getAccountVersion, getAccountVersionQueryKey, getAllEvents, getAllocationAmount, getAllocationAmountQueryKey, getAllocationsRoundState, getAllocationsRoundStateQueryKey, getAllocationsRoundsEvents, getAllocationsRoundsEventsQueryKey, getAppAdmin, getAppAdminQueryKey, getAppBalance, getAppBalanceQueryKey, getAppExistsQueryKey, getAppSecurityLevelQueryKey, getAppsEligibleInNextRound, getAppsEligibleInNextRoundQueryKey, getAppsShareClauses, getAvatar, getAvatarLegacy, getAvatarLegacyQueryKey, getAvatarOfAddressQueryKey, getAvatarQueryKey, getB3trBalance, getB3trBalanceQueryKey, getB3trDonatedQueryKey, getB3trToUpgradeQueryKey, getBalanceOf, getCallKey, getChainId, getChainIdQueryKey, getConfig, getCurrentAccountImplementationVersion, getCurrentAccountImplementationVersionQueryKey, getCurrentAllocationsRoundId, getCurrentAllocationsRoundIdQueryKey, getCustomTokenBalance, getCustomTokenBalanceQueryKey, getCustomTokenInfo, getDelegateeQueryKey, getDelegatorQueryKey, getDomainsOfAddress, getDomainsOfAddressQueryKey, getEnsRecordExistsQueryKey, getEntitiesLinkedToPassportQueryKey, getErc20Balance, getErc20BalanceQueryKey, getEvents, getGMBaseUriQueryKey, getGMLevel, getGMbalanceQueryKey, getGetCumulativeScoreWithDecayQueryKey, getHasV1SmartAccount, getHasV1SmartAccountQueryKey, getHasVotedInRound, getHasVotedInRoundQueryKey, getIpfsImage, getIpfsImageQueryKey, getIpfsMetadata, getIpfsMetadataQueryKey, getIsBlacklistedQueryKey, getIsDeployed, getIsDeployedQueryKey, getIsDomainProtectedQueryKey, getIsEntityQueryKey, getIsNodeHolder, getIsNodeHolderQueryKey, getIsPassportQueryKey, getIsPersonAtTimepointQueryKey, getIsPersonQueryKey, getIsWhitelistedQueryKey, getLevelGradient, getLevelMultiplierQueryKey, getLevelOfTokenQueryKey, getNFTMetadataUri, getNFTMetadataUriQueryKey, getNodeCheckCooldownQueryKey, getNodeManagerQueryKey, getParticipatedInGovernance, getParticipatedInGovernanceQueryKey, getParticipationScoreThresholdQueryKey, getPassportForEntityQueryKey, getPassportToggleQueryKey, getPendingDelegationsQueryKeyDelegateePOV, getPendingDelegationsQueryKeyDelegatorPOV, getPendingLinkingsQueryKey, getPrivyAppInfoQueryKey, getResolverAddress, getResolverAddressQueryKey, getRoundReward, getRoundRewardQueryKey, getRoundXApps, getRoundXAppsQueryKey, getSecurityMultiplierQueryKey, getSmartAccount, getSmartAccountQueryKey, getTextRecords, getTextRecordsQueryKey, getThresholdParticipationScoreAtTimepointQueryKey, getThresholdParticipationScoreQueryKey, getTokenIdByAccount, getTokenIdByAccountQueryKey, getTokenInfo, getTokenUsdPrice, getTokenUsdPriceQueryKey, getTokensInfoByOwnerQueryKey, getUpgradeRequired, getUpgradeRequiredForAccount, getUpgradeRequiredForAccountQueryKey, getUpgradeRequiredQueryKey, 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, useAccountImplementationAddress, useAccountLinking, useAccountModal, useAllocationAmount, useAllocationsRound, useAllocationsRoundState, useAllocationsRoundsEvents, useAppAdmin, useAppBalance, useAppExists, useAppSecurityLevel, useAppsEligibleInNextRound, useB3trDonated, useB3trToUpgrade, useBalances, useCall, useChooseNameModal, useClaimVeWorldSubdomain, useClaimVetDomain, useConnectModal, useCrossAppConnectionCache, useCurrentAccountImplementationVersion, useCurrentAllocationsRound, useCurrentAllocationsRoundId, useCurrentBlock, useDecodeFunctionSignature, useEcosystemShortcuts, useEnsRecordExists, useExploreEcosystemModal, useFAQModal, useFeatureAnnouncement, useFetchAppInfo, useFetchPrivyStatus, useGMBaseUri, useGMbalance, useGetAccountAddress, useGetAccountVersion, useGetAvatar, useGetAvatarLegacy, useGetAvatarOfAddress, useGetB3trBalance, useGetChainId, useGetCumulativeScoreWithDecay, useGetCustomTokenBalances, useGetCustomTokenInfo, useGetDelegatee, useGetDelegator, useGetDomainsOfAddress, useGetEntitiesLinkedToPassport, useGetErc20Balance, useGetNodeManager, useGetNodeUrl, useGetPassportForEntity, useGetPendingDelegationsDelegateePOV, useGetPendingDelegationsDelegatorPOV, useGetPendingLinkings, useGetResolverAddress, useGetTextRecords, useGetTokenUsdPrice, useGetTokensInfoByOwner, useGetUserEntitiesLinkedToPassport, useGetUserNode, useGetUserNodes, useGetUserPassportForEntity, useGetUserPendingLinkings, useGetVeDelegateBalance, useGetVot3Balance, useHasV1SmartAccount, useHasVotedInRound, useIpfsImage, useIpfsImageList, useIpfsMetadata, useIpfsMetadatas, useIsBlacklisted, useIsDomainProtected, useIsEntity, useIsGMclaimable, useIsNodeHolder, useIsPWA, useIsPassport, useIsPassportCheckEnabled, useIsPerson, useIsPersonAtTimepoint, useIsSmartAccountDeployed, useIsUserEntity, useIsUserPassport, useIsUserPerson, useIsWhitelisted, useLevelMultiplier, useLevelOfToken, useLocalStorage, useLoginModalContent, useLoginWithOAuth, useLoginWithPasskey, useLoginWithVeChain, useMostVotedAppsInRound, useMultipleXAppRoundEarnings, useNFTImage, useNFTMetadataUri, useNotificationAlerts, useNotifications, useNotificationsModal, useParticipatedInGovernance, useParticipationScoreThreshold, usePassportChecks, usePrivyWalletProvider, useProfileModal, useReceiveModal, useRefreshBalances, useRefreshMetadata, useRoundEarnings, useRoundReward, useRoundXApps, useScrollToTop, useSecurityMultiplier, useSelectedGmNft, useSendTokenModal, useSendTransaction, useSignMessage, useSignTypedData, useSingleImageUpload, useSmartAccount, useSmartAccountVersion, useThresholdParticipationScore, useThresholdParticipationScoreAtTimepoint, useTokenIdByAccount, useTransactionModal, useTransactionToast, useTransferERC20, useTransferVET, useTxReceipt, useUnsetDomain, useUpdateTextRecord, useUpgradeRequired, useUpgradeRequiredForAccount, useUpgradeSmartAccount, useUpgradeSmartAccountModal, useUploadImages, useUserBotSignals, useUserDelegation, useUserRoundScore, useUserStatus, useUserTopVotedApps, useUserVotesInAllRounds, useUserVotesInRound, useVeChainKitConfig, useVechainDomain, useVotesInRound, useVotingRewards, useWallet, useWalletMetadata, useWalletModal, useXApp, useXAppMetadata, useXAppRoundEarnings, useXAppTotalEarnings, useXAppVotes, useXAppVotesQf, useXApps, useXAppsMetadataBaseUri, useXAppsShares, useXNode, useXNodeCheckCooldown, useXNodes };