@vechain/vechain-kit 1.7.0 → 1.8.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
@@ -1,10 +1,10 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React$1 from 'react';
3
3
  import React__default, { ReactNode, ReactElement, ElementType } from 'react';
4
+ import { P as PrivyLoginMethod, N as NETWORK_TYPE, C as CURRENCY, 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, e as ConnectionSource, f as ENSRecords, g as NFTMediaType, h as CrossAppConnectionCache } from './Constants-D3GSqSp8.js';
5
+ export { k as CURRENCY_SYMBOLS, j as ExecuteBatchWithAuthorizationSignData, i as ExecuteWithAuthorizationSignData } from './Constants-D3GSqSp8.js';
4
6
  import { WalletListEntry, SignTypedDataParams, User } from '@privy-io/react-auth';
5
7
  export { useMfaEnrollment, usePrivy, useSetWalletRecovery } from '@privy-io/react-auth';
6
- import { P as PrivyLoginMethod, N as NETWORK_TYPE, C as CURRENCY, 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, e as ConnectionSource, f as ENSRecords, g as NFTMediaType, h as CrossAppConnectionCache } from './Constants-CtdUgHbh.js';
7
- export { k as CURRENCY_SYMBOLS, j as ExecuteBatchWithAuthorizationSignData, i as ExecuteWithAuthorizationSignData } from './Constants-CtdUgHbh.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';
@@ -19,12 +19,32 @@ import { Options } from 'browser-image-compression';
19
19
  import { ButtonProps, StackProps, IconButtonProps, PropsOf, VStack, ImageProps, CardProps, CardBodyProps, CardFooterProps, ThemeTypings } from '@chakra-ui/react';
20
20
  import { Interface } from 'ethers';
21
21
  import { IconType } from 'react-icons';
22
+ import { UseFormRegister } from 'react-hook-form';
22
23
 
23
24
  declare const ENS_TEXT_RECORDS: readonly ["display", "avatar", "description", "keywords", "email", "url", "header", "notice", "location", "phone", "com.x"];
24
25
  type TextRecords = {
25
26
  [K in (typeof ENS_TEXT_RECORDS)[number]]?: string;
26
27
  };
27
28
 
29
+ declare enum LegalDocumentType {
30
+ TERMS = "terms",
31
+ PRIVACY = "privacy",
32
+ COOKIES = "cookies"
33
+ }
34
+ declare enum LegalDocumentSource {
35
+ VECHAIN_KIT = "vechain-kit",
36
+ APPLICATION = "application"
37
+ }
38
+ type EnrichedLegalDocument = LegalDocument & {
39
+ id: string;
40
+ documentType: LegalDocumentType;
41
+ documentSource: LegalDocumentSource;
42
+ };
43
+ type LegalDocumentAgreement = EnrichedLegalDocument & {
44
+ walletAddress: string;
45
+ timestamp: number;
46
+ };
47
+
28
48
  type AlwaysAvailableMethods = 'vechain' | 'dappkit' | 'ecosystem';
29
49
  type PrivyDependentMethods = 'email' | 'google' | 'passkey' | 'more';
