@vechain/vechain-kit 1.5.12 → 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.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';
@@ -2091,6 +2091,7 @@ interface VeChainDomainResult {
2091
2091
  address?: string;
2092
2092
  domain?: string;
2093
2093
  isValidAddressOrDomain: boolean;
2094
+ isPrimaryDomain: boolean;
2094
2095
  }
2095
2096
  declare const fetchVechainDomain: (thor: Connex.Thor, networkType: NETWORK_TYPE, addressOrDomain?: string | null) => Promise<VeChainDomainResult>;
2096
2097
  declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
@@ -2110,8 +2111,30 @@ type useClaimVeWorldSubdomainProps = {
2110
2111
  type useClaimVeWorldSubdomainReturnValue = {
2111
2112
  sendTransaction: () => Promise<void>;
2112
2113
  } & Omit<UseSendTransactionReturnValue, 'sendTransaction'>;
2114
+ /**
2115
+ * Hook for claiming a .veworld.vet subdomain
2116
+ *
2117
+ * This hook specializes in handling subdomains in the .veworld.vet domain
2118
+ */
2113
2119
  declare const useClaimVeWorldSubdomain: ({ subdomain, domain, onSuccess, onError, alreadyOwned, }: useClaimVeWorldSubdomainProps) => useClaimVeWorldSubdomainReturnValue;
2114
2120
 
2121
+ type useClaimVetDomainProps = {
2122
+ domain: string;
2123
+ onSuccess?: () => void;
2124
+ onError?: () => void;
2125
+ onSuccessMessageTitle?: number;
2126
+ alreadyOwned?: boolean;
2127
+ };
2128
+ type useClaimVetDomainReturnValue = {
2129
+ sendTransaction: () => Promise<void>;
2130
+ } & Omit<UseSendTransactionReturnValue, 'sendTransaction'>;
2131
+ /**
2132
+ * Hook for claiming a .vet domain
2133
+ *
2134
+ * This hook specializes in handling primary .vet domains
2135
+ */
2136
+ declare const useClaimVetDomain: ({ domain, onSuccess, onError, alreadyOwned, }: useClaimVetDomainProps) => useClaimVetDomainReturnValue;
2137
+
2115
2138
  declare const getIsDomainProtectedQueryKey: (domain?: string) => any[];
2116
2139
  /**
2117
2140
  * Custom hook to fetch the amount of B3TR tokens donated for a given token ID.
@@ -2170,14 +2193,13 @@ declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string)
2170
2193
  }, Error>;
2171
2194
 
2172
2195
  /**
2173
- * Fetches the avatar for a given VET domain name
2174
- * @param networkType - The network type ('main' or 'test')
2175
- * @param nodeUrl - The node URL
2196
+ * API function to fetch avatar for a VET domain using the vet.domains API
2176
2197
  * @param name - The VET domain name
2177
- * @returns The avatar URL from the response
2198
+ * @param networkType - The network type
2199
+ * @returns The avatar URL from the API
2178
2200
  */
2179
- declare const getAvatar: (networkType: NETWORK_TYPE, nodeUrl: string, name: string) => Promise<string | null>;
2180
- declare const getAvatarQueryKey: (name: string) => string[];
2201
+ declare const getAvatar: (name: string, network: VechainKitProviderProps["network"]) => Promise<string | null>;
2202
+ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => string[];
2181
2203
  /**
2182
2204
  * Hook to fetch the avatar URL for a VET domain name
2183
2205
  * @param name - The VET domain name
@@ -2208,7 +2230,7 @@ type UseSendTransactionProps = {
2208
2230
  signerAccountAddress?: string | null;
2209
2231
  clauses?: EnhancedClause[] | (() => EnhancedClause[]) | (() => Promise<EnhancedClause[]>);
2210
2232
  onTxConfirmed?: () => void | Promise<void>;
2211
- onTxFailedOrCancelled?: () => void | Promise<void>;
2233
+ onTxFailedOrCancelled?: (error?: Error | string) => void | Promise<void>;
2212
2234
  suggestedMaxGas?: number;
2213
2235
  privyUIOptions?: {
2214
2236
  title?: string;
@@ -2277,7 +2299,7 @@ type UpdateTextRecordVariables = {
2277
2299
  };
2278
2300
  type UseUpdateTextRecordProps = {
2279
2301
  onSuccess?: () => void | Promise<void>;
2280
- onError?: () => void | Promise<void>;
2302
+ onError?: (error?: Error) => void | Promise<void>;
2281
2303
  signerAccountAddress?: string;
2282
2304
  resolverAddress?: string;
2283
2305
  };
@@ -2311,6 +2333,37 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
2311
2333
  */
2312
2334
  declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query.UseQueryResult<string, Error>;
2313
2335
 
2336
+ /**
2337
+ * Fetches the avatar for a given VET domain name
2338
+ * @param networkType - The network type ('main' or 'test')
2339
+ * @param nodeUrl - The node URL
2340
+ * @param name - The VET domain name
2341
+ * @returns The avatar URL from the response
2342
+ */
2343
+ declare const getAvatarLegacy: (networkType: NETWORK_TYPE, nodeUrl: string, name: string) => Promise<string | null>;
2344
+ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE) => string[];
2345
+ /**
2346
+ * Hook to fetch the avatar URL for a VET domain name
2347
+ * @param name - The VET domain name
2348
+ * @returns The resolved avatar URL
2349
+ */
2350
+ declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query.UseQueryResult<string | null, Error>;
2351
+
2352
+ type useUnsetDomainProps = {
2353
+ onSuccess?: () => void;
2354
+ onError?: () => void;
2355
+ };
2356
+ type useUnsetDomainReturnValue = {
2357
+ sendTransaction: () => Promise<void>;
2358
+ } & Omit<UseSendTransactionReturnValue, 'sendTransaction'>;
2359
+ /**
2360
+ * Hook for unsetting any domain name (both .veworld.vet and .vet domains)
2361
+ *
2362
+ * This hook is a dedicated implementation for the unset functionality
2363
+ * that was previously part of the claim hooks.
2364
+ */
2365
+ declare const useUnsetDomain: ({ onSuccess, onError, }: useUnsetDomainProps) => useUnsetDomainReturnValue;
2366
+
2314
2367
  type UseBalancesProps = {
2315
2368
  address?: string;
2316
2369
  };
