@vechain/vechain-kit 2.0.3 → 2.0.4

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,26 +1,26 @@
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_runtime3 from "react/jsx-runtime";
5
- import { Account } from "viem/accounts";
6
- import * as _vechain_sdk_core0 from "@vechain/sdk-core";
7
- import { Address, Certificate, CertificateData, Clause, Transaction, TransactionClause } from "@vechain/sdk-core";
8
- import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy as usePrivy$1, useSetWalletRecovery } from "@privy-io/react-auth";
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";
11
- import { UseQueryOptions } from "@tanstack/react-query";
12
- import { CustomTokenInfo } from "@vechain/contract-getters";
13
- import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
14
- import { z } from "zod";
15
- import { Options } from "browser-image-compression";
4
+ import * as react_jsx_runtime1 from "react/jsx-runtime";
16
5
  import * as _vechain_sdk_network0 from "@vechain/sdk-network";
17
6
  import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
18
- import { UseFormRegister } from "react-hook-form";
7
+ import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy, useSetWalletRecovery } from "@privy-io/react-auth";
8
+ import * as _vechain_sdk_core0 from "@vechain/sdk-core";
9
+ import { Address, Certificate, CertificateData, Clause, Transaction, TransactionClause } from "@vechain/sdk-core";
19
10
  import { LogLevel, WalletSource } from "@vechain/dapp-kit";
11
+ import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
20
12
  import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
21
13
  import { IconType } from "react-icons";
14
+ import * as _tanstack_react_query17 from "@tanstack/react-query";
15
+ import { UseQueryOptions } from "@tanstack/react-query";
16
+ import { z } from "zod";
17
+ import { CustomTokenInfo } from "@vechain/contract-getters";
18
+ import { Options } from "browser-image-compression";
19
+ import { Account } from "viem/accounts";
22
20
  import * as abitype0 from "abitype";
23
21
  import { AbiParametersToPrimitiveTypes, ExtractAbiFunction, ExtractAbiFunctionNames } from "abitype";
22
+ import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
23
+ import { UseFormRegister } from "react-hook-form";
24
24
 
25
25
  //#region src/config/network.d.ts
26
26
  /**
@@ -53,7 +53,7 @@ declare const genesises: {
53
53
  readonly main: CompressedBlockDetail;
54
54
  readonly test: CompressedBlockDetail;
55
55
  readonly solo: CompressedBlockDetail;
56
- which(gid: string): "main" | "test" | "solo" | undefined;
56
+ which(gid: string): "test" | "main" | "solo" | undefined;
57
57
  };
58
58
  //#endregion
59
59
  //#region src/types/types.d.ts
@@ -506,7 +506,7 @@ type VechainKitProviderProps = {
506
506
  minAmountInEther: number;
507
507
  };
508
508
  };
509
- dappKit: {
509
+ dappKit?: {
510
510
  allowedWallets?: WalletSource[];
511
511
  walletConnectOptions?: WalletConnectOptions;
512
512
  usePersistence?: boolean;
@@ -528,8 +528,8 @@ type VechainKitProviderProps = {
528
528
  darkMode?: boolean;
529
529
  i18n?: I18n;
530
530
  language?: string;
531
- network: {
532
- type: NETWORK_TYPE;
531
+ network?: {
532
+ type?: string;
533
533
  nodeUrl?: string;
534
534
  requireCertificate?: boolean;
535
535
  connectionCertificate?: {
@@ -552,7 +552,15 @@ type VeChainKitConfig = {
552
552
  darkMode: boolean;
553
553
  i18n?: VechainKitProviderProps['i18n'];
554
554
  language?: VechainKitProviderProps['language'];
555
- network: VechainKitProviderProps['network'];
555
+ network: {
556
+ type: NETWORK_TYPE;
557
+ nodeUrl: string;
558
+ requireCertificate?: boolean;
559
+ connectionCertificate?: {
560
+ message?: Certificate;
561
+ options?: CertificateData;
562
+ };
563
+ };
556
564
  allowCustomTokens?: boolean;
557
565
  legalDocuments?: VechainKitProviderProps['legalDocuments'];
558
566
  defaultCurrency?: VechainKitProviderProps['defaultCurrency'];
@@ -569,7 +577,7 @@ declare const useVeChainKitConfig: () => VeChainKitConfig;
569
577
  /**
570
578
  * Provider to wrap the application with Privy and DAppKit
571
579
  */
572
- declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime3.JSX.Element;
580
+ declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime1.JSX.Element;
573
581
  //#endregion
574
582
  //#region src/providers/PrivyWalletProvider.d.ts
575
583
  interface PrivyWalletProviderContextType {
@@ -611,7 +619,7 @@ declare const PrivyWalletProvider: ({
611
619
  delegatorUrl?: string;
612
620
  delegateAllTransactions: boolean;
613
621
  genericDelegator?: boolean;
614
- }) => react_jsx_runtime3.JSX.Element;
622
+ }) => react_jsx_runtime1.JSX.Element;
615
623
  declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
616
624
  //#endregion
617
625
  //#region src/providers/VechainKitThemeProvider.d.ts
@@ -628,12 +636,12 @@ declare const ColorModeSync: ({
628
636
  darkMode
629
637
  }: {
630
638
  darkMode: boolean;
631
- }) => react_jsx_runtime3.JSX.Element;
639
+ }) => react_jsx_runtime1.JSX.Element;
632
640
  declare const VechainKitThemeProvider: ({
633
641
  children,
634
642
  darkMode,
635
643
  theme: customTheme
636
- }: Props$36) => react_jsx_runtime3.JSX.Element;
644
+ }: Props$36) => react_jsx_runtime1.JSX.Element;
637
645
  //#endregion
638
646
  //#region src/providers/LegalDocumentsProvider.d.ts
639
647
  type Props$35 = {
@@ -649,7 +657,7 @@ type LegalDocumentsContextType = {
649
657
  declare const useLegalDocuments: () => LegalDocumentsContextType;
650
658
  declare const LegalDocumentsProvider: ({
651
659
  children
652
- }: Props$35) => react_jsx_runtime3.JSX.Element;
660
+ }: Props$35) => react_jsx_runtime1.JSX.Element;
653
661
  //#endregion
654
662
  //#region src/components/ConnectModal/ConnectModal.d.ts
655
663
  type Props$34 = {
@@ -660,7 +668,7 @@ type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
660
668
  declare const ConnectModal: ({
661
669
  isOpen,
662
670
  onClose
663
- }: Props$34) => react_jsx_runtime3.JSX.Element;
671
+ }: Props$34) => react_jsx_runtime1.JSX.Element;
664
672
  //#endregion
665
673
  //#region src/components/ConnectModal/Contents/MainContent.d.ts
666
674
  type Props$33 = {
@@ -670,7 +678,7 @@ type Props$33 = {
670
678
  declare const MainContent: ({
671
679
  setCurrentContent,
672
680
  onClose
673
- }: Props$33) => react_jsx_runtime3.JSX.Element;
681
+ }: Props$33) => react_jsx_runtime1.JSX.Element;
674
682
  //#endregion
675
683
  //#region src/components/ConnectModal/Components/ConnectionButton.d.ts
676
684
  interface ConnectionButtonProps {
@@ -693,10 +701,10 @@ declare const ConnectionButton: ({
693
701
  style,
694
702
  variant,
695
703
  iconWidth
696
- }: ConnectionButtonProps) => react_jsx_runtime3.JSX.Element | null;
704
+ }: ConnectionButtonProps) => react_jsx_runtime1.JSX.Element | null;
697
705
  //#endregion
698
706
  //#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
699
- declare const EmailLoginButton: () => react_jsx_runtime3.JSX.Element;
707
+ declare const EmailLoginButton: () => react_jsx_runtime1.JSX.Element;
700
708
  //#endregion
701
709
  //#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
702
710
  type Props$32 = {
@@ -706,7 +714,7 @@ type Props$32 = {
706
714
  declare const VeChainLoginButton: ({
707
715
  isDark,
708
716
  gridColumn
709
- }: Props$32) => react_jsx_runtime3.JSX.Element;
717
+ }: Props$32) => react_jsx_runtime1.JSX.Element;
710
718
  //#endregion
711
719
  //#region src/components/ConnectModal/Components/EcosystemButton.d.ts
712
720
  type Props$31 = {
@@ -718,7 +726,7 @@ type Props$31 = {
718
726
  declare const EcosystemButton: ({
719
727
  appsInfo,
720
728
  isLoading
721
- }: Props$31) => react_jsx_runtime3.JSX.Element;
729
+ }: Props$31) => react_jsx_runtime1.JSX.Element;
722
730
  //#endregion
723
731
  //#region src/components/ConnectModal/Components/PrivyButton.d.ts
724
732
  type Props$30 = {
@@ -730,7 +738,7 @@ declare const PrivyButton: ({
730
738
  isDark,
731
739
  onViewMoreLogin,
732
740
  gridColumn
733
- }: Props$30) => react_jsx_runtime3.JSX.Element;
741
+ }: Props$30) => react_jsx_runtime1.JSX.Element;
734
742
  //#endregion
735
743
  //#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
736
744
  type Props$29 = {
@@ -740,7 +748,7 @@ type Props$29 = {
740
748
  declare const LoginWithGoogleButton: ({
741
749
  isDark,
742
750
  gridColumn
743
- }: Props$29) => react_jsx_runtime3.JSX.Element;
751
+ }: Props$29) => react_jsx_runtime1.JSX.Element;
744
752
  //#endregion
745
753
  //#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
746
754
  type Props$28 = {
@@ -750,7 +758,7 @@ type Props$28 = {
750
758
  declare const PasskeyLoginButton: ({
751
759
  isDark,
752
760
  gridColumn
753
- }: Props$28) => react_jsx_runtime3.JSX.Element;
761
+ }: Props$28) => react_jsx_runtime1.JSX.Element;
754
762
  //#endregion
755
763
  //#region src/components/ConnectModal/Components/DappKitButton.d.ts
756
764
  type Props$27 = {
@@ -760,7 +768,7 @@ type Props$27 = {
760
768
  declare const DappKitButton: ({
761
769
  isDark,
762
770
  gridColumn
763
- }: Props$27) => react_jsx_runtime3.JSX.Element;
771
+ }: Props$27) => react_jsx_runtime1.JSX.Element;
764
772
  //#endregion
765
773
  //#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
766
774
  type Props$26 = {
@@ -770,7 +778,7 @@ type Props$26 = {
770
778
  declare const VeChainWithPrivyLoginButton: ({
771
779
  isDark,
772
780
  gridColumn
773
- }: Props$26) => react_jsx_runtime3.JSX.Element;
781
+ }: Props$26) => react_jsx_runtime1.JSX.Element;
774
782
  //#endregion
775
783
  //#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
776
784
  type Props$25 = {
@@ -780,7 +788,7 @@ type Props$25 = {
780
788
  declare const LoginWithGithubButton: ({
781
789
  isDark,
782
790
  gridColumn
783
- }: Props$25) => react_jsx_runtime3.JSX.Element;
791
+ }: Props$25) => react_jsx_runtime1.JSX.Element;
784
792
  //#endregion
785
793
  //#region src/components/ConnectModal/ConnectPopover.d.ts
786
794
  type ConnectPopoverProps = {
@@ -790,7 +798,7 @@ type ConnectPopoverProps = {
790
798
  declare const ConnectPopover: ({
791
799
  isLoading,
792
800
  buttonStyle
793
- }: ConnectPopoverProps) => react_jsx_runtime3.JSX.Element;
801
+ }: ConnectPopoverProps) => react_jsx_runtime1.JSX.Element;
794
802
  //#endregion
795
803
  //#region src/components/WalletButton/types.d.ts
796
804
  type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
@@ -807,10 +815,10 @@ declare const WalletButton: ({
807
815
  desktopVariant,
808
816
  buttonStyle,
809
817
  connectionVariant
810
- }: WalletButtonProps) => react_jsx_runtime3.JSX.Element;
818
+ }: WalletButtonProps) => react_jsx_runtime1.JSX.Element;
811
819
  //#endregion
812
820
  //#region src/components/WalletButton/SocialIcons.d.ts