30
50
  type LoginMethodOrder = {
@@ -32,6 +52,18 @@ type LoginMethodOrder = {
32
52
  gridColumn?: number;
33
53
  allowedApps?: string[];
34
54
  };
55
+ type LegalDocumentOptions = {
56
+ allowAnalytics?: boolean;
57
+ privacyPolicy?: LegalDocument[];
58
+ termsAndConditions?: LegalDocument[];
59
+ cookiePolicy?: LegalDocument[];
60
+ };
61
+ type LegalDocument = {
62
+ url: string;
63
+ version: number;
64
+ required: boolean;
65
+ displayName?: string;
66
+ };
35
67
  type VechainKitProviderProps = {
36
68
  children: ReactNode;
37
69
  privy?: {
@@ -80,6 +112,7 @@ type VechainKitProviderProps = {
80
112
  };
81
113
  };
82
114
  allowCustomTokens?: boolean;
115
+ legalDocuments?: LegalDocumentOptions;
83
116
  defaultCurrency?: CURRENCY;
84
117
  };
85
118
  type VeChainKitConfig = {
@@ -94,6 +127,7 @@ type VeChainKitConfig = {
94
127
  language?: VechainKitProviderProps['language'];
95
128
  network: VechainKitProviderProps['network'];
96
129
  allowCustomTokens?: boolean;
130
+ legalDocuments?: VechainKitProviderProps['legalDocuments'];
97
131
  defaultCurrency?: VechainKitProviderProps['defaultCurrency'];
98
132
  };
99
133
  /**
@@ -144,11 +178,24 @@ declare const PrivyWalletProvider: ({ children, nodeUrl, delegatorUrl, delegateA
144
178
  }) => react_jsx_runtime.JSX.Element;
145
179
  declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
146
180
 
147
- type Props$z = {
181
+ type Props$C = {
148
182
  children: ReactNode;
149
183
  darkMode?: boolean;
150
184
  };
151
- declare const VechainKitThemeProvider: ({ children, darkMode, }: Props$z) => react_jsx_runtime.JSX.Element;
185
+ declare const VechainKitThemeProvider: ({ children, darkMode, }: Props$C) => react_jsx_runtime.JSX.Element;
186
+
187
+ type Props$B = {
188
+ children: Readonly<ReactNode>;
189
+ };
190
+ type LegalDocumentsContextType = {
191
+ hasAgreedToRequiredDocuments: boolean;
192
+ agreements: LegalDocumentAgreement[];
193
+ walletAddress?: string;
194
+ documents: EnrichedLegalDocument[];
195
+ documentsNotAgreed: EnrichedLegalDocument[];
196
+ };
197
+ declare const useLegalDocuments: () => LegalDocumentsContextType;
198
+ declare const LegalDocumentsProvider: ({ children }: Props$B) => react_jsx_runtime.JSX.Element;
152
199
 
153
200
  type AppConfig = {
154
201
  ipfsFetchingService: string;
@@ -2587,13 +2634,15 @@ declare const decodeFunctionSignature: (input: string) => Promise<DecodedFunctio
2587
2634
  */
2588
2635
  declare const useDecodeFunctionSignature: (input: string) => _tanstack_react_query.UseQueryResult<DecodedFunction, Error>;
2589
2636
 
2637
+ type AllowedCategories = 'defi' | 'games' | 'collectibles' | 'marketplaces' | 'utilities' | 'vebetter';
2638
+
2590
2639
  type AppHubApp = {
2591
2640
  id: string;
2592
2641
  name: string;
2593
2642
  description: string;
2594
2643
  url: string;
2595
2644
  logo: string;
2596
- category: string;
2645
+ category: AllowedCategories;
2597
2646
  tags: string[];
2598
2647
  isVeWorldSupported: boolean;
2599
2648
  repo?: string;
@@ -2690,7 +2739,7 @@ declare const useIpfsMetadatas: <T>(ipfsUris: string[], parseJson?: boolean) =>
2690
2739
 
2691
2740
  declare const imageCompressionOptions: Options;
2692
2741
  declare const compressImages: (images: UploadedImage[]) => Promise<File[]>;
2693
- type Props$y = {
2742
+ type Props$A = {
2694
2743
  compressImages?: boolean;
2695
2744
  defaultImages?: UploadedImage[];
2696
2745
  };
@@ -2703,7 +2752,7 @@ type UploadedImage = {
2703
2752
  file: File;
2704
2753
  image: string;
2705
2754
  };
2706
- declare const useUploadImages: ({ compressImages, defaultImages }: Props$y) => {
2755
+ declare const useUploadImages: ({ compressImages, defaultImages }: Props$A) => {
2707
2756
  uploadedImages: UploadedImage[];
2708
2757
  setUploadedImages: React$1.Dispatch<React$1.SetStateAction<UploadedImage[]>>;
2709
2758
  onUpload: (acceptedFiles: File[], keepCurrent?: boolean) => Promise<void>;
@@ -2711,7 +2760,7 @@ declare const useUploadImages: ({ compressImages, defaultImages }: Props$y) => {
2711
2760
  invalidDateError: number[];
2712
2761
  };
2713
2762
 
2714
- type Props$x = {
2763
+ type Props$z = {
2715
2764
  compressImage?: boolean;
2716
2765
  defaultImage?: UploadedImage;
2717
2766
  };
@@ -2721,7 +2770,7 @@ type Props$x = {
2721
2770
  * @param param1 defaultImage: default image to be displayed
2722
2771
  * @returns uploaded image, setUploadedImage: function to set the uploaded image, onDrop: function to handle the drop event
2723
2772
  */
2724
- declare const useSingleImageUpload: ({ compressImage, defaultImage, }: Props$x) => {
2773
+ declare const useSingleImageUpload: ({ compressImage, defaultImage, }: Props$z) => {
2725
2774
  uploadedImage: UploadedImage | undefined;
2726
2775
  setUploadedImage: React$1.Dispatch<React$1.SetStateAction<UploadedImage | undefined>>;
2727
2776
  onUpload: (acceptedFile: File) => Promise<UploadedImage>;
@@ -3087,18 +3136,18 @@ type LoginModalContentConfig = {
3087
3136
  };
3088
3137
  declare const useLoginModalContent: () => LoginModalContentConfig;
3089
3138
 
3090
- type Props$w = {
3139
+ type Props$y = {
3091
3140
  isOpen: boolean;
3092
3141
  onClose: () => void;
3093
3142
  };
3094
3143
  type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
3095
- declare const ConnectModal: ({ isOpen, onClose }: Props$w) => react_jsx_runtime.JSX.Element;
3144
+ declare const ConnectModal: ({ isOpen, onClose }: Props$y) => react_jsx_runtime.JSX.Element;
3096
3145
 
3097
- type Props$v = {
3146
+ type Props$x = {
3098
3147
  setCurrentContent: React__default.Dispatch<React__default.SetStateAction<ConnectModalContentsTypes>>;
3099
3148
  onClose: () => void;
3100
3149
  };
3101
- declare const MainContent: ({ setCurrentContent, onClose }: Props$v) => react_jsx_runtime.JSX.Element;
3150
+ declare const MainContent: ({ setCurrentContent, onClose }: Props$x) => react_jsx_runtime.JSX.Element;
3102
3151
 
3103
3152
  interface ConnectionButtonProps {
3104
3153
  isDark: boolean;
@@ -3115,50 +3164,50 @@ declare const ConnectionButton: ({ onClick, text, icon, customIcon, rightIcon, s
3115
3164
 
3116
3165
  declare const EmailLoginButton: () => react_jsx_runtime.JSX.Element;
3117
3166
 
3118
- type Props$u = {
3167
+ type Props$w = {
3119
3168
  isDark: boolean;
3120
3169
  gridColumn?: number;
3121
3170
  };
3122
- declare const VeChainLoginButton: ({ isDark, gridColumn }: Props$u) => react_jsx_runtime.JSX.Element;
3171
+ declare const VeChainLoginButton: ({ isDark, gridColumn }: Props$w) => react_jsx_runtime.JSX.Element;
3123
3172
 
3124
- type Props$t = {
3173
+ type Props$v = {
3125
3174
  isDark: boolean;
3126
3175
  appsInfo: PrivyAppInfo[];
3127
3176
  isLoading: boolean;
3128
3177
  gridColumn?: number;
3129
3178
  };
3130
- declare const EcosystemButton: ({ appsInfo, isLoading }: Props$t) => react_jsx_runtime.JSX.Element;
3179
+ declare const EcosystemButton: ({ appsInfo, isLoading }: Props$v) => react_jsx_runtime.JSX.Element;
3131
3180
 
3132
- type Props$s = {
3181
+ type Props$u = {
3133
3182
  isDark: boolean;
3134
3183
  onViewMoreLogin: () => void;
3135
3184
  gridColumn?: number;
3136
3185
  };
3137
- declare const PrivyButton: ({ isDark, onViewMoreLogin, gridColumn }: Props$s) => react_jsx_runtime.JSX.Element;
3186
+ declare const PrivyButton: ({ isDark, onViewMoreLogin, gridColumn }: Props$u) => react_jsx_runtime.JSX.Element;
3138
3187
 
3139
- type Props$r = {
3188
+ type Props$t = {
3140
3189
  isDark: boolean;
3141
3190
  gridColumn?: number;
3142
3191
  };
3143
- declare const LoginWithGoogleButton: ({ isDark, gridColumn }: Props$r) => react_jsx_runtime.JSX.Element;
3192
+ declare const LoginWithGoogleButton: ({ isDark, gridColumn }: Props$t) => react_jsx_runtime.JSX.Element;
3144
3193
 
3145
- type Props$q = {
3194
+ type Props$s = {
3146
3195
  isDark: boolean;
3147
3196
  gridColumn?: number;
3148
3197
  };
3149
- declare const PasskeyLoginButton: ({ isDark, gridColumn }: Props$q) => react_jsx_runtime.JSX.Element;
3198
+ declare const PasskeyLoginButton: ({ isDark, gridColumn }: Props$s) => react_jsx_runtime.JSX.Element;
3150
3199
 
3151
- type Props$p = {
3200
+ type Props$r = {
3152
3201
  isDark: boolean;
3153
3202
  gridColumn?: number;
3154
3203
  };
3155
- declare const DappKitButton: ({ isDark, gridColumn }: Props$p) => react_jsx_runtime.JSX.Element;
3204
+ declare const DappKitButton: ({ isDark, gridColumn }: Props$r) => react_jsx_runtime.JSX.Element;
3156
3205
 
3157
- type Props$o = {
3206
+ type Props$q = {
3158
3207
  isDark: boolean;
3159
3208
  gridColumn?: number;
3160
3209
  };
3161
- declare const VeChainWithPrivyLoginButton: ({ isDark, gridColumn }: Props$o) => react_jsx_runtime.JSX.Element;
3210
+ declare const VeChainWithPrivyLoginButton: ({ isDark, gridColumn }: Props$q) => react_jsx_runtime.JSX.Element;
3162
3211
 
3163
3212
  type ConnectPopoverProps = {
3164
3213
  isLoading: boolean;
@@ -3199,12 +3248,12 @@ type TransactionModalProps = {
3199
3248
  };
3200
3249
  declare const TransactionModal: ({ isOpen, onClose, status, uiConfig, txReceipt, txError, onTryAgain, }: TransactionModalProps) => react_jsx_runtime.JSX.Element;
3201
3250
 
3202
- type Props$n = {
3251
+ type Props$p = {
3203
3252
  descriptionEncoded: string;
3204
3253
  url?: string;
3205
3254
  facebookHashtag?: string;
3206
3255
  };
3207
- declare const ShareButtons: ({ descriptionEncoded }: Props$n) => react_jsx_runtime.JSX.Element;
3256
+ declare const ShareButtons: ({ descriptionEncoded }: Props$p) => react_jsx_runtime.JSX.Element;
3208
3257
 
3209
3258
  declare const TransactionModalContent: ({ status, uiConfig, onTryAgain, txReceipt, txError, onClose, }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime.JSX.Element;
3210
3259
 
@@ -3219,17 +3268,17 @@ type TransactionToastProps = {
3219
3268
  };
3220
3269
  declare const TransactionToast: ({ isOpen, onClose, status, txReceipt, txError, onTryAgain, description, }: TransactionToastProps) => react_jsx_runtime.JSX.Element | null;
3221
3270
 
3222
- type Props$m = {
3271
+ type Props$o = {
3223
3272
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3224
3273
  onClose: () => void;
3225
3274
  wallet: Wallet;
3226
3275
  };
3227
- declare const AccountMainContent: ({ setCurrentContent, wallet }: Props$m) => react_jsx_runtime.JSX.Element;
3276
+ declare const AccountMainContent: ({ setCurrentContent, wallet }: Props$o) => react_jsx_runtime.JSX.Element;
3228
3277
 
3229
- type Props$l = {
3278
+ type Props$n = {
3230
3279
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3231
3280
  };
3232
- declare const AccessAndSecurityContent: ({ setCurrentContent }: Props$l) => react_jsx_runtime.JSX.Element;
3281
+ declare const AccessAndSecurityContent: ({ setCurrentContent }: Props$n) => react_jsx_runtime.JSX.Element;
3233
3282
 
3234
3283
  type SettingsContentProps = {
3235
3284
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3237,10 +3286,19 @@ type SettingsContentProps = {
3237
3286
  };
3238
3287
  declare const SettingsContent: ({ setCurrentContent, onLogoutSuccess, }: SettingsContentProps) => react_jsx_runtime.JSX.Element;
3239
3288
 
3240
- type Props$k = {
3289
+ type Props$m = {
3241
3290
  setCurrentContent: (content: AccountModalContentTypes) => void;
3242
3291
  };
3243
- declare const EmbeddedWalletContent: ({ setCurrentContent }: Props$k) => react_jsx_runtime.JSX.Element;
3292
+ declare const EmbeddedWalletContent: ({ setCurrentContent }: Props$m) => react_jsx_runtime.JSX.Element;
3293
+
3294
+ type DisconnectConfirmContentProps = {
3295
+ onDisconnect: () => void;
3296
+ onBack: () => void;
3297
+ onClose?: () => void;
3298
+ text?: string;
3299
+ showCloseButton?: boolean;
3300
+ };
3301
+ declare const DisconnectConfirmContent: ({ onDisconnect, onBack, onClose, showCloseButton, text, }: DisconnectConfirmContentProps) => react_jsx_runtime.JSX.Element;
3244
3302
 
3245
3303
  type SendTokenContentProps = {
3246
3304
  setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
@@ -3260,22 +3318,22 @@ type SendTokenSummaryContentProps = {
3260
3318
  };
3261
3319
  declare const SendTokenSummaryContent: ({ setCurrentContent, toAddressOrDomain, resolvedDomain, resolvedAddress, amount, selectedToken, }: SendTokenSummaryContentProps) => react_jsx_runtime.JSX.Element;
3262
3320
 
3263
- type Props$j = {
3321
+ type Props$l = {
3264
3322
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3265
3323
  onSelectToken: (token: TokenWithValue) => void;
3266
3324
  onBack: () => void;
3267
3325
  };
3268
- declare const SelectTokenContent: ({ onSelectToken, onBack }: Props$j) => react_jsx_runtime.JSX.Element;
3326
+ declare const SelectTokenContent: ({ onSelectToken, onBack }: Props$l) => react_jsx_runtime.JSX.Element;
3269
3327
 
3270
- type Props$i = {
3328
+ type Props$k = {
3271
3329
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3272
3330
  };
3273
- declare const ReceiveTokenContent: ({ setCurrentContent }: Props$i) => react_jsx_runtime.JSX.Element;
3331
+ declare const ReceiveTokenContent: ({ setCurrentContent }: Props$k) => react_jsx_runtime.JSX.Element;
3274
3332
 
3275
- type Props$h = {
3333
+ type Props$j = {
3276
3334
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3277
3335
  };
3278
- declare const SwapTokenContent: ({ setCurrentContent }: Props$h) => react_jsx_runtime.JSX.Element;
3336
+ declare const SwapTokenContent: ({ setCurrentContent }: Props$j) => react_jsx_runtime.JSX.Element;
3279
3337
 
3280
3338
  type ChooseNameContentProps = {
3281
3339
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3350,35 +3408,35 @@ type ManageCustomTokenContentProps = {
3350
3408
  };
3351
3409
  declare const ManageCustomTokenContent: ({ setCurrentContent, }: ManageCustomTokenContentProps) => react_jsx_runtime.JSX.Element;
3352
3410
 
3353
- type Props$g = {
3411
+ type Props$i = {
3354
3412
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3355
3413
  };
3356
- declare const BridgeContent: ({ setCurrentContent }: Props$g) => react_jsx_runtime.JSX.Element;
3414
+ declare const BridgeContent: ({ setCurrentContent }: Props$i) => react_jsx_runtime.JSX.Element;
3357
3415
 
3358
3416
  type ChangeCurrencyContentProps = {
3359
3417
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3360
3418
  };
3361
3419
  declare const ChangeCurrencyContent: ({ setCurrentContent, }: ChangeCurrencyContentProps) => react_jsx_runtime.JSX.Element;
3362
3420
 
3363
- type Props$f = {
3421
+ type Props$h = {
3364
3422
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3365
3423
  };
3366
- declare const GeneralSettingsContent: ({ setCurrentContent }: Props$f) => react_jsx_runtime.JSX.Element;
3424
+ declare const GeneralSettingsContent: ({ setCurrentContent }: Props$h) => react_jsx_runtime.JSX.Element;
3367
3425
 
3368
- type Props$e = {
3426
+ type Props$g = {
3369
3427
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3370
3428
  };
3371
- declare const LanguageSettingsContent: ({ setCurrentContent }: Props$e) => react_jsx_runtime.JSX.Element;
3429
+ declare const LanguageSettingsContent: ({ setCurrentContent }: Props$g) => react_jsx_runtime.JSX.Element;
3372
3430
 
3373
- type Props$d = {
3431
+ type Props$f = {
3374
3432
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3375
3433
  };
3376
- declare const AppearanceSettingsContent: ({ setCurrentContent }: Props$d) => react_jsx_runtime.JSX.Element;
3434
+ declare const AppearanceSettingsContent: ({ setCurrentContent }: Props$f) => react_jsx_runtime.JSX.Element;
3377
3435
 
3378
- type DisconnectConfirmContentProps = {
3379
- onDisconnect: () => void;
3380
- onBack: () => void;
3436
+ type TermsAndPrivacyContentProps = {
3437
+ onGoBack: () => void;
3381
3438
  };
3439
+ declare const TermsAndPrivacyContent: ({ onGoBack, }: TermsAndPrivacyContentProps) => react_jsx_runtime.JSX.Element;
3382
3440
 
3383
3441
  type CategoryFilter = string | null;
3384
3442
 
@@ -3388,7 +3446,7 @@ type AppOverviewContentProps = {
3388
3446
  image: string;
3389
3447
  url: string;
3390
3448
  description: string;
3391
- category?: string;
3449
+ category?: AllowedCategories;
3392
3450
  selectedCategory?: CategoryFilter;
3393
3451
  logoComponent?: JSX.Element;
3394
3452
  };
@@ -3444,14 +3502,17 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'access-and-se
3444
3502
  } | {
3445
3503
  type: 'faq';
3446
3504
  props: FAQContentProps;
3505
+ } | {
3506
+ type: 'terms-and-privacy';
3507
+ props: TermsAndPrivacyContentProps;
3447
3508
  };
3448
3509
 
3449
- type Props$c = {
3510
+ type Props$e = {
3450
3511
  isOpen: boolean;
3451
3512
  onClose: () => void;
3452
3513
  initialContent?: AccountModalContentTypes;
3453
3514
  };
3454
- declare const AccountModal: ({ isOpen, onClose, initialContent, }: Props$c) => react_jsx_runtime.JSX.Element;
3515
+ declare const AccountModal: ({ isOpen, onClose, initialContent, }: Props$e) => react_jsx_runtime.JSX.Element;
3455
3516
 
3456
3517
  interface AccountDetailsButtonProps {
3457
3518
  title: string;
@@ -3489,14 +3550,14 @@ type ActionButtonProps = {
3489
3550
  };
3490
3551
  declare const ActionButton: ({ leftIcon, rightIcon, title, onClick, leftImage, hide, showComingSoon, backgroundColor, _hover, isDisabled, stacked, isLoading, loadingText, style, extraContent, dataTestId, variant, }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
3491
3552
 
3492
- type Props$b = {
3553
+ type Props$d = {
3493
3554
  wallet: Wallet;
3494
3555
  size?: string;
3495
3556
  onClick?: () => void;
3496
3557
  mt?: number;
3497
3558
  style?: StackProps;
3498
3559
  };
3499
- declare const AccountSelector: ({ wallet, size, onClick, mt, style, }: Props$b) => react_jsx_runtime.JSX.Element;
3560
+ declare const AccountSelector: ({ wallet, size, onClick, mt, style, }: Props$d) => react_jsx_runtime.JSX.Element;
3500
3561
 
3501
3562
  declare const BalanceSection: ({ mb, mt, onAssetsClick, }: {
3502
3563
  mb?: number;
@@ -3504,11 +3565,11 @@ declare const BalanceSection: ({ mb, mt, onAssetsClick, }: {
3504
3565
  onAssetsClick?: () => void;
3505
3566
  }) => react_jsx_runtime.JSX.Element;
3506
3567
 
3507
- type Props$a = {
3568
+ type Props$c = {
3508
3569
  mt?: number;
3509
3570
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3510
3571
  };
3511
- declare const QuickActionsSection: ({ mt, setCurrentContent }: Props$a) => react_jsx_runtime.JSX.Element;
3572
+ declare const QuickActionsSection: ({ mt, setCurrentContent }: Props$c) => react_jsx_runtime.JSX.Element;
3512
3573
 
3513
3574
  type FeatureAnnouncementCardProps = {
3514
3575
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3521,52 +3582,52 @@ declare const DomainRequiredAlert: () => react_jsx_runtime.JSX.Element;
3521
3582
 
3522
3583
  declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime.JSX.Element;
3523
3584
 
3524
- type Props$9 = {
3585
+ type Props$b = {
3525
3586
  children: ReactNode;
3526
3587
  };
3527
- declare const FadeInView: ({ children }: Props$9) => react_jsx_runtime.JSX.Element;
3588
+ declare const FadeInView: ({ children }: Props$b) => react_jsx_runtime.JSX.Element;
3528
3589
 
3529
- type Props$8 = {
3590
+ type Props$a = {
3530
3591
  children: ReactNode;
3531
3592
  };
3532
- declare const FadeInViewFromBottom: ({ children }: Props$8) => react_jsx_runtime.JSX.Element;
3593
+ declare const FadeInViewFromBottom: ({ children }: Props$a) => react_jsx_runtime.JSX.Element;
3533
3594
 
3534
- type Props$7 = {
3595
+ type Props$9 = {
3535
3596
  children: ReactNode;
3536
3597
  };
3537
- declare const FadeInViewFromLeft: ({ children }: Props$7) => react_jsx_runtime.JSX.Element;
3598
+ declare const FadeInViewFromLeft: ({ children }: Props$9) => react_jsx_runtime.JSX.Element;
3538
3599
 
3539
- type Props$6 = {
3600
+ type Props$8 = {
3540
3601
  children: ReactNode;
3541
3602
  };
3542
- declare const FadeInViewFromRight: ({ children }: Props$6) => react_jsx_runtime.JSX.Element;
3603
+ declare const FadeInViewFromRight: ({ children }: Props$8) => react_jsx_runtime.JSX.Element;
3543
3604
 
3544
3605
  type BackButtonProps = {
3545
3606
  onClick: () => void;
3546
3607
  } & Partial<IconButtonProps>;
3547
3608
  declare const ModalBackButton: ({ onClick, ...props }: BackButtonProps) => react_jsx_runtime.JSX.Element;
3548
3609
 
3549
- type Props$5 = {
3610
+ type Props$7 = {
3550
3611
  wallet: Wallet;
3551
3612
  label?: string;
3552
3613
  style?: PropsOf<typeof VStack>;
3553
3614
  showHumanAddress?: boolean;
3554
3615
  fromScreen?: string;
3555
3616
  };
3556
- declare const AddressDisplay: ({ wallet, label, style, showHumanAddress, fromScreen, }: Props$5) => react_jsx_runtime.JSX.Element;
3617
+ declare const AddressDisplay: ({ wallet, label, style, showHumanAddress, fromScreen, }: Props$7) => react_jsx_runtime.JSX.Element;
3557
3618
 
3558
- type Props$4 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3559
- declare const VersionFooter: ({ ...props }: Props$4) => react_jsx_runtime.JSX.Element;
3619
+ type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3620
+ declare const VersionFooter: ({ ...props }: Props$6) => react_jsx_runtime.JSX.Element;
3560
3621
 
3561
- type Props$3 = {
3622
+ type Props$5 = {
3562
3623
  children: React.ReactNode;
3563
3624
  };
3564
- declare const StickyHeaderContainer: ({ children }: Props$3) => react_jsx_runtime.JSX.Element;
3625
+ declare const StickyHeaderContainer: ({ children }: Props$5) => react_jsx_runtime.JSX.Element;
3565
3626
 
3566
- type Props$2 = {
3627
+ type Props$4 = {
3567
3628
  children: React.ReactNode;
3568
3629
  };
3569
- declare const StickyFooterContainer: ({ children }: Props$2) => react_jsx_runtime.JSX.Element;
3630
+ declare const StickyFooterContainer: ({ children }: Props$4) => react_jsx_runtime.JSX.Element;
3570
3631
 
3571
3632
  type BaseModalProps = {
3572
3633
  isOpen: boolean;
@@ -3655,13 +3716,13 @@ type LoginLoadingModalProps = {
3655
3716
  };
3656
3717
  declare const LoginLoadingModal: ({ isOpen, onClose, error, title, loadingText, onTryAgain, }: LoginLoadingModalProps) => react_jsx_runtime.JSX.Element;
3657
3718
 
3658
- type Props$1 = {
3719
+ type Props$3 = {
3659
3720
  isOpen: boolean;
3660
3721
  onClose: () => void;
3661
3722
  appsInfo: PrivyAppInfo[];
3662
3723
  isLoading: boolean;
3663
3724
  };
3664
- declare const EcosystemModal: ({ isOpen, onClose, appsInfo, isLoading, }: Props$1) => react_jsx_runtime.JSX.Element;
3725
+ declare const EcosystemModal: ({ isOpen, onClose, appsInfo, isLoading, }: Props$3) => react_jsx_runtime.JSX.Element;
3665
3726
 
3666
3727
  type ProfileCardProps = {
3667
3728
  address: string;
@@ -3693,7 +3754,7 @@ type UpgradeSmartAccountModalStyle = {
3693
3754
  accentColor?: string;
3694
3755
  modalSize?: ThemeTypings['components']['Modal']['sizes'];
3695
3756
  };
3696
- type Props = {
3757
+ type Props$2 = {
3697
3758
  isOpen: boolean;
3698
3759
  onClose: () => void;
3699
3760
  style?: UpgradeSmartAccountModalStyle;
@@ -3702,7 +3763,23 @@ type UpgradeSmartAccountModalContentsTypes = 'upgrade-smart-account' | {
3702
3763
  type: 'successful-operation';
3703
3764
  props: SuccessfulOperationContentProps;
3704
3765
  };
3705
- declare const UpgradeSmartAccountModal: ({ isOpen, onClose, style }: Props) => react_jsx_runtime.JSX.Element;
3766
+ declare const UpgradeSmartAccountModal: ({ isOpen, onClose, style }: Props$2) => react_jsx_runtime.JSX.Element;
3767
+
3768
+ type Props$1 = {
3769
+ isOpen: boolean;
3770
+ onAgree: (documents: EnrichedLegalDocument | EnrichedLegalDocument[]) => void;
3771
+ handleLogout: () => void;
3772
+ onlyOptionalDocuments?: boolean;
3773
+ };
3774
+ type LegalDocumentsModalContentsTypes = 'legal-documents';
3775
+ declare const LegalDocumentsModal: ({ isOpen, onAgree, handleLogout, onlyOptionalDocuments, }: Props$1) => react_jsx_runtime.JSX.Element;
3776
+
3777
+ type Props = {
3778
+ document: EnrichedLegalDocument;
3779
+ register: UseFormRegister<any>;
3780
+ isText?: boolean;
3781
+ };
3782
+ declare const LegalDocumentItem: ({ document, register, isText, }: Props) => react_jsx_runtime.JSX.Element;
3706
3783
 
3707
3784
  declare const useUpgradeSmartAccountModal: (style?: UpgradeSmartAccountModalStyle) => {
3708
3785
  open: () => void;
@@ -3892,6 +3969,8 @@ declare const getCallKey: ({ method, keyArgs }: GetCallKeyParams) => any[];
3892
3969
 
3893
3970
  declare const useLocalStorage: <T>(key: string, initialValue: T) => readonly [T, React$1.Dispatch<React$1.SetStateAction<T>>];
3894
3971
 
3972
+ declare const useSyncableLocalStorage: <T>(key: string, defaultValue: T) => readonly [T, React$1.Dispatch<React$1.SetStateAction<T>>, () => void, () => T];
3973
+
3895
3974
  type EcosystemShortcut = {
3896
3975
  name: string;
3897
3976
  image: string;
@@ -3916,4 +3995,4 @@ declare const useCrossAppConnectionCache: () => {
3916
3995
  clearConnectionCache: () => void;
3917
3996
  };
3918
3997
 
3919
- 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 AppHubApp, type AppVotesGiven, AppearanceSettingsContent, AssetButton, AssetsContent, type AssetsContentProps, BalanceSection, BaseModal, BridgeContent, type BuildTransactionProps, CURRENCY, ChangeCurrencyContent, type ChangeCurrencyContentProps, 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, type ExchangeRates, ExchangeWarningAlert, ExploreEcosystemModalProvider, FAQContent, FAQModalProvider, FadeInView, FadeInViewFromBottom, FadeInViewFromLeft, FadeInViewFromRight, FeatureAnnouncementCard, GeneralSettingsContent, type GetCallKeyParams, type IpfsImage, LanguageSettingsContent, LoginLoadingModal, LoginWithGoogleButton, MAX_IMAGE_SIZE, MainContent, ManageCustomTokenContent, type ManageCustomTokenContentProps, ModalBackButton, ModalFAQButton, ModalNotificationButton, 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, type TokenWithValue, 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 WalletTokenBalance, type XApp, type XAppMetadata, buildClaimRewardsTx, buildClaimRoundReward, compressImages, currentBlockQueryKey, decodeFunctionSignature, fetchAppHubApps, fetchPrivyAppInfo, fetchPrivyStatus, fetchVechainDomain, getAccountAddress, getAccountAddressQueryKey, getAccountBalance, getAccountBalanceQueryKey, getAccountImplementationAddress, getAccountImplementationAddressQueryKey, getAccountVersion, getAccountVersionQueryKey, getAllEvents, getAllocationAmount, getAllocationAmountQueryKey, getAllocationsRoundState, getAllocationsRoundStateQueryKey, getAllocationsRoundsEvents, getAllocationsRoundsEventsQueryKey, getAppAdmin, getAppAdminQueryKey, getAppBalance, getAppBalanceQueryKey, getAppExistsQueryKey, getAppHubAppsQueryKey, 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, useAppHubApps, useAppSecurityLevel, useAppsEligibleInNextRound, useB3trDonated, useB3trToUpgrade, useBuildTransaction, useCall, useChooseNameModal, useClaimVeWorldSubdomain, useClaimVetDomain, useConnectModal, useCrossAppConnectionCache, useCurrency, 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, useTokenBalances, useTokenIdByAccount, useTokenPrices, useTokensWithValues, useTotalBalance, 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 };
3998
+ 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 AppHubApp, type AppVotesGiven, AppearanceSettingsContent, AssetButton, AssetsContent, type AssetsContentProps, BalanceSection, BaseModal, BridgeContent, type BuildTransactionProps, CURRENCY, ChangeCurrencyContent, type ChangeCurrencyContentProps, 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, DisconnectConfirmContent, type DisconnectConfirmContentProps, type Domain, DomainRequiredAlert, type DomainsResponse, ENSRecords, ENS_TEXT_RECORDS, EcosystemButton, EcosystemModal, type EcosystemShortcut, EmailLoginButton, EmbeddedWalletContent, EnhancedClause, type EnrichedLegalDocument, type ExchangeRates, ExchangeWarningAlert, ExploreEcosystemModalProvider, FAQContent, FAQModalProvider, FadeInView, FadeInViewFromBottom, FadeInViewFromLeft, FadeInViewFromRight, FeatureAnnouncementCard, GeneralSettingsContent, type GetCallKeyParams, type IpfsImage, LanguageSettingsContent, type LegalDocument, type LegalDocumentAgreement, LegalDocumentItem, type LegalDocumentOptions, LegalDocumentSource, LegalDocumentType, LegalDocumentsModal, type LegalDocumentsModalContentsTypes, LegalDocumentsProvider, LoginLoadingModal, LoginWithGoogleButton, MAX_IMAGE_SIZE, MainContent, ManageCustomTokenContent, type ManageCustomTokenContentProps, ModalBackButton, ModalFAQButton, ModalNotificationButton, 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, TermsAndPrivacyContent, type TextRecords, type TokenBalance, type TokenWithBalance, type TokenWithValue, 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 WalletTokenBalance, type XApp, type XAppMetadata, buildClaimRewardsTx, buildClaimRoundReward, compressImages, currentBlockQueryKey, decodeFunctionSignature, fetchAppHubApps, fetchPrivyAppInfo, fetchPrivyStatus, fetchVechainDomain, getAccountAddress, getAccountAddressQueryKey, getAccountBalance, getAccountBalanceQueryKey, getAccountImplementationAddress, getAccountImplementationAddressQueryKey, getAccountVersion, getAccountVersionQueryKey, getAllEvents, getAllocationAmount, getAllocationAmountQueryKey, getAllocationsRoundState, getAllocationsRoundStateQueryKey, getAllocationsRoundsEvents, getAllocationsRoundsEventsQueryKey, getAppAdmin, getAppAdminQueryKey, getAppBalance, getAppBalanceQueryKey, getAppExistsQueryKey, getAppHubAppsQueryKey, 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, useAppHubApps, useAppSecurityLevel, useAppsEligibleInNextRound, useB3trDonated, useB3trToUpgrade, useBuildTransaction, useCall, useChooseNameModal, useClaimVeWorldSubdomain, useClaimVetDomain, useConnectModal, useCrossAppConnectionCache, useCurrency, 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, useLegalDocuments, 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, useSyncableLocalStorage, useThresholdParticipationScore, useThresholdParticipationScoreAtTimepoint, useTokenBalances, useTokenIdByAccount, useTokenPrices, useTokensWithValues, useTotalBalance, 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 };