@@ -2952,8 +3005,9 @@ interface ConnectionButtonProps {
2952
3005
  rightIcon?: ReactElement;
2953
3006
  style?: ButtonProps;
2954
3007
  variant?: string;
3008
+ iconWidth?: string;
2955
3009
  }
2956
- 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;
2957
3011
 
2958
3012
  declare const EmailLoginButton: () => react_jsx_runtime.JSX.Element;
2959
3013
 
@@ -2969,7 +3023,7 @@ type Props$r = {
2969
3023
  isLoading: boolean;
2970
3024
  gridColumn?: number;
2971
3025
  };
2972
- 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;
2973
3027
 
2974
3028
  type Props$q = {
2975
3029
  isDark: boolean;
@@ -3062,14 +3116,14 @@ type TransactionToastProps = {
3062
3116
  declare const TransactionToast: ({ isOpen, onClose, status, txReceipt, txError, onTryAgain, description, }: TransactionToastProps) => react_jsx_runtime.JSX.Element | null;
3063
3117
 
3064
3118
  type Props$k = {
3065
- setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
3119
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3066
3120
  onClose: () => void;
3067
3121
  wallet: Wallet;
3068
3122
  };
3069
3123
  declare const AccountMainContent: ({ setCurrentContent, wallet }: Props$k) => react_jsx_runtime.JSX.Element;
3070
3124
 
3071
3125
  type Props$j = {
3072
- setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
3126
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3073
3127
  };
3074
3128
  declare const AccessAndSecurityContent: ({ setCurrentContent }: Props$j) => react_jsx_runtime.JSX.Element;
3075
3129
 
@@ -3104,7 +3158,7 @@ type SendTokenContentProps = {
3104
3158
  preselectedToken?: Token;
3105
3159
  onBack?: () => void;
3106
3160
  };
3107
- 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;
3108
3162
 
3109
3163
  type SendTokenSummaryContentProps = {
3110
3164
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3143,19 +3197,23 @@ declare const ChooseNameSearchContent: ({ name: initialName, setCurrentContent,
3143
3197
  type ChooseNameSummaryContentProps = {
3144
3198
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3145
3199
  name: string;
3200
+ domainType?: string;
3146
3201
  isOwnDomain: boolean;
3202
+ isUnsetting?: boolean;
3147
3203
  initialContentSource?: AccountModalContentTypes;
3148
3204
  };
3149
- declare const ChooseNameSummaryContent: ({ setCurrentContent, name, isOwnDomain, initialContentSource, }: ChooseNameSummaryContentProps) => react_jsx_runtime.JSX.Element;
3205
+ declare const ChooseNameSummaryContent: ({ setCurrentContent, name, domainType, isOwnDomain, isUnsetting, initialContentSource, }: ChooseNameSummaryContentProps) => react_jsx_runtime.JSX.Element;
3150
3206
 
3151
3207
  type FAQContentProps = {
3152
3208
  onGoBack: () => void;
3153
3209
  };
3154
3210
  declare const FAQContent: ({ onGoBack }: FAQContentProps) => react_jsx_runtime.JSX.Element;
3155
3211
 
3156
- declare const CustomizationContent: ({ setCurrentContent, }: {
3212
+ type AccountCustomizationContentProps = {
3157
3213
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3158
- }) => react_jsx_runtime.JSX.Element;
3214
+ initialContentSource?: AccountModalContentTypes;
3215
+ };
3216
+ declare const CustomizationContent: ({ setCurrentContent, initialContentSource, }: AccountCustomizationContentProps) => react_jsx_runtime.JSX.Element;
3159
3217
 
3160
3218
  type CustomizationSummaryContentProps = {
3161
3219
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3167,8 +3225,9 @@ type CustomizationSummaryContentProps = {
3167
3225
  website?: string;
3168
3226
  email?: string;
3169
3227
  };
3228
+ onDoneRedirectContent: AccountModalContentTypes;
3170
3229
  };
3171
- declare const CustomizationSummaryContent: ({ setCurrentContent, changes, }: CustomizationSummaryContentProps) => react_jsx_runtime.JSX.Element;
3230
+ declare const CustomizationSummaryContent: ({ setCurrentContent, changes, onDoneRedirectContent, }: CustomizationSummaryContentProps) => react_jsx_runtime.JSX.Element;
3172
3231
 
3173
3232
  type ProfileContentProps = {
3174
3233
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3221,7 +3280,10 @@ type SuccessfulOperationContentProps$1 = {
3221
3280
  showSocialButtons?: boolean;
3222
3281
  };
3223
3282
 
3224
- 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
+ } | {
3225
3287
  type: 'successful-operation';
3226
3288
  props: SuccessfulOperationContentProps$1;
3227
3289
  } | {
@@ -3365,8 +3427,9 @@ type Props$5 = {
3365
3427
  label?: string;
3366
3428
  style?: PropsOf<typeof VStack>;
3367
3429
  showHumanAddress?: boolean;
3430
+ fromScreen?: string;
3368
3431
  };
3369
- 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;
3370
3433
 
3371
3434
  type Props$4 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3372
3435
  declare const VersionFooter: ({ ...props }: Props$4) => react_jsx_runtime.JSX.Element;
@@ -3437,6 +3500,7 @@ type TransactionButtonAndStatusProps = {
3437
3500
  isSubmitting: boolean;
3438
3501
  isTxWaitingConfirmation: boolean;
3439
3502
  onConfirm: () => void;
3503
+ onRetry?: () => void;
3440
3504
  transactionPendingText: string;
3441
3505
  txReceipt: Connex.Thor.Transaction.Receipt | null;
3442
3506
  transactionError?: Error | TransactionStatusErrorType | null;
@@ -3446,8 +3510,9 @@ type TransactionButtonAndStatusProps = {
3446
3510
  style?: {
3447
3511
  accentColor?: string;
3448
3512
  };
3513
+ onError?: (error: string) => void;
3449
3514
  };
3450
- 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;
3451
3516
 
3452
3517
  type LoginLoadingModalProps = {
3453
3518
  isOpen: boolean;
@@ -3534,7 +3599,7 @@ type useTransferERC20Props = {
3534
3599
  tokenName: string;
3535
3600
  onSuccess?: () => void;
3536
3601
  onSuccessMessageTitle?: number;
3537
- onError?: () => void;
3602
+ onError?: (error?: string) => void;
3538
3603
  };
3539
3604
  type useTransferERC20ReturnValue = {
3540
3605
  sendTransaction: () => Promise<void>;
@@ -3546,7 +3611,7 @@ type useTransferVETProps = {
3546
3611
  receiverAddress: string;
3547
3612
  amount: string;
3548
3613
  onSuccess?: () => void;
3549
- onError?: () => void;
3614
+ onError?: (error?: string) => void;
3550
3615
  };
3551
3616
  type useTransferVETReturnValue = {
3552
3617
  sendTransaction: () => Promise<void>;
@@ -3594,7 +3659,9 @@ type UseSignMessageReturnValue = {
3594
3659
  declare const useSignMessage: () => UseSignMessageReturnValue;
3595
3660
 
3596
3661
  type UseSignTypedDataReturnValue = {
3597
- signTypedData: (data: SignTypedDataParams) => Promise<string>;
3662
+ signTypedData: (data: SignTypedDataParams, options?: {
3663
+ signer?: string;
3664
+ }) => Promise<string>;
3598
3665
  isSigningPending: boolean;
3599
3666
  signature: string | null;
3600
3667
  error: Error | null;
@@ -3690,4 +3757,4 @@ declare const useCrossAppConnectionCache: () => {
3690
3757
  clearConnectionCache: () => void;
3691
3758
  };
3692
3759
 
3693
- 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, 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, useConnectModal, useCrossAppConnectionCache, useCurrentAccountImplementationVersion, useCurrentAllocationsRound, useCurrentAllocationsRoundId, useCurrentBlock, useDecodeFunctionSignature, useEcosystemShortcuts, useEnsRecordExists, useExploreEcosystemModal, useFAQModal, useFeatureAnnouncement, useFetchAppInfo, useFetchPrivyStatus, useGMBaseUri, useGMbalance, useGetAccountAddress, useGetAccountVersion, useGetAvatar, 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, 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 };