@vechain/vechain-kit 1.7.1 → 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;
@@ -2692,7 +2739,7 @@ declare const useIpfsMetadatas: <T>(ipfsUris: string[], parseJson?: boolean) =>
2692
2739
 
2693
2740
  declare const imageCompressionOptions: Options;
2694
2741
  declare const compressImages: (images: UploadedImage[]) => Promise<File[]>;
2695
- type Props$y = {
2742
+ type Props$A = {
2696
2743
  compressImages?: boolean;
2697
2744
  defaultImages?: UploadedImage[];
2698
2745
  };
@@ -2705,7 +2752,7 @@ type UploadedImage = {
2705
2752
  file: File;
2706
2753
  image: string;
2707
2754
  };
2708
- declare const useUploadImages: ({ compressImages, defaultImages }: Props$y) => {
2755
+ declare const useUploadImages: ({ compressImages, defaultImages }: Props$A) => {
2709
2756
  uploadedImages: UploadedImage[];
2710
2757
  setUploadedImages: React$1.Dispatch<React$1.SetStateAction<UploadedImage[]>>;
2711
2758
  onUpload: (acceptedFiles: File[], keepCurrent?: boolean) => Promise<void>;
@@ -2713,7 +2760,7 @@ declare const useUploadImages: ({ compressImages, defaultImages }: Props$y) => {
2713
2760
  invalidDateError: number[];
2714
2761
  };
2715
2762
 
2716
- type Props$x = {
2763
+ type Props$z = {
2717
2764
  compressImage?: boolean;
2718
2765
  defaultImage?: UploadedImage;
2719
2766
  };
@@ -2723,7 +2770,7 @@ type Props$x = {
2723
2770
  * @param param1 defaultImage: default image to be displayed
2724
2771
  * @returns uploaded image, setUploadedImage: function to set the uploaded image, onDrop: function to handle the drop event
2725
2772
  */
2726
- declare const useSingleImageUpload: ({ compressImage, defaultImage, }: Props$x) => {
2773
+ declare const useSingleImageUpload: ({ compressImage, defaultImage, }: Props$z) => {
2727
2774
  uploadedImage: UploadedImage | undefined;
2728
2775
  setUploadedImage: React$1.Dispatch<React$1.SetStateAction<UploadedImage | undefined>>;
2729
2776
  onUpload: (acceptedFile: File) => Promise<UploadedImage>;
@@ -3089,18 +3136,18 @@ type LoginModalContentConfig = {
3089
3136
  };
3090
3137
  declare const useLoginModalContent: () => LoginModalContentConfig;
3091
3138
 
3092
- type Props$w = {
3139
+ type Props$y = {
3093
3140
  isOpen: boolean;
3094
3141
  onClose: () => void;
3095
3142
  };
3096
3143
  type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
3097
- 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;
3098
3145
 
3099
- type Props$v = {
3146
+ type Props$x = {
3100
3147
  setCurrentContent: React__default.Dispatch<React__default.SetStateAction<ConnectModalContentsTypes>>;
3101
3148
  onClose: () => void;
3102
3149
  };
3103
- 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;
3104
3151
 
3105
3152
  interface ConnectionButtonProps {
3106
3153
  isDark: boolean;
@@ -3117,50 +3164,50 @@ declare const ConnectionButton: ({ onClick, text, icon, customIcon, rightIcon, s
3117
3164
 
3118
3165
  declare const EmailLoginButton: () => react_jsx_runtime.JSX.Element;
3119
3166
 
3120
- type Props$u = {
3167
+ type Props$w = {
3121
3168
  isDark: boolean;
3122
3169
  gridColumn?: number;
3123
3170
  };
3124
- 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;
3125
3172
 
3126
- type Props$t = {
3173
+ type Props$v = {
3127
3174
  isDark: boolean;
3128
3175
  appsInfo: PrivyAppInfo[];
3129
3176
  isLoading: boolean;
3130
3177
  gridColumn?: number;
3131
3178
  };
3132
- 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;
3133
3180
 
3134
- type Props$s = {
3181
+ type Props$u = {
3135
3182
  isDark: boolean;
3136
3183
  onViewMoreLogin: () => void;
3137
3184
  gridColumn?: number;
3138
3185
  };
3139
- 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;
3140
3187
 
3141
- type Props$r = {
3188
+ type Props$t = {
3142
3189
  isDark: boolean;
3143
3190
  gridColumn?: number;
3144
3191
  };
3145
- 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;
3146
3193
 
3147
- type Props$q = {
3194
+ type Props$s = {
3148
3195
  isDark: boolean;
3149
3196
  gridColumn?: number;
3150
3197
  };
3151
- 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;
3152
3199
 
3153
- type Props$p = {
3200
+ type Props$r = {
3154
3201
  isDark: boolean;
3155
3202
  gridColumn?: number;
3156
3203
  };
3157
- 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;
3158
3205
 
3159
- type Props$o = {
3206
+ type Props$q = {
3160
3207
  isDark: boolean;
3161
3208
  gridColumn?: number;
3162
3209
  };
3163
- 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;
3164
3211
 
3165
3212
  type ConnectPopoverProps = {
3166
3213
  isLoading: boolean;
@@ -3201,12 +3248,12 @@ type TransactionModalProps = {
3201
3248
  };
3202
3249
  declare const TransactionModal: ({ isOpen, onClose, status, uiConfig, txReceipt, txError, onTryAgain, }: TransactionModalProps) => react_jsx_runtime.JSX.Element;
3203
3250
 
3204
- type Props$n = {
3251
+ type Props$p = {
3205
3252
  descriptionEncoded: string;
3206
3253
  url?: string;
3207
3254
  facebookHashtag?: string;
3208
3255
  };
3209
- declare const ShareButtons: ({ descriptionEncoded }: Props$n) => react_jsx_runtime.JSX.Element;
3256
+ declare const ShareButtons: ({ descriptionEncoded }: Props$p) => react_jsx_runtime.JSX.Element;
3210
3257
 
3211
3258
  declare const TransactionModalContent: ({ status, uiConfig, onTryAgain, txReceipt, txError, onClose, }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime.JSX.Element;
3212
3259
 
@@ -3221,17 +3268,17 @@ type TransactionToastProps = {
3221
3268
  };
3222
3269
  declare const TransactionToast: ({ isOpen, onClose, status, txReceipt, txError, onTryAgain, description, }: TransactionToastProps) => react_jsx_runtime.JSX.Element | null;
3223
3270
 
3224
- type Props$m = {
3271
+ type Props$o = {
3225
3272
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3226
3273
  onClose: () => void;
3227
3274
  wallet: Wallet;
3228
3275
  };
3229
- 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;
3230
3277
 
3231
- type Props$l = {
3278
+ type Props$n = {
3232
3279
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3233
3280
  };
3234
- declare const AccessAndSecurityContent: ({ setCurrentContent }: Props$l) => react_jsx_runtime.JSX.Element;
3281
+ declare const AccessAndSecurityContent: ({ setCurrentContent }: Props$n) => react_jsx_runtime.JSX.Element;
3235
3282
 
3236
3283
  type SettingsContentProps = {
3237
3284
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3239,10 +3286,19 @@ type SettingsContentProps = {
3239
3286
  };
3240
3287
  declare const SettingsContent: ({ setCurrentContent, onLogoutSuccess, }: SettingsContentProps) => react_jsx_runtime.JSX.Element;
3241
3288
 
3242
- type Props$k = {
3289
+ type Props$m = {
3243
3290
  setCurrentContent: (content: AccountModalContentTypes) => void;
3244
3291
  };
3245
- 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;
3246
3302
 
3247
3303
  type SendTokenContentProps = {
3248
3304
  setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
@@ -3262,22 +3318,22 @@ type SendTokenSummaryContentProps = {
3262
3318
  };
3263
3319
  declare const SendTokenSummaryContent: ({ setCurrentContent, toAddressOrDomain, resolvedDomain, resolvedAddress, amount, selectedToken, }: SendTokenSummaryContentProps) => react_jsx_runtime.JSX.Element;
3264
3320
 
3265
- type Props$j = {
3321
+ type Props$l = {
3266
3322
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3267
3323
  onSelectToken: (token: TokenWithValue) => void;
3268
3324
  onBack: () => void;
3269
3325
  };
3270
- 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;
3271
3327
 
3272
- type Props$i = {
3328
+ type Props$k = {
3273
3329
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3274
3330
  };
3275
- declare const ReceiveTokenContent: ({ setCurrentContent }: Props$i) => react_jsx_runtime.JSX.Element;
3331
+ declare const ReceiveTokenContent: ({ setCurrentContent }: Props$k) => react_jsx_runtime.JSX.Element;
3276
3332
 
3277
- type Props$h = {
3333
+ type Props$j = {
3278
3334
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3279
3335
  };
3280
- declare const SwapTokenContent: ({ setCurrentContent }: Props$h) => react_jsx_runtime.JSX.Element;
3336
+ declare const SwapTokenContent: ({ setCurrentContent }: Props$j) => react_jsx_runtime.JSX.Element;
3281
3337
 
3282
3338
  type ChooseNameContentProps = {
3283
3339
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3352,35 +3408,35 @@ type ManageCustomTokenContentProps = {
3352
3408
  };
3353
3409
  declare const ManageCustomTokenContent: ({ setCurrentContent, }: ManageCustomTokenContentProps) => react_jsx_runtime.JSX.Element;
3354
3410
 
3355
- type Props$g = {
3411
+ type Props$i = {
3356
3412
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3357
3413
  };
3358
- declare const BridgeContent: ({ setCurrentContent }: Props$g) => react_jsx_runtime.JSX.Element;
3414
+ declare const BridgeContent: ({ setCurrentContent }: Props$i) => react_jsx_runtime.JSX.Element;
3359
3415
 
3360
3416
  type ChangeCurrencyContentProps = {
3361
3417
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3362
3418
  };
3363
3419
  declare const ChangeCurrencyContent: ({ setCurrentContent, }: ChangeCurrencyContentProps) => react_jsx_runtime.JSX.Element;
3364
3420
 
3365
- type Props$f = {
3421
+ type Props$h = {
3366
3422
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3367
3423
  };
3368
- declare const GeneralSettingsContent: ({ setCurrentContent }: Props$f) => react_jsx_runtime.JSX.Element;
3424
+ declare const GeneralSettingsContent: ({ setCurrentContent }: Props$h) => react_jsx_runtime.JSX.Element;
3369
3425
 
3370
- type Props$e = {
3426
+ type Props$g = {
3371
3427
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3372
3428
  };
3373
- declare const LanguageSettingsContent: ({ setCurrentContent }: Props$e) => react_jsx_runtime.JSX.Element;
3429
+ declare const LanguageSettingsContent: ({ setCurrentContent }: Props$g) => react_jsx_runtime.JSX.Element;
3374
3430
 
3375
- type Props$d = {
3431
+ type Props$f = {
3376
3432
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3377
3433
  };
3378
- declare const AppearanceSettingsContent: ({ setCurrentContent }: Props$d) => react_jsx_runtime.JSX.Element;
3434
+ declare const AppearanceSettingsContent: ({ setCurrentContent }: Props$f) => react_jsx_runtime.JSX.Element;
3379
3435
 
3380
- type DisconnectConfirmContentProps = {
3381
- onDisconnect: () => void;
3382
- onBack: () => void;
3436
+ type TermsAndPrivacyContentProps = {
3437
+ onGoBack: () => void;
3383
3438
  };
3439
+ declare const TermsAndPrivacyContent: ({ onGoBack, }: TermsAndPrivacyContentProps) => react_jsx_runtime.JSX.Element;
3384
3440
 
3385
3441
  type CategoryFilter = string | null;
3386
3442
 
@@ -3446,14 +3502,17 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'access-and-se
3446
3502
  } | {
3447
3503
  type: 'faq';
3448
3504
  props: FAQContentProps;
3505
+ } | {
3506
+ type: 'terms-and-privacy';
3507
+ props: TermsAndPrivacyContentProps;
3449
3508
  };
3450
3509
 
3451
- type Props$c = {
3510
+ type Props$e = {
3452
3511
  isOpen: boolean;
3453
3512
  onClose: () => void;
3454
3513
  initialContent?: AccountModalContentTypes;
3455
3514
  };
3456
- 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;
3457
3516
 
3458
3517
  interface AccountDetailsButtonProps {
3459
3518
  title: string;
@@ -3491,14 +3550,14 @@ type ActionButtonProps = {
3491
3550
  };
3492
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;
3493
3552
 
3494
- type Props$b = {
3553
+ type Props$d = {
3495
3554
  wallet: Wallet;
3496
3555
  size?: string;
3497
3556
  onClick?: () => void;
3498
3557
  mt?: number;
3499
3558
  style?: StackProps;
3500
3559
  };
3501
- 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;
3502
3561
 
3503
3562
  declare const BalanceSection: ({ mb, mt, onAssetsClick, }: {
3504
3563
  mb?: number;
@@ -3506,11 +3565,11 @@ declare const BalanceSection: ({ mb, mt, onAssetsClick, }: {
3506
3565
  onAssetsClick?: () => void;
3507
3566
  }) => react_jsx_runtime.JSX.Element;
3508
3567
 
3509
- type Props$a = {
3568
+ type Props$c = {
3510
3569
  mt?: number;
3511
3570
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3512
3571
  };
3513
- 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;
3514
3573
 
3515
3574
  type FeatureAnnouncementCardProps = {
3516
3575
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3523,52 +3582,52 @@ declare const DomainRequiredAlert: () => react_jsx_runtime.JSX.Element;
3523
3582
 
3524
3583
  declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime.JSX.Element;
3525
3584
 
3526
- type Props$9 = {
3585
+ type Props$b = {
3527
3586
  children: ReactNode;
3528
3587
  };
3529
- declare const FadeInView: ({ children }: Props$9) => react_jsx_runtime.JSX.Element;
3588
+ declare const FadeInView: ({ children }: Props$b) => react_jsx_runtime.JSX.Element;
3530
3589
 
3531
- type Props$8 = {
3590
+ type Props$a = {
3532
3591
  children: ReactNode;
3533
3592
  };
3534
- declare const FadeInViewFromBottom: ({ children }: Props$8) => react_jsx_runtime.JSX.Element;
3593
+ declare const FadeInViewFromBottom: ({ children }: Props$a) => react_jsx_runtime.JSX.Element;
3535
3594
 
3536
- type Props$7 = {
3595
+ type Props$9 = {
3537
3596
  children: ReactNode;
3538
3597
  };
3539
- declare const FadeInViewFromLeft: ({ children }: Props$7) => react_jsx_runtime.JSX.Element;
3598
+ declare const FadeInViewFromLeft: ({ children }: Props$9) => react_jsx_runtime.JSX.Element;
3540
3599
 
3541
- type Props$6 = {
3600
+ type Props$8 = {
3542
3601
  children: ReactNode;
3543
3602
  };
3544
- declare const FadeInViewFromRight: ({ children }: Props$6) => react_jsx_runtime.JSX.Element;
3603
+ declare const FadeInViewFromRight: ({ children }: Props$8) => react_jsx_runtime.JSX.Element;
3545
3604
 
3546
3605
  type BackButtonProps = {
3547
3606
  onClick: () => void;
3548
3607
  } & Partial<IconButtonProps>;
3549
3608
  declare const ModalBackButton: ({ onClick, ...props }: BackButtonProps) => react_jsx_runtime.JSX.Element;
3550
3609
 
3551
- type Props$5 = {
3610
+ type Props$7 = {
3552
3611
  wallet: Wallet;
3553
3612
  label?: string;
3554
3613
  style?: PropsOf<typeof VStack>;
3555
3614
  showHumanAddress?: boolean;
3556
3615
  fromScreen?: string;
3557
3616
  };
3558
- 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;
3559
3618
 
3560
- type Props$4 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3561
- 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;
3562
3621
 
3563
- type Props$3 = {
3622
+ type Props$5 = {
3564
3623
  children: React.ReactNode;
3565
3624
  };
3566
- declare const StickyHeaderContainer: ({ children }: Props$3) => react_jsx_runtime.JSX.Element;
3625
+ declare const StickyHeaderContainer: ({ children }: Props$5) => react_jsx_runtime.JSX.Element;
3567
3626
 
3568
- type Props$2 = {
3627
+ type Props$4 = {
3569
3628
  children: React.ReactNode;
3570
3629
  };
3571
- declare const StickyFooterContainer: ({ children }: Props$2) => react_jsx_runtime.JSX.Element;
3630
+ declare const StickyFooterContainer: ({ children }: Props$4) => react_jsx_runtime.JSX.Element;
3572
3631
 
3573
3632
  type BaseModalProps = {
3574
3633
  isOpen: boolean;
@@ -3657,13 +3716,13 @@ type LoginLoadingModalProps = {
3657
3716
  };
3658
3717
  declare const LoginLoadingModal: ({ isOpen, onClose, error, title, loadingText, onTryAgain, }: LoginLoadingModalProps) => react_jsx_runtime.JSX.Element;
3659
3718
 
3660
- type Props$1 = {
3719
+ type Props$3 = {
3661
3720
  isOpen: boolean;
3662
3721
  onClose: () => void;
3663
3722
  appsInfo: PrivyAppInfo[];
3664
3723
  isLoading: boolean;
3665
3724
  };
3666
- 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;
3667
3726
 
3668
3727
  type ProfileCardProps = {
3669
3728
  address: string;
@@ -3695,7 +3754,7 @@ type UpgradeSmartAccountModalStyle = {
3695
3754
  accentColor?: string;
3696
3755
  modalSize?: ThemeTypings['components']['Modal']['sizes'];
3697
3756
  };
3698
- type Props = {
3757
+ type Props$2 = {
3699
3758
  isOpen: boolean;
3700
3759
  onClose: () => void;
3701
3760
  style?: UpgradeSmartAccountModalStyle;
@@ -3704,7 +3763,23 @@ type UpgradeSmartAccountModalContentsTypes = 'upgrade-smart-account' | {
3704
3763
  type: 'successful-operation';
3705
3764
  props: SuccessfulOperationContentProps;
3706
3765
  };
3707
- 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;
3708
3783
 
3709
3784
  declare const useUpgradeSmartAccountModal: (style?: UpgradeSmartAccountModalStyle) => {
3710
3785
  open: () => void;
@@ -3894,6 +3969,8 @@ declare const getCallKey: ({ method, keyArgs }: GetCallKeyParams) => any[];
3894
3969
 
3895
3970
  declare const useLocalStorage: <T>(key: string, initialValue: T) => readonly [T, React$1.Dispatch<React$1.SetStateAction<T>>];
3896
3971
 
3972
+ declare const useSyncableLocalStorage: <T>(key: string, defaultValue: T) => readonly [T, React$1.Dispatch<React$1.SetStateAction<T>>, () => void, () => T];
3973
+
3897
3974
  type EcosystemShortcut = {
3898
3975
  name: string;
3899
3976
  image: string;
@@ -3918,4 +3995,4 @@ declare const useCrossAppConnectionCache: () => {
3918
3995
  clearConnectionCache: () => void;
3919
3996
  };
3920
3997
 
3921
- 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 };