813
- declare const SocialIcons: () => react_jsx_runtime3.JSX.Element;
821
+ declare const SocialIcons: () => react_jsx_runtime1.JSX.Element;
814
822
  //#endregion
815
823
  //#region src/components/TransactionModal/TransactionModal.d.ts
816
824
  type TransactionModalProps = {
@@ -840,7 +848,7 @@ declare const TransactionModal: ({
840
848
  txReceipt,
841
849
  txError,
842
850
  onTryAgain
843
- }: TransactionModalProps) => react_jsx_runtime3.JSX.Element;
851
+ }: TransactionModalProps) => react_jsx_runtime1.JSX.Element;
844
852
  //#endregion
845
853
  //#region src/components/TransactionModal/Components/ShareButtons.d.ts
846
854
  type Props$24 = {
@@ -850,7 +858,7 @@ type Props$24 = {
850
858
  };
851
859
  declare const ShareButtons: ({
852
860
  descriptionEncoded
853
- }: Props$24) => react_jsx_runtime3.JSX.Element;
861
+ }: Props$24) => react_jsx_runtime1.JSX.Element;
854
862
  //#endregion
855
863
  //#region src/components/TransactionModal/TransactionModalContent.d.ts
856
864
  declare const TransactionModalContent: ({
@@ -860,7 +868,7 @@ declare const TransactionModalContent: ({
860
868
  txReceipt,
861
869
  txError,
862
870
  onClose
863
- }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime3.JSX.Element;
871
+ }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime1.JSX.Element;
864
872
  //#endregion
865
873
  //#region src/components/TransactionToast/TransactionToast.d.ts
866
874
  type TransactionToastProps = {
@@ -880,7 +888,7 @@ declare const TransactionToast: ({
880
888
  txError,
881
889
  onTryAgain,
882
890
  description
883
- }: TransactionToastProps) => react_jsx_runtime3.JSX.Element | null;
891
+ }: TransactionToastProps) => react_jsx_runtime1.JSX.Element | null;
884
892
  //#endregion
885
893
  //#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
886
894
  type Props$23 = {
@@ -892,7 +900,7 @@ declare const AccountMainContent: ({
892
900
  setCurrentContent,
893
901
  wallet,
894
902
  onClose
895
- }: Props$23) => react_jsx_runtime3.JSX.Element;
903
+ }: Props$23) => react_jsx_runtime1.JSX.Element;
896
904
  //#endregion
897
905
  //#region src/components/AccountModal/Contents/Account/AccessAndSecurityContent.d.ts
898
906
  type Props$22 = {
@@ -900,7 +908,7 @@ type Props$22 = {
900
908
  };
901
909
  declare const AccessAndSecurityContent: ({
902
910
  setCurrentContent
903
- }: Props$22) => react_jsx_runtime3.JSX.Element;
911
+ }: Props$22) => react_jsx_runtime1.JSX.Element;
904
912
  //#endregion
905
913
  //#region src/components/AccountModal/Contents/Account/SettingsContent.d.ts
906
914
  type SettingsContentProps = {
@@ -910,7 +918,7 @@ type SettingsContentProps = {
910
918
  declare const SettingsContent: ({
911
919
  setCurrentContent,
912
920
  onLogoutSuccess
913
- }: SettingsContentProps) => react_jsx_runtime3.JSX.Element;
921
+ }: SettingsContentProps) => react_jsx_runtime1.JSX.Element;
914
922
  //#endregion
915
923
  //#region src/components/AccountModal/Contents/Account/EmbeddedWalletContent.d.ts
916
924
  type Props$21 = {
@@ -918,7 +926,7 @@ type Props$21 = {
918
926
  };
919
927
  declare const EmbeddedWalletContent: ({
920
928
  setCurrentContent
921
- }: Props$21) => react_jsx_runtime3.JSX.Element;
929
+ }: Props$21) => react_jsx_runtime1.JSX.Element;
922
930
  //#endregion
923
931
  //#region src/components/AccountModal/Contents/Account/DisconnectConfirmContent.d.ts
924
932
  type DisconnectConfirmContentProps = {
@@ -934,12 +942,12 @@ declare const DisconnectConfirmContent: ({
934
942
  onClose,
935
943
  showCloseButton,
936
944
  text
937
- }: DisconnectConfirmContentProps) => react_jsx_runtime3.JSX.Element;
945
+ }: DisconnectConfirmContentProps) => react_jsx_runtime1.JSX.Element;
938
946
  //#endregion
939
947
  //#region src/hooks/api/privy/useFetchAppInfo.d.ts
940
948
  declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
941
949
  declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
942
- declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
950
+ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query17.UseQueryResult<{
943
951
  [k: string]: {
944
952
  website: string | undefined;
945
953
  id: string;
@@ -960,7 +968,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
960
968
  //#endregion
961
969
  //#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
962
970
  declare const fetchPrivyStatus: () => Promise<string>;
963
- declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
971
+ declare const useFetchPrivyStatus: () => _tanstack_react_query17.UseQueryResult<string, Error>;
964
972
  //#endregion
965
973
  //#region src/hooks/api/vetDomains/useVechainDomain.d.ts
966
974
  interface VeChainDomainResult {
@@ -970,11 +978,11 @@ interface VeChainDomainResult {
970
978
  isPrimaryDomain: boolean;
971
979
  }
972
980
  declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
973
- declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
981
+ declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query17.UseQueryResult<VeChainDomainResult, Error>;
974
982
  //#endregion
975
983
  //#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
976
984
  declare const getEnsRecordExistsQueryKey: (name: string) => string[];
977
- declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
985
+ declare const useEnsRecordExists: (name: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
978
986
  //#endregion
979
987
  //#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
980
988
  type useClaimVeWorldSubdomainProps = {
@@ -1014,7 +1022,7 @@ type useClaimVetDomainReturnValue = {
1014
1022
  sendTransaction: () => Promise<void>;
1015
1023
  clauses: () => TransactionClause[];
1016
1024
  } & Omit<UseSendTransactionReturnValue, 'sendTransaction'>;
1017
- declare const buildVetDomainClauses: (domain: string, alreadyOwned: boolean, account: Wallet, network: VechainKitProviderProps["network"]) => TransactionClause[];
1025
+ declare const buildVetDomainClauses: (domain: string, alreadyOwned: boolean, account: Wallet, network: VeChainKitConfig["network"]) => TransactionClause[];
1018
1026
  /**
1019
1027
  * Hook for claiming a .vet domain
1020
1028
  *
@@ -1036,7 +1044,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
1036
1044
  * @param {boolean} [enabled=true] - Flag to enable or disable the hook.
1037
1045
  * @returns The result of the useQuery hook, with the protection status.
1038
1046
  */
1039
- declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1047
+ declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
1040
1048
  //#endregion
1041
1049
  //#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
1042
1050
  declare const DomainSchema: z.ZodObject<{
@@ -1064,7 +1072,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
1064
1072
  * @param parentDomain The parent domain (e.g., "veworld.vet")
1065
1073
  * @returns The domains owned by the address
1066
1074
  */
1067
- declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
1075
+ declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query17.UseQueryResult<{
1068
1076
  domains: {
1069
1077
  name: string;
1070
1078
  }[];
@@ -1077,7 +1085,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
1077
1085
  * @param name - The VET domain name
1078
1086
  * @returns The resolved avatar URL
1079
1087
  */
1080
- declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1088
+ declare const useGetAvatar: (name: string) => _tanstack_react_query17.UseQueryResult<string | null, Error>;
1081
1089
  //#endregion
1082
1090
  //#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
1083
1091
  /**
@@ -1089,7 +1097,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryRes
1089
1097
  */
1090
1098
  declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
1091
1099
  declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
1092
- declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
1100
+ declare const useGetTextRecords: (domain?: string) => _tanstack_react_query17.UseQueryResult<TextRecords, Error>;
1093
1101
  //#endregion
1094
1102
  //#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
1095
1103
  type UpdateTextRecordVariables = {
@@ -1122,7 +1130,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
1122
1130
  * @param domain The domain to get resolver for
1123
1131
  * @returns The resolver address for the domain
1124
1132
  */
1125
- declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
1133
+ declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query17.UseQueryResult<`0x${string}`, unknown>;
1126
1134
  //#endregion
1127
1135
  //#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
1128
1136
  declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
@@ -1132,7 +1140,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
1132
1140
  * @param address The owner's address
1133
1141
  * @returns The avatar URL for the address's primary domain
1134
1142
  */
1135
- declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
1143
+ declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query17.UseQueryResult<string, Error>;
1136
1144
  //#endregion
1137
1145
  //#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
1138
1146
  /**
@@ -1149,7 +1157,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
1149
1157
  * @param name - The VET domain name
1150
1158
  * @returns The resolved avatar URL
1151
1159
  */
1152
- declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1160
+ declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query17.UseQueryResult<string | null, Error>;
1153
1161
  //#endregion
1154
1162
  //#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
1155
1163
  type useUnsetDomainProps = {
@@ -1258,7 +1266,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
1258
1266
  * Hook to get the current roundId of allocations voting
1259
1267
  * @returns the current roundId of allocations voting
1260
1268
  */
1261
- declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
1269
+ declare const useCurrentAllocationsRoundId: () => _tanstack_react_query17.UseQueryResult<string, unknown>;
1262
1270
  //#endregion
1263
1271
  //#region src/hooks/api/wallet/useCustomTokens.d.ts
1264
1272
  declare const useCustomTokens: () => {
@@ -1271,7 +1279,7 @@ declare const useCustomTokens: () => {
1271
1279
  //#endregion
1272
1280
  //#region src/hooks/api/wallet/useGetB3trBalance.d.ts
1273
1281
  declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
1274
- declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1282
+ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1275
1283
  original: string;
1276
1284
  scaled: string;
1277
1285
  formatted: string;
@@ -1280,7 +1288,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.Us
1280
1288
  //#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
1281
1289
  type TokenWithBalance = CustomTokenInfo & TokenBalance;
1282
1290
  declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
1283
- declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1291
+ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1284
1292
  original: string;
1285
1293
  scaled: string;
1286
1294
  formatted: string;
@@ -1291,13 +1299,13 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
1291
1299
  }, Error>[];
1292
1300
  //#endregion
1293
1301
  //#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
1294
- declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1302
+ declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1295
1303
  declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
1296
- declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
1304
+ declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query17.UseQueryResult<CustomTokenInfo, Error>;
1297
1305
  //#endregion
1298
1306
  //#region src/hooks/api/wallet/useGetErc20Balance.d.ts
1299
1307
  declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
1300
- declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query8.UseQueryResult<{
1308
+ declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query17.UseQueryResult<{
1301
1309
  original: string;
1302
1310
  scaled: string;
1303
1311
  formatted: string;
@@ -1314,11 +1322,11 @@ declare const PRICE_FEED_IDS: {
1314
1322
  type SupportedToken = keyof typeof PRICE_FEED_IDS;
1315
1323
  declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
1316
1324
  declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
1317
- declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
1325
+ declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query17.UseQueryResult<number, Error>;
1318
1326
  //#endregion
1319
1327
  //#region src/hooks/api/wallet/useGetVot3Balance.d.ts
1320
1328
  declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
1321
- declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1329
+ declare const useGetVot3Balance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1322
1330
  original: string;
1323
1331
  scaled: string;
1324
1332
  formatted: string;
@@ -1337,7 +1345,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
1337
1345
  * @param user - The user address.
1338
1346
  * @returns The isPerson status.
1339
1347
  */
1340
- declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1348
+ declare const useIsPerson: (user?: string | null) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
1341
1349
  //#endregion
1342
1350
  //#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
1343
1351
  type XApp = {
@@ -1375,7 +1383,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
1375
1383
  //#endregion
1376
1384
  //#region src/hooks/api/wallet/useRoundXApps.d.ts
1377
1385
  declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => (string | unknown[])[];
1378
- declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1386
+ declare const useRoundXApps: (roundId?: string) => _tanstack_react_query17.UseQueryResult<{
1379
1387
  id: string;
1380
1388
  teamWalletAddress: `0x${string}`;
1381
1389
  name: string;
@@ -1406,7 +1414,7 @@ type UseWalletReturnType = {
1406
1414
  };
1407
1415
  disconnect: () => Promise<void>;
1408
1416
  };
1409
- declare const useWallet$1: () => UseWalletReturnType;
1417
+ declare const useWallet: () => UseWalletReturnType;
1410
1418
  //#endregion
1411
1419
  //#region src/hooks/api/wallet/useWalletMetadata.d.ts
1412
1420
  declare const useWalletMetadata: (address: string, networkType: NETWORK_TYPE) => {
@@ -1458,7 +1466,7 @@ type XAppMetadata = {
1458
1466
  * @returns The metadata of the xApp see {@link XAppMetadata}
1459
1467
  */
1460
1468
  declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
1461
- declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
1469
+ declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query17.UseQueryResult<XAppMetadata | undefined, Error>;
1462
1470
  //#endregion
1463
1471
  //#region src/hooks/api/wallet/useXAppShares.d.ts
1464
1472
  /**
@@ -1473,7 +1481,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
1473
1481
  * @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
1474
1482
  *
1475
1483
  */
1476
- declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1484
+ declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query17.UseQueryResult<{
1477
1485
  app: string;
1478
1486
  share: number;
1479
1487
  unallocatedShare: number;
@@ -1495,7 +1503,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
1495
1503
  * @param ipfsUri - The IPFS URI
1496
1504
  * @returns The metadata from IPFS
1497
1505
  */
1498
- declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
1506
+ declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<T$1>, Error>;
1499
1507
  //#endregion
1500
1508
  //#region src/hooks/api/ipfs/useIpfsImage.d.ts
1501
1509
  interface IpfsImage {
@@ -1522,14 +1530,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
1522
1530
  * @param imageIpfsUri - The IPFS URI of the NFT media
1523
1531
  * @returns The NFT media
1524
1532
  */
1525
- declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
1533
+ declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query17.UseQueryResult<IpfsImage, Error>;
1526
1534
  /**
1527
1535
  * Custom hook to fetch a list of IPFS images.
1528
1536
  *
1529
1537
  * @param imageIpfsUriList - An array of IPFS URIs for the images.
1530
1538
  * @returns An array of queries for each IPFS image URI.
1531
1539
  */
1532
- declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
1540
+ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query17.UseQueryResult<IpfsImage, Error>[];
1533
1541
  //#endregion
1534
1542
  //#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
1535
1543
  /**
@@ -1537,7 +1545,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
1537
1545
  * @param ipfsUris - The IPFS URIs
1538
1546
  * @returns The metadata from IPFS for each URI
1539
1547
  */
1540
- declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
1548
+ declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query17.UseQueryResult<T$1, Error>[];
1541
1549
  //#endregion
1542
1550
  //#region src/hooks/api/ipfs/useUploadImages.d.ts
1543
1551
  declare const imageCompressionOptions: Options;
@@ -1756,7 +1764,7 @@ declare const ConnectModalProvider: ({
1756
1764
  children
1757
1765
  }: {
1758
1766
  children: ReactNode;
1759
- }) => react_jsx_runtime3.JSX.Element;
1767
+ }) => react_jsx_runtime1.JSX.Element;
1760
1768
  //#endregion
1761
1769
  //#region src/hooks/modals/useAccountModal.d.ts
1762
1770
  declare const useAccountModal: () => {
@@ -1768,7 +1776,7 @@ declare const AccountModalProvider: ({
1768
1776
  children
1769
1777
  }: {
1770
1778
  children: ReactNode;
1771
- }) => react_jsx_runtime3.JSX.Element;
1779
+ }) => react_jsx_runtime1.JSX.Element;
1772
1780
  //#endregion
1773
1781
  //#region src/hooks/modals/useTransactionModal.d.ts
1774
1782
  declare const useTransactionModal: () => {
@@ -1780,7 +1788,7 @@ declare const TransactionModalProvider: ({
1780
1788
  children
1781
1789
  }: {
1782
1790
  children: ReactNode;
1783
- }) => react_jsx_runtime3.JSX.Element;
1791
+ }) => react_jsx_runtime1.JSX.Element;
1784
1792
  //#endregion
1785
1793
  //#region src/hooks/modals/useTransactionToast.d.ts
1786
1794
  declare const useTransactionToast: () => {
@@ -1792,7 +1800,7 @@ declare const TransactionToastProvider: ({
1792
1800
  children
1793
1801
  }: {
1794
1802
  children: ReactNode;
1795
- }) => react_jsx_runtime3.JSX.Element;
1803
+ }) => react_jsx_runtime1.JSX.Element;
1796
1804
  //#endregion
1797
1805
  //#region src/hooks/modals/useWalletModal.d.ts
1798
1806
  declare const useWalletModal: () => {
@@ -1804,7 +1812,7 @@ declare const WalletModalProvider: ({
1804
1812
  children
1805
1813
  }: {
1806
1814
  children: ReactNode;
1807
- }) => react_jsx_runtime3.JSX.Element;
1815
+ }) => react_jsx_runtime1.JSX.Element;
1808
1816
  //#endregion
1809
1817
  //#region src/hooks/modals/useChooseNameModal.d.ts
1810
1818
  declare const useChooseNameModal: () => {
@@ -1816,7 +1824,7 @@ declare const ChooseNameModalProvider: ({
1816
1824
  children
1817
1825
  }: {
1818
1826
  children: ReactNode;
1819
- }) => react_jsx_runtime3.JSX.Element;
1827
+ }) => react_jsx_runtime1.JSX.Element;
1820
1828
  //#endregion
1821
1829
  //#region src/hooks/modals/useSendTokenModal.d.ts
1822
1830
  declare const useSendTokenModal: () => {
@@ -1828,7 +1836,7 @@ declare const SendTokenModalProvider: ({
1828
1836
  children
1829
1837
  }: {
1830
1838
  children: ReactNode;
1831
- }) => react_jsx_runtime3.JSX.Element;
1839
+ }) => react_jsx_runtime1.JSX.Element;
1832
1840
  //#endregion
1833
1841
  //#region src/hooks/modals/useSwapTokenModal.d.ts
1834
1842
  type SwapTokenModalOptions = {
@@ -1845,7 +1853,7 @@ declare const SwapTokenModalProvider: ({
1845
1853
  children
1846
1854
  }: {
1847
1855
  children: ReactNode;
1848
- }) => react_jsx_runtime3.JSX.Element;
1856
+ }) => react_jsx_runtime1.JSX.Element;
1849
1857
  //#endregion
1850
1858
  //#region src/hooks/modals/useAccessAndSecurityModal.d.ts
1851
1859
  declare const useAccessAndSecurityModal: () => {
@@ -1857,7 +1865,7 @@ declare const AccessAndSecurityModalProvider: ({
1857
1865
  children
1858
1866
  }: {
1859
1867
  children: ReactNode;
1860
- }) => react_jsx_runtime3.JSX.Element;
1868
+ }) => react_jsx_runtime1.JSX.Element;
1861
1869
  //#endregion
1862
1870
  //#region src/hooks/modals/useExploreEcosystemModal.d.ts
1863
1871
  declare const useExploreEcosystemModal: () => {
@@ -1869,7 +1877,7 @@ declare const ExploreEcosystemModalProvider: ({
1869
1877
  children
1870
1878
  }: {
1871
1879
  children: ReactNode;
1872
- }) => react_jsx_runtime3.JSX.Element;
1880
+ }) => react_jsx_runtime1.JSX.Element;
1873
1881
  //#endregion
1874
1882
  //#region src/hooks/modals/useNotificationsModal.d.ts
1875
1883
  declare const useNotificationsModal: () => {
@@ -1881,7 +1889,7 @@ declare const NotificationsModalProvider: ({
1881
1889
  children
1882
1890
  }: {
1883
1891
  children: ReactNode;
1884
- }) => react_jsx_runtime3.JSX.Element;
1892
+ }) => react_jsx_runtime1.JSX.Element;
1885
1893
  //#endregion
1886
1894
  //#region src/hooks/modals/useFAQModal.d.ts
1887
1895
  declare const useFAQModal: () => {
@@ -1893,7 +1901,7 @@ declare const FAQModalProvider: ({
1893
1901
  children
1894
1902
  }: {
1895
1903
  children: ReactNode;
1896
- }) => react_jsx_runtime3.JSX.Element;
1904
+ }) => react_jsx_runtime1.JSX.Element;
1897
1905
  //#endregion
1898
1906
  //#region src/hooks/modals/useAccountCustomizationModal.d.ts
1899
1907
  declare const useAccountCustomizationModal: () => {
@@ -1905,7 +1913,7 @@ declare const AccountCustomizationModalProvider: ({
1905
1913
  children
1906
1914
  }: {
1907
1915
  children: ReactNode;
1908
- }) => react_jsx_runtime3.JSX.Element;
1916
+ }) => react_jsx_runtime1.JSX.Element;
1909
1917
  //#endregion
1910
1918
  //#region src/hooks/modals/useReceiveModal.d.ts
1911
1919
  declare const useReceiveModal: () => {
@@ -1917,7 +1925,7 @@ declare const ReceiveModalProvider: ({
1917
1925
  children
1918
1926
  }: {
1919
1927
  children: ReactNode;
1920
- }) => react_jsx_runtime3.JSX.Element;
1928
+ }) => react_jsx_runtime1.JSX.Element;
1921
1929
  //#endregion
1922
1930
  //#region src/hooks/modals/useLoginModalContent.d.ts
1923
1931
  type LoginModalContentConfig = {
@@ -1943,7 +1951,7 @@ declare const UpgradeSmartAccountModalProvider: ({
1943
1951
  children
1944
1952
  }: {
1945
1953
  children: ReactNode;
1946
- }) => react_jsx_runtime3.JSX.Element;
1954
+ }) => react_jsx_runtime1.JSX.Element;
1947
1955
  //#endregion
1948
1956
  //#region src/hooks/modals/useProfileModal.d.ts
1949
1957
  declare const useProfileModal: () => {
@@ -1955,7 +1963,7 @@ declare const ProfileModalProvider: ({
1955
1963
  children
1956
1964
  }: {
1957
1965
  children: ReactNode;
1958
- }) => react_jsx_runtime3.JSX.Element;
1966
+ }) => react_jsx_runtime1.JSX.Element;
1959
1967
  //#endregion
1960
1968
  //#region src/hooks/modals/useAccountModalOptions.d.ts
1961
1969
  declare const useAccountModalOptions: () => {
@@ -2026,7 +2034,7 @@ type UseSignTypedDataReturnValue = {
2026
2034
  declare const useSignTypedData: () => UseSignTypedDataReturnValue;
2027
2035
  //#endregion
2028
2036
  //#region src/hooks/login/useLoginWithPasskey.d.ts
2029
- declare const useLoginWithPasskey$1: () => {
2037
+ declare const useLoginWithPasskey: () => {
2030
2038
  loginWithPasskey: () => Promise<void>;
2031
2039
  };
2032
2040
  //#endregion
@@ -2034,7 +2042,7 @@ declare const useLoginWithPasskey$1: () => {
2034
2042
  interface OAuthOptions {
2035
2043
  provider: OAuthProviderType;
2036
2044
  }
2037
- declare const useLoginWithOAuth$1: () => {
2045
+ declare const useLoginWithOAuth: () => {
2038
2046
  initOAuth: ({
2039
2047
  provider
2040
2048
  }: OAuthOptions) => Promise<void>;
@@ -2091,7 +2099,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
2091
2099
  * );
2092
2100
  * ```
2093
2101
  */
2094
- declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
2102
+ declare const useAppHubApps: () => _tanstack_react_query17.UseQueryResult<AppHubApp[], Error>;
2095
2103
  //#endregion
2096
2104
  //#region src/utils/constants.d.ts
2097
2105
  declare const TOKEN_LOGOS: Record<string, string>;
@@ -2438,7 +2446,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
2438
2446
  method: TMethod;
2439
2447
  args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
2440
2448
  queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
2441
- }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
2449
+ }) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<TData>, unknown>;
2442
2450
  declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
2443
2451
  thor,
2444
2452
  calls,
@@ -2449,7 +2457,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
2449
2457
  calls: MultipleClausesCallParameters<contracts, allowFailure>;
2450
2458
  queryKey: string[];
2451
2459
  enabled?: boolean;
2452
- }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
2460
+ }) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
2453
2461
  //#endregion
2454
2462
  //#region src/hooks/utils/useCurrency.d.ts
2455
2463
  /**
@@ -2513,7 +2521,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
2513
2521
  filterParams,
2514
2522
  mapResponse,
2515
2523
  nodeUrl
2516
- }: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
2524
+ }: UseEventsParams<T$1, K, R>) => _tanstack_react_query17.UseQueryResult<R[], Error>;
2517
2525
  //#endregion
2518
2526
  //#region src/hooks/utils/useBuildClauses.d.ts
2519
2527
  interface BuildClausesParams {
@@ -2664,7 +2672,7 @@ declare const useGasEstimation: ({
2664
2672
  tokens,
2665
2673
  sendingAmount,
2666
2674
  sendingTokenSymbol
2667
- }: UseGasEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
2675
+ }: UseGasEstimationParams) => _tanstack_react_query17.UseQueryResult<EstimationResponse & {
2668
2676
  usedToken: string;
2669
2677
  }, Error>;
2670
2678
  //#endregion
@@ -2678,7 +2686,7 @@ declare const useEstimateAllTokens: ({
2678
2686
  clauses,
2679
2687
  tokens,
2680
2688
  enabled
2681
- }: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
2689
+ }: UseEstimateAllTokensParams) => _tanstack_react_query17.UseQueryResult<Record<GasTokenType, {
2682
2690
  cost: number;
2683
2691
  loading: boolean;
2684
2692
  error?: string;
@@ -2695,7 +2703,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
2695
2703
  * @param address The address of the account to get the balance for
2696
2704
  * @returns The account balance
2697
2705
  */
2698
- declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
2706
+ declare const useAccountBalance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
2699
2707
  balance: string;
2700
2708
  energy: string;
2701
2709
  }, Error>;
@@ -2708,7 +2716,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
2708
2716
  * @param version - The version of the smart account implementation
2709
2717
  * @returns The address of the smart account implementation
2710
2718
  */
2711
- declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
2719
+ declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query17.UseQueryResult<string, Error>;
2712
2720
  //#endregion
2713
2721
  //#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
2714
2722
  declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
@@ -2717,7 +2725,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
2717
2725
  * Get the current account implementation version used by the smart account factory
2718
2726
  * @returns The current account implementation version
2719
2727
  */
2720
- declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
2728
+ declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query17.UseQueryResult<number, Error>;
2721
2729
  //#endregion
2722
2730
  //#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
2723
2731
  declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
@@ -2727,7 +2735,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
2727
2735
  * @param ownerAddress - The address of the owner of the smart account
2728
2736
  * @returns The address of the smart account
2729
2737
  */
2730
- declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
2738
+ declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<string, Error>;
2731
2739
  //#endregion
2732
2740
  //#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
2733
2741
  declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => (string | unknown[])[];
@@ -2737,7 +2745,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
2737
2745
  * @param ownerAddress - The address of the owner of the smart account
2738
2746
  * @returns The version of the smart account
2739
2747
  */
2740
- declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
2748
+ declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query17.UseQueryResult<{
2741
2749
  version: number;
2742
2750
  isDeployed: boolean;
2743
2751
  }, unknown>;
@@ -2750,7 +2758,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
2750
2758
  * @param ownerAddress - The address of the owner of the smart account
2751
2759
  * @returns True if the smart account has a v1 smart account, false otherwise
2752
2760
  */
2753
- declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2761
+ declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2754
2762
  //#endregion
2755
2763
  //#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
2756
2764
  declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
@@ -2759,7 +2767,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
2759
2767
  * Check if a smart account is deployed
2760
2768
  * @returns True if the smart account is deployed, false otherwise
2761
2769
  */
2762
- declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2770
+ declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2763
2771
  //#endregion
2764
2772
  //#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
2765
2773
  /**
@@ -2792,7 +2800,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
2792
2800
  isDeployed: boolean;
2793
2801
  }>;
2794
2802
  declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
2795
- declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
2803
+ declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<{
2796
2804
  address: undefined;
2797
2805
  isDeployed?: undefined;
2798
2806
  } | {
@@ -2810,7 +2818,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
2810
2818
  * @param targetVersion - The version of the smart account to check for
2811
2819
  * @returns True if the smart account needs an upgrade, false otherwise
2812
2820
  */
2813
- declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2821
+ declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2814
2822
  //#endregion
2815
2823
  //#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
2816
2824
  declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
@@ -2821,7 +2829,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
2821
2829
  * @param targetVersion - The target version of the smart account
2822
2830
  * @returns True if the smart account needs an upgrade, false otherwise
2823
2831
  */
2824
- declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2832
+ declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2825
2833
  //#endregion
2826
2834
  //#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
2827
2835
  type UseUpgradeSmartAccountVersionProps = {
@@ -2846,7 +2854,7 @@ declare const currentBlockQueryKey: () => string[];
2846
2854
  * Fetches the current block from the blockchain. The block is refetched every 10 seconds.
2847
2855
  * @returns the current block
2848
2856
  */
2849
- declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
2857
+ declare const useCurrentBlock: () => _tanstack_react_query17.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
2850
2858
  //#endregion
2851
2859
  //#region src/hooks/thor/blocks/useGetChainId.d.ts
2852
2860
  declare const getChainId: (thor: ThorClient) => Promise<string>;
@@ -2855,7 +2863,7 @@ declare const getChainIdQueryKey: () => string[];
2855
2863
  * Get the chain id
2856
2864
  * @returns The chain id
2857
2865
  */
2858
- declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
2866
+ declare const useGetChainId: () => _tanstack_react_query17.UseQueryResult<string, Error>;
2859
2867
  //#endregion
2860
2868
  //#region src/hooks/thor/logs/logUtils.d.ts
2861
2869
  /**
@@ -3096,7 +3104,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
3096
3104
  * @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
3097
3105
  * @returns Query result containing the transaction receipt
3098
3106
  */
3099
- declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3107
+ declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query17.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3100
3108
  //#endregion
3101
3109
  //#region src/components/AccountModal/Contents/SendToken/SendTokenContent.d.ts
3102
3110
  type SendTokenContentProps = {
@@ -3112,7 +3120,7 @@ declare const SendTokenContent: ({
3112
3120
  initialAmount,
3113
3121
  initialToAddressOrDomain,
3114
3122
  onBack: parentOnBack
3115
- }: SendTokenContentProps) => react_jsx_runtime3.JSX.Element;
3123
+ }: SendTokenContentProps) => react_jsx_runtime1.JSX.Element;
3116
3124
  //#endregion
3117
3125
  //#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
3118
3126
  type SendTokenSummaryContentProps = {
@@ -3132,7 +3140,7 @@ declare const SendTokenSummaryContent: ({
3132
3140
  amount,
3133
3141
  selectedToken,
3134
3142
  formattedTotalAmount
3135
- }: SendTokenSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3143
+ }: SendTokenSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3136
3144
  //#endregion
3137
3145
  //#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
3138
3146
  type Props$18 = {
@@ -3148,7 +3156,7 @@ declare const SelectTokenContent: ({
3148
3156
  onSelectToken,
3149
3157
  onBack,
3150
3158
  showAllTokens
3151
- }: Props$18) => react_jsx_runtime3.JSX.Element;
3159
+ }: Props$18) => react_jsx_runtime1.JSX.Element;
3152
3160
  //#endregion
3153
3161
  //#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
3154
3162
  type Props$17 = {
@@ -3156,7 +3164,7 @@ type Props$17 = {
3156
3164
  };
3157
3165
  declare const ReceiveTokenContent: ({
3158
3166
  setCurrentContent
3159
- }: Props$17) => react_jsx_runtime3.JSX.Element;
3167
+ }: Props$17) => react_jsx_runtime1.JSX.Element;
3160
3168
  //#endregion
3161
3169
  //#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
3162
3170
  type Props$16 = {
@@ -3168,7 +3176,7 @@ declare const SwapTokenContent: ({
3168
3176
  setCurrentContent,
3169
3177
  fromTokenAddress,
3170
3178
  toTokenAddress
3171
- }: Props$16) => react_jsx_runtime3.JSX.Element;
3179
+ }: Props$16) => react_jsx_runtime1.JSX.Element;
3172
3180
  //#endregion
3173
3181
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
3174
3182
  type ChooseNameContentProps = {
@@ -3180,7 +3188,7 @@ declare const ChooseNameContent: ({
3180
3188
  setCurrentContent,
3181
3189
  onBack,
3182
3190
  initialContentSource
3183
- }: ChooseNameContentProps) => react_jsx_runtime3.JSX.Element;
3191
+ }: ChooseNameContentProps) => react_jsx_runtime1.JSX.Element;
3184
3192
  //#endregion
3185
3193
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
3186
3194
  type ChooseNameSearchContentProps = {
@@ -3192,7 +3200,7 @@ declare const ChooseNameSearchContent: ({
3192
3200
  name: initialName,
3193
3201
  setCurrentContent,
3194
3202
  initialContentSource
3195
- }: ChooseNameSearchContentProps) => react_jsx_runtime3.JSX.Element;
3203
+ }: ChooseNameSearchContentProps) => react_jsx_runtime1.JSX.Element;
3196
3204
  //#endregion
3197
3205
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
3198
3206
  type ChooseNameSummaryContentProps = {
@@ -3210,7 +3218,7 @@ declare const ChooseNameSummaryContent: ({
3210
3218
  isOwnDomain,
3211
3219
  isUnsetting,
3212
3220
  initialContentSource
3213
- }: ChooseNameSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3221
+ }: ChooseNameSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3214
3222
  //#endregion
3215
3223
  //#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
3216
3224
  type FAQContentProps = {
@@ -3220,7 +3228,7 @@ type FAQContentProps = {
3220
3228
  declare const FAQContent: ({
3221
3229
  onGoBack,
3222
3230
  showLanguageSelector
3223
- }: FAQContentProps) => react_jsx_runtime3.JSX.Element;
3231
+ }: FAQContentProps) => react_jsx_runtime1.JSX.Element;
3224
3232
  //#endregion
3225
3233
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
3226
3234
  type AccountCustomizationContentProps = {
@@ -3230,7 +3238,7 @@ type AccountCustomizationContentProps = {
3230
3238
  declare const CustomizationContent: ({
3231
3239
  setCurrentContent,
3232
3240
  initialContentSource
3233
- }: AccountCustomizationContentProps) => react_jsx_runtime3.JSX.Element;
3241
+ }: AccountCustomizationContentProps) => react_jsx_runtime1.JSX.Element;
3234
3242
  //#endregion
3235
3243
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
3236
3244
  type CustomizationSummaryContentProps = {
@@ -3249,7 +3257,7 @@ declare const CustomizationSummaryContent: ({
3249
3257
  setCurrentContent,
3250
3258
  changes,
3251
3259
  onDoneRedirectContent
3252
- }: CustomizationSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3260
+ }: CustomizationSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3253
3261
  //#endregion
3254
3262
  //#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
3255
3263
  type ProfileContentProps = {
@@ -3259,7 +3267,7 @@ type ProfileContentProps = {
3259
3267
  declare const ProfileContent: ({
3260
3268
  setCurrentContent,
3261
3269
  onLogoutSuccess
3262
- }: ProfileContentProps) => react_jsx_runtime3.JSX.Element;
3270
+ }: ProfileContentProps) => react_jsx_runtime1.JSX.Element;
3263
3271
  //#endregion
3264
3272
  //#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
3265
3273
  type UpgradeSmartAccountContentProps = {
@@ -3271,7 +3279,7 @@ declare const UpgradeSmartAccountContent: ({
3271
3279
  setCurrentContent,
3272
3280
  handleClose,
3273
3281
  initialContent
3274
- }: UpgradeSmartAccountContentProps) => react_jsx_runtime3.JSX.Element;
3282
+ }: UpgradeSmartAccountContentProps) => react_jsx_runtime1.JSX.Element;
3275
3283
  //#endregion
3276
3284
  //#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
3277
3285
  type AssetsContentProps = {
@@ -3279,7 +3287,7 @@ type AssetsContentProps = {
3279
3287
  };
3280
3288
  declare const AssetsContent: ({
3281
3289
  setCurrentContent
3282
- }: AssetsContentProps) => react_jsx_runtime3.JSX.Element;
3290
+ }: AssetsContentProps) => react_jsx_runtime1.JSX.Element;
3283
3291
  //#endregion
3284
3292
  //#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
3285
3293
  type ManageCustomTokenContentProps = {
@@ -3287,7 +3295,7 @@ type ManageCustomTokenContentProps = {
3287
3295
  };
3288
3296
  declare const ManageCustomTokenContent: ({
3289
3297
  setCurrentContent
3290
- }: ManageCustomTokenContentProps) => react_jsx_runtime3.JSX.Element;
3298
+ }: ManageCustomTokenContentProps) => react_jsx_runtime1.JSX.Element;
3291
3299
  //#endregion
3292
3300
  //#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
3293
3301
  type Props$15 = {
@@ -3295,7 +3303,7 @@ type Props$15 = {
3295
3303
  };
3296
3304
  declare const BridgeContent: ({
3297
3305
  setCurrentContent
3298
- }: Props$15) => react_jsx_runtime3.JSX.Element;
3306
+ }: Props$15) => react_jsx_runtime1.JSX.Element;
3299
3307
  //#endregion
3300
3308
  //#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
3301
3309
  type ChangeCurrencyContentProps = {
@@ -3303,7 +3311,7 @@ type ChangeCurrencyContentProps = {
3303
3311
  };
3304
3312
  declare const ChangeCurrencyContent: ({
3305
3313
  setCurrentContent
3306
- }: ChangeCurrencyContentProps) => react_jsx_runtime3.JSX.Element;
3314
+ }: ChangeCurrencyContentProps) => react_jsx_runtime1.JSX.Element;
3307
3315
  //#endregion
3308
3316
  //#region src/components/AccountModal/Contents/KitSettings/GeneralSettingsContent.d.ts
3309
3317
  type Props$14 = {
@@ -3311,7 +3319,7 @@ type Props$14 = {
3311
3319
  };
3312
3320
  declare const GeneralSettingsContent: ({
3313
3321
  setCurrentContent
3314
- }: Props$14) => react_jsx_runtime3.JSX.Element;
3322
+ }: Props$14) => react_jsx_runtime1.JSX.Element;
3315
3323
  //#endregion
3316
3324
  //#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
3317
3325
  type Props$13 = {
@@ -3319,7 +3327,7 @@ type Props$13 = {
3319
3327
  };
3320
3328
  declare const LanguageSettingsContent: ({
3321
3329
  setCurrentContent
3322
- }: Props$13) => react_jsx_runtime3.JSX.Element;
3330
+ }: Props$13) => react_jsx_runtime1.JSX.Element;
3323
3331
  //#endregion
3324
3332
  //#region src/components/AccountModal/Contents/KitSettings/AppearanceSettingsContent.d.ts
3325
3333
  type Props$12 = {
@@ -3327,7 +3335,7 @@ type Props$12 = {
3327
3335
  };
3328
3336
  declare const AppearanceSettingsContent: ({
3329
3337
  setCurrentContent
3330
- }: Props$12) => react_jsx_runtime3.JSX.Element;
3338
+ }: Props$12) => react_jsx_runtime1.JSX.Element;
3331
3339
  //#endregion
3332
3340
  //#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
3333
3341
  type Props$11 = {
@@ -3335,7 +3343,7 @@ type Props$11 = {
3335
3343
  };
3336
3344
  declare const GasTokenSettingsContent: ({
3337
3345
  setCurrentContent
3338
- }: Props$11) => react_jsx_runtime3.JSX.Element;
3346
+ }: Props$11) => react_jsx_runtime1.JSX.Element;
3339
3347
  //#endregion
3340
3348
  //#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
3341
3349
  type TermsAndPrivacyContentProps = {
@@ -3343,7 +3351,7 @@ type TermsAndPrivacyContentProps = {
3343
3351
  };
3344
3352
  declare const TermsAndPrivacyContent: ({
3345
3353
  onGoBack
3346
- }: TermsAndPrivacyContentProps) => react_jsx_runtime3.JSX.Element;
3354
+ }: TermsAndPrivacyContentProps) => react_jsx_runtime1.JSX.Element;
3347
3355
  //#endregion
3348
3356
  //#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
3349
3357
  type CategoryFilter = string | null;
@@ -3447,7 +3455,7 @@ declare const AccountModal: ({
3447
3455
  isOpen,
3448
3456
  onClose,
3449
3457
  initialContent
3450
- }: Props$10) => react_jsx_runtime3.JSX.Element;
3458
+ }: Props$10) => react_jsx_runtime1.JSX.Element;
3451
3459
  //#endregion
3452
3460
  //#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
3453
3461
  interface AccountDetailsButtonProps {
@@ -3469,7 +3477,7 @@ declare const AccountDetailsButton: ({
3469
3477
  onClick,
3470
3478
  leftImage,
3471
3479
  isActive
3472
- }: AccountDetailsButtonProps) => react_jsx_runtime3.JSX.Element;
3480
+ }: AccountDetailsButtonProps) => react_jsx_runtime1.JSX.Element;
3473
3481
  //#endregion
3474
3482
  //#region src/components/AccountModal/Components/ActionButton.d.ts
3475
3483
  type ActionButtonProps = {
@@ -3511,7 +3519,7 @@ declare const ActionButton: ({
3511
3519
  extraContent,
3512
3520
  dataTestId,
3513
3521
  variant
3514
- }: ActionButtonProps) => react_jsx_runtime3.JSX.Element;
3522
+ }: ActionButtonProps) => react_jsx_runtime1.JSX.Element;
3515
3523
  //#endregion
3516
3524
  //#region src/components/AccountModal/Components/AccountSelector.d.ts
3517
3525
  type Props$9 = {
@@ -3531,7 +3539,7 @@ declare const AccountSelector: ({
3531
3539
  onClose,
3532
3540
  mt,
3533
3541
  style
3534
- }: Props$9) => react_jsx_runtime3.JSX.Element;
3542
+ }: Props$9) => react_jsx_runtime1.JSX.Element;
3535
3543
  //#endregion
3536
3544
  //#region src/components/AccountModal/Components/BalanceSection.d.ts
3537
3545
  declare const BalanceSection: ({
@@ -3542,7 +3550,7 @@ declare const BalanceSection: ({
3542
3550
  mb?: number;
3543
3551
  mt?: number;
3544
3552
  onAssetsClick?: () => void;
3545
- }) => react_jsx_runtime3.JSX.Element;
3553
+ }) => react_jsx_runtime1.JSX.Element;
3546
3554
  //#endregion
3547
3555
  //#region src/components/AccountModal/Components/QuickActionsSection.d.ts
3548
3556
  type Props$8 = {
@@ -3552,7 +3560,7 @@ type Props$8 = {
3552
3560
  declare const QuickActionsSection: ({
3553
3561
  mt,
3554
3562
  setCurrentContent
3555
- }: Props$8) => react_jsx_runtime3.JSX.Element;
3563
+ }: Props$8) => react_jsx_runtime1.JSX.Element;
3556
3564
  //#endregion
3557
3565
  //#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
3558
3566
  type FeatureAnnouncementCardProps = {
@@ -3560,16 +3568,16 @@ type FeatureAnnouncementCardProps = {
3560
3568
  };
3561
3569
  declare const FeatureAnnouncementCard: ({
3562
3570
  setCurrentContent
3563
- }: FeatureAnnouncementCardProps) => react_jsx_runtime3.JSX.Element | null;
3571
+ }: FeatureAnnouncementCardProps) => react_jsx_runtime1.JSX.Element | null;
3564
3572
  //#endregion
3565
3573
  //#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
3566
- declare const ExchangeWarningAlert: () => react_jsx_runtime3.JSX.Element;
3574
+ declare const ExchangeWarningAlert: () => react_jsx_runtime1.JSX.Element;
3567
3575
  //#endregion
3568
3576
  //#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
3569
- declare const DomainRequiredAlert: () => react_jsx_runtime3.JSX.Element;
3577
+ declare const DomainRequiredAlert: () => react_jsx_runtime1.JSX.Element;
3570
3578
  //#endregion
3571
3579
  //#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
3572
- declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime3.JSX.Element;
3580
+ declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime1.JSX.Element;
3573
3581
  //#endregion
3574
3582
  //#region src/components/common/ModalBackButton.d.ts
3575
3583
  type BackButtonProps = {
@@ -3578,7 +3586,7 @@ type BackButtonProps = {
3578
3586
  declare const ModalBackButton: ({
3579
3587
  onClick,
3580
3588
  ...props
3581
- }: BackButtonProps) => react_jsx_runtime3.JSX.Element;
3589
+ }: BackButtonProps) => react_jsx_runtime1.JSX.Element;
3582
3590
  //#endregion
3583
3591
  //#region src/components/common/AddressDisplay.d.ts
3584
3592
  type Props$7 = {
@@ -3592,13 +3600,13 @@ declare const AddressDisplay: ({
3592
3600
  label,
3593
3601
  style,
3594
3602
  showHumanAddress
3595
- }: Props$7) => react_jsx_runtime3.JSX.Element;
3603
+ }: Props$7) => react_jsx_runtime1.JSX.Element;
3596
3604
  //#endregion
3597
3605
  //#region src/components/common/VersionFooter.d.ts
3598
3606
  type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3599
3607
  declare const VersionFooter: ({
3600
3608
  ...props
3601
- }: Props$6) => react_jsx_runtime3.JSX.Element;
3609
+ }: Props$6) => react_jsx_runtime1.JSX.Element;
3602
3610
  //#endregion
3603
3611
  //#region src/components/common/StickyHeaderContainer.d.ts
3604
3612
  type Props$5 = {
@@ -3606,7 +3614,7 @@ type Props$5 = {
3606
3614
  };
3607
3615
  declare const StickyHeaderContainer: ({
3608
3616
  children
3609
- }: Props$5) => react_jsx_runtime3.JSX.Element;
3617
+ }: Props$5) => react_jsx_runtime1.JSX.Element;
3610
3618
  //#endregion
3611
3619
  //#region src/components/common/StickyFooterContainer.d.ts
3612
3620
  type Props$4 = {
@@ -3614,7 +3622,7 @@ type Props$4 = {
3614
3622
  };
3615
3623
  declare const StickyFooterContainer: ({
3616
3624
  children
3617
- }: Props$4) => react_jsx_runtime3.JSX.Element;
3625
+ }: Props$4) => react_jsx_runtime1.JSX.Element;
3618
3626
  //#endregion
3619
3627
  //#region src/components/common/BaseModal.d.ts
3620
3628
  type BaseModalProps = {
@@ -3645,7 +3653,7 @@ declare const BaseModal: ({
3645
3653
  allowExternalFocus,
3646
3654
  backdropFilter,
3647
3655
  isCloseable
3648
- }: BaseModalProps) => react_jsx_runtime3.JSX.Element;
3656
+ }: BaseModalProps) => react_jsx_runtime1.JSX.Element;
3649
3657
  //#endregion
3650
3658
  //#region src/components/common/AssetButton.d.ts
3651
3659
  type AssetButtonProps = ButtonProps & {
@@ -3664,7 +3672,7 @@ declare const AssetButton: ({
3664
3672
  isDisabled,
3665
3673
  onClick,
3666
3674
  ...buttonProps
3667
- }: AssetButtonProps) => react_jsx_runtime3.JSX.Element;
3675
+ }: AssetButtonProps) => react_jsx_runtime1.JSX.Element;
3668
3676
  //#endregion
3669
3677
  //#region src/components/common/AddressDisplayCard.d.ts
3670
3678
  type AddressDisplayCardProps = {
@@ -3686,7 +3694,7 @@ declare const AddressDisplayCard: ({
3686
3694
  hideAddress,
3687
3695
  balance,
3688
3696
  tokenAddress
3689
- }: AddressDisplayCardProps) => react_jsx_runtime3.JSX.Element;
3697
+ }: AddressDisplayCardProps) => react_jsx_runtime1.JSX.Element;
3690
3698
  //#endregion
3691
3699
  //#region src/components/common/ModalFAQButton.d.ts
3692
3700
  type FAQButtonProps = {
@@ -3695,13 +3703,13 @@ type FAQButtonProps = {
3695
3703
  declare const ModalFAQButton: ({
3696
3704
  onClick,
3697
3705
  ...props
3698
- }: FAQButtonProps) => react_jsx_runtime3.JSX.Element;
3706
+ }: FAQButtonProps) => react_jsx_runtime1.JSX.Element;
3699
3707
  //#endregion
3700
3708
  //#region src/components/common/ScrollToTopWrapper.d.ts
3701
3709
  declare const ScrollToTopWrapper: ({
3702
3710
  children,
3703
3711
  ...props
3704
- }: StackProps) => react_jsx_runtime3.JSX.Element;
3712
+ }: StackProps) => react_jsx_runtime1.JSX.Element;
3705
3713
  //#endregion
3706
3714
  //#region src/components/common/AccountAvatar.d.ts
3707
3715
  type AccountAvatarProps = {
@@ -3711,7 +3719,7 @@ type AccountAvatarProps = {
3711
3719
  declare const AccountAvatar: ({
3712
3720
  wallet,
3713
3721
  props
3714
- }: AccountAvatarProps) => react_jsx_runtime3.JSX.Element;
3722
+ }: AccountAvatarProps) => react_jsx_runtime1.JSX.Element;
3715
3723
  //#endregion
3716
3724
  //#region src/components/common/TransactionButtonAndStatus.d.ts
3717
3725
  type TransactionButtonAndStatusProps = {
@@ -3753,7 +3761,7 @@ declare const TransactionButtonAndStatus: ({
3753
3761
  isLoadingGasEstimation,
3754
3762
  showGasEstimationError,
3755
3763
  context
3756
- }: TransactionButtonAndStatusProps) => react_jsx_runtime3.JSX.Element;
3764
+ }: TransactionButtonAndStatusProps) => react_jsx_runtime1.JSX.Element;
3757
3765
  //#endregion
3758
3766
  //#region src/components/common/ModalNotificationButton.d.ts
3759
3767
  type NotificationButtonProps = {
@@ -3764,7 +3772,7 @@ declare const ModalNotificationButton: ({
3764
3772
  onClick,
3765
3773
  hasUnreadNotifications,
3766
3774
  ...props
3767
- }: NotificationButtonProps) => react_jsx_runtime3.JSX.Element;
3775
+ }: NotificationButtonProps) => react_jsx_runtime1.JSX.Element;
3768
3776
  //#endregion
3769
3777
  //#region src/components/common/GasFeeSummary.d.ts
3770
3778
  interface GasFeeSummaryProps {
@@ -3800,7 +3808,7 @@ declare const GasFeeTokenSelector: ({
3800
3808
  availableTokens,
3801
3809
  tokenEstimations,
3802
3810
  walletAddress
3803
- }: GasFeeTokenSelectorProps) => react_jsx_runtime3.JSX.Element;
3811
+ }: GasFeeTokenSelectorProps) => react_jsx_runtime1.JSX.Element;
3804
3812
  //#endregion
3805
3813
  //#region src/components/LoginLoadingModal/LoginLoadingModal.d.ts
3806
3814
  type LoginLoadingModalProps = {
@@ -3818,7 +3826,7 @@ declare const LoginLoadingModal: ({
3818
3826
  title,
3819
3827
  loadingText,
3820
3828
  onTryAgain
3821
- }: LoginLoadingModalProps) => react_jsx_runtime3.JSX.Element;
3829
+ }: LoginLoadingModalProps) => react_jsx_runtime1.JSX.Element;
3822
3830
  //#endregion
3823
3831
  //#region src/components/EcosystemModal/EcosystemModal.d.ts
3824
3832
  type Props$3 = {
@@ -3832,7 +3840,7 @@ declare const EcosystemModal: ({
3832
3840
  onClose,
3833
3841
  appsInfo,
3834
3842
  isLoading
3835
- }: Props$3) => react_jsx_runtime3.JSX.Element;
3843
+ }: Props$3) => react_jsx_runtime1.JSX.Element;
3836
3844
  //#endregion
3837
3845
  //#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
3838
3846
  type SuccessfulOperationContentProps = {
@@ -3862,7 +3870,7 @@ declare const UpgradeSmartAccountModal: ({
3862
3870
  isOpen,
3863
3871
  onClose,
3864
3872
  style
3865
- }: Props$2) => react_jsx_runtime3.JSX.Element;
3873
+ }: Props$2) => react_jsx_runtime1.JSX.Element;
3866
3874
  //#endregion
3867
3875
  //#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
3868
3876
  type Props$1 = {
@@ -3877,7 +3885,7 @@ declare const LegalDocumentsModal: ({
3877
3885
  onAgree,
3878
3886
  handleLogout,
3879
3887
  onlyOptionalDocuments
3880
- }: Props$1) => react_jsx_runtime3.JSX.Element;
3888
+ }: Props$1) => react_jsx_runtime1.JSX.Element;
3881
3889
  //#endregion
3882
3890
  //#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
3883
3891
  type Props = {
@@ -3889,7 +3897,7 @@ declare const LegalDocumentItem: ({
3889
3897
  document,
3890
3898
  register,
3891
3899
  isText
3892
- }: Props) => react_jsx_runtime3.JSX.Element;
3900
+ }: Props) => react_jsx_runtime1.JSX.Element;
3893
3901
  //#endregion
3894
3902
  //#region src/providers/ModalProvider.d.ts
3895
3903
  type AccountModalOptions = {
@@ -3920,7 +3928,7 @@ declare const ModalProvider: ({
3920
3928
  children
3921
3929
  }: {
3922
3930
  children: ReactNode;
3923
- }) => react_jsx_runtime3.JSX.Element;
3931
+ }) => react_jsx_runtime1.JSX.Element;
3924
3932
  //#endregion
3925
3933
  //#region src/config/index.d.ts
3926
3934
  type AppConfig = {
@@ -3965,5 +3973,5 @@ type AppConfig = {
3965
3973
  };
3966
3974
  declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
3967
3975
  //#endregion
3968
- export { AssetsContentProps as $, getCustomTokenInfoQueryKey as $a, useChooseNameModal as $i, useGetNodeUrl as $n, EmbeddedWalletContent as $o, getPicassoImage as $r, formatGasCost as $s, getSmartAccount as $t, ModalBackButton as A, getXAppMetadata as Aa, useAccountModalOptions as Ai, delegateAuthorized as An, getAvatarQueryKey as Ao, validate as Ar, VechainKitThemeProvider as As, useBuildTransaction as At, AccountModal as B, XApp as Ba, FAQModalProvider as Bi, LocalStorageKey as Bn, useClaimVetDomain as Bo, xNodeToGMstartingLevel as Br, useVeChainKitConfig as Bs, getChainId as Bt, AddressDisplayCard as C, useIpfsImageList as Ca, VePassportUserStatus as Cc, useLoginWithVeChain as Ci, useAccountBalance as Cn, getResolverAddressQueryKey as Co, isValidUrl as Cr, ConnectionButton as Cs, useMfaEnrollment as Ct, StickyHeaderContainer as D, getXAppsSharesQueryKey as Da, useSignMessage as Di, useGasEstimation as Dn, getTextRecords as Do, isValid as Dr, LegalDocumentsProvider as Ds, txReceiptQueryKey as Dt, StickyFooterContainer as E, useIpfsMetadata as Ea, useSignTypedData as Ei, UseGasEstimationParams as En, useUpdateTextRecord as Eo, isInvalid as Er, ConnectModalContentsTypes as Es, useThor$1 as Et, QuickActionsSection as F, getRoundXAppsQueryKey as Fa, useLoginModalContent as Fi, useGenericDelegator as Fn, getDomainsOfAddressQueryKey as Fo, NodeStrengthLevelToImage as Fr, LegalDocument as Fs, UseSendTransactionReturnValue as Ft, LanguageSettingsContent as G, useGetVot3Balance as Ga, useExploreEcosystemModal as Gi, useBuildClauses as Gn, useVechainDomain as Go, validateIpfsUri as Gr, CostLevel as Gs, useUpgradeSmartAccount as Gt, TermsAndPrivacyContent as H, getIsPersonQueryKey as Ha, NotificationsModalProvider as Hi, BuildClausesParams as Hn, getEnsRecordExistsQueryKey as Ho, resolveMediaTypeFromMimeType as Hr, LegalDocumentAgreement as Hs, useGetChainId as Ht, BalanceSection as I, useRoundXApps as Ia, ReceiveModalProvider as Ii, useCrossAppConnectionCache as In, useGetDomainsOfAddress as Io, XNodeStrengthLevelToName as Ir, LegalDocumentOptions as Is, useSendTransaction as It, ChangeCurrencyContentProps as J, getTokenUsdPrice as Ja, SwapTokenModalProvider as Ji, decodeEventLog$1 as Jn, fetchPrivyAppInfo as Jo, isValidAddress as Jr, EstimationResponse as Js, useUpgradeRequiredForAccount as Jt, GeneralSettingsContent as K, PRICE_FEED_IDS as Ka, AccessAndSecurityModalProvider as Ki, GetEventsKeyParams as Kn, fetchPrivyStatus as Ko, compareAddresses as Kr, DepositAccount as Ks, getUpgradeRequiredForAccount as Kt, AccountSelector as L, useRefreshMetadata as La, useReceiveModal as Li, EcosystemShortcut as Ln, getIsDomainProtectedQueryKey as Lo, allNodeStrengthLevelToName as Lr, VeChainKitContext as Ls, GetEventsProps as Lt, DomainRequiredAlert as M, useWalletMetadata as Ma, useProfileModal as Mi, estimateGas as Mn, Domain as Mo, TIME as Mr, PrivyWalletProvider as Ms, useTransferVET as Mt, ExchangeWarningAlert as N, UseWalletReturnType as Na, UpgradeSmartAccountModalProvider as Ni, getDepositAccount as Nn, DomainsResponse as No, EconomicNodeStrengthLevelToName as Nr, PrivyWalletProviderContextType as Ns, buildERC20Clauses as Nt, VersionFooter as O, useXAppsShares as Oa, useNotificationAlerts as Oi, useGasTokenSelection as On, getTextRecordsQueryKey as Oo, normalize as Or, useLegalDocuments as Os, useTxReceipt as Ot, FeatureAnnouncementCard as P, useWallet$1 as Pa, useUpgradeSmartAccountModal as Pi, signVip191Transaction as Pn, getDomainsOfAddress as Po, MinXNodeLevel as Pr, usePrivyWalletProvider as Ps, useTransferERC20 as Pt, AssetsContent as Q, useGetErc20Balance as Qa, ChooseNameModalProvider as Qi, useIsPWA as Qn, DisconnectConfirmContentProps as Qo, formatTokenBalance as Qr, calculateTotalCost as Qs, SmartAccountReturnType as Qt, ActionButton as R, useRefreshBalances as Ra, AccountCustomizationModalProvider as Ri, useEcosystemShortcuts as Rn, useIsDomainProtected as Ro, buildQueryString as Rr, VeChainKitProvider as Rs, getAllEventLogs as Rt, ModalFAQButton as S, useIpfsImage as Sa, TransactionStatusErrorType as Sc, useAppHubApps as Si, getAccountBalanceQueryKey as Sn, useGetAvatarOfAddress as So, executeMultipleClausesCall as Sr, EmailLoginButton as Ss, useDAppKitWalletModal as St, BaseModal as T, getIpfsMetadataQueryKey as Ta, useLoginWithPasskey$1 as Ti, useEstimateAllTokens as Tn, buildClauses as To, compare as Tr, ConnectModal as Ts, useSetWalletRecovery as Tt, GasTokenSettingsContent as U, useIsPerson as Ua, useNotificationsModal as Ui, buildBatchAuthorizationTypedData as Un, useEnsRecordExists as Uo, toIPFSURL as Ur, LegalDocumentSource as Us, currentBlockQueryKey as Ut, AccountModalContentTypes as V, useMostVotedAppsInRound as Va, useFAQModal as Vi, useLocalStorage as Vn, useClaimVeWorldSubdomain as Vo, convertUriToUrl as Vr, EnrichedLegalDocument as Vs, getChainIdQueryKey as Vt, AppearanceSettingsContent as W, getVot3BalanceQueryKey as Wa, ExploreEcosystemModalProvider as Wi, buildSingleAuthorizationTypedData as Wn, getVechainDomainQueryKey as Wo, uploadBlobToIPFS as Wr, LegalDocumentType as Ws, useCurrentBlock as Wt, ManageCustomTokenContent as X, useGetTokenUsdPrice as Xa, SendTokenModalProvider as Xi, useEvents as Xn, useFetchAppInfo as Xo, regexPattern as Xr, TransactionCost as Xs, getUpgradeRequiredQueryKey as Xt, BridgeContent as Y, getTokenUsdPriceQueryKey as Ya, useSwapTokenModal as Yi, getEventsKey as Yn, getPrivyAppInfoQueryKey as Yo, leftPadWithZeros as Yr, Rate as Ys, getUpgradeRequired as Yt, ManageCustomTokenContentProps as Z, getErc20BalanceQueryKey as Za, useSendTokenModal as Zi, useScrollToTop as Zn, DisconnectConfirmContent as Zo, randomTransactionUser as Zr, VthoPerGasAtSpeed as Zs, useUpgradeRequired as Zt, ModalNotificationButton as _, useIpfsMetadatas as _a, PrivyAppInfo as _c, getGenericDelegatorUrl as _i, useCurrentAccountImplementationVersion as _n, useUnsetDomain as _o, MultipleClausesCallParameters as _r, PasskeyLoginButton as _s, SelectTokenContent as _t, useModal as a, useTransactionModal as aa, TransactionSpeed as ac, DEFAULT_PRIVY_ECOSYSTEM_APPS as ai, getIsDeployedQueryKey as an, getB3trBalanceQueryKey as ao, useMultipleClausesCall as ar, TransactionModalContent as as, CustomizationSummaryContentProps as at, AccountAvatar as b, getIpfsImage as ba, TokenBalance as bc, fetchAppHubApps as bi, useAccountImplementationAddress as bn, useGetAvatarLegacy as bo, buildCallClauses as br, EcosystemButton as bs, ThorClient$1 as bt, LegalDocumentsModal as c, ConnectModalProvider as ca, CURRENCY as cc, SUPPORTED_GAS_TOKENS as ci, getHasV1SmartAccountQueryKey as cn, getCurrentAllocationsRoundIdQueryKey as co, getLocalStorageItem as cr, TransactionModalProps as cs, FAQContent as ct, UpgradeSmartAccountModalContentsTypes as d, useSwapTransaction as da, CrossAppConnectionCache as dc, TogglePassportCheck as di, useGetAccountVersion as dn, TokenWithValue as do, isBrowser as dr, WalletButtonProps as ds, ChooseNameSearchContent as dt, WalletModalProvider as ea, GasTokenEstimate as ec, humanAddress as ei, getSmartAccountQueryKey as en, getTokenInfo$1 as eo, useFeatureAnnouncement as er, SettingsContent as es, UpgradeSmartAccountContent as et, UpgradeSmartAccountModalStyle as f, useSingleImageUpload as fa, ENSRecords as fc, VECHAIN_KIT_COOKIES_CONFIG as fi, getAccountAddress as fn, useTokensWithValues as fo, isOnline as fr, WalletDisplayVariant as fs, ChooseNameSearchContentProps as ft, GasFeeSummary as g, useUploadImages as ga, NFTMediaType as gc, getENV as gi, getCurrentAccountImplementationVersionQueryKey as gn, useTokenBalances as go, setLocalStorageItem as gr, DappKitButton as gs, ReceiveTokenContent as gt, GasFeeTokenSelector as h, imageCompressionOptions as ha, ExecuteWithAuthorizationSignData as hc, VECHAIN_PRIVY_APP_ID as hi, getCurrentAccountImplementationVersion as hn, WalletTokenBalance as ho, safeWindowOpen as hr, VeChainWithPrivyLoginButton as hs, SwapTokenContent as ht, ModalProvider as i, TransactionModalProvider as ia, GasTokenType as ic, DEFAULT_GAS_TOKEN_PREFERENCES as ii, getIsDeployed as in, useGetCustomTokenBalances as io, useCallClause as ir, TransactionToast as is, CustomizationSummaryContent as it, CrossAppConnectionSecurityCard as j, useXAppMetadata as ja, ProfileModalProvider as ji, estimateAndBuildTxBody as jn, useGetAvatar as jo, isRejectionError as jr, useVechainKitThemeConfig as js, buildVETClauses as jt, AddressDisplay as k, XAppMetadata as ka, useNotifications as ki, decodeRawTx as kn, useGetTextRecords as ko, removePrefix as kr, ColorModeSync as ks, BuildTransactionProps as kt, LegalDocumentsModalContentsTypes as l, useConnectModal as la, CURRENCY_SYMBOLS as lc, TOKEN_LOGOS as li, useHasV1SmartAccount as ln, useCurrentAllocationsRoundId as lo, getWindowOrigin as lr, SocialIcons as ls, ChooseNameSummaryContent as lt, LoginLoadingModal as m, compressImages as ma, ExecuteBatchWithAuthorizationSignData as mc, VECHAIN_KIT_TERMS_CONFIG as mi, useGetAccountAddress as mn, useTokenPrices as mo, safeQuerySelector as mr, LoginWithGithubButton as ms, ChooseNameContentProps as mt, getConfig as n, TransactionToastProvider as na, GasTokenPreferences as nc, humanNumber as ni, useRefreshSmartAccountQueries as nn, TokenWithBalance as no, getCallClauseQueryKey as nr, AccessAndSecurityContent as ns, ProfileContent as nt, DAppKitWalletButton as o, AccountModalProvider as oa, ENS_TEXT_RECORDS as oc, ENV as oi, useIsSmartAccountDeployed as on, useGetB3trBalance as oo, copyToClipboard as or, ShareButtons as os, AccountCustomizationContentProps as ot, EcosystemModal as p, UploadedImage as pa, EnhancedClause as pc, VECHAIN_KIT_STORAGE_KEYS as pi, getAccountAddressQueryKey as pn, ExchangeRates as po, removeLocalStorageItem as pr, ConnectPopover as ps, ChooseNameContent as pt, ChangeCurrencyContent as q, SupportedToken as qa, useAccessAndSecurityModal as qi, UseEventsParams as qn, useFetchPrivyStatus as qo, compareListOfAddresses as qr, EstimatedGas as qs, getUpgradeRequiredForAccountQueryKey as qt, AccountModalOptions as r, useTransactionToast as ra, GasTokenSelection as rc, isZero as ri, useRefreshFactoryQueries as rn, getCustomTokenBalanceQueryKey as ro, getCallClauseQueryKeyWithArgs as rr, AccountMainContent as rs, ProfileContentProps as rt, LegalDocumentItem as s, useAccountModal as sa, TextRecords as sc, PrivyEcosystemApp as si, getHasV1SmartAccount as sn, useCustomTokens as so, getDocumentTitle as sr, TransactionModal as ss, CustomizationContent as st, AppConfig as t, useWalletModal as ta, GasTokenInfo as tc, humanDomain as ti, useSmartAccount as tn, useGetCustomTokenInfo as to, useCurrency as tr, SettingsContentProps as ts, UpgradeSmartAccountContentProps as tt, UpgradeSmartAccountModal as u, useSwapQuotes as ua, ConnectionSource as uc, TOKEN_LOGO_COMPONENTS as ui, getAccountVersionQueryKey as un, useTotalBalance as uo, hasNavigator as ur, WalletButton as us, ChooseNameSummaryContentProps as ut, TransactionButtonAndStatus as v, IpfsImage as va, PrivyLoginMethod as vc, notFoundImage as vi, getAccountImplementationAddress as vn, getAvatarLegacy as vo, MultipleClausesCallReturnType as vr, LoginWithGoogleButton as vs, SendTokenSummaryContent as vt, AssetButton as w, getIpfsMetadata as wa, Wallet as wc, useLoginWithOAuth$1 as wi, UseEstimateAllTokensParams as wn, useGetResolverAddress as wo, addPrefix as wr, MainContent as ws, usePrivy$1 as wt, ScrollToTopWrapper as x, getIpfsImageQueryKey as xa, TransactionStatus as xc, getAppHubAppsQueryKey as xi, getAccountBalance as xn, getAvatarOfAddressQueryKey as xo, executeCallClause as xr, VeChainLoginButton as xs, useDAppKitWallet as xt, TransactionButtonAndStatusProps as y, MAX_IMAGE_SIZE as ya, SmartAccount as yc, AppHubApp as yi, getAccountImplementationAddressQueryKey as yn, getAvatarLegacyQueryKey as yo, ViewFunctionResult as yr, PrivyButton as ys, SendTokenContent as yt, AccountDetailsButton as z, MostVotedAppsInRoundReturnType as za, useAccountCustomizationModal as zi, useSyncableLocalStorage as zn, buildVetDomainClauses as zo, gmNfts as zr, VechainKitProviderProps as zs, getEventLogs as zt };
3969
- //# sourceMappingURL=index-hAce7WHc.d.mts.map
3976
+ export { AssetsContentProps as $, getCustomTokenInfoQueryKey as $a, useChooseNameModal as $i, useGetNodeUrl as $n, EmbeddedWalletContent as $o, getPicassoImage as $r, calculateTotalCost as $s, getSmartAccount as $t, ModalBackButton as A, getXAppMetadata as Aa, useAccountModalOptions as Ai, delegateAuthorized as An, getAvatarQueryKey as Ao, validate as Ar, VechainKitThemeProvider as As, useBuildTransaction as At, AccountModal as B, XApp as Ba, FAQModalProvider as Bi, LocalStorageKey as Bn, useClaimVetDomain as Bo, xNodeToGMstartingLevel as Br, VechainKitProviderProps as Bs, getChainId as Bt, AddressDisplayCard as C, useIpfsImageList as Ca, TransactionStatusErrorType as Cc, useLoginWithVeChain as Ci, useAccountBalance as Cn, getResolverAddressQueryKey as Co, isValidUrl as Cr, ConnectionButton as Cs, useMfaEnrollment as Ct, StickyHeaderContainer as D, getXAppsSharesQueryKey as Da, useSignMessage as Di, useGasEstimation as Dn, getTextRecords as Do, isValid as Dr, LegalDocumentsProvider as Ds, txReceiptQueryKey as Dt, StickyFooterContainer as E, useIpfsMetadata as Ea, useSignTypedData as Ei, UseGasEstimationParams as En, useUpdateTextRecord as Eo, isInvalid as Er, ConnectModalContentsTypes as Es, useThor as Et, QuickActionsSection as F, getRoundXAppsQueryKey as Fa, useLoginModalContent as Fi, useGenericDelegator as Fn, getDomainsOfAddressQueryKey as Fo, NodeStrengthLevelToImage as Fr, LegalDocument as Fs, UseSendTransactionReturnValue as Ft, LanguageSettingsContent as G, useGetVot3Balance as Ga, useExploreEcosystemModal as Gi, useBuildClauses as Gn, useVechainDomain as Go, validateIpfsUri as Gr, LegalDocumentType as Gs, useUpgradeSmartAccount as Gt, TermsAndPrivacyContent as H, getIsPersonQueryKey as Ha, NotificationsModalProvider as Hi, BuildClausesParams as Hn, getEnsRecordExistsQueryKey as Ho, resolveMediaTypeFromMimeType as Hr, EnrichedLegalDocument as Hs, useGetChainId as Ht, BalanceSection as I, useRoundXApps as Ia, ReceiveModalProvider as Ii, useCrossAppConnectionCache as In, useGetDomainsOfAddress as Io, XNodeStrengthLevelToName as Ir, LegalDocumentOptions as Is, useSendTransaction as It, ChangeCurrencyContentProps as J, getTokenUsdPrice as Ja, SwapTokenModalProvider as Ji, decodeEventLog$1 as Jn, fetchPrivyAppInfo as Jo, isValidAddress as Jr, EstimatedGas as Js, useUpgradeRequiredForAccount as Jt, GeneralSettingsContent as K, PRICE_FEED_IDS as Ka, AccessAndSecurityModalProvider as Ki, GetEventsKeyParams as Kn, fetchPrivyStatus as Ko, compareAddresses as Kr, CostLevel as Ks, getUpgradeRequiredForAccount as Kt, AccountSelector as L, useRefreshMetadata as La, useReceiveModal as Li, EcosystemShortcut as Ln, getIsDomainProtectedQueryKey as Lo, allNodeStrengthLevelToName as Lr, VeChainKitConfig as Ls, GetEventsProps as Lt, DomainRequiredAlert as M, useWalletMetadata as Ma, useProfileModal as Mi, estimateGas as Mn, Domain as Mo, TIME as Mr, PrivyWalletProvider as Ms, useTransferVET as Mt, ExchangeWarningAlert as N, UseWalletReturnType as Na, UpgradeSmartAccountModalProvider as Ni, getDepositAccount as Nn, DomainsResponse as No, EconomicNodeStrengthLevelToName as Nr, PrivyWalletProviderContextType as Ns, buildERC20Clauses as Nt, VersionFooter as O, useXAppsShares as Oa, useNotificationAlerts as Oi, useGasTokenSelection as On, getTextRecordsQueryKey as Oo, normalize as Or, useLegalDocuments as Os, useTxReceipt as Ot, FeatureAnnouncementCard as P, useWallet as Pa, useUpgradeSmartAccountModal as Pi, signVip191Transaction as Pn, getDomainsOfAddress as Po, MinXNodeLevel as Pr, usePrivyWalletProvider as Ps, useTransferERC20 as Pt, AssetsContent as Q, useGetErc20Balance as Qa, ChooseNameModalProvider as Qi, useIsPWA as Qn, DisconnectConfirmContentProps as Qo, formatTokenBalance as Qr, VthoPerGasAtSpeed as Qs, SmartAccountReturnType as Qt, ActionButton as R, useRefreshBalances as Ra, AccountCustomizationModalProvider as Ri, useEcosystemShortcuts as Rn, useIsDomainProtected as Ro, buildQueryString as Rr, VeChainKitContext as Rs, getAllEventLogs as Rt, ModalFAQButton as S, useIpfsImage as Sa, TransactionStatus as Sc, useAppHubApps as Si, getAccountBalanceQueryKey as Sn, useGetAvatarOfAddress as So, executeMultipleClausesCall as Sr, EmailLoginButton as Ss, useDAppKitWalletModal as St, BaseModal as T, getIpfsMetadataQueryKey as Ta, Wallet as Tc, useLoginWithPasskey as Ti, useEstimateAllTokens as Tn, buildClauses as To, compare as Tr, ConnectModal as Ts, useSetWalletRecovery as Tt, GasTokenSettingsContent as U, useIsPerson as Ua, useNotificationsModal as Ui, buildBatchAuthorizationTypedData as Un, useEnsRecordExists as Uo, toIPFSURL as Ur, LegalDocumentAgreement as Us, currentBlockQueryKey as Ut, AccountModalContentTypes as V, useMostVotedAppsInRound as Va, useFAQModal as Vi, useLocalStorage as Vn, useClaimVeWorldSubdomain as Vo, convertUriToUrl as Vr, useVeChainKitConfig as Vs, getChainIdQueryKey as Vt, AppearanceSettingsContent as W, getVot3BalanceQueryKey as Wa, ExploreEcosystemModalProvider as Wi, buildSingleAuthorizationTypedData as Wn, getVechainDomainQueryKey as Wo, uploadBlobToIPFS as Wr, LegalDocumentSource as Ws, useCurrentBlock as Wt, ManageCustomTokenContent as X, useGetTokenUsdPrice as Xa, SendTokenModalProvider as Xi, useEvents as Xn, useFetchAppInfo as Xo, regexPattern as Xr, Rate as Xs, getUpgradeRequiredQueryKey as Xt, BridgeContent as Y, getTokenUsdPriceQueryKey as Ya, useSwapTokenModal as Yi, getEventsKey as Yn, getPrivyAppInfoQueryKey as Yo, leftPadWithZeros as Yr, EstimationResponse as Ys, getUpgradeRequired as Yt, ManageCustomTokenContentProps as Z, getErc20BalanceQueryKey as Za, useSendTokenModal as Zi, useScrollToTop as Zn, DisconnectConfirmContent as Zo, randomTransactionUser as Zr, TransactionCost as Zs, useUpgradeRequired as Zt, ModalNotificationButton as _, useIpfsMetadatas as _a, NFTMediaType as _c, getGenericDelegatorUrl as _i, useCurrentAccountImplementationVersion as _n, useUnsetDomain as _o, MultipleClausesCallParameters as _r, PasskeyLoginButton as _s, SelectTokenContent as _t, useModal as a, useTransactionModal as aa, GasTokenType as ac, DEFAULT_PRIVY_ECOSYSTEM_APPS as ai, getIsDeployedQueryKey as an, getB3trBalanceQueryKey as ao, useMultipleClausesCall as ar, TransactionModalContent as as, CustomizationSummaryContentProps as at, AccountAvatar as b, getIpfsImage as ba, SmartAccount as bc, fetchAppHubApps as bi, useAccountImplementationAddress as bn, useGetAvatarLegacy as bo, buildCallClauses as br, EcosystemButton as bs, ThorClient$1 as bt, LegalDocumentsModal as c, ConnectModalProvider as ca, TextRecords as cc, SUPPORTED_GAS_TOKENS as ci, getHasV1SmartAccountQueryKey as cn, getCurrentAllocationsRoundIdQueryKey as co, getLocalStorageItem as cr, TransactionModalProps as cs, FAQContent as ct, UpgradeSmartAccountModalContentsTypes as d, useSwapTransaction as da, ConnectionSource as dc, TogglePassportCheck as di, useGetAccountVersion as dn, TokenWithValue as do, isBrowser as dr, WalletButtonProps as ds, ChooseNameSearchContent as dt, WalletModalProvider as ea, formatGasCost as ec, humanAddress as ei, getSmartAccountQueryKey as en, getTokenInfo as eo, useFeatureAnnouncement as er, SettingsContent as es, UpgradeSmartAccountContent as et, UpgradeSmartAccountModalStyle as f, useSingleImageUpload as fa, CrossAppConnectionCache as fc, VECHAIN_KIT_COOKIES_CONFIG as fi, getAccountAddress as fn, useTokensWithValues as fo, isOnline as fr, WalletDisplayVariant as fs, ChooseNameSearchContentProps as ft, GasFeeSummary as g, useUploadImages as ga, ExecuteWithAuthorizationSignData as gc, getENV as gi, getCurrentAccountImplementationVersionQueryKey as gn, useTokenBalances as go, setLocalStorageItem as gr, DappKitButton as gs, ReceiveTokenContent as gt, GasFeeTokenSelector as h, imageCompressionOptions as ha, ExecuteBatchWithAuthorizationSignData as hc, VECHAIN_PRIVY_APP_ID as hi, getCurrentAccountImplementationVersion as hn, WalletTokenBalance as ho, safeWindowOpen as hr, VeChainWithPrivyLoginButton as hs, SwapTokenContent as ht, ModalProvider as i, TransactionModalProvider as ia, GasTokenSelection as ic, DEFAULT_GAS_TOKEN_PREFERENCES as ii, getIsDeployed as in, useGetCustomTokenBalances as io, useCallClause as ir, TransactionToast as is, CustomizationSummaryContent as it, CrossAppConnectionSecurityCard as j, useXAppMetadata as ja, ProfileModalProvider as ji, estimateAndBuildTxBody as jn, useGetAvatar as jo, isRejectionError as jr, useVechainKitThemeConfig as js, buildVETClauses as jt, AddressDisplay as k, XAppMetadata as ka, useNotifications as ki, decodeRawTx as kn, useGetTextRecords as ko, removePrefix as kr, ColorModeSync as ks, BuildTransactionProps as kt, LegalDocumentsModalContentsTypes as l, useConnectModal as la, CURRENCY as lc, TOKEN_LOGOS as li, useHasV1SmartAccount as ln, useCurrentAllocationsRoundId as lo, getWindowOrigin as lr, SocialIcons as ls, ChooseNameSummaryContent as lt, LoginLoadingModal as m, compressImages as ma, EnhancedClause as mc, VECHAIN_KIT_TERMS_CONFIG as mi, useGetAccountAddress as mn, useTokenPrices as mo, safeQuerySelector as mr, LoginWithGithubButton as ms, ChooseNameContentProps as mt, getConfig as n, TransactionToastProvider as na, GasTokenInfo as nc, humanNumber as ni, useRefreshSmartAccountQueries as nn, TokenWithBalance as no, getCallClauseQueryKey as nr, AccessAndSecurityContent as ns, ProfileContent as nt, DAppKitWalletButton as o, AccountModalProvider as oa, TransactionSpeed as oc, ENV as oi, useIsSmartAccountDeployed as on, useGetB3trBalance as oo, copyToClipboard as or, ShareButtons as os, AccountCustomizationContentProps as ot, EcosystemModal as p, UploadedImage as pa, ENSRecords as pc, VECHAIN_KIT_STORAGE_KEYS as pi, getAccountAddressQueryKey as pn, ExchangeRates as po, removeLocalStorageItem as pr, ConnectPopover as ps, ChooseNameContent as pt, ChangeCurrencyContent as q, SupportedToken as qa, useAccessAndSecurityModal as qi, UseEventsParams as qn, useFetchPrivyStatus as qo, compareListOfAddresses as qr, DepositAccount as qs, getUpgradeRequiredForAccountQueryKey as qt, AccountModalOptions as r, useTransactionToast as ra, GasTokenPreferences as rc, isZero as ri, useRefreshFactoryQueries as rn, getCustomTokenBalanceQueryKey as ro, getCallClauseQueryKeyWithArgs as rr, AccountMainContent as rs, ProfileContentProps as rt, LegalDocumentItem as s, useAccountModal as sa, ENS_TEXT_RECORDS as sc, PrivyEcosystemApp as si, getHasV1SmartAccount as sn, useCustomTokens as so, getDocumentTitle as sr, TransactionModal as ss, CustomizationContent as st, AppConfig as t, useWalletModal as ta, GasTokenEstimate as tc, humanDomain as ti, useSmartAccount as tn, useGetCustomTokenInfo as to, useCurrency as tr, SettingsContentProps as ts, UpgradeSmartAccountContentProps as tt, UpgradeSmartAccountModal as u, useSwapQuotes as ua, CURRENCY_SYMBOLS as uc, TOKEN_LOGO_COMPONENTS as ui, getAccountVersionQueryKey as un, useTotalBalance as uo, hasNavigator as ur, WalletButton as us, ChooseNameSummaryContentProps as ut, TransactionButtonAndStatus as v, IpfsImage as va, PrivyAppInfo as vc, notFoundImage as vi, getAccountImplementationAddress as vn, getAvatarLegacy as vo, MultipleClausesCallReturnType as vr, LoginWithGoogleButton as vs, SendTokenSummaryContent as vt, AssetButton as w, getIpfsMetadata as wa, VePassportUserStatus as wc, useLoginWithOAuth as wi, UseEstimateAllTokensParams as wn, useGetResolverAddress as wo, addPrefix as wr, MainContent as ws, usePrivy as wt, ScrollToTopWrapper as x, getIpfsImageQueryKey as xa, TokenBalance as xc, getAppHubAppsQueryKey as xi, getAccountBalance as xn, getAvatarOfAddressQueryKey as xo, executeCallClause as xr, VeChainLoginButton as xs, useDAppKitWallet as xt, TransactionButtonAndStatusProps as y, MAX_IMAGE_SIZE as ya, PrivyLoginMethod as yc, AppHubApp as yi, getAccountImplementationAddressQueryKey as yn, getAvatarLegacyQueryKey as yo, ViewFunctionResult as yr, PrivyButton as ys, SendTokenContent as yt, AccountDetailsButton as z, MostVotedAppsInRoundReturnType as za, useAccountCustomizationModal as zi, useSyncableLocalStorage as zn, buildVetDomainClauses as zo, gmNfts as zr, VeChainKitProvider as zs, getEventLogs as zt };
3977
+ //# sourceMappingURL=index-CozseDtf.d.cts.map