@vechain/vechain-kit 2.6.8 → 2.7.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.
@@ -1,13 +1,13 @@
1
1
  import { ButtonProps, IconButtonProps, ImageProps, PropsOf, StackProps, ThemeTypings, VStack } from "@chakra-ui/react";
2
2
  import * as react0 from "react";
3
3
  import React$1, { ElementType, ReactElement, ReactNode } from "react";
4
- import * as react_jsx_runtime0 from "react/jsx-runtime";
4
+ import * as react_jsx_runtime3 from "react/jsx-runtime";
5
5
  import { Account } from "viem/accounts";
6
6
  import * as _vechain_sdk_core0 from "@vechain/sdk-core";
7
7
  import { Address, Certificate, CertificateData, Clause, Revision, Transaction, TransactionClause } from "@vechain/sdk-core";
8
8
  import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy as usePrivy$1, useSetWalletRecovery } from "@privy-io/react-auth";
9
9
  import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor as useThor$1, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
10
- import * as _tanstack_react_query8 from "@tanstack/react-query";
10
+ import * as _tanstack_react_query17 from "@tanstack/react-query";
11
11
  import { UseQueryOptions } from "@tanstack/react-query";
12
12
  import { CustomTokenInfo } from "@vechain/contract-getters";
13
13
  import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
@@ -53,9 +53,52 @@ declare const genesises: {
53
53
  readonly main: CompressedBlockDetail;
54
54
  readonly test: CompressedBlockDetail;
55
55
  readonly solo: CompressedBlockDetail;
56
- which(gid: string): "test" | "main" | "solo" | undefined;
56
+ which(gid: string): "main" | "test" | "solo" | undefined;
57
57
  };
58
58
  //#endregion
59
+ //#region src/config/index.d.ts
60
+ type AppConfig = {
61
+ ipfsFetchingService: string;
62
+ ipfsPinningService: string;
63
+ vthoContractAddress: string;
64
+ b3trContractAddress: string;
65
+ vot3ContractAddress: string;
66
+ b3trGovernorAddress: string;
67
+ timelockContractAddress: string;
68
+ xAllocationPoolContractAddress: string;
69
+ xAllocationVotingContractAddress: string;
70
+ emissionsContractAddress: string;
71
+ voterRewardsContractAddress: string;
72
+ galaxyMemberContractAddress: string;
73
+ treasuryContractAddress: string;
74
+ x2EarnAppsContractAddress: string;
75
+ x2EarnCreatorContractAddress: string;
76
+ x2EarnRewardsPoolContractAddress: string;
77
+ nodeManagementContractAddress: string;
78
+ veBetterPassportContractAddress: string;
79
+ veDelegate: string;
80
+ veDelegateVotes: string;
81
+ veDelegateTokenContractAddress: string;
82
+ oracleContractAddress: string;
83
+ accountFactoryAddress: string;
84
+ cleanifyCampaignsContractAddress: string;
85
+ cleanifyChallengesContractAddress: string;
86
+ veWorldSubdomainClaimerContractAddress: string;
87
+ vetDomainsContractAddress: string;
88
+ vetDomainsPublicResolverAddress: string;
89
+ vetDomainsReverseRegistrarAddress: string;
90
+ vnsResolverAddress: string;
91
+ sassContractAddress: string;
92
+ vetDomainAvatarUrl: string;
93
+ nodeUrl: string;
94
+ indexerUrl: string;
95
+ b3trIndexerUrl: string;
96
+ graphQlIndexerUrl: string;
97
+ network: Network;
98
+ explorerUrl: string;
99
+ };
100
+ declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
101
+ //#endregion
59
102
  //#region src/types/types.d.ts
60
103
  type TokenBalance = {
61
104
  original: string;
@@ -576,6 +619,23 @@ type VechainKitProviderProps = {
576
619
  allowCustomTokens?: boolean;
577
620
  /** When true, community tokens (e.g. SASS) are included in token lists and balances. */
578
621
  allowCommunityTokens?: boolean;
622
+ /**
623
+ * Override default contract addresses for the selected network.
624
+ * Useful when deploying custom contract instances (e.g., on solo or testnet).
625
+ * Only the provided fields are overridden; the rest use the network defaults.
626
+ *
627
+ * @example
628
+ * ```tsx
629
+ * <VeChainKitProvider
630
+ * network={{ type: 'solo' }}
631
+ * contractAddresses={{
632
+ * b3trContractAddress: '0x...',
633
+ * vot3ContractAddress: '0x...',
634
+ * }}
635
+ * >
636
+ * ```
637
+ */
638
+ contractAddresses?: Partial<AppConfig>;
579
639
  legalDocuments?: LegalDocumentOptions;
580
640
  hiddenQuickActions?: AccountQuickAction[];
581
641
  defaultCurrency?: CURRENCY;
@@ -595,6 +655,8 @@ type VeChainKitConfig = {
595
655
  loginMethods?: VechainKitProviderProps['loginMethods'];
596
656
  darkMode: boolean;
597
657
  i18n?: VechainKitProviderProps['i18n'];
658
+ /** The full app config for the current network, with any contractAddresses overrides applied. */
659
+ appConfig: AppConfig;
598
660
  network: {
599
661
  type: NETWORK_TYPE;
600
662
  nodeUrl: string;
@@ -641,7 +703,18 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
641
703
  * ```
642
704
  */
643
705
  declare const useVeChainKitConfig: () => VeChainKitConfig;
644
- declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime0.JSX.Element;
706
+ /**
707
+ * Hook to get the merged app config for the current network.
708
+ * Returns the base network config with any contractAddresses overrides applied.
709
+ *
710
+ * @example
711
+ * ```tsx
712
+ * const config = useAppConfig();
713
+ * const b3trAddress = config.b3trContractAddress;
714
+ * ```
715
+ */
716
+ declare const useAppConfig: () => AppConfig;
717
+ declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime3.JSX.Element;
645
718
  //#endregion
646
719
  //#region src/providers/PrivyWalletProvider.d.ts
647
720
  interface PrivyWalletProviderContextType {
@@ -684,7 +757,7 @@ declare const PrivyWalletProvider: ({
684
757
  delegatorUrl?: string;
685
758
  delegateAllTransactions: boolean;
686
759
  genericDelegator?: boolean;
687
- }) => react_jsx_runtime0.JSX.Element;
760
+ }) => react_jsx_runtime3.JSX.Element;
688
761
  declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
689
762
  //#endregion
690
763
  //#region src/providers/VechainKitThemeProvider.d.ts
@@ -702,12 +775,12 @@ declare const ColorModeSync: ({
702
775
  darkMode
703
776
  }: {
704
777
  darkMode: boolean;
705
- }) => react_jsx_runtime0.JSX.Element;
778
+ }) => react_jsx_runtime3.JSX.Element;
706
779
  declare const VechainKitThemeProvider: ({
707
780
  children,
708
781
  darkMode,
709
782
  theme: customTheme
710
- }: Props$35) => react_jsx_runtime0.JSX.Element;
783
+ }: Props$35) => react_jsx_runtime3.JSX.Element;
711
784
  //#endregion
712
785
  //#region src/providers/LegalDocumentsProvider.d.ts
713
786
  type Props$34 = {
@@ -723,7 +796,7 @@ type LegalDocumentsContextType = {
723
796
  declare const useLegalDocuments: () => LegalDocumentsContextType;
724
797
  declare const LegalDocumentsProvider: ({
725
798
  children
726
- }: Props$34) => react_jsx_runtime0.JSX.Element;
799
+ }: Props$34) => react_jsx_runtime3.JSX.Element;
727
800
  //#endregion
728
801
  //#region src/components/ConnectModal/ConnectModal.d.ts
729
802
  type Props$33 = {
@@ -759,7 +832,7 @@ declare const ConnectModal: ({
759
832
  onClose,
760
833
  initialContent,
761
834
  preventAutoClose
762
- }: Props$33) => react_jsx_runtime0.JSX.Element;
835
+ }: Props$33) => react_jsx_runtime3.JSX.Element;
763
836
  //#endregion
764
837
  //#region src/components/ConnectModal/Contents/MainContent.d.ts
765
838
  type Props$32 = {
@@ -767,7 +840,7 @@ type Props$32 = {
767
840
  };
768
841
  declare const MainContent: ({
769
842
  setCurrentContent
770
- }: Props$32) => react_jsx_runtime0.JSX.Element;
843
+ }: Props$32) => react_jsx_runtime3.JSX.Element;
771
844
  //#endregion
772
845
  //#region src/components/ConnectModal/Contents/LoadingContent.d.ts
773
846
  type LoadingContentProps = {
@@ -785,7 +858,7 @@ declare const LoadingContent: ({
785
858
  onClose,
786
859
  onGoBack,
787
860
  showBackButton
788
- }: LoadingContentProps) => react_jsx_runtime0.JSX.Element;
861
+ }: LoadingContentProps) => react_jsx_runtime3.JSX.Element;
789
862
  //#endregion
790
863
  //#region src/components/ConnectModal/Contents/ErrorContent.d.ts
791
864
  type ErrorContentProps = {
@@ -799,7 +872,7 @@ declare const ErrorContent: ({
799
872
  onClose,
800
873
  onTryAgain,
801
874
  onGoBack
802
- }: ErrorContentProps) => react_jsx_runtime0.JSX.Element;
875
+ }: ErrorContentProps) => react_jsx_runtime3.JSX.Element;
803
876
  //#endregion
804
877
  //#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
805
878
  type Props$31 = {
@@ -815,7 +888,7 @@ declare const EcosystemContent: ({
815
888
  isLoading,
816
889
  setCurrentContent,
817
890
  showBackButton
818
- }: Props$31) => react_jsx_runtime0.JSX.Element;
891
+ }: Props$31) => react_jsx_runtime3.JSX.Element;
819
892
  //#endregion
820
893
  //#region src/components/ConnectModal/Components/ConnectionButton.d.ts
821
894
  interface ConnectionButtonProps {
@@ -838,10 +911,10 @@ declare const ConnectionButton: ({
838
911
  style,
839
912
  variant,
840
913
  iconWidth
841
- }: ConnectionButtonProps) => react_jsx_runtime0.JSX.Element | null;
914
+ }: ConnectionButtonProps) => react_jsx_runtime3.JSX.Element | null;
842
915
  //#endregion
843
916
  //#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
844
- declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
917
+ declare const EmailLoginButton: () => react_jsx_runtime3.JSX.Element;
845
918
  //#endregion
846
919
  //#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
847
920
  type Props$30 = {
@@ -853,7 +926,7 @@ declare const VeChainLoginButton: ({
853
926
  isDark,
854
927
  gridColumn,
855
928
  setCurrentContent
856
- }: Props$30) => react_jsx_runtime0.JSX.Element;
929
+ }: Props$30) => react_jsx_runtime3.JSX.Element;
857
930
  //#endregion
858
931
  //#region src/components/ConnectModal/Components/EcosystemButton.d.ts
859
932
  type Props$29 = {
@@ -867,7 +940,7 @@ declare const EcosystemButton: ({
867
940
  appsInfo,
868
941
  isLoading,
869
942
  setCurrentContent
870
- }: Props$29) => react_jsx_runtime0.JSX.Element;
943
+ }: Props$29) => react_jsx_runtime3.JSX.Element;
871
944
  //#endregion
872
945
  //#region src/components/ConnectModal/Components/PrivyButton.d.ts
873
946
  type Props$28 = {
@@ -879,7 +952,7 @@ declare const PrivyButton: ({
879
952
  isDark,
880
953
  onViewMoreLogin,
881
954
  gridColumn
882
- }: Props$28) => react_jsx_runtime0.JSX.Element;
955
+ }: Props$28) => react_jsx_runtime3.JSX.Element;
883
956
  //#endregion
884
957
  //#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
885
958
  type Props$27 = {
@@ -889,7 +962,7 @@ type Props$27 = {
889
962
  declare const LoginWithGoogleButton: ({
890
963
  isDark,
891
964
  gridColumn
892
- }: Props$27) => react_jsx_runtime0.JSX.Element;
965
+ }: Props$27) => react_jsx_runtime3.JSX.Element;
893
966
  //#endregion
894
967
  //#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
895
968
  type Props$26 = {
@@ -901,7 +974,7 @@ declare const PasskeyLoginButton: ({
901
974
  isDark,
902
975
  gridColumn,
903
976
  setCurrentContent
904
- }: Props$26) => react_jsx_runtime0.JSX.Element;
977
+ }: Props$26) => react_jsx_runtime3.JSX.Element;
905
978
  //#endregion
906
979
  //#region src/components/ConnectModal/Components/DappKitButton.d.ts
907
980
  type Props$25 = {
@@ -911,7 +984,7 @@ type Props$25 = {
911
984
  declare const DappKitButton: ({
912
985
  isDark,
913
986
  gridColumn
914
- }: Props$25) => react_jsx_runtime0.JSX.Element;
987
+ }: Props$25) => react_jsx_runtime3.JSX.Element;
915
988
  //#endregion
916
989
  //#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
917
990
  type Props$24 = {
@@ -921,7 +994,7 @@ type Props$24 = {
921
994
  declare const VeChainWithPrivyLoginButton: ({
922
995
  isDark,
923
996
  gridColumn
924
- }: Props$24) => react_jsx_runtime0.JSX.Element;
997
+ }: Props$24) => react_jsx_runtime3.JSX.Element;
925
998
  //#endregion
926
999
  //#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
927
1000
  type Props$23 = {
@@ -931,7 +1004,7 @@ type Props$23 = {
931
1004
  declare const LoginWithGithubButton: ({
932
1005
  isDark,
933
1006
  gridColumn
934
- }: Props$23) => react_jsx_runtime0.JSX.Element;
1007
+ }: Props$23) => react_jsx_runtime3.JSX.Element;
935
1008
  //#endregion
936
1009
  //#region src/components/ConnectModal/ConnectPopover.d.ts
937
1010
  type ConnectPopoverProps = {
@@ -941,7 +1014,7 @@ type ConnectPopoverProps = {
941
1014
  declare const ConnectPopover: ({
942
1015
  isLoading,
943
1016
  buttonStyle
944
- }: ConnectPopoverProps) => react_jsx_runtime0.JSX.Element;
1017
+ }: ConnectPopoverProps) => react_jsx_runtime3.JSX.Element;
945
1018
  //#endregion
946
1019
  //#region src/components/WalletButton/types.d.ts
947
1020
  type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
@@ -960,10 +1033,10 @@ declare const WalletButton: ({
960
1033
  buttonStyle,
961
1034
  connectionVariant,
962
1035
  label
963
- }: WalletButtonProps) => react_jsx_runtime0.JSX.Element;
1036
+ }: WalletButtonProps) => react_jsx_runtime3.JSX.Element;
964
1037
  //#endregion
965
1038
  //#region src/components/WalletButton/SocialIcons.d.ts
966
- declare const SocialIcons: () => react_jsx_runtime0.JSX.Element;
1039
+ declare const SocialIcons: () => react_jsx_runtime3.JSX.Element;
967
1040
  //#endregion
968
1041
  //#region src/components/TransactionModal/TransactionModal.d.ts
969
1042
  type TransactionModalProps = {
@@ -993,7 +1066,7 @@ declare const TransactionModal: ({
993
1066
  txReceipt,
994
1067
  txError,
995
1068
  onTryAgain
996
- }: TransactionModalProps) => react_jsx_runtime0.JSX.Element | null;
1069
+ }: TransactionModalProps) => react_jsx_runtime3.JSX.Element | null;
997
1070
  //#endregion
998
1071
  //#region src/components/TransactionModal/Components/ShareButtons.d.ts
999
1072
  type Props$22 = {
@@ -1003,7 +1076,7 @@ type Props$22 = {
1003
1076
  };
1004
1077
  declare const ShareButtons: ({
1005
1078
  description
1006
- }: Props$22) => react_jsx_runtime0.JSX.Element;
1079
+ }: Props$22) => react_jsx_runtime3.JSX.Element;
1007
1080
  //#endregion
1008
1081
  //#region src/components/TransactionModal/TransactionModalContent.d.ts
1009
1082
  declare const TransactionModalContent: ({
@@ -1013,7 +1086,7 @@ declare const TransactionModalContent: ({
1013
1086
  txReceipt,
1014
1087
  txError,
1015
1088
  onClose
1016
- }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime0.JSX.Element;
1089
+ }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime3.JSX.Element;
1017
1090
  //#endregion
1018
1091
  //#region src/components/TransactionToast/TransactionToast.d.ts
1019
1092
  type TransactionToastProps = {
@@ -1033,7 +1106,7 @@ declare const TransactionToast: ({
1033
1106
  txError,
1034
1107
  onTryAgain,
1035
1108
  description
1036
- }: TransactionToastProps) => react_jsx_runtime0.JSX.Element | null;
1109
+ }: TransactionToastProps) => react_jsx_runtime3.JSX.Element | null;
1037
1110
  //#endregion
1038
1111
  //#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
1039
1112
  type Props$21 = {
@@ -1049,12 +1122,12 @@ declare const AccountMainContent: ({
1049
1122
  wallet,
1050
1123
  onClose,
1051
1124
  switchFeedback
1052
- }: Props$21) => react_jsx_runtime0.JSX.Element;
1125
+ }: Props$21) => react_jsx_runtime3.JSX.Element;
1053
1126
  //#endregion
1054
1127
  //#region src/hooks/api/privy/useFetchAppInfo.d.ts
1055
1128
  declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
1056
1129
  declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
1057
- declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
1130
+ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query17.UseQueryResult<{
1058
1131
  [k: string]: {
1059
1132
  website: string | undefined;
1060
1133
  id: string;
@@ -1075,7 +1148,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
1075
1148
  //#endregion
1076
1149
  //#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
1077
1150
  declare const fetchPrivyStatus: () => Promise<string>;
1078
- declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
1151
+ declare const useFetchPrivyStatus: () => _tanstack_react_query17.UseQueryResult<string, Error>;
1079
1152
  //#endregion
1080
1153
  //#region src/hooks/api/vetDomains/useVechainDomain.d.ts
1081
1154
  interface VeChainDomainResult {
@@ -1085,11 +1158,11 @@ interface VeChainDomainResult {
1085
1158
  isPrimaryDomain: boolean;
1086
1159
  }
1087
1160
  declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
1088
- declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
1161
+ declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query17.UseQueryResult<VeChainDomainResult, Error>;
1089
1162
  //#endregion
1090
1163
  //#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
1091
1164
  declare const getEnsRecordExistsQueryKey: (name: string) => string[];
1092
- declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1165
+ declare const useEnsRecordExists: (name: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
1093
1166
  //#endregion
1094
1167
  //#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
1095
1168
  type useClaimVeWorldSubdomainProps = {
@@ -1151,7 +1224,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
1151
1224
  * @param {boolean} [enabled=true] - Flag to enable or disable the hook.
1152
1225
  * @returns The result of the useQuery hook, with the protection status.
1153
1226
  */
1154
- declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1227
+ declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
1155
1228
  //#endregion
1156
1229
  //#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
1157
1230
  declare const DomainSchema: z.ZodObject<{
@@ -1179,7 +1252,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
1179
1252
  * @param parentDomain The parent domain (e.g., "veworld.vet")
1180
1253
  * @returns The domains owned by the address
1181
1254
  */
1182
- declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
1255
+ declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query17.UseQueryResult<{
1183
1256
  domains: {
1184
1257
  name: string;
1185
1258
  }[];
@@ -1192,7 +1265,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
1192
1265
  * @param name - The VET domain name
1193
1266
  * @returns The resolved avatar URL
1194
1267
  */
1195
- declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1268
+ declare const useGetAvatar: (name: string) => _tanstack_react_query17.UseQueryResult<string | null, Error>;
1196
1269
  //#endregion
1197
1270
  //#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
1198
1271
  /**
@@ -1204,7 +1277,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryRes
1204
1277
  */
1205
1278
  declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
1206
1279
  declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
1207
- declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
1280
+ declare const useGetTextRecords: (domain?: string) => _tanstack_react_query17.UseQueryResult<TextRecords, Error>;
1208
1281
  //#endregion
1209
1282
  //#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
1210
1283
  type UpdateTextRecordVariables = {
@@ -1237,7 +1310,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
1237
1310
  * @param domain The domain to get resolver for
1238
1311
  * @returns The resolver address for the domain
1239
1312
  */
1240
- declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
1313
+ declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query17.UseQueryResult<`0x${string}`, unknown>;
1241
1314
  //#endregion
1242
1315
  //#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
1243
1316
  declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
@@ -1247,7 +1320,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
1247
1320
  * @param address The owner's address
1248
1321
  * @returns The avatar URL for the address's primary domain
1249
1322
  */
1250
- declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
1323
+ declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query17.UseQueryResult<string, Error>;
1251
1324
  //#endregion
1252
1325
  //#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
1253
1326
  /**
@@ -1264,7 +1337,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
1264
1337
  * @param name - The VET domain name
1265
1338
  * @returns The resolved avatar URL
1266
1339
  */
1267
- declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1340
+ declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query17.UseQueryResult<string | null, Error>;
1268
1341
  //#endregion
1269
1342
  //#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
1270
1343
  type useUnsetDomainProps = {
@@ -1373,7 +1446,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
1373
1446
  * Hook to get the current roundId of allocations voting
1374
1447
  * @returns the current roundId of allocations voting
1375
1448
  */
1376
- declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
1449
+ declare const useCurrentAllocationsRoundId: () => _tanstack_react_query17.UseQueryResult<string, unknown>;
1377
1450
  //#endregion
1378
1451
  //#region src/hooks/api/wallet/useCustomTokens.d.ts
1379
1452
  declare const useCustomTokens: () => {
@@ -1386,7 +1459,7 @@ declare const useCustomTokens: () => {
1386
1459
  //#endregion
1387
1460
  //#region src/hooks/api/wallet/useGetB3trBalance.d.ts
1388
1461
  declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
1389
- declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1462
+ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1390
1463
  original: string;
1391
1464
  scaled: string;
1392
1465
  formatted: string;
@@ -1395,7 +1468,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.Us
1395
1468
  //#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
1396
1469
  type TokenWithBalance = CustomTokenInfo & TokenBalance;
1397
1470
  declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string, decimals?: number) => (string | number | undefined)[];
1398
- declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1471
+ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1399
1472
  original: string;
1400
1473
  scaled: string;
1401
1474
  formatted: string;
@@ -1408,14 +1481,14 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
1408
1481
  //#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
1409
1482
  declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1410
1483
  declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
1411
- declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
1484
+ declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query17.UseQueryResult<CustomTokenInfo, Error>;
1412
1485
  //#endregion
1413
1486
  //#region src/hooks/api/wallet/useGetErc20Balance.d.ts
1414
1487
  declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
1415
1488
  type UseGetErc20BalanceOptions = {
1416
1489
  enabled?: boolean;
1417
1490
  };
1418
- declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query8.UseQueryResult<{
1491
+ declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query17.UseQueryResult<{
1419
1492
  original: string;
1420
1493
  scaled: string;
1421
1494
  formatted: string;
@@ -1432,11 +1505,11 @@ declare const PRICE_FEED_IDS: {
1432
1505
  type SupportedToken = keyof typeof PRICE_FEED_IDS;
1433
1506
  declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
1434
1507
  declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
1435
- declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
1508
+ declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query17.UseQueryResult<number, Error>;
1436
1509
  //#endregion
1437
1510
  //#region src/hooks/api/wallet/useGetVot3Balance.d.ts
1438
1511
  declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
1439
- declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1512
+ declare const useGetVot3Balance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1440
1513
  original: string;
1441
1514
  scaled: string;
1442
1515
  formatted: string;
@@ -1455,7 +1528,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
1455
1528
  * @param user - The user address.
1456
1529
  * @returns The isPerson status.
1457
1530
  */
1458
- declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1531
+ declare const useIsPerson: (user?: string | null) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
1459
1532
  //#endregion
1460
1533
  //#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
1461
1534
  type XApp = {
@@ -1493,7 +1566,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
1493
1566
  //#endregion
1494
1567
  //#region src/hooks/api/wallet/useRoundXApps.d.ts
1495
1568
  declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
1496
- declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1569
+ declare const useRoundXApps: (roundId?: string) => _tanstack_react_query17.UseQueryResult<{
1497
1570
  id: string;
1498
1571
  teamWalletAddress: `0x${string}`;
1499
1572
  name: string;
@@ -1607,7 +1680,7 @@ type XAppMetadata = {
1607
1680
  * @returns The metadata of the xApp see {@link XAppMetadata}
1608
1681
  */
1609
1682
  declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
1610
- declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
1683
+ declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query17.UseQueryResult<XAppMetadata | undefined, Error>;
1611
1684
  //#endregion
1612
1685
  //#region src/hooks/api/wallet/useXAppShares.d.ts
1613
1686
  /**
@@ -1622,7 +1695,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
1622
1695
  * @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
1623
1696
  *
1624
1697
  */
1625
- declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1698
+ declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query17.UseQueryResult<{
1626
1699
  app: string;
1627
1700
  share: number;
1628
1701
  unallocatedShare: number;
@@ -1644,7 +1717,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
1644
1717
  * @param ipfsUri - The IPFS URI
1645
1718
  * @returns The metadata from IPFS
1646
1719
  */
1647
- declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
1720
+ declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<T$1>, Error>;
1648
1721
  //#endregion
1649
1722
  //#region src/hooks/api/ipfs/useIpfsImage.d.ts
1650
1723
  interface IpfsImage {
@@ -1671,14 +1744,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
1671
1744
  * @param imageIpfsUri - The IPFS URI of the NFT media
1672
1745
  * @returns The NFT media
1673
1746
  */
1674
- declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
1747
+ declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query17.UseQueryResult<IpfsImage, Error>;
1675
1748
  /**
1676
1749
  * Custom hook to fetch a list of IPFS images.
1677
1750
  *
1678
1751
  * @param imageIpfsUriList - An array of IPFS URIs for the images.
1679
1752
  * @returns An array of queries for each IPFS image URI.
1680
1753
  */
1681
- declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
1754
+ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query17.UseQueryResult<IpfsImage, Error>[];
1682
1755
  //#endregion
1683
1756
  //#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
1684
1757
  /**
@@ -1686,7 +1759,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
1686
1759
  * @param ipfsUris - The IPFS URIs
1687
1760
  * @returns The metadata from IPFS for each URI
1688
1761
  */
1689
- declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
1762
+ declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query17.UseQueryResult<T$1, Error>[];
1690
1763
  //#endregion
1691
1764
  //#region src/hooks/api/ipfs/useUploadImages.d.ts
1692
1765
  declare const imageCompressionOptions: Options;
@@ -1905,7 +1978,7 @@ declare const ConnectModalProvider: ({
1905
1978
  children
1906
1979
  }: {
1907
1980
  children: ReactNode;
1908
- }) => react_jsx_runtime0.JSX.Element;
1981
+ }) => react_jsx_runtime3.JSX.Element;
1909
1982
  //#endregion
1910
1983
  //#region src/hooks/modals/useAccountModal.d.ts
1911
1984
  declare const useAccountModal: () => {
@@ -1917,7 +1990,7 @@ declare const AccountModalProvider: ({
1917
1990
  children
1918
1991
  }: {
1919
1992
  children: ReactNode;
1920
- }) => react_jsx_runtime0.JSX.Element;
1993
+ }) => react_jsx_runtime3.JSX.Element;
1921
1994
  //#endregion
1922
1995
  //#region src/hooks/modals/useTransactionModal.d.ts
1923
1996
  declare const useTransactionModal: () => {
@@ -1929,7 +2002,7 @@ declare const TransactionModalProvider: ({
1929
2002
  children
1930
2003
  }: {
1931
2004
  children: ReactNode;
1932
- }) => react_jsx_runtime0.JSX.Element;
2005
+ }) => react_jsx_runtime3.JSX.Element;
1933
2006
  //#endregion
1934
2007
  //#region src/hooks/modals/useTransactionToast.d.ts
1935
2008
  declare const useTransactionToast: () => {
@@ -1941,7 +2014,7 @@ declare const TransactionToastProvider: ({
1941
2014
  children
1942
2015
  }: {
1943
2016
  children: ReactNode;
1944
- }) => react_jsx_runtime0.JSX.Element;
2017
+ }) => react_jsx_runtime3.JSX.Element;
1945
2018
  //#endregion
1946
2019
  //#region src/hooks/modals/useWalletModal.d.ts
1947
2020
  declare const useWalletModal: () => {
@@ -1953,7 +2026,7 @@ declare const WalletModalProvider: ({
1953
2026
  children
1954
2027
  }: {
1955
2028
  children: ReactNode;
1956
- }) => react_jsx_runtime0.JSX.Element;
2029
+ }) => react_jsx_runtime3.JSX.Element;
1957
2030
  //#endregion
1958
2031
  //#region src/hooks/modals/useChooseNameModal.d.ts
1959
2032
  declare const useChooseNameModal: () => {
@@ -1965,7 +2038,7 @@ declare const ChooseNameModalProvider: ({
1965
2038
  children
1966
2039
  }: {
1967
2040
  children: ReactNode;
1968
- }) => react_jsx_runtime0.JSX.Element;
2041
+ }) => react_jsx_runtime3.JSX.Element;
1969
2042
  //#endregion
1970
2043
  //#region src/hooks/modals/useSendTokenModal.d.ts
1971
2044
  declare const useSendTokenModal: () => {
@@ -1977,7 +2050,7 @@ declare const SendTokenModalProvider: ({
1977
2050
  children
1978
2051
  }: {
1979
2052
  children: ReactNode;
1980
- }) => react_jsx_runtime0.JSX.Element;
2053
+ }) => react_jsx_runtime3.JSX.Element;
1981
2054
  //#endregion
1982
2055
  //#region src/hooks/modals/useSwapTokenModal.d.ts
1983
2056
  type SwapTokenModalOptions = {
@@ -1994,7 +2067,7 @@ declare const SwapTokenModalProvider: ({
1994
2067
  children
1995
2068
  }: {
1996
2069
  children: ReactNode;
1997
- }) => react_jsx_runtime0.JSX.Element;
2070
+ }) => react_jsx_runtime3.JSX.Element;
1998
2071
  //#endregion
1999
2072
  //#region src/hooks/modals/useExploreEcosystemModal.d.ts
2000
2073
  declare const useExploreEcosystemModal: () => {
@@ -2006,7 +2079,7 @@ declare const ExploreEcosystemModalProvider: ({
2006
2079
  children
2007
2080
  }: {
2008
2081
  children: ReactNode;
2009
- }) => react_jsx_runtime0.JSX.Element;
2082
+ }) => react_jsx_runtime3.JSX.Element;
2010
2083
  //#endregion
2011
2084
  //#region src/hooks/modals/useNotificationsModal.d.ts
2012
2085
  declare const useNotificationsModal: () => {
@@ -2018,7 +2091,7 @@ declare const NotificationsModalProvider: ({
2018
2091
  children
2019
2092
  }: {
2020
2093
  children: ReactNode;
2021
- }) => react_jsx_runtime0.JSX.Element;
2094
+ }) => react_jsx_runtime3.JSX.Element;
2022
2095
  //#endregion
2023
2096
  //#region src/hooks/modals/useFAQModal.d.ts
2024
2097
  declare const useFAQModal: () => {
@@ -2030,7 +2103,7 @@ declare const FAQModalProvider: ({
2030
2103
  children
2031
2104
  }: {
2032
2105
  children: ReactNode;
2033
- }) => react_jsx_runtime0.JSX.Element;
2106
+ }) => react_jsx_runtime3.JSX.Element;
2034
2107
  //#endregion
2035
2108
  //#region src/hooks/modals/useAccountCustomizationModal.d.ts
2036
2109
  declare const useAccountCustomizationModal: () => {
@@ -2042,7 +2115,7 @@ declare const AccountCustomizationModalProvider: ({
2042
2115
  children
2043
2116
  }: {
2044
2117
  children: ReactNode;
2045
- }) => react_jsx_runtime0.JSX.Element;
2118
+ }) => react_jsx_runtime3.JSX.Element;
2046
2119
  //#endregion
2047
2120
  //#region src/hooks/modals/useReceiveModal.d.ts
2048
2121
  declare const useReceiveModal: () => {
@@ -2054,7 +2127,7 @@ declare const ReceiveModalProvider: ({
2054
2127
  children
2055
2128
  }: {
2056
2129
  children: ReactNode;
2057
- }) => react_jsx_runtime0.JSX.Element;
2130
+ }) => react_jsx_runtime3.JSX.Element;
2058
2131
  //#endregion
2059
2132
  //#region src/hooks/modals/useLoginModalContent.d.ts
2060
2133
  type LoginModalContentConfig = {
@@ -2080,7 +2153,7 @@ declare const UpgradeSmartAccountModalProvider: ({
2080
2153
  children
2081
2154
  }: {
2082
2155
  children: ReactNode;
2083
- }) => react_jsx_runtime0.JSX.Element;
2156
+ }) => react_jsx_runtime3.JSX.Element;
2084
2157
  //#endregion
2085
2158
  //#region src/hooks/modals/useProfileModal.d.ts
2086
2159
  declare const useProfileModal: () => {
@@ -2092,7 +2165,7 @@ declare const ProfileModalProvider: ({
2092
2165
  children
2093
2166
  }: {
2094
2167
  children: ReactNode;
2095
- }) => react_jsx_runtime0.JSX.Element;
2168
+ }) => react_jsx_runtime3.JSX.Element;
2096
2169
  //#endregion
2097
2170
  //#region src/hooks/modals/useAccountModalOptions.d.ts
2098
2171
  declare const useAccountModalOptions: () => {
@@ -2110,7 +2183,7 @@ declare const SettingsModalProvider: ({
2110
2183
  children
2111
2184
  }: {
2112
2185
  children: ReactNode;
2113
- }) => react_jsx_runtime0.JSX.Element;
2186
+ }) => react_jsx_runtime3.JSX.Element;
2114
2187
  //#endregion
2115
2188
  //#region src/hooks/notifications/types.d.ts
2116
2189
  type NotificationAction = {
@@ -2240,7 +2313,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
2240
2313
  * );
2241
2314
  * ```
2242
2315
  */
2243
- declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
2316
+ declare const useAppHubApps: () => _tanstack_react_query17.UseQueryResult<AppHubApp[], Error>;
2244
2317
  //#endregion
2245
2318
  //#region src/utils/constants.d.ts
2246
2319
  /** Tokens that cannot be swapped or transferred (e.g. governance voting tokens) */
@@ -2595,7 +2668,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
2595
2668
  method: TMethod;
2596
2669
  args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
2597
2670
  queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
2598
- }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
2671
+ }) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<TData>, unknown>;
2599
2672
  declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
2600
2673
  thor,
2601
2674
  calls,
@@ -2606,7 +2679,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
2606
2679
  calls: MultipleClausesCallParameters<contracts, allowFailure>;
2607
2680
  queryKey: string[];
2608
2681
  enabled?: boolean;
2609
- }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
2682
+ }) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
2610
2683
  //#endregion
2611
2684
  //#region src/hooks/utils/useCurrency.d.ts
2612
2685
  /**
@@ -2730,7 +2803,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
2730
2803
  filterParams,
2731
2804
  mapResponse,
2732
2805
  nodeUrl
2733
- }: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
2806
+ }: UseEventsParams<T$1, K, R>) => _tanstack_react_query17.UseQueryResult<R[], Error>;
2734
2807
  //#endregion
2735
2808
  //#region src/hooks/utils/useBuildClauses.d.ts
2736
2809
  interface BuildClausesParams {
@@ -2882,7 +2955,7 @@ declare const useGenericDelegatorFeeEstimation: ({
2882
2955
  tokens,
2883
2956
  sendingAmount,
2884
2957
  sendingTokenSymbol
2885
- }: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
2958
+ }: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query17.UseQueryResult<EstimationResponse & {
2886
2959
  usedToken: string;
2887
2960
  }, Error>;
2888
2961
  //#endregion
@@ -2896,7 +2969,7 @@ declare const useEstimateAllTokens: ({
2896
2969
  clauses,
2897
2970
  tokens,
2898
2971
  enabled
2899
- }: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
2972
+ }: UseEstimateAllTokensParams) => _tanstack_react_query17.UseQueryResult<Record<GasTokenType, {
2900
2973
  cost: number;
2901
2974
  loading: boolean;
2902
2975
  error?: string;
@@ -2913,7 +2986,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
2913
2986
  * @param address The address of the account to get the balance for
2914
2987
  * @returns The account balance
2915
2988
  */
2916
- declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
2989
+ declare const useAccountBalance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
2917
2990
  balance: string;
2918
2991
  energy: string;
2919
2992
  }, Error>;
@@ -2926,7 +2999,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
2926
2999
  * @param version - The version of the smart account implementation
2927
3000
  * @returns The address of the smart account implementation
2928
3001
  */
2929
- declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
3002
+ declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query17.UseQueryResult<string, Error>;
2930
3003
  //#endregion
2931
3004
  //#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
2932
3005
  declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
@@ -2935,7 +3008,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
2935
3008
  * Get the current account implementation version used by the smart account factory
2936
3009
  * @returns The current account implementation version
2937
3010
  */
2938
- declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
3011
+ declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query17.UseQueryResult<number, Error>;
2939
3012
  //#endregion
2940
3013
  //#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
2941
3014
  declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
@@ -2945,7 +3018,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
2945
3018
  * @param ownerAddress - The address of the owner of the smart account
2946
3019
  * @returns The address of the smart account
2947
3020
  */
2948
- declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
3021
+ declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<string, Error>;
2949
3022
  //#endregion
2950
3023
  //#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
2951
3024
  declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
@@ -2955,7 +3028,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
2955
3028
  * @param ownerAddress - The address of the owner of the smart account
2956
3029
  * @returns The version of the smart account
2957
3030
  */
2958
- declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
3031
+ declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query17.UseQueryResult<{
2959
3032
  version: number;
2960
3033
  isDeployed: boolean;
2961
3034
  }, unknown>;
@@ -2968,7 +3041,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
2968
3041
  * @param ownerAddress - The address of the owner of the smart account
2969
3042
  * @returns True if the smart account has a v1 smart account, false otherwise
2970
3043
  */
2971
- declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3044
+ declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2972
3045
  //#endregion
2973
3046
  //#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
2974
3047
  declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
@@ -2977,7 +3050,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
2977
3050
  * Check if a smart account is deployed
2978
3051
  * @returns True if the smart account is deployed, false otherwise
2979
3052
  */
2980
- declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3053
+ declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2981
3054
  //#endregion
2982
3055
  //#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
2983
3056
  /**
@@ -3010,7 +3083,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
3010
3083
  isDeployed: boolean;
3011
3084
  }>;
3012
3085
  declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
3013
- declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
3086
+ declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<{
3014
3087
  address: undefined;
3015
3088
  isDeployed?: undefined;
3016
3089
  } | {
@@ -3028,7 +3101,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
3028
3101
  * @param targetVersion - The version of the smart account to check for
3029
3102
  * @returns True if the smart account needs an upgrade, false otherwise
3030
3103
  */
3031
- declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3104
+ declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
3032
3105
  //#endregion
3033
3106
  //#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
3034
3107
  declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
@@ -3039,7 +3112,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
3039
3112
  * @param targetVersion - The target version of the smart account
3040
3113
  * @returns True if the smart account needs an upgrade, false otherwise
3041
3114
  */
3042
- declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3115
+ declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
3043
3116
  //#endregion
3044
3117
  //#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
3045
3118
  type UseUpgradeSmartAccountVersionProps = {
@@ -3064,7 +3137,7 @@ declare const currentBlockQueryKey: () => string[];
3064
3137
  * Fetches the current block from the blockchain. The block is refetched every 10 seconds.
3065
3138
  * @returns the current block
3066
3139
  */
3067
- declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
3140
+ declare const useCurrentBlock: () => _tanstack_react_query17.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
3068
3141
  //#endregion
3069
3142
  //#region src/hooks/thor/blocks/useGetChainId.d.ts
3070
3143
  declare const getChainId: (thor: ThorClient) => Promise<string>;
@@ -3073,7 +3146,7 @@ declare const getChainIdQueryKey: () => string[];
3073
3146
  * Get the chain id
3074
3147
  * @returns The chain id
3075
3148
  */
3076
- declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
3149
+ declare const useGetChainId: () => _tanstack_react_query17.UseQueryResult<string, Error>;
3077
3150
  //#endregion
3078
3151
  //#region src/hooks/thor/logs/logUtils.d.ts
3079
3152
  /**
@@ -3328,7 +3401,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
3328
3401
  * @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
3329
3402
  * @returns Query result containing the transaction receipt
3330
3403
  */
3331
- declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3404
+ declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query17.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3332
3405
  //#endregion
3333
3406
  //#region src/hooks/thor/transactions/useGasEstimate.d.ts
3334
3407
  declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
@@ -3366,7 +3439,7 @@ declare const SendTokenContent: ({
3366
3439
  initialAmount,
3367
3440
  initialToAddressOrDomain,
3368
3441
  onBack: parentOnBack
3369
- }: SendTokenContentProps) => react_jsx_runtime0.JSX.Element;
3442
+ }: SendTokenContentProps) => react_jsx_runtime3.JSX.Element;
3370
3443
  //#endregion
3371
3444
  //#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
3372
3445
  type SendTokenSummaryContentProps = {
@@ -3386,7 +3459,7 @@ declare const SendTokenSummaryContent: ({
3386
3459
  amount,
3387
3460
  selectedToken,
3388
3461
  formattedTotalAmount
3389
- }: SendTokenSummaryContentProps) => react_jsx_runtime0.JSX.Element;
3462
+ }: SendTokenSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3390
3463
  //#endregion
3391
3464
  //#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
3392
3465
  type Props$18 = {
@@ -3407,7 +3480,7 @@ declare const SelectTokenContent: ({
3407
3480
  onBack,
3408
3481
  showAllTokens,
3409
3482
  excludedTokenSymbols
3410
- }: Props$18) => react_jsx_runtime0.JSX.Element;
3483
+ }: Props$18) => react_jsx_runtime3.JSX.Element;
3411
3484
  //#endregion
3412
3485
  //#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
3413
3486
  type Props$17 = {
@@ -3415,7 +3488,7 @@ type Props$17 = {
3415
3488
  };
3416
3489
  declare const ReceiveTokenContent: ({
3417
3490
  setCurrentContent
3418
- }: Props$17) => react_jsx_runtime0.JSX.Element;
3491
+ }: Props$17) => react_jsx_runtime3.JSX.Element;
3419
3492
  //#endregion
3420
3493
  //#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
3421
3494
  type Props$16 = {
@@ -3427,7 +3500,7 @@ declare const SwapTokenContent: ({
3427
3500
  setCurrentContent,
3428
3501
  fromTokenAddress,
3429
3502
  toTokenAddress
3430
- }: Props$16) => react_jsx_runtime0.JSX.Element;
3503
+ }: Props$16) => react_jsx_runtime3.JSX.Element;
3431
3504
  //#endregion
3432
3505
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
3433
3506
  type ChooseNameContentProps = {
@@ -3439,7 +3512,7 @@ declare const ChooseNameContent: ({
3439
3512
  setCurrentContent,
3440
3513
  onBack,
3441
3514
  initialContentSource
3442
- }: ChooseNameContentProps) => react_jsx_runtime0.JSX.Element;
3515
+ }: ChooseNameContentProps) => react_jsx_runtime3.JSX.Element;
3443
3516
  //#endregion
3444
3517
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
3445
3518
  type ChooseNameSearchContentProps = {
@@ -3451,7 +3524,7 @@ declare const ChooseNameSearchContent: ({
3451
3524
  name: initialName,
3452
3525
  setCurrentContent,
3453
3526
  initialContentSource
3454
- }: ChooseNameSearchContentProps) => react_jsx_runtime0.JSX.Element;
3527
+ }: ChooseNameSearchContentProps) => react_jsx_runtime3.JSX.Element;
3455
3528
  //#endregion
3456
3529
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
3457
3530
  type ChooseNameSummaryContentProps = {
@@ -3469,7 +3542,7 @@ declare const ChooseNameSummaryContent: ({
3469
3542
  isOwnDomain,
3470
3543
  isUnsetting,
3471
3544
  initialContentSource
3472
- }: ChooseNameSummaryContentProps) => react_jsx_runtime0.JSX.Element;
3545
+ }: ChooseNameSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3473
3546
  //#endregion
3474
3547
  //#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
3475
3548
  type FAQContentProps = {
@@ -3479,7 +3552,7 @@ type FAQContentProps = {
3479
3552
  declare const FAQContent: ({
3480
3553
  onGoBack,
3481
3554
  showLanguageSelector
3482
- }: FAQContentProps) => react_jsx_runtime0.JSX.Element;
3555
+ }: FAQContentProps) => react_jsx_runtime3.JSX.Element;
3483
3556
  //#endregion
3484
3557
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
3485
3558
  type AccountCustomizationContentProps = {
@@ -3489,7 +3562,7 @@ type AccountCustomizationContentProps = {
3489
3562
  declare const CustomizationContent: ({
3490
3563
  setCurrentContent,
3491
3564
  initialContentSource
3492
- }: AccountCustomizationContentProps) => react_jsx_runtime0.JSX.Element;
3565
+ }: AccountCustomizationContentProps) => react_jsx_runtime3.JSX.Element;
3493
3566
  //#endregion
3494
3567
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
3495
3568
  type CustomizationSummaryContentProps = {
@@ -3508,7 +3581,7 @@ declare const CustomizationSummaryContent: ({
3508
3581
  setCurrentContent,
3509
3582
  changes,
3510
3583
  onDoneRedirectContent
3511
- }: CustomizationSummaryContentProps) => react_jsx_runtime0.JSX.Element;
3584
+ }: CustomizationSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3512
3585
  //#endregion
3513
3586
  //#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
3514
3587
  type ProfileContentProps = {
@@ -3522,7 +3595,7 @@ declare const ProfileContent: ({
3522
3595
  setCurrentContent,
3523
3596
  onLogoutSuccess,
3524
3597
  switchFeedback
3525
- }: ProfileContentProps) => react_jsx_runtime0.JSX.Element;
3598
+ }: ProfileContentProps) => react_jsx_runtime3.JSX.Element;
3526
3599
  //#endregion
3527
3600
  //#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
3528
3601
  type UpgradeSmartAccountContentProps = {
@@ -3534,7 +3607,7 @@ declare const UpgradeSmartAccountContent: ({
3534
3607
  setCurrentContent,
3535
3608
  handleClose,
3536
3609
  initialContent
3537
- }: UpgradeSmartAccountContentProps) => react_jsx_runtime0.JSX.Element;
3610
+ }: UpgradeSmartAccountContentProps) => react_jsx_runtime3.JSX.Element;
3538
3611
  //#endregion
3539
3612
  //#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
3540
3613
  type AssetsContentProps = {
@@ -3542,7 +3615,7 @@ type AssetsContentProps = {
3542
3615
  };
3543
3616
  declare const AssetsContent: ({
3544
3617
  setCurrentContent
3545
- }: AssetsContentProps) => react_jsx_runtime0.JSX.Element;
3618
+ }: AssetsContentProps) => react_jsx_runtime3.JSX.Element;
3546
3619
  //#endregion
3547
3620
  //#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
3548
3621
  type ManageCustomTokenContentProps = {
@@ -3550,7 +3623,7 @@ type ManageCustomTokenContentProps = {
3550
3623
  };
3551
3624
  declare const ManageCustomTokenContent: ({
3552
3625
  setCurrentContent
3553
- }: ManageCustomTokenContentProps) => react_jsx_runtime0.JSX.Element;
3626
+ }: ManageCustomTokenContentProps) => react_jsx_runtime3.JSX.Element;
3554
3627
  //#endregion
3555
3628
  //#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
3556
3629
  type Props$15 = {
@@ -3558,7 +3631,7 @@ type Props$15 = {
3558
3631
  };
3559
3632
  declare const BridgeContent: ({
3560
3633
  setCurrentContent
3561
- }: Props$15) => react_jsx_runtime0.JSX.Element;
3634
+ }: Props$15) => react_jsx_runtime3.JSX.Element;
3562
3635
  //#endregion
3563
3636
  //#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
3564
3637
  type ChangeCurrencyContentProps = {
@@ -3566,7 +3639,7 @@ type ChangeCurrencyContentProps = {
3566
3639
  };
3567
3640
  declare const ChangeCurrencyContent: ({
3568
3641
  setCurrentContent
3569
- }: ChangeCurrencyContentProps) => react_jsx_runtime0.JSX.Element;
3642
+ }: ChangeCurrencyContentProps) => react_jsx_runtime3.JSX.Element;
3570
3643
  //#endregion
3571
3644
  //#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
3572
3645
  type Props$14 = {
@@ -3574,7 +3647,7 @@ type Props$14 = {
3574
3647
  };
3575
3648
  declare const LanguageSettingsContent: ({
3576
3649
  setCurrentContent
3577
- }: Props$14) => react_jsx_runtime0.JSX.Element;
3650
+ }: Props$14) => react_jsx_runtime3.JSX.Element;
3578
3651
  //#endregion
3579
3652
  //#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
3580
3653
  type Props$13 = {
@@ -3582,7 +3655,7 @@ type Props$13 = {
3582
3655
  };
3583
3656
  declare const GasTokenSettingsContent: ({
3584
3657
  setCurrentContent
3585
- }: Props$13) => react_jsx_runtime0.JSX.Element;
3658
+ }: Props$13) => react_jsx_runtime3.JSX.Element;
3586
3659
  //#endregion
3587
3660
  //#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
3588
3661
  type SettingsContentProps = {
@@ -3592,7 +3665,7 @@ type SettingsContentProps = {
3592
3665
  declare const SettingsContent: ({
3593
3666
  setCurrentContent,
3594
3667
  onLogoutSuccess
3595
- }: SettingsContentProps) => react_jsx_runtime0.JSX.Element;
3668
+ }: SettingsContentProps) => react_jsx_runtime3.JSX.Element;
3596
3669
  //#endregion
3597
3670
  //#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
3598
3671
  type TermsAndPrivacyContentProps = {
@@ -3600,7 +3673,7 @@ type TermsAndPrivacyContentProps = {
3600
3673
  };
3601
3674
  declare const TermsAndPrivacyContent: ({
3602
3675
  onGoBack
3603
- }: TermsAndPrivacyContentProps) => react_jsx_runtime0.JSX.Element;
3676
+ }: TermsAndPrivacyContentProps) => react_jsx_runtime3.JSX.Element;
3604
3677
  //#endregion
3605
3678
  //#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
3606
3679
  type DisconnectConfirmContentProps = {
@@ -3616,7 +3689,7 @@ declare const DisconnectConfirmContent: ({
3616
3689
  onClose,
3617
3690
  showCloseButton,
3618
3691
  text
3619
- }: DisconnectConfirmContentProps) => react_jsx_runtime0.JSX.Element;
3692
+ }: DisconnectConfirmContentProps) => react_jsx_runtime3.JSX.Element;
3620
3693
  //#endregion
3621
3694
  //#region src/components/AccountModal/Contents/SelectWallet/SelectWalletContent.d.ts
3622
3695
  type Props$12 = {
@@ -3629,7 +3702,7 @@ declare const SelectWalletContent: ({
3629
3702
  setCurrentContent,
3630
3703
  returnTo,
3631
3704
  onLogoutSuccess: _onLogoutSuccess
3632
- }: Props$12) => react_jsx_runtime0.JSX.Element;
3705
+ }: Props$12) => react_jsx_runtime3.JSX.Element;
3633
3706
  //#endregion
3634
3707
  //#region src/components/AccountModal/Contents/SelectWallet/RemoveWalletConfirmContent.d.ts
3635
3708
  type RemoveWalletConfirmContentProps = {
@@ -3645,7 +3718,7 @@ declare const RemoveWalletConfirmContent: ({
3645
3718
  onConfirm,
3646
3719
  onBack,
3647
3720
  onClose
3648
- }: RemoveWalletConfirmContentProps) => react_jsx_runtime0.JSX.Element;
3721
+ }: RemoveWalletConfirmContentProps) => react_jsx_runtime3.JSX.Element;
3649
3722
  //#endregion
3650
3723
  //#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
3651
3724
  type CategoryFilter = string | null;
@@ -3773,7 +3846,7 @@ declare const AccountModal: ({
3773
3846
  isOpen,
3774
3847
  onClose,
3775
3848
  initialContent
3776
- }: Props$11) => react_jsx_runtime0.JSX.Element;
3849
+ }: Props$11) => react_jsx_runtime3.JSX.Element;
3777
3850
  //#endregion
3778
3851
  //#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
3779
3852
  interface AccountDetailsButtonProps {
@@ -3795,7 +3868,7 @@ declare const AccountDetailsButton: ({
3795
3868
  onClick,
3796
3869
  leftImage,
3797
3870
  isActive
3798
- }: AccountDetailsButtonProps) => react_jsx_runtime0.JSX.Element;
3871
+ }: AccountDetailsButtonProps) => react_jsx_runtime3.JSX.Element;
3799
3872
  //#endregion
3800
3873
  //#region src/components/AccountModal/Components/ActionButton.d.ts
3801
3874
  type ActionButtonProps = {
@@ -3837,7 +3910,7 @@ declare const ActionButton: ({
3837
3910
  extraContent,
3838
3911
  dataTestId,
3839
3912
  variant
3840
- }: ActionButtonProps) => react_jsx_runtime0.JSX.Element;
3913
+ }: ActionButtonProps) => react_jsx_runtime3.JSX.Element;
3841
3914
  //#endregion
3842
3915
  //#region src/components/AccountModal/Components/AccountSelector.d.ts
3843
3916
  type Props$10 = {
@@ -3857,7 +3930,7 @@ declare const AccountSelector: ({
3857
3930
  onClose,
3858
3931
  mt,
3859
3932
  style
3860
- }: Props$10) => react_jsx_runtime0.JSX.Element;
3933
+ }: Props$10) => react_jsx_runtime3.JSX.Element;
3861
3934
  //#endregion
3862
3935
  //#region src/components/AccountModal/Components/BalanceSection.d.ts
3863
3936
  declare const BalanceSection: ({
@@ -3868,7 +3941,7 @@ declare const BalanceSection: ({
3868
3941
  mb?: number;
3869
3942
  mt?: number;
3870
3943
  onAssetsClick?: () => void;
3871
- }) => react_jsx_runtime0.JSX.Element;
3944
+ }) => react_jsx_runtime3.JSX.Element;
3872
3945
  //#endregion
3873
3946
  //#region src/components/AccountModal/Components/QuickActionsSection.d.ts
3874
3947
  type Props$9 = {
@@ -3878,7 +3951,7 @@ type Props$9 = {
3878
3951
  declare const QuickActionsSection: ({
3879
3952
  mt,
3880
3953
  setCurrentContent
3881
- }: Props$9) => react_jsx_runtime0.JSX.Element | null;
3954
+ }: Props$9) => react_jsx_runtime3.JSX.Element | null;
3882
3955
  //#endregion
3883
3956
  //#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
3884
3957
  type FeatureAnnouncementCardProps = {
@@ -3886,16 +3959,16 @@ type FeatureAnnouncementCardProps = {
3886
3959
  };
3887
3960
  declare const FeatureAnnouncementCard: ({
3888
3961
  setCurrentContent
3889
- }: FeatureAnnouncementCardProps) => react_jsx_runtime0.JSX.Element;
3962
+ }: FeatureAnnouncementCardProps) => react_jsx_runtime3.JSX.Element;
3890
3963
  //#endregion
3891
3964
  //#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
3892
- declare const ExchangeWarningAlert: () => react_jsx_runtime0.JSX.Element;
3965
+ declare const ExchangeWarningAlert: () => react_jsx_runtime3.JSX.Element;
3893
3966
  //#endregion
3894
3967
  //#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
3895
- declare const DomainRequiredAlert: () => react_jsx_runtime0.JSX.Element;
3968
+ declare const DomainRequiredAlert: () => react_jsx_runtime3.JSX.Element;
3896
3969
  //#endregion
3897
3970
  //#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
3898
- declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime0.JSX.Element;
3971
+ declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime3.JSX.Element;
3899
3972
  //#endregion
3900
3973
  //#region src/components/common/ModalBackButton.d.ts
3901
3974
  type BackButtonProps = {
@@ -3904,7 +3977,7 @@ type BackButtonProps = {
3904
3977
  declare const ModalBackButton: ({
3905
3978
  onClick,
3906
3979
  ...props
3907
- }: BackButtonProps) => react_jsx_runtime0.JSX.Element;
3980
+ }: BackButtonProps) => react_jsx_runtime3.JSX.Element;
3908
3981
  //#endregion
3909
3982
  //#region src/components/common/AddressDisplay.d.ts
3910
3983
  type Props$8 = {
@@ -3922,13 +3995,13 @@ declare const AddressDisplay: ({
3922
3995
  showHumanAddress,
3923
3996
  setCurrentContent,
3924
3997
  onLogout
3925
- }: Props$8) => react_jsx_runtime0.JSX.Element;
3998
+ }: Props$8) => react_jsx_runtime3.JSX.Element;
3926
3999
  //#endregion
3927
4000
  //#region src/components/common/VersionFooter.d.ts
3928
4001
  type Props$7 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3929
4002
  declare const VersionFooter: ({
3930
4003
  ...props
3931
- }: Props$7) => react_jsx_runtime0.JSX.Element;
4004
+ }: Props$7) => react_jsx_runtime3.JSX.Element;
3932
4005
  //#endregion
3933
4006
  //#region src/components/common/StickyHeaderContainer.d.ts
3934
4007
  type Props$6 = {
@@ -3939,7 +4012,7 @@ declare const useStickyHeaderContext: () => {
3939
4012
  };
3940
4013
  declare const StickyHeaderContainer: ({
3941
4014
  children
3942
- }: Props$6) => react_jsx_runtime0.JSX.Element;
4015
+ }: Props$6) => react_jsx_runtime3.JSX.Element;
3943
4016
  //#endregion
3944
4017
  //#region src/components/common/StickyFooterContainer.d.ts
3945
4018
  type Props$5 = {
@@ -3947,7 +4020,7 @@ type Props$5 = {
3947
4020
  };
3948
4021
  declare const StickyFooterContainer: ({
3949
4022
  children
3950
- }: Props$5) => react_jsx_runtime0.JSX.Element;
4023
+ }: Props$5) => react_jsx_runtime3.JSX.Element;
3951
4024
  //#endregion
3952
4025
  //#region src/components/common/BaseModal.d.ts
3953
4026
  type BaseModalProps = {
@@ -3996,7 +4069,7 @@ declare const BaseModal: ({
3996
4069
  mobileMaxHeight,
3997
4070
  desktopMinHeight,
3998
4071
  desktopMaxHeight
3999
- }: BaseModalProps) => react_jsx_runtime0.JSX.Element;
4072
+ }: BaseModalProps) => react_jsx_runtime3.JSX.Element;
4000
4073
  //#endregion
4001
4074
  //#region src/components/common/AssetButton.d.ts
4002
4075
  type AssetButtonProps = ButtonProps & {
@@ -4015,7 +4088,7 @@ declare const AssetButton: ({
4015
4088
  isDisabled,
4016
4089
  onClick,
4017
4090
  ...buttonProps
4018
- }: AssetButtonProps) => react_jsx_runtime0.JSX.Element;
4091
+ }: AssetButtonProps) => react_jsx_runtime3.JSX.Element;
4019
4092
  //#endregion
4020
4093
  //#region src/components/common/AddressDisplayCard.d.ts
4021
4094
  type AddressDisplayCardProps = {
@@ -4035,7 +4108,7 @@ declare const AddressDisplayCard: ({
4035
4108
  hideAddress,
4036
4109
  balance,
4037
4110
  tokenAddress
4038
- }: AddressDisplayCardProps) => react_jsx_runtime0.JSX.Element;
4111
+ }: AddressDisplayCardProps) => react_jsx_runtime3.JSX.Element;
4039
4112
  //#endregion
4040
4113
  //#region src/components/common/ModalFAQButton.d.ts
4041
4114
  type FAQButtonProps = {
@@ -4044,13 +4117,13 @@ type FAQButtonProps = {
4044
4117
  declare const ModalFAQButton: ({
4045
4118
  onClick,
4046
4119
  ...props
4047
- }: FAQButtonProps) => react_jsx_runtime0.JSX.Element;
4120
+ }: FAQButtonProps) => react_jsx_runtime3.JSX.Element;
4048
4121
  //#endregion
4049
4122
  //#region src/components/common/ScrollToTopWrapper.d.ts
4050
4123
  declare const ScrollToTopWrapper: ({
4051
4124
  children,
4052
4125
  ...props
4053
- }: StackProps) => react_jsx_runtime0.JSX.Element;
4126
+ }: StackProps) => react_jsx_runtime3.JSX.Element;
4054
4127
  //#endregion
4055
4128
  //#region src/components/common/AccountAvatar.d.ts
4056
4129
  type AccountAvatarProps = {
@@ -4060,7 +4133,7 @@ type AccountAvatarProps = {
4060
4133
  declare const AccountAvatar: ({
4061
4134
  wallet,
4062
4135
  props
4063
- }: AccountAvatarProps) => react_jsx_runtime0.JSX.Element;
4136
+ }: AccountAvatarProps) => react_jsx_runtime3.JSX.Element;
4064
4137
  //#endregion
4065
4138
  //#region src/components/common/TransactionButtonAndStatus.d.ts
4066
4139
  type TransactionButtonAndStatusProps = {
@@ -4102,7 +4175,7 @@ declare const TransactionButtonAndStatus: ({
4102
4175
  isLoadingGasEstimation,
4103
4176
  showGasEstimationError,
4104
4177
  context
4105
- }: TransactionButtonAndStatusProps) => react_jsx_runtime0.JSX.Element;
4178
+ }: TransactionButtonAndStatusProps) => react_jsx_runtime3.JSX.Element;
4106
4179
  //#endregion
4107
4180
  //#region src/components/common/ModalNotificationButton.d.ts
4108
4181
  type NotificationButtonProps = {
@@ -4113,7 +4186,7 @@ declare const ModalNotificationButton: ({
4113
4186
  onClick,
4114
4187
  hasUnreadNotifications,
4115
4188
  ...props
4116
- }: NotificationButtonProps) => react_jsx_runtime0.JSX.Element;
4189
+ }: NotificationButtonProps) => react_jsx_runtime3.JSX.Element;
4117
4190
  //#endregion
4118
4191
  //#region src/components/common/GasFeeSummary.d.ts
4119
4192
  interface GasFeeSummaryProps {
@@ -4149,7 +4222,7 @@ declare const GasFeeTokenSelector: ({
4149
4222
  availableTokens,
4150
4223
  tokenEstimations,
4151
4224
  walletAddress
4152
- }: GasFeeTokenSelectorProps) => react_jsx_runtime0.JSX.Element;
4225
+ }: GasFeeTokenSelectorProps) => react_jsx_runtime3.JSX.Element;
4153
4226
  //#endregion
4154
4227
  //#region src/components/common/InlineFeedback.d.ts
4155
4228
  type Props$4 = {
@@ -4161,7 +4234,7 @@ declare const InlineFeedback: ({
4161
4234
  message,
4162
4235
  duration,
4163
4236
  onClose
4164
- }: Props$4) => react_jsx_runtime0.JSX.Element;
4237
+ }: Props$4) => react_jsx_runtime3.JSX.Element;
4165
4238
  //#endregion
4166
4239
  //#region src/components/common/WalletSwitchFeedback.d.ts
4167
4240
  type Props$3 = {
@@ -4178,7 +4251,7 @@ type Props$3 = {
4178
4251
  */
4179
4252
  declare const WalletSwitchFeedback: ({
4180
4253
  showFeedback
4181
- }: Props$3) => react_jsx_runtime0.JSX.Element | null;
4254
+ }: Props$3) => react_jsx_runtime3.JSX.Element | null;
4182
4255
  //#endregion
4183
4256
  //#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
4184
4257
  type SuccessfulOperationContentProps = {
@@ -4208,7 +4281,7 @@ declare const UpgradeSmartAccountModal: ({
4208
4281
  isOpen,
4209
4282
  onClose,
4210
4283
  style
4211
- }: Props$2) => react_jsx_runtime0.JSX.Element;
4284
+ }: Props$2) => react_jsx_runtime3.JSX.Element;
4212
4285
  //#endregion
4213
4286
  //#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
4214
4287
  type Props$1 = {
@@ -4223,7 +4296,7 @@ declare const LegalDocumentsModal: ({
4223
4296
  onAgree,
4224
4297
  handleLogout,
4225
4298
  onlyOptionalDocuments
4226
- }: Props$1) => react_jsx_runtime0.JSX.Element;
4299
+ }: Props$1) => react_jsx_runtime3.JSX.Element;
4227
4300
  //#endregion
4228
4301
  //#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
4229
4302
  type Props = {
@@ -4235,7 +4308,7 @@ declare const LegalDocumentItem: ({
4235
4308
  document,
4236
4309
  register,
4237
4310
  isText
4238
- }: Props) => react_jsx_runtime0.JSX.Element;
4311
+ }: Props) => react_jsx_runtime3.JSX.Element;
4239
4312
  //#endregion
4240
4313
  //#region src/providers/ModalProvider.d.ts
4241
4314
  type AccountModalOptions = {
@@ -4270,50 +4343,7 @@ declare const ModalProvider: ({
4270
4343
  children
4271
4344
  }: {
4272
4345
  children: ReactNode;
4273
- }) => react_jsx_runtime0.JSX.Element;
4274
- //#endregion
4275
- //#region src/config/index.d.ts
4276
- type AppConfig = {
4277
- ipfsFetchingService: string;
4278
- ipfsPinningService: string;
4279
- vthoContractAddress: string;
4280
- b3trContractAddress: string;
4281
- vot3ContractAddress: string;
4282
- b3trGovernorAddress: string;
4283
- timelockContractAddress: string;
4284
- xAllocationPoolContractAddress: string;
4285
- xAllocationVotingContractAddress: string;
4286
- emissionsContractAddress: string;
4287
- voterRewardsContractAddress: string;
4288
- galaxyMemberContractAddress: string;
4289
- treasuryContractAddress: string;
4290
- x2EarnAppsContractAddress: string;
4291
- x2EarnCreatorContractAddress: string;
4292
- x2EarnRewardsPoolContractAddress: string;
4293
- nodeManagementContractAddress: string;
4294
- veBetterPassportContractAddress: string;
4295
- veDelegate: string;
4296
- veDelegateVotes: string;
4297
- veDelegateTokenContractAddress: string;
4298
- oracleContractAddress: string;
4299
- accountFactoryAddress: string;
4300
- cleanifyCampaignsContractAddress: string;
4301
- cleanifyChallengesContractAddress: string;
4302
- veWorldSubdomainClaimerContractAddress: string;
4303
- vetDomainsContractAddress: string;
4304
- vetDomainsPublicResolverAddress: string;
4305
- vetDomainsReverseRegistrarAddress: string;
4306
- vnsResolverAddress: string;
4307
- sassContractAddress: string;
4308
- vetDomainAvatarUrl: string;
4309
- nodeUrl: string;
4310
- indexerUrl: string;
4311
- b3trIndexerUrl: string;
4312
- graphQlIndexerUrl: string;
4313
- network: Network;
4314
- explorerUrl: string;
4315
- };
4316
- declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
4346
+ }) => react_jsx_runtime3.JSX.Element;
4317
4347
  //#endregion
4318
- export { LanguageSettingsContent as $, useRoundXApps as $a, AccountCustomizationModalProvider as $i, buildSingleAuthorizationTypedData as $n, getDomainsOfAddressQueryKey as $o, convertUriToUrl as $r, VeChainKitConfig as $s, useCurrentBlock as $t, AddressDisplay as A, useIpfsMetadatas as Aa, EnhancedClause as Ac, getGenericDelegatorUrl as Ai, getAccountBalance as An, useTokensWithValues as Ao, ViewFunctionResult as Ar, LoginWithGoogleButton as As, useMfaEnrollment as At, AccountDetailsButton as B, getXAppsSharesQueryKey as Ba, VePassportUserStatus as Bc, useSignMessage as Bi, estimateAndBuildTxBody as Bn, useGetAvatarOfAddress as Bo, removePrefix as Br, ConnectModal as Bs, buildVETClauses as Bt, AddressDisplayCard as C, useSwapQuotes as Ca, ENS_TEXT_RECORDS as Cc, TOKEN_LOGO_COMPONENTS as Ci, useGetAccountAddress as Cn, getB3trBalanceQueryKey as Co, isOnline as Cr, WalletButtonProps as Cs, ReceiveTokenContent as Ct, StickyHeaderContainer as D, compressImages as Da, ConnectionSource as Dc, VECHAIN_KIT_TERMS_CONFIG as Di, getAccountImplementationAddress as Dn, useCurrentAllocationsRoundId as Do, setLocalStorageItem as Dr, VeChainWithPrivyLoginButton as Ds, ThorClient$1 as Dt, StickyFooterContainer as E, UploadedImage as Ea, CURRENCY_SYMBOLS as Ec, VECHAIN_KIT_STORAGE_KEYS as Ei, useCurrentAccountImplementationVersion as En, getCurrentAllocationsRoundIdQueryKey as Eo, safeWindowOpen as Er, LoginWithGithubButton as Es, SendTokenContent as Et, FeatureAnnouncementCard as F, useIpfsImage as Fa, PrivyLoginMethod as Fc, useAppHubApps as Fi, useGenericDelegatorFeeEstimation as Fn, useUnsetDomain as Fo, addPrefix as Fr, ConnectionButton as Fs, useGasEstimate as Ft, RemoveWalletConfirmContentProps as G, UseSwitchWalletReturnType as Ga, useAccountModalOptions as Gi, useCrossAppConnectionCache as Gn, getTextRecords as Go, EconomicNodeStrengthLevelToName as Gr, VechainKitThemeProvider as Gs, useSendTransaction as Gt, AccountModalContentTypes as H, XAppMetadata as Ha, useNotifications as Hi, getDepositAccount as Hn, useGetResolverAddress as Ho, isRejectionError as Hr, LegalDocumentsProvider as Hs, buildERC20Clauses as Ht, QuickActionsSection as I, useIpfsImageList as Ia, SmartAccount as Ic, useLoginWithVeChain as Ii, useGenericDelegatorFeeEstimationParams as In, getAvatarLegacy as Io, compare as Ir, EcosystemContent as Is, txReceiptQueryKey as It, DisconnectConfirmContentProps as J, useWalletStorage as Ja, UpgradeSmartAccountModalProvider as Ji, useSyncableLocalStorage as Jn, getAvatarQueryKey as Jo, XNodeStrengthLevelToName as Jr, PrivyWalletProviderContextType as Js, getEventLogs as Jt, SelectWalletContent as K, useSwitchWallet as Ka, ProfileModalProvider as Ki, EcosystemShortcut as Kn, getTextRecordsQueryKey as Ko, MinXNodeLevel as Kr, useVechainKitThemeConfig as Ks, GetEventsProps as Kt, BalanceSection as L, getIpfsMetadata as La, TokenBalance as Lc, useLoginWithOAuth$1 as Li, useGasTokenSelection as Ln, getAvatarLegacyQueryKey as Lo, isInvalid as Lr, ErrorContent as Ls, useTxReceipt as Lt, CrossAppConnectionSecurityCard as M, MAX_IMAGE_SIZE as Ma, ExecuteWithAuthorizationSignData as Mc, AppHubApp as Mi, useAccountBalance as Mn, useTokenPrices as Mo, executeCallClause as Mr, EcosystemButton as Ms, useSetWalletRecovery as Mt, DomainRequiredAlert as N, getIpfsImage as Na, NFTMediaType as Nc, fetchAppHubApps as Ni, UseEstimateAllTokensParams as Nn, WalletTokenBalance as No, executeMultipleClausesCall as Nr, VeChainLoginButton as Ns, useThor$1 as Nt, useStickyHeaderContext as O, imageCompressionOptions as Oa, CrossAppConnectionCache as Oc, VECHAIN_PRIVY_APP_ID as Oi, getAccountImplementationAddressQueryKey as On, useTotalBalance as Oo, MultipleClausesCallParameters as Or, DappKitButton as Os, useDAppKitWallet as Ot, ExchangeWarningAlert as P, getIpfsImageQueryKey as Pa, PrivyAppInfo as Pc, getAppHubAppsQueryKey as Pi, useEstimateAllTokens as Pn, useTokenBalances as Po, isValidUrl as Pr, EmailLoginButton as Ps, VECHAIN_KIT_QUERY_KEYS as Pt, GasTokenSettingsContent as Q, getRoundXAppsQueryKey as Qa, useReceiveModal as Qi, buildBatchAuthorizationTypedData as Qn, getDomainsOfAddress as Qo, xNodeToGMstartingLevel as Qr, LegalDocumentOptions as Qs, currentBlockQueryKey as Qt, AccountSelector as R, getIpfsMetadataQueryKey as Ra, TransactionStatus as Rc, useLoginWithPasskey$1 as Ri, decodeRawTx as Rn, useGetAvatarLegacy as Ro, isValid as Rr, LoadingContent as Rs, BuildTransactionProps as Rt, ModalFAQButton as S, useConnectModal as Sa, TransactionSpeed as Sc, TOKEN_LOGOS as Si, getAccountAddressQueryKey as Sn, useGetCustomTokenBalances as So, isBrowser as Sr, WalletButton as Ss, SwapTokenContent as St, BaseModal as T, useSingleImageUpload as Ta, CURRENCY as Tc, VECHAIN_KIT_COOKIES_CONFIG as Ti, getCurrentAccountImplementationVersionQueryKey as Tn, useCustomTokens as To, safeQuerySelector as Tr, ConnectPopover as Ts, SendTokenSummaryContent as Tt, SwitchFeedback as U, getXAppMetadata as Ua, SettingsModalProvider as Ui, signVip191Transaction as Un, buildClauses as Uo, simpleHash as Ur, useLegalDocuments as Us, useTransferERC20 as Ut, AccountModal as V, useXAppsShares as Va, Wallet as Vc, useNotificationAlerts as Vi, estimateGas as Vn, getResolverAddressQueryKey as Vo, validate as Vr, ConnectModalContentsTypes as Vs, useTransferVET as Vt, RemoveWalletConfirmContent as W, useXAppMetadata as Wa, useSettingsModal as Wi, useGenericDelegator as Wn, useUpdateTextRecord as Wo, TIME as Wr, ColorModeSync as Ws, UseSendTransactionReturnValue as Wt, SettingsContent as X, UseWalletReturnType as Xa, useLoginModalContent as Xi, useLocalStorage as Xn, Domain as Xo, buildQueryString as Xr, AccountQuickAction as Xs, getChainIdQueryKey as Xt, TermsAndPrivacyContent as Y, useWalletMetadata as Ya, useUpgradeSmartAccountModal as Yi, LocalStorageKey as Yn, useGetAvatar as Yo, allNodeStrengthLevelToName as Yr, usePrivyWalletProvider as Ys, getChainId as Yt, SettingsContentProps as Z, useWallet$1 as Za, ReceiveModalProvider as Zi, BuildClausesParams as Zn, DomainsResponse as Zo, gmNfts as Zr, LegalDocument as Zs, useGetChainId as Zt, ModalNotificationButton as _, TransactionModalProvider as _a, GasTokenEstimate as _c, DEFAULT_PRIVY_ECOSYSTEM_APPS as _i, getHasV1SmartAccountQueryKey as _n, getCustomTokenInfoQueryKey as _o, copyToClipboard as _r, TransactionModalContent as _s, ChooseNameSummaryContentProps as _t, useModal as a, ExploreEcosystemModalProvider as aa, LegalDocumentAgreement as ac, compareListOfAddresses as ai, getUpgradeRequiredQueryKey as an, getIsPersonQueryKey as ao, useEvents as ar, useClaimVeWorldSubdomain as as, AssetsContent as at, AccountAvatar as b, useAccountModal as ba, GasTokenSelection as bc, PrivyEcosystemApp as bi, useGetAccountVersion as bn, TokenWithBalance as bo, getWindowOrigin as br, TransactionModalProps as bs, ChooseNameContent as bt, LegalDocumentsModal as c, useSwapTokenModal as ca, CostLevel as cc, regexPattern as ci, getSmartAccount as cn, useGetVot3Balance as co, useGetNodeUrl as cr, getVechainDomainQueryKey as cs, UpgradeSmartAccountContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, ChooseNameModalProvider as da, EstimationResponse as dc, getPicassoImage as di, useRefreshSmartAccountQueries as dn, getTokenUsdPrice as do, useCurrentLanguage as dr, useFetchPrivyStatus as ds, CustomizationSummaryContent as dt, useAccountCustomizationModal as ea, VeChainKitContext as ec, resolveMediaTypeFromMimeType as ei, useUpgradeSmartAccount as en, useRefreshMetadata as eo, useBuildClauses as er, useGetDomainsOfAddress as es, ChangeCurrencyContent as et, UpgradeSmartAccountModalStyle as f, useChooseNameModal as fa, Rate as fc, humanAddress as fi, useRefreshFactoryQueries as fn, getTokenUsdPriceQueryKey as fo, useCurrency as fr, fetchPrivyAppInfo as fs, CustomizationSummaryContentProps as ft, GasFeeSummary as g, useTransactionToast as ga, formatGasCost as gc, DEFAULT_GAS_TOKEN_PREFERENCES as gi, getHasV1SmartAccount as gn, useGetErc20Balance as go, useMultipleClausesCall as gr, TransactionToast as gs, ChooseNameSummaryContent as gt, GasFeeTokenSelector as h, TransactionToastProvider as ha, calculateTotalCost as hc, isZero as hi, useIsSmartAccountDeployed as hn, getErc20BalanceQueryKey as ho, useCallClause as hr, AccountMainContent as hs, FAQContent as ht, ModalProvider as i, useNotificationsModal as ia, EnrichedLegalDocument as ic, compareAddresses as ii, getUpgradeRequired as in, useMostVotedAppsInRound as io, getEventsKey as ir, useClaimVetDomain as is, ManageCustomTokenContentProps as it, ModalBackButton as j, IpfsImage as ja, ExecuteBatchWithAuthorizationSignData as jc, notFoundImage as ji, getAccountBalanceQueryKey as jn, ExchangeRates as jo, buildCallClauses as jr, PrivyButton as js, usePrivy$1 as jt, VersionFooter as k, useUploadImages as ka, ENSRecords as kc, getENV as ki, useAccountImplementationAddress as kn, TokenWithValue as ko, MultipleClausesCallReturnType as kr, PasskeyLoginButton as ks, useDAppKitWalletModal as kt, LegalDocumentsModalContentsTypes as l, SendTokenModalProvider as la, DepositAccount as lc, randomTransactionUser as li, getSmartAccountQueryKey as ln, PRICE_FEED_IDS as lo, useFeatureAnnouncement as lr, useVechainDomain as ls, ProfileContent as lt, InlineFeedback as m, useWalletModal as ma, VthoPerGasAtSpeed as mc, humanNumber as mi, getIsDeployedQueryKey as mn, UseGetErc20BalanceOptions as mo, getCallClauseQueryKeyWithArgs as mr, useFetchAppInfo as ms, CustomizationContent as mt, getConfig as n, useFAQModal as na, VechainKitProviderProps as nc, uploadBlobToIPFS as ni, getUpgradeRequiredForAccountQueryKey as nn, MostVotedAppsInRoundReturnType as no, UseEventsParams as nr, useIsDomainProtected as ns, BridgeContent as nt, DAppKitWalletButton as o, useExploreEcosystemModal as oa, LegalDocumentSource as oc, isValidAddress as oi, useUpgradeRequired as on, useIsPerson as oo, useScrollToTop as or, getEnsRecordExistsQueryKey as os, AssetsContentProps as ot, WalletSwitchFeedback as p, WalletModalProvider as pa, TransactionCost as pc, humanDomain as pi, getIsDeployed as pn, useGetTokenUsdPrice as po, getCallClauseQueryKey as pr, getPrivyAppInfoQueryKey as ps, AccountCustomizationContentProps as pt, DisconnectConfirmContent as q, StoredWallet as qa, useProfileModal as qi, useEcosystemShortcuts as qn, useGetTextRecords as qo, NodeStrengthLevelToImage as qr, PrivyWalletProvider as qs, getAllEventLogs as qt, AccountModalOptions as r, NotificationsModalProvider as ra, useVeChainKitConfig as rc, validateIpfsUri as ri, useUpgradeRequiredForAccount as rn, XApp as ro, decodeEventLog$1 as rr, buildVetDomainClauses as rs, ManageCustomTokenContent as rt, LegalDocumentItem as s, SwapTokenModalProvider as sa, LegalDocumentType as sc, leftPadWithZeros as si, SmartAccountReturnType as sn, getVot3BalanceQueryKey as so, useIsPWA as sr, useEnsRecordExists as ss, UpgradeSmartAccountContent as st, AppConfig as t, FAQModalProvider as ta, VeChainKitProvider as tc, toIPFSURL as ti, getUpgradeRequiredForAccount as tn, useRefreshBalances as to, GetEventsKeyParams as tr, getIsDomainProtectedQueryKey as ts, ChangeCurrencyContentProps as tt, UpgradeSmartAccountModal as u, useSendTokenModal as ua, EstimatedGas as uc, formatTokenBalance as ui, useSmartAccount as un, SupportedToken as uo, useCurrentCurrency as ur, fetchPrivyStatus as us, ProfileContentProps as ut, TransactionButtonAndStatus as v, useTransactionModal as va, GasTokenInfo as vc, ENV as vi, useHasV1SmartAccount as vn, getTokenInfo$1 as vo, getDocumentTitle as vr, ShareButtons as vs, ChooseNameSearchContent as vt, AssetButton as w, useSwapTransaction as wa, TextRecords as wc, TogglePassportCheck as wi, getCurrentAccountImplementationVersion as wn, useGetB3trBalance as wo, removeLocalStorageItem as wr, WalletDisplayVariant as ws, SelectTokenContent as wt, ScrollToTopWrapper as x, ConnectModalProvider as xa, GasTokenType as xc, SUPPORTED_GAS_TOKENS as xi, getAccountAddress as xn, getCustomTokenBalanceQueryKey as xo, hasNavigator as xr, SocialIcons as xs, ChooseNameContentProps as xt, TransactionButtonAndStatusProps as y, AccountModalProvider as ya, GasTokenPreferences as yc, NON_TRANSFERABLE_TOKEN_SYMBOLS as yi, getAccountVersionQueryKey as yn, useGetCustomTokenInfo as yo, getLocalStorageItem as yr, TransactionModal as ys, ChooseNameSearchContentProps as yt, ActionButton as z, useIpfsMetadata as za, TransactionStatusErrorType as zc, useSignTypedData as zi, delegateAuthorized as zn, getAvatarOfAddressQueryKey as zo, normalize as zr, MainContent as zs, useBuildTransaction as zt };
4319
- //# sourceMappingURL=index-kNQk5OHF.d.mts.map
4348
+ export { ChangeCurrencyContentProps as $, useRefreshBalances as $a, FAQModalProvider as $i, GetEventsKeyParams as $n, getIsDomainProtectedQueryKey as $o, toIPFSURL as $r, VeChainKitProvider as $s, getUpgradeRequiredForAccount as $t, CrossAppConnectionSecurityCard as A, MAX_IMAGE_SIZE as Aa, ExecuteBatchWithAuthorizationSignData as Ac, AppHubApp as Ai, useAccountBalance as An, useTokenPrices as Ao, executeCallClause as Ar, EcosystemButton as As, useSetWalletRecovery as At, AccountModalContentTypes as B, XAppMetadata as Ba, Wallet as Bc, useNotifications as Bi, getDepositAccount as Bn, useGetResolverAddress as Bo, isRejectionError as Br, LegalDocumentsProvider as Bs, buildERC20Clauses as Bt, BaseModal as C, useSingleImageUpload as Ca, TextRecords as Cc, VECHAIN_KIT_COOKIES_CONFIG as Ci, getCurrentAccountImplementationVersionQueryKey as Cn, useCustomTokens as Co, safeQuerySelector as Cr, ConnectPopover as Cs, SendTokenSummaryContent as Ct, VersionFooter as D, useUploadImages as Da, CrossAppConnectionCache as Dc, getENV as Di, useAccountImplementationAddress as Dn, TokenWithValue as Do, MultipleClausesCallReturnType as Dr, PasskeyLoginButton as Ds, useDAppKitWalletModal as Dt, useStickyHeaderContext as E, imageCompressionOptions as Ea, ConnectionSource as Ec, VECHAIN_PRIVY_APP_ID as Ei, getAccountImplementationAddressQueryKey as En, useTotalBalance as Eo, MultipleClausesCallParameters as Er, DappKitButton as Es, useDAppKitWallet as Et, BalanceSection as F, getIpfsMetadata as Fa, SmartAccount as Fc, useLoginWithOAuth$1 as Fi, useGasTokenSelection as Fn, getAvatarLegacyQueryKey as Fo, isInvalid as Fr, ErrorContent as Fs, useTxReceipt as Ft, DisconnectConfirmContent as G, StoredWallet as Ga, useProfileModal as Gi, useEcosystemShortcuts as Gn, useGetTextRecords as Go, NodeStrengthLevelToImage as Gr, PrivyWalletProvider as Gs, getAllEventLogs as Gt, RemoveWalletConfirmContent as H, useXAppMetadata as Ha, getConfig as Hc, useSettingsModal as Hi, useGenericDelegator as Hn, useUpdateTextRecord as Ho, TIME as Hr, ColorModeSync as Hs, UseSendTransactionReturnValue as Ht, AccountSelector as I, getIpfsMetadataQueryKey as Ia, TokenBalance as Ic, useLoginWithPasskey$1 as Ii, decodeRawTx as In, useGetAvatarLegacy as Io, isValid as Ir, LoadingContent as Is, BuildTransactionProps as It, SettingsContent as J, UseWalletReturnType as Ja, useLoginModalContent as Ji, useLocalStorage as Jn, Domain as Jo, buildQueryString as Jr, AccountQuickAction as Js, getChainIdQueryKey as Jt, DisconnectConfirmContentProps as K, useWalletStorage as Ka, UpgradeSmartAccountModalProvider as Ki, useSyncableLocalStorage as Kn, getAvatarQueryKey as Ko, XNodeStrengthLevelToName as Kr, PrivyWalletProviderContextType as Ks, getEventLogs as Kt, ActionButton as L, useIpfsMetadata as La, TransactionStatus as Lc, useSignTypedData as Li, delegateAuthorized as Ln, getAvatarOfAddressQueryKey as Lo, normalize as Lr, MainContent as Ls, useBuildTransaction as Lt, ExchangeWarningAlert as M, getIpfsImageQueryKey as Ma, NFTMediaType as Mc, getAppHubAppsQueryKey as Mi, useEstimateAllTokens as Mn, useTokenBalances as Mo, isValidUrl as Mr, EmailLoginButton as Ms, VECHAIN_KIT_QUERY_KEYS as Mt, FeatureAnnouncementCard as N, useIpfsImage as Na, PrivyAppInfo as Nc, useAppHubApps as Ni, useGenericDelegatorFeeEstimation as Nn, useUnsetDomain as No, addPrefix as Nr, ConnectionButton as Ns, useGasEstimate as Nt, AddressDisplay as O, useIpfsMetadatas as Oa, ENSRecords as Oc, getGenericDelegatorUrl as Oi, getAccountBalance as On, useTokensWithValues as Oo, ViewFunctionResult as Or, LoginWithGoogleButton as Os, useMfaEnrollment as Ot, QuickActionsSection as P, useIpfsImageList as Pa, PrivyLoginMethod as Pc, useLoginWithVeChain as Pi, useGenericDelegatorFeeEstimationParams as Pn, getAvatarLegacy as Po, compare as Pr, EcosystemContent as Ps, txReceiptQueryKey as Pt, ChangeCurrencyContent as Q, useRefreshMetadata as Qa, useAccountCustomizationModal as Qi, useBuildClauses as Qn, useGetDomainsOfAddress as Qo, resolveMediaTypeFromMimeType as Qr, VeChainKitContext as Qs, useUpgradeSmartAccount as Qt, AccountDetailsButton as R, getXAppsSharesQueryKey as Ra, TransactionStatusErrorType as Rc, useSignMessage as Ri, estimateAndBuildTxBody as Rn, useGetAvatarOfAddress as Ro, removePrefix as Rr, ConnectModal as Rs, buildVETClauses as Rt, AssetButton as S, useSwapTransaction as Sa, ENS_TEXT_RECORDS as Sc, TogglePassportCheck as Si, getCurrentAccountImplementationVersion as Sn, useGetB3trBalance as So, removeLocalStorageItem as Sr, WalletDisplayVariant as Ss, SelectTokenContent as St, StickyHeaderContainer as T, compressImages as Ta, CURRENCY_SYMBOLS as Tc, VECHAIN_KIT_TERMS_CONFIG as Ti, getAccountImplementationAddress as Tn, useCurrentAllocationsRoundId as To, setLocalStorageItem as Tr, VeChainWithPrivyLoginButton as Ts, ThorClient$1 as Tt, RemoveWalletConfirmContentProps as U, UseSwitchWalletReturnType as Ua, useAccountModalOptions as Ui, useCrossAppConnectionCache as Un, getTextRecords as Uo, EconomicNodeStrengthLevelToName as Ur, VechainKitThemeProvider as Us, useSendTransaction as Ut, SwitchFeedback as V, getXAppMetadata as Va, AppConfig as Vc, SettingsModalProvider as Vi, signVip191Transaction as Vn, buildClauses as Vo, simpleHash as Vr, useLegalDocuments as Vs, useTransferERC20 as Vt, SelectWalletContent as W, useSwitchWallet as Wa, ProfileModalProvider as Wi, EcosystemShortcut as Wn, getTextRecordsQueryKey as Wo, MinXNodeLevel as Wr, useVechainKitThemeConfig as Ws, GetEventsProps as Wt, GasTokenSettingsContent as X, getRoundXAppsQueryKey as Xa, useReceiveModal as Xi, buildBatchAuthorizationTypedData as Xn, getDomainsOfAddress as Xo, xNodeToGMstartingLevel as Xr, LegalDocumentOptions as Xs, currentBlockQueryKey as Xt, SettingsContentProps as Y, useWallet$1 as Ya, ReceiveModalProvider as Yi, BuildClausesParams as Yn, DomainsResponse as Yo, gmNfts as Yr, LegalDocument as Ys, useGetChainId as Yt, LanguageSettingsContent as Z, useRoundXApps as Za, AccountCustomizationModalProvider as Zi, buildSingleAuthorizationTypedData as Zn, getDomainsOfAddressQueryKey as Zo, convertUriToUrl as Zr, VeChainKitConfig as Zs, useCurrentBlock as Zt, TransactionButtonAndStatusProps as _, AccountModalProvider as _a, GasTokenInfo as _c, NON_TRANSFERABLE_TOKEN_SYMBOLS as _i, getAccountVersionQueryKey as _n, useGetCustomTokenInfo as _o, getLocalStorageItem as _r, TransactionModal as _s, ChooseNameSearchContentProps as _t, LegalDocumentItem as a, SwapTokenModalProvider as aa, LegalDocumentSource as ac, leftPadWithZeros as ai, SmartAccountReturnType as an, getVot3BalanceQueryKey as ao, useIsPWA as ar, useEnsRecordExists as as, UpgradeSmartAccountContent as at, ModalFAQButton as b, useConnectModal as ba, GasTokenType as bc, TOKEN_LOGOS as bi, getAccountAddressQueryKey as bn, useGetCustomTokenBalances as bo, isBrowser as br, WalletButton as bs, SwapTokenContent as bt, UpgradeSmartAccountModal as c, useSendTokenModal as ca, DepositAccount as cc, formatTokenBalance as ci, useSmartAccount as cn, SupportedToken as co, useCurrentCurrency as cr, fetchPrivyStatus as cs, ProfileContentProps as ct, WalletSwitchFeedback as d, WalletModalProvider as da, Rate as dc, humanDomain as di, getIsDeployed as dn, useGetTokenUsdPrice as do, getCallClauseQueryKey as dr, getPrivyAppInfoQueryKey as ds, AccountCustomizationContentProps as dt, useFAQModal as ea, VechainKitProviderProps as ec, uploadBlobToIPFS as ei, getUpgradeRequiredForAccountQueryKey as en, MostVotedAppsInRoundReturnType as eo, UseEventsParams as er, useIsDomainProtected as es, BridgeContent as et, InlineFeedback as f, useWalletModal as fa, TransactionCost as fc, humanNumber as fi, getIsDeployedQueryKey as fn, UseGetErc20BalanceOptions as fo, getCallClauseQueryKeyWithArgs as fr, useFetchAppInfo as fs, CustomizationContent as ft, TransactionButtonAndStatus as g, useTransactionModal as ga, GasTokenEstimate as gc, ENV as gi, useHasV1SmartAccount as gn, getTokenInfo$1 as go, getDocumentTitle as gr, ShareButtons as gs, ChooseNameSearchContent as gt, ModalNotificationButton as h, TransactionModalProvider as ha, formatGasCost as hc, DEFAULT_PRIVY_ECOSYSTEM_APPS as hi, getHasV1SmartAccountQueryKey as hn, getCustomTokenInfoQueryKey as ho, copyToClipboard as hr, TransactionModalContent as hs, ChooseNameSummaryContentProps as ht, DAppKitWalletButton as i, useExploreEcosystemModal as ia, LegalDocumentAgreement as ic, isValidAddress as ii, useUpgradeRequired as in, useIsPerson as io, useScrollToTop as ir, getEnsRecordExistsQueryKey as is, AssetsContentProps as it, DomainRequiredAlert as j, getIpfsImage as ja, ExecuteWithAuthorizationSignData as jc, fetchAppHubApps as ji, UseEstimateAllTokensParams as jn, WalletTokenBalance as jo, executeMultipleClausesCall as jr, VeChainLoginButton as js, useThor$1 as jt, ModalBackButton as k, IpfsImage as ka, EnhancedClause as kc, notFoundImage as ki, getAccountBalanceQueryKey as kn, ExchangeRates as ko, buildCallClauses as kr, PrivyButton as ks, usePrivy$1 as kt, UpgradeSmartAccountModalContentsTypes as l, ChooseNameModalProvider as la, EstimatedGas as lc, getPicassoImage as li, useRefreshSmartAccountQueries as ln, getTokenUsdPrice as lo, useCurrentLanguage as lr, useFetchPrivyStatus as ls, CustomizationSummaryContent as lt, GasFeeSummary as m, useTransactionToast as ma, calculateTotalCost as mc, DEFAULT_GAS_TOKEN_PREFERENCES as mi, getHasV1SmartAccount as mn, useGetErc20Balance as mo, useMultipleClausesCall as mr, TransactionToast as ms, ChooseNameSummaryContent as mt, ModalProvider as n, useNotificationsModal as na, useVeChainKitConfig as nc, compareAddresses as ni, getUpgradeRequired as nn, useMostVotedAppsInRound as no, getEventsKey as nr, useClaimVetDomain as ns, ManageCustomTokenContentProps as nt, LegalDocumentsModal as o, useSwapTokenModal as oa, LegalDocumentType as oc, regexPattern as oi, getSmartAccount as on, useGetVot3Balance as oo, useGetNodeUrl as or, getVechainDomainQueryKey as os, UpgradeSmartAccountContentProps as ot, GasFeeTokenSelector as p, TransactionToastProvider as pa, VthoPerGasAtSpeed as pc, isZero as pi, useIsSmartAccountDeployed as pn, getErc20BalanceQueryKey as po, useCallClause as pr, AccountMainContent as ps, FAQContent as pt, TermsAndPrivacyContent as q, useWalletMetadata as qa, useUpgradeSmartAccountModal as qi, LocalStorageKey as qn, useGetAvatar as qo, allNodeStrengthLevelToName as qr, usePrivyWalletProvider as qs, getChainId as qt, useModal as r, ExploreEcosystemModalProvider as ra, EnrichedLegalDocument as rc, compareListOfAddresses as ri, getUpgradeRequiredQueryKey as rn, getIsPersonQueryKey as ro, useEvents as rr, useClaimVeWorldSubdomain as rs, AssetsContent as rt, LegalDocumentsModalContentsTypes as s, SendTokenModalProvider as sa, CostLevel as sc, randomTransactionUser as si, getSmartAccountQueryKey as sn, PRICE_FEED_IDS as so, useFeatureAnnouncement as sr, useVechainDomain as ss, ProfileContent as st, AccountModalOptions as t, NotificationsModalProvider as ta, useAppConfig as tc, validateIpfsUri as ti, useUpgradeRequiredForAccount as tn, XApp as to, decodeEventLog$1 as tr, buildVetDomainClauses as ts, ManageCustomTokenContent as tt, UpgradeSmartAccountModalStyle as u, useChooseNameModal as ua, EstimationResponse as uc, humanAddress as ui, useRefreshFactoryQueries as un, getTokenUsdPriceQueryKey as uo, useCurrency as ur, fetchPrivyAppInfo as us, CustomizationSummaryContentProps as ut, AccountAvatar as v, useAccountModal as va, GasTokenPreferences as vc, PrivyEcosystemApp as vi, useGetAccountVersion as vn, TokenWithBalance as vo, getWindowOrigin as vr, TransactionModalProps as vs, ChooseNameContent as vt, StickyFooterContainer as w, UploadedImage as wa, CURRENCY as wc, VECHAIN_KIT_STORAGE_KEYS as wi, useCurrentAccountImplementationVersion as wn, getCurrentAllocationsRoundIdQueryKey as wo, safeWindowOpen as wr, LoginWithGithubButton as ws, SendTokenContent as wt, AddressDisplayCard as x, useSwapQuotes as xa, TransactionSpeed as xc, TOKEN_LOGO_COMPONENTS as xi, useGetAccountAddress as xn, getB3trBalanceQueryKey as xo, isOnline as xr, WalletButtonProps as xs, ReceiveTokenContent as xt, ScrollToTopWrapper as y, ConnectModalProvider as ya, GasTokenSelection as yc, SUPPORTED_GAS_TOKENS as yi, getAccountAddress as yn, getCustomTokenBalanceQueryKey as yo, hasNavigator as yr, SocialIcons as ys, ChooseNameContentProps as yt, AccountModal as z, useXAppsShares as za, VePassportUserStatus as zc, useNotificationAlerts as zi, estimateGas as zn, getResolverAddressQueryKey as zo, validate as zr, ConnectModalContentsTypes as zs, useTransferVET as zt };
4349
+ //# sourceMappingURL=index-DDj5hY2R.d.mts.map