@vechain/vechain-kit 1.3.1 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +47 -10
- package/dist/{Constants-7pfsJgOl.d.cts → Constants-DQeyU9X7.d.cts} +1 -0
- package/dist/{Constants-7pfsJgOl.d.ts → Constants-DQeyU9X7.d.ts} +1 -0
- package/dist/index.cjs +1262 -938
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +79 -46
- package/dist/index.d.ts +79 -46
- package/dist/index.js +1103 -788
- package/dist/index.js.map +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/utils/index.d.cts +2 -2
- package/dist/utils/index.d.ts +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -3,11 +3,11 @@ import * as React$1 from 'react';
|
|
|
3
3
|
import React__default, { ReactElement, ReactNode, ElementType } from 'react';
|
|
4
4
|
import { WalletListEntry, SignTypedDataParams, User } from '@privy-io/react-auth';
|
|
5
5
|
export { usePrivy } from '@privy-io/react-auth';
|
|
6
|
-
import { P as PrivyAppInfo, T as TransactionProgress, a as TransactionStatusErrorType, W as Wallet, b as PrivyLoginMethod, N as NETWORK_TYPE, c as Network, d as TogglePassportCheck, V as VePassportUserStatus, E as EnhancedClause, S as SmartAccount, C as ConnectionSource, e as NFTMediaType, f as TransactionStatus, g as CrossAppConnectionCache } from './Constants-
|
|
7
|
-
export { h as ExecuteWithAuthorizationSignData } from './Constants-
|
|
6
|
+
import { P as PrivyAppInfo, T as TransactionProgress, a as TransactionStatusErrorType, W as Wallet, b as PrivyLoginMethod, N as NETWORK_TYPE, c as Network, d as TogglePassportCheck, V as VePassportUserStatus, E as EnhancedClause, S as SmartAccount, C as ConnectionSource, e as NFTMediaType, f as TransactionStatus, g as CrossAppConnectionCache } from './Constants-DQeyU9X7.js';
|
|
7
|
+
export { h as ExecuteWithAuthorizationSignData } from './Constants-DQeyU9X7.js';
|
|
8
8
|
import { WalletSource, LogLevel } from '@vechain/dapp-kit';
|
|
9
9
|
import { WalletConnectOptions } from '@vechain/dapp-kit-react';
|
|
10
|
-
export { useConnex } from '@vechain/dapp-kit-react';
|
|
10
|
+
export { useConnex, useWallet as useDappKitWallet } from '@vechain/dapp-kit-react';
|
|
11
11
|
import { CustomizedStyle, SourceInfo, I18n } from '@vechain/dapp-kit-ui';
|
|
12
12
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
13
13
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
@@ -17,22 +17,20 @@ import { ThorClient } from '@vechain/sdk-network';
|
|
|
17
17
|
import { Options } from 'browser-image-compression';
|
|
18
18
|
import { Interface } from 'ethers';
|
|
19
19
|
import { IconType } from 'react-icons';
|
|
20
|
-
import { ButtonProps, IconButtonProps, StackProps } from '@chakra-ui/react';
|
|
20
|
+
import { ButtonProps, IconButtonProps, PropsOf, VStack, StackProps, ImageProps } from '@chakra-ui/react';
|
|
21
21
|
|
|
22
|
-
type Props$
|
|
22
|
+
type Props$x = {
|
|
23
23
|
isOpen: boolean;
|
|
24
24
|
onClose: () => void;
|
|
25
25
|
};
|
|
26
26
|
type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
|
|
27
|
-
declare const ConnectModal: ({ isOpen, onClose }: Props$
|
|
27
|
+
declare const ConnectModal: ({ isOpen, onClose }: Props$x) => react_jsx_runtime.JSX.Element;
|
|
28
28
|
|
|
29
|
-
type
|
|
30
|
-
type Props$v = {
|
|
29
|
+
type Props$w = {
|
|
31
30
|
setCurrentContent: React__default.Dispatch<React__default.SetStateAction<ConnectModalContentsTypes>>;
|
|
32
31
|
onClose: () => void;
|
|
33
|
-
variant?: ConnectModalVariant;
|
|
34
32
|
};
|
|
35
|
-
declare const MainContent: ({ setCurrentContent, onClose
|
|
33
|
+
declare const MainContent: ({ setCurrentContent, onClose }: Props$w) => react_jsx_runtime.JSX.Element;
|
|
36
34
|
|
|
37
35
|
interface ConnectionButtonProps {
|
|
38
36
|
isDark: boolean;
|
|
@@ -45,50 +43,51 @@ declare const ConnectionButton: ({ isDark, onClick, text, icon, customIcon, }: C
|
|
|
45
43
|
|
|
46
44
|
declare const EmailLoginButton: () => react_jsx_runtime.JSX.Element;
|
|
47
45
|
|
|
48
|
-
type Props$
|
|
46
|
+
type Props$v = {
|
|
49
47
|
isDark: boolean;
|
|
50
48
|
gridColumn?: number;
|
|
51
49
|
};
|
|
52
|
-
declare const VeChainLoginButton: ({ isDark, gridColumn }: Props$
|
|
50
|
+
declare const VeChainLoginButton: ({ isDark, gridColumn }: Props$v) => react_jsx_runtime.JSX.Element;
|
|
53
51
|
|
|
54
|
-
type Props$
|
|
52
|
+
type Props$u = {
|
|
55
53
|
isDark: boolean;
|
|
56
|
-
privySocialLoginEnabled: boolean;
|
|
57
54
|
appsInfo: PrivyAppInfo[];
|
|
58
55
|
isLoading: boolean;
|
|
56
|
+
gridColumn?: number;
|
|
59
57
|
};
|
|
60
|
-
declare const EcosystemButton: ({ isDark,
|
|
58
|
+
declare const EcosystemButton: ({ isDark, appsInfo, isLoading, gridColumn, }: Props$u) => react_jsx_runtime.JSX.Element;
|
|
61
59
|
|
|
62
|
-
type Props$
|
|
60
|
+
type Props$t = {
|
|
63
61
|
isDark: boolean;
|
|
64
62
|
onViewMoreLogin: () => void;
|
|
65
|
-
gridColumn
|
|
63
|
+
gridColumn?: number;
|
|
66
64
|
};
|
|
67
|
-
declare const PrivyButton: ({ isDark, onViewMoreLogin, gridColumn
|
|
65
|
+
declare const PrivyButton: ({ isDark, onViewMoreLogin, gridColumn }: Props$t) => react_jsx_runtime.JSX.Element;
|
|
68
66
|
|
|
69
|
-
type Props$
|
|
67
|
+
type Props$s = {
|
|
70
68
|
isDark: boolean;
|
|
71
|
-
|
|
69
|
+
loginMethods?: VechainKitProviderProps['loginMethods'];
|
|
70
|
+
gridColumn?: number;
|
|
72
71
|
};
|
|
73
|
-
declare const SocialLoginButtons: ({ isDark,
|
|
72
|
+
declare const SocialLoginButtons: ({ isDark, loginMethods, gridColumn, }: Props$s) => react_jsx_runtime.JSX.Element;
|
|
74
73
|
|
|
75
|
-
type Props$
|
|
74
|
+
type Props$r = {
|
|
76
75
|
isDark: boolean;
|
|
77
76
|
gridColumn?: number;
|
|
78
77
|
};
|
|
79
|
-
declare const PasskeyLoginButton: ({ isDark, gridColumn }: Props$
|
|
78
|
+
declare const PasskeyLoginButton: ({ isDark, gridColumn }: Props$r) => react_jsx_runtime.JSX.Element;
|
|
80
79
|
|
|
81
|
-
type Props$
|
|
80
|
+
type Props$q = {
|
|
82
81
|
isDark: boolean;
|
|
83
82
|
gridColumn?: number;
|
|
84
83
|
};
|
|
85
|
-
declare const DappKitButton: ({ isDark, gridColumn }: Props$
|
|
84
|
+
declare const DappKitButton: ({ isDark, gridColumn }: Props$q) => react_jsx_runtime.JSX.Element;
|
|
86
85
|
|
|
87
|
-
type Props$
|
|
86
|
+
type Props$p = {
|
|
88
87
|
isDark: boolean;
|
|
89
88
|
gridColumn?: number;
|
|
90
89
|
};
|
|
91
|
-
declare const VeChainWithPrivyLoginButton: ({ isDark, gridColumn }: Props$
|
|
90
|
+
declare const VeChainWithPrivyLoginButton: ({ isDark, gridColumn }: Props$p) => react_jsx_runtime.JSX.Element;
|
|
92
91
|
|
|
93
92
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
94
93
|
|
|
@@ -129,28 +128,33 @@ type TransactionToastProps = {
|
|
|
129
128
|
};
|
|
130
129
|
declare const TransactionToast: ({ isOpen, onClose, status, txReceipt, error, resetStatus, progress, }: TransactionToastProps) => react_jsx_runtime.JSX.Element | null;
|
|
131
130
|
|
|
132
|
-
type Props$
|
|
131
|
+
type Props$o = {
|
|
133
132
|
setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
|
|
134
133
|
onClose: () => void;
|
|
135
134
|
wallet: Wallet;
|
|
136
135
|
};
|
|
137
|
-
declare const AccountMainContent: ({ setCurrentContent, wallet
|
|
136
|
+
declare const AccountMainContent: ({ setCurrentContent, wallet }: Props$o) => react_jsx_runtime.JSX.Element;
|
|
138
137
|
|
|
139
|
-
type Props$
|
|
138
|
+
type Props$n = {
|
|
140
139
|
setCurrentContent: React__default.Dispatch<React__default.SetStateAction<AccountModalContentTypes>>;
|
|
141
140
|
};
|
|
142
|
-
declare const
|
|
141
|
+
declare const AccessAndSecurityContent: ({ setCurrentContent }: Props$n) => react_jsx_runtime.JSX.Element;
|
|
143
142
|
|
|
144
|
-
type Props$
|
|
143
|
+
type Props$m = {
|
|
145
144
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
146
145
|
onLogoutSuccess: () => void;
|
|
147
146
|
};
|
|
148
|
-
declare const
|
|
147
|
+
declare const SettingsContent: ({ setCurrentContent, onLogoutSuccess, }: Props$m) => react_jsx_runtime.JSX.Element;
|
|
149
148
|
|
|
150
|
-
type Props$
|
|
149
|
+
type Props$l = {
|
|
151
150
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
152
151
|
};
|
|
153
|
-
declare const AccountCustomizationContent: ({ setCurrentContent }: Props$
|
|
152
|
+
declare const AccountCustomizationContent: ({ setCurrentContent }: Props$l) => react_jsx_runtime.JSX.Element;
|
|
153
|
+
|
|
154
|
+
type Props$k = {
|
|
155
|
+
setCurrentContent: (content: AccountModalContentTypes) => void;
|
|
156
|
+
};
|
|
157
|
+
declare const EmbeddedWalletContent: ({ setCurrentContent }: Props$k) => react_jsx_runtime.JSX.Element;
|
|
154
158
|
|
|
155
159
|
type Token$1 = {
|
|
156
160
|
symbol: string;
|
|
@@ -229,7 +233,7 @@ type Props$g = {
|
|
|
229
233
|
};
|
|
230
234
|
declare const FAQContent: ({ onGoBack }: Props$g) => react_jsx_runtime.JSX.Element;
|
|
231
235
|
|
|
232
|
-
type AccountModalContentTypes = 'main' | 'faq' | 'settings' | 'embedded-wallet' | 'receive-token' | 'swap-token' | 'connection-details' | 'choose-name' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'account-customization' | {
|
|
236
|
+
type AccountModalContentTypes = 'main' | 'faq' | 'settings' | 'access-and-security' | 'embedded-wallet' | 'receive-token' | 'swap-token' | 'connection-details' | 'choose-name' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'account-customization' | {
|
|
233
237
|
type: 'app-overview';
|
|
234
238
|
props: {
|
|
235
239
|
name: string;
|
|
@@ -294,8 +298,9 @@ type ActionButtonProps = {
|
|
|
294
298
|
isLoading?: boolean;
|
|
295
299
|
loadingText?: string;
|
|
296
300
|
style?: ButtonProps;
|
|
301
|
+
extraContent?: React.ReactNode;
|
|
297
302
|
};
|
|
298
|
-
declare const ActionButton: ({ leftIcon, rightIcon, title,
|
|
303
|
+
declare const ActionButton: ({ leftIcon, rightIcon, title, onClick, leftImage, hide, showComingSoon, backgroundColor, _hover, isDisabled, stacked, isLoading, loadingText, style, extraContent, }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
|
|
299
304
|
|
|
300
305
|
type Props$e = {
|
|
301
306
|
wallet: Wallet;
|
|
@@ -327,6 +332,13 @@ type FeatureAnnouncementCardProps = {
|
|
|
327
332
|
};
|
|
328
333
|
declare const FeatureAnnouncementCard: ({ setCurrentContent, }: FeatureAnnouncementCardProps) => react_jsx_runtime.JSX.Element | null;
|
|
329
334
|
|
|
335
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime.JSX.Element;
|
|
336
|
+
|
|
337
|
+
type ProfileProps = {
|
|
338
|
+
onEditClick: () => void;
|
|
339
|
+
};
|
|
340
|
+
declare const Profile: ({ onEditClick }: ProfileProps) => react_jsx_runtime.JSX.Element;
|
|
341
|
+
|
|
330
342
|
type Props$b = {
|
|
331
343
|
children: ReactNode;
|
|
332
344
|
};
|
|
@@ -356,8 +368,9 @@ type Props$7 = {
|
|
|
356
368
|
wallet: Wallet;
|
|
357
369
|
label?: string;
|
|
358
370
|
size?: string;
|
|
371
|
+
style?: PropsOf<typeof VStack>;
|
|
359
372
|
};
|
|
360
|
-
declare const AddressDisplay: ({ wallet, label, size }: Props$7) => react_jsx_runtime.JSX.Element;
|
|
373
|
+
declare const AddressDisplay: ({ wallet, label, size, style, }: Props$7) => react_jsx_runtime.JSX.Element;
|
|
361
374
|
|
|
362
375
|
type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
363
376
|
declare const VersionFooter: ({ ...props }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
@@ -417,6 +430,12 @@ declare const ModalFAQButton: ({ onClick, ...props }: FAQButtonProps) => react_j
|
|
|
417
430
|
|
|
418
431
|
declare const ScrollToTopWrapper: ({ children, ...props }: StackProps) => react_jsx_runtime.JSX.Element;
|
|
419
432
|
|
|
433
|
+
type AccountAvatarProps = {
|
|
434
|
+
wallet?: Wallet;
|
|
435
|
+
props?: ImageProps;
|
|
436
|
+
};
|
|
437
|
+
declare const AccountAvatar: ({ wallet, props }: AccountAvatarProps) => react_jsx_runtime.JSX.Element;
|
|
438
|
+
|
|
420
439
|
type LoginLoadingModalProps = {
|
|
421
440
|
isOpen: boolean;
|
|
422
441
|
onClose: () => void;
|
|
@@ -435,6 +454,11 @@ type Props$3 = {
|
|
|
435
454
|
};
|
|
436
455
|
declare const EcosystemModal: ({ isOpen, onClose, appsInfo, isLoading, }: Props$3) => react_jsx_runtime.JSX.Element;
|
|
437
456
|
|
|
457
|
+
type LoginMethodOrder = {
|
|
458
|
+
method: 'email' | 'google' | 'passkey' | 'vechain' | 'dappkit' | 'ecosystem' | 'more';
|
|
459
|
+
gridColumn?: number;
|
|
460
|
+
allowedApps?: string[];
|
|
461
|
+
};
|
|
438
462
|
type VechainKitProviderProps = {
|
|
439
463
|
children: ReactNode;
|
|
440
464
|
privy?: {
|
|
@@ -452,7 +476,6 @@ type VechainKitProviderProps = {
|
|
|
452
476
|
loginMethods: PrivyLoginMethod[];
|
|
453
477
|
allowPasskeyLinking?: boolean;
|
|
454
478
|
};
|
|
455
|
-
privyEcosystemAppIDS?: string[];
|
|
456
479
|
feeDelegation: {
|
|
457
480
|
delegatorUrl: string;
|
|
458
481
|
delegateAllTransactions: boolean;
|
|
@@ -470,9 +493,8 @@ type VechainKitProviderProps = {
|
|
|
470
493
|
loginModalUI?: {
|
|
471
494
|
logo?: string;
|
|
472
495
|
description?: string;
|
|
473
|
-
preferredLoginMethods?: Array<'email' | 'google'>;
|
|
474
|
-
variant?: ConnectModalVariant;
|
|
475
496
|
};
|
|
497
|
+
loginMethods?: LoginMethodOrder[];
|
|
476
498
|
darkMode?: boolean;
|
|
477
499
|
i18n?: I18n;
|
|
478
500
|
language?: string;
|
|
@@ -492,11 +514,11 @@ type VeChainKitConfig = {
|
|
|
492
514
|
feeDelegation: VechainKitProviderProps['feeDelegation'];
|
|
493
515
|
dappKit: VechainKitProviderProps['dappKit'];
|
|
494
516
|
loginModalUI?: VechainKitProviderProps['loginModalUI'];
|
|
517
|
+
loginMethods?: VechainKitProviderProps['loginMethods'];
|
|
495
518
|
darkMode: boolean;
|
|
496
519
|
i18n?: VechainKitProviderProps['i18n'];
|
|
497
520
|
language?: VechainKitProviderProps['language'];
|
|
498
521
|
network: VechainKitProviderProps['network'];
|
|
499
|
-
privySocialLoginEnabled: boolean;
|
|
500
522
|
openConnectModal: () => void;
|
|
501
523
|
closeConnectModal: () => void;
|
|
502
524
|
isConnectModalOpen: boolean;
|
|
@@ -522,7 +544,7 @@ declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
|
522
544
|
/**
|
|
523
545
|
* Provider to wrap the application with Privy and DAppKit
|
|
524
546
|
*/
|
|
525
|
-
declare const VeChainKitProvider: ({ children, privy, feeDelegation, dappKit, loginModalUI, darkMode, i18n: i18nConfig, language, network,
|
|
547
|
+
declare const VeChainKitProvider: ({ children, privy, feeDelegation, dappKit, loginModalUI, loginMethods, darkMode, i18n: i18nConfig, language, network, }: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime.JSX.Element;
|
|
526
548
|
|
|
527
549
|
interface PrivyWalletProviderContextType {
|
|
528
550
|
accountFactory: string;
|
|
@@ -2944,12 +2966,12 @@ declare const SendTokenModalProvider: ({ children, }: {
|
|
|
2944
2966
|
children: ReactNode;
|
|
2945
2967
|
}) => react_jsx_runtime.JSX.Element;
|
|
2946
2968
|
|
|
2947
|
-
declare const
|
|
2969
|
+
declare const useAccessAndSecurityModal: () => {
|
|
2948
2970
|
open: () => void;
|
|
2949
2971
|
close: () => void;
|
|
2950
2972
|
isOpen: boolean;
|
|
2951
2973
|
};
|
|
2952
|
-
declare const
|
|
2974
|
+
declare const AccessAndSecurityModalProvider: ({ children, }: {
|
|
2953
2975
|
children: ReactNode;
|
|
2954
2976
|
}) => react_jsx_runtime.JSX.Element;
|
|
2955
2977
|
|
|
@@ -2998,6 +3020,17 @@ declare const ReceiveModalProvider: ({ children }: {
|
|
|
2998
3020
|
children: ReactNode;
|
|
2999
3021
|
}) => react_jsx_runtime.JSX.Element;
|
|
3000
3022
|
|
|
3023
|
+
type LoginModalContentConfig = {
|
|
3024
|
+
showSocialLogin: boolean;
|
|
3025
|
+
showPasskey: boolean;
|
|
3026
|
+
showVeChainLogin: boolean;
|
|
3027
|
+
showDappKit: boolean;
|
|
3028
|
+
showEcosystem: boolean;
|
|
3029
|
+
showMoreLogin: boolean;
|
|
3030
|
+
isOfficialVeChainApp: boolean;
|
|
3031
|
+
};
|
|
3032
|
+
declare const useLoginModalContent: () => LoginModalContentConfig;
|
|
3033
|
+
|
|
3001
3034
|
/**
|
|
3002
3035
|
* Props for the {@link useSendTransaction} hook
|
|
3003
3036
|
* @param signerAccountAddress the signer account to use
|
|
@@ -3207,4 +3240,4 @@ declare const useCrossAppConnectionCache: () => {
|
|
|
3207
3240
|
clearConnectionCache: () => void;
|
|
3208
3241
|
};
|
|
3209
3242
|
|
|
3210
|
-
export { APP_SECURITY_LEVELS, AccountCustomizationContent, AccountCustomizationModalProvider, AccountDetailsButton, AccountMainContent, AccountModal, type AccountModalContentTypes, AccountModalProvider, AccountSelector, ActionButton, AddressDisplay, AddressDisplayCard, type AllocationRoundWithState, type AllocationVoteCastEvent, type AppConfig, type AppVotesGiven, AssetButton, AssetsSection, BalanceSection, BaseModal, ChooseNameContent, type ChooseNameContentProps, ChooseNameModalProvider, ChooseNameSearchContent, type ChooseNameSearchContentProps, ChooseNameSummaryContent, type ChooseNameSummaryContentProps, ConnectModal, type ConnectModalContentsTypes, ConnectModalProvider,
|
|
3243
|
+
export { APP_SECURITY_LEVELS, AccessAndSecurityContent, AccessAndSecurityModalProvider, AccountAvatar, AccountCustomizationContent, AccountCustomizationModalProvider, AccountDetailsButton, AccountMainContent, AccountModal, type AccountModalContentTypes, AccountModalProvider, AccountSelector, ActionButton, AddressDisplay, AddressDisplayCard, type AllocationRoundWithState, type AllocationVoteCastEvent, type AppConfig, type AppVotesGiven, AssetButton, AssetsSection, BalanceSection, BaseModal, ChooseNameContent, type ChooseNameContentProps, ChooseNameModalProvider, ChooseNameSearchContent, type ChooseNameSearchContentProps, ChooseNameSummaryContent, type ChooseNameSummaryContentProps, ConnectModal, type ConnectModalContentsTypes, ConnectModalProvider, ConnectionButton, ConnectionSource, CrossAppConnectionCache, DappKitButton, type Domain, type DomainsResponse, EcosystemButton, EcosystemModal, type EcosystemShortcut, EmailLoginButton, EmbeddedWalletContent, EnhancedClause, ExchangeWarningAlert, ExploreEcosystemModalProvider, FAQContent, FAQModalProvider, FadeInView, FadeInViewFromBottom, FadeInViewFromLeft, FadeInViewFromRight, FeatureAnnouncementCard, type GetCallKeyParams, type IpfsImage, LoginLoadingModal, MAX_IMAGE_SIZE, MainContent, ModalBackButton, ModalFAQButton, type MostVotedAppsInRoundReturnType, NFTMediaType, type NFTMetadata, NotificationsModalProvider, PRICE_FEED_IDS, PasskeyLoginButton, PrivyAppInfo, PrivyButton, PrivyLoginMethod, PrivyWalletProvider, type PrivyWalletProviderContextType, Profile, QuickActionsSection, ReceiveModalProvider, ReceiveTokenContent, type RoundCreated, type RoundReward, RoundState, ScrollToTopWrapper, SecurityLevel, SelectTokenContent, SendTokenContent, SendTokenModalProvider, SendTokenSummaryContent, SettingsContent, SmartAccount, type SmartAccountReturnType, SocialLoginButtons, StickyFooterContainer, StickyHeaderContainer, type SupportedToken, SwapTokenContent, type TokenBalance, TransactionModal, type TransactionModalProps, TransactionModalProvider, TransactionProgress, TransactionStatus, TransactionStatusErrorType, TransactionToast, TransactionToastProvider, type UnendorsedApp, type UploadedImage, type UseCallParams, type UseSendTransactionReturnValue, type UseWalletReturnType, type UserNode, type UserXNode, VeChainKitContext, VeChainKitProvider, VeChainLoginButton, VeChainWithPrivyLoginButton, VePassportUserStatus, type VechainKitProviderProps, VechainKitThemeProvider, VersionFooter, Wallet, WalletButton, type WalletButtonProps, type WalletDisplayVariant, WalletModalProvider, type XApp, type XAppMetadata, buildClaimRewardsTx, buildClaimRoundReward, compressImages, currentBlockQueryKey, fetchPrivyAppInfo, fetchVechainDomain, getAccountBalance, getAccountBalanceQueryKey, getAllEvents, getAllocationAmount, getAllocationAmountQueryKey, getAllocationsRoundState, getAllocationsRoundStateQueryKey, getAllocationsRoundsEvents, getAllocationsRoundsEventsQueryKey, getAppAdmin, getAppAdminQueryKey, getAppBalance, getAppBalanceQueryKey, getAppExistsQueryKey, getAppSecurityLevelQueryKey, getAppsEligibleInNextRound, getAppsEligibleInNextRoundQueryKey, getAppsShareClauses, getAvatar, getAvatarQueryKey, getB3trBalance, getB3trBalanceQueryKey, getB3trDonatedQueryKey, getB3trToUpgradeQueryKey, getBalanceOf, getCallKey, getChainId, getChainIdQueryKey, getConfig, getCurrentAllocationsRoundId, getCurrentAllocationsRoundIdQueryKey, getDelegateeQueryKey, getDelegatorQueryKey, getDomainsOfAddress, getDomainsOfAddressQueryKey, getEnsRecordExistsQueryKey, getEntitiesLinkedToPassportQueryKey, getEvents, getGMBaseUriQueryKey, getGMLevel, getGMbalanceQueryKey, getGetCumulativeScoreWithDecayQueryKey, getHasVotedInRound, getHasVotedInRoundQueryKey, getIpfsImage, getIpfsImageQueryKey, getIpfsMetadata, getIpfsMetadataQueryKey, getIsBlacklistedQueryKey, getIsDomainProtectedQueryKey, getIsEntityQueryKey, getIsNodeHolder, getIsNodeHolderQueryKey, getIsPassportQueryKey, getIsPersonAtTimepointQueryKey, getIsPersonQueryKey, getIsWhitelistedQueryKey, getLevelGradient, getLevelMultiplierQueryKey, getLevelOfTokenQueryKey, getNFTMetadataUri, getNFTMetadataUriQueryKey, getNodeCheckCooldownQueryKey, getNodeManagerQueryKey, getParticipatedInGovernance, getParticipatedInGovernanceQueryKey, getParticipationScoreThresholdQueryKey, getPassportForEntityQueryKey, getPassportToggleQueryKey, getPendingDelegationsQueryKeyDelegateePOV, getPendingDelegationsQueryKeyDelegatorPOV, getPendingLinkingsQueryKey, getPrivyAppInfoQueryKey, getRoundReward, getRoundRewardQueryKey, getRoundXApps, getRoundXAppsQueryKey, getSecurityMultiplierQueryKey, getSmartAccount, getSmartAccountQueryKey, getThresholdParticipationScoreAtTimepointQueryKey, getThresholdParticipationScoreQueryKey, getTokenIdByAccount, getTokenIdByAccountQueryKey, getTokenUsdPrice, getTokenUsdPriceQueryKey, getTokensInfoByOwnerQueryKey, getUserBotSignalsQueryKey, getUserNodesQueryKey, getUserRoundScoreQueryKey, getUserVotesInRound, getUserVotesInRoundQueryKey, getUserXNodes, getUserXNodesQueryKey, getVeDelegateBalance, getVeDelegateBalanceQueryKey, getVechainDomainQueryKey, getVersion, getVersionQueryKey, getVot3Balance, getVot3BalanceQueryKey, getVotesInRoundQueryKey, getXAppMetadata, getXAppMetadataQueryKey, getXAppRoundEarnings, getXAppRoundEarningsQueryKey, getXAppTotalEarningsClauses, getXAppTotalEarningsQueryKey, getXAppVotes, getXAppVotesQf, getXAppVotesQfQueryKey, getXAppVotesQueryKey, getXApps, getXAppsMetadataBaseUri, getXAppsMetadataBaseUriQueryKey, getXAppsQueryKey, getXAppsSharesQueryKey, imageCompressionOptions, pollForReceipt, useAccessAndSecurityModal, useAccountBalance, useAccountCustomizationModal, useAccountLinking, useAccountModal, useAllocationAmount, useAllocationsRound, useAllocationsRoundState, useAllocationsRoundsEvents, useAppAdmin, useAppBalance, useAppExists, useAppSecurityLevel, useAppsEligibleInNextRound, useB3trDonated, useB3trToUpgrade, useBalances, useCall, useChooseNameModal, useClaimVeWorldSubdomain, useConnectModal, useContractVersion, useCrossAppConnectionCache, useCurrentAllocationsRound, useCurrentAllocationsRoundId, useCurrentBlock, useEcosystemShortcuts, useEnsRecordExists, useExploreEcosystemModal, useFAQModal, useFeatureAnnouncement, useFetchAppInfo, useGMBaseUri, useGMbalance, useGetAvatar, useGetB3trBalance, useGetChainId, useGetCumulativeScoreWithDecay, useGetDelegatee, useGetDelegator, useGetDomainsOfAddress, useGetEntitiesLinkedToPassport, useGetNodeManager, useGetNodeUrl, useGetPassportForEntity, useGetPendingDelegationsDelegateePOV, useGetPendingDelegationsDelegatorPOV, useGetPendingLinkings, useGetTokenUsdPrice, useGetTokensInfoByOwner, useGetUserEntitiesLinkedToPassport, useGetUserNode, useGetUserNodes, useGetUserPassportForEntity, useGetUserPendingLinkings, useGetVeDelegateBalance, useGetVot3Balance, useHasVotedInRound, useIpfsImage, useIpfsImageList, useIpfsMetadata, useIpfsMetadatas, useIsBlacklisted, useIsDomainProtected, useIsEntity, useIsGMclaimable, useIsNodeHolder, useIsPWA, useIsPassport, useIsPassportCheckEnabled, useIsPerson, useIsPersonAtTimepoint, useIsUserEntity, useIsUserPassport, useIsUserPerson, useIsWhitelisted, useLevelMultiplier, useLevelOfToken, useLocalStorage, useLoginModalContent, useLoginWithOAuth, useLoginWithPasskey, useLoginWithVeChain, useMostVotedAppsInRound, useMultipleXAppRoundEarnings, useNFTImage, useNFTMetadataUri, useNotificationAlerts, useNotifications, useNotificationsModal, useParticipatedInGovernance, useParticipationScoreThreshold, usePassportChecks, usePrivyWalletProvider, useReceiveModal, useRefreshBalances, useRoundEarnings, useRoundReward, useRoundXApps, useScrollToTop, useSecurityMultiplier, useSelectedGmNft, useSendTokenModal, useSendTransaction, useSignMessage, useSignTypedData, useSingleImageUpload, useSmartAccount, useThresholdParticipationScore, useThresholdParticipationScoreAtTimepoint, useTokenIdByAccount, useTransactionModal, useTransactionToast, useTransferERC20, useTransferVET, useTxReceipt, useUpdateAvatarRecord, useUploadImages, useUserBotSignals, useUserDelegation, useUserRoundScore, useUserStatus, useUserTopVotedApps, useUserVotesInAllRounds, useUserVotesInRound, useVeChainKitConfig, useVechainDomain, useVotesInRound, useVotingRewards, useWallet, useWalletModal, useXApp, useXAppMetadata, useXAppRoundEarnings, useXAppTotalEarnings, useXAppVotes, useXAppVotesQf, useXApps, useXAppsMetadataBaseUri, useXAppsShares, useXNode, useXNodeCheckCooldown, useXNodes };
|