@vechain/vechain-kit 2.2.3 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,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_runtime1 from "react/jsx-runtime";
5
- import * as _vechain_sdk_network0 from "@vechain/sdk-network";
6
- import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
7
- import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy, useSetWalletRecovery } from "@privy-io/react-auth";
4
+ import * as react_jsx_runtime3 from "react/jsx-runtime";
5
+ import { Account } from "viem/accounts";
8
6
  import * as _vechain_sdk_core0 from "@vechain/sdk-core";
9
7
  import { Address, Certificate, CertificateData, Clause, Transaction, TransactionClause } from "@vechain/sdk-core";
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";
12
- import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
13
- import { IconType } from "react-icons";
14
- import * as _tanstack_react_query17 from "@tanstack/react-query";
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_query24 from "@tanstack/react-query";
15
11
  import { UseQueryOptions } from "@tanstack/react-query";
16
- import { z } from "zod";
17
12
  import { CustomTokenInfo } from "@vechain/contract-getters";
13
+ import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
14
+ import { z } from "zod";
18
15
  import { Options } from "browser-image-compression";
19
- import { Account } from "viem/accounts";
16
+ import { UseFormRegister } from "react-hook-form";
17
+ import * as _vechain_sdk_network0 from "@vechain/sdk-network";
18
+ import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
19
+ import { LogLevel, WalletSource } from "@vechain/dapp-kit";
20
+ import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
21
+ import { IconType } from "react-icons";
20
22
  import * as abitype0 from "abitype";
21
23
  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
  /**
@@ -426,6 +426,12 @@ interface VechainKitThemeConfig {
426
426
  backdropFilter?: string;
427
427
  borderRadius?: string;
428
428
  rounded?: string | number;
429
+ /**
430
+ * Whether to use bottom sheet on mobile devices.
431
+ * When false (default), uses regular modal on all screen sizes.
432
+ * When true, uses bottom sheet on mobile (< 768px) and regular modal on desktop.
433
+ */
434
+ useBottomSheetOnMobile?: boolean;
429
435
  };
430
436
  buttons?: {
431
437
  secondaryButton?: {
@@ -623,7 +629,7 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
623
629
  * ```
624
630
  */
625
631
  declare const useVeChainKitConfig: () => VeChainKitConfig;
626
- declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime1.JSX.Element;
632
+ declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime3.JSX.Element;
627
633
  //#endregion
628
634
  //#region src/providers/PrivyWalletProvider.d.ts
629
635
  interface PrivyWalletProviderContextType {
@@ -666,7 +672,7 @@ declare const PrivyWalletProvider: ({
666
672
  delegatorUrl?: string;
667
673
  delegateAllTransactions: boolean;
668
674
  genericDelegator?: boolean;
669
- }) => react_jsx_runtime1.JSX.Element;
675
+ }) => react_jsx_runtime3.JSX.Element;
670
676
  declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
671
677
  //#endregion
672
678
  //#region src/providers/VechainKitThemeProvider.d.ts
@@ -678,17 +684,18 @@ type Props$32 = {
678
684
  declare const useVechainKitThemeConfig: () => {
679
685
  portalRootRef?: React.RefObject<HTMLDivElement | null>;
680
686
  tokens?: ThemeTokens;
687
+ themeConfig?: VechainKitThemeConfig;
681
688
  };
682
689
  declare const ColorModeSync: ({
683
690
  darkMode
684
691
  }: {
685
692
  darkMode: boolean;
686
- }) => react_jsx_runtime1.JSX.Element;
693
+ }) => react_jsx_runtime3.JSX.Element;
687
694
  declare const VechainKitThemeProvider: ({
688
695
  children,
689
696
  darkMode,
690
697
  theme: customTheme
691
- }: Props$32) => react_jsx_runtime1.JSX.Element;
698
+ }: Props$32) => react_jsx_runtime3.JSX.Element;
692
699
  //#endregion
693
700
  //#region src/providers/LegalDocumentsProvider.d.ts
694
701
  type Props$31 = {
@@ -704,18 +711,41 @@ type LegalDocumentsContextType = {
704
711
  declare const useLegalDocuments: () => LegalDocumentsContextType;
705
712
  declare const LegalDocumentsProvider: ({
706
713
  children
707
- }: Props$31) => react_jsx_runtime1.JSX.Element;
714
+ }: Props$31) => react_jsx_runtime3.JSX.Element;
708
715
  //#endregion
709
716
  //#region src/components/ConnectModal/ConnectModal.d.ts
710
717
  type Props$30 = {
711
718
  isOpen: boolean;
712
719
  onClose: () => void;
720
+ initialContent?: ConnectModalContentsTypes;
721
+ };
722
+ type ConnectModalContentsTypes = 'main' | 'faq' | {
723
+ type: 'ecosystem';
724
+ props: {
725
+ appsInfo: PrivyAppInfo[];
726
+ isLoading: boolean;
727
+ showBackButton?: boolean;
728
+ };
729
+ } | {
730
+ type: 'loading';
731
+ props: {
732
+ title?: string;
733
+ loadingText?: string;
734
+ onTryAgain?: () => void;
735
+ showBackButton?: boolean;
736
+ };
737
+ } | {
738
+ type: 'error';
739
+ props: {
740
+ error: string;
741
+ onTryAgain: () => void;
742
+ };
713
743
  };
714
- type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
715
744
  declare const ConnectModal: ({
716
745
  isOpen,
717
- onClose
718
- }: Props$30) => react_jsx_runtime1.JSX.Element;
746
+ onClose,
747
+ initialContent
748
+ }: Props$30) => react_jsx_runtime3.JSX.Element;
719
749
  //#endregion
720
750
  //#region src/components/ConnectModal/Contents/MainContent.d.ts
721
751
  type Props$29 = {
@@ -723,9 +753,56 @@ type Props$29 = {
723
753
  onClose: () => void;
724
754
  };
725
755
  declare const MainContent: ({
756
+ setCurrentContent
757
+ }: Props$29) => react_jsx_runtime3.JSX.Element;
758
+ //#endregion
759
+ //#region src/components/ConnectModal/Contents/LoadingContent.d.ts
760
+ type LoadingContentProps = {
761
+ loadingText?: string;
762
+ title?: string;
763
+ onTryAgain?: () => void;
764
+ onClose: () => void;
765
+ onGoBack: () => void;
766
+ showBackButton?: boolean;
767
+ };
768
+ declare const LoadingContent: ({
769
+ loadingText,
770
+ title,
771
+ onTryAgain,
772
+ onClose,
773
+ onGoBack,
774
+ showBackButton
775
+ }: LoadingContentProps) => react_jsx_runtime3.JSX.Element;
776
+ //#endregion
777
+ //#region src/components/ConnectModal/Contents/ErrorContent.d.ts
778
+ type ErrorContentProps = {
779
+ error: string;
780
+ onClose: () => void;
781
+ onTryAgain: () => void;
782
+ onGoBack: () => void;
783
+ };
784
+ declare const ErrorContent: ({
785
+ error,
786
+ onClose,
787
+ onTryAgain,
788
+ onGoBack
789
+ }: ErrorContentProps) => react_jsx_runtime3.JSX.Element;
790
+ //#endregion
791
+ //#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
792
+ type Props$28 = {
793
+ onClose: () => void;
794
+ appsInfo: PrivyAppInfo[];
795
+ isLoading: boolean;
796
+ setCurrentContent: React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
797
+ showBackButton?: boolean;
798
+ };
799
+ declare const EcosystemContent: ({
800
+ onClose,
801
+ appsInfo,
802
+ isLoading,
726
803
  setCurrentContent,
727
- onClose
728
- }: Props$29) => react_jsx_runtime1.JSX.Element;
804
+ showBackButton
805
+ }: Props$28) => react_jsx_runtime3.JSX.Element;
729
806
  //#endregion
730
807
  //#region src/components/ConnectModal/Components/ConnectionButton.d.ts
731
808
  interface ConnectionButtonProps {
@@ -748,35 +825,39 @@ declare const ConnectionButton: ({
748
825
  style,
749
826
  variant,
750
827
  iconWidth
751
- }: ConnectionButtonProps) => react_jsx_runtime1.JSX.Element | null;
828
+ }: ConnectionButtonProps) => react_jsx_runtime3.JSX.Element | null;
752
829
  //#endregion
753
830
  //#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
754
- declare const EmailLoginButton: () => react_jsx_runtime1.JSX.Element;
831
+ declare const EmailLoginButton: () => react_jsx_runtime3.JSX.Element;
755
832
  //#endregion
756
833
  //#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
757
- type Props$28 = {
834
+ type Props$27 = {
758
835
  isDark: boolean;
759
836
  gridColumn?: number;
837
+ setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
760
838
  };
761
839
  declare const VeChainLoginButton: ({
762
840
  isDark,
763
- gridColumn
764
- }: Props$28) => react_jsx_runtime1.JSX.Element;
841
+ gridColumn,
842
+ setCurrentContent
843
+ }: Props$27) => react_jsx_runtime3.JSX.Element;
765
844
  //#endregion
766
845
  //#region src/components/ConnectModal/Components/EcosystemButton.d.ts
767
- type Props$27 = {
846
+ type Props$26 = {
768
847
  isDark: boolean;
769
848
  appsInfo: PrivyAppInfo[];
770
849
  isLoading: boolean;
771
850
  gridColumn?: number;
851
+ setCurrentContent: React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
772
852
  };
773
853
  declare const EcosystemButton: ({
774
854
  appsInfo,
775
- isLoading
776
- }: Props$27) => react_jsx_runtime1.JSX.Element;
855
+ isLoading,
856
+ setCurrentContent
857
+ }: Props$26) => react_jsx_runtime3.JSX.Element;
777
858
  //#endregion
778
859
  //#region src/components/ConnectModal/Components/PrivyButton.d.ts
779
- type Props$26 = {
860
+ type Props$25 = {
780
861
  isDark: boolean;
781
862
  onViewMoreLogin: () => void;
782
863
  gridColumn?: number;
@@ -785,57 +866,59 @@ declare const PrivyButton: ({
785
866
  isDark,
786
867
  onViewMoreLogin,
787
868
  gridColumn
788
- }: Props$26) => react_jsx_runtime1.JSX.Element;
869
+ }: Props$25) => react_jsx_runtime3.JSX.Element;
789
870
  //#endregion
790
871
  //#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
791
- type Props$25 = {
872
+ type Props$24 = {
792
873
  isDark: boolean;
793
874
  gridColumn?: number;
794
875
  };
795
876
  declare const LoginWithGoogleButton: ({
796
877
  isDark,
797
878
  gridColumn
798
- }: Props$25) => react_jsx_runtime1.JSX.Element;
879
+ }: Props$24) => react_jsx_runtime3.JSX.Element;
799
880
  //#endregion
800
881
  //#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
801
- type Props$24 = {
882
+ type Props$23 = {
802
883
  isDark: boolean;
803
884
  gridColumn?: number;
885
+ setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
804
886
  };
805
887
  declare const PasskeyLoginButton: ({
806
888
  isDark,
807
- gridColumn
808
- }: Props$24) => react_jsx_runtime1.JSX.Element;
889
+ gridColumn,
890
+ setCurrentContent
891
+ }: Props$23) => react_jsx_runtime3.JSX.Element;
809
892
  //#endregion
810
893
  //#region src/components/ConnectModal/Components/DappKitButton.d.ts
811
- type Props$23 = {
894
+ type Props$22 = {
812
895
  isDark: boolean;
813
896
  gridColumn?: number;
814
897
  };
815
898
  declare const DappKitButton: ({
816
899
  isDark,
817
900
  gridColumn
818
- }: Props$23) => react_jsx_runtime1.JSX.Element;
901
+ }: Props$22) => react_jsx_runtime3.JSX.Element;
819
902
  //#endregion
820
903
  //#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
821
- type Props$22 = {
904
+ type Props$21 = {
822
905
  isDark: boolean;
823
906
  gridColumn?: number;
824
907
  };
825
908
  declare const VeChainWithPrivyLoginButton: ({
826
909
  isDark,
827
910
  gridColumn
828
- }: Props$22) => react_jsx_runtime1.JSX.Element;
911
+ }: Props$21) => react_jsx_runtime3.JSX.Element;
829
912
  //#endregion
830
913
  //#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
831
- type Props$21 = {
914
+ type Props$20 = {
832
915
  isDark: boolean;
833
916
  gridColumn?: number;
834
917
  };
835
918
  declare const LoginWithGithubButton: ({
836
919
  isDark,
837
920
  gridColumn
838
- }: Props$21) => react_jsx_runtime1.JSX.Element;
921
+ }: Props$20) => react_jsx_runtime3.JSX.Element;
839
922
  //#endregion
840
923
  //#region src/components/ConnectModal/ConnectPopover.d.ts
841
924
  type ConnectPopoverProps = {
@@ -845,7 +928,7 @@ type ConnectPopoverProps = {
845
928
  declare const ConnectPopover: ({
846
929
  isLoading,
847
930
  buttonStyle
848
- }: ConnectPopoverProps) => react_jsx_runtime1.JSX.Element;
931
+ }: ConnectPopoverProps) => react_jsx_runtime3.JSX.Element;
849
932
  //#endregion
850
933
  //#region src/components/WalletButton/types.d.ts
851
934
  type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
@@ -862,10 +945,10 @@ declare const WalletButton: ({
862
945
  desktopVariant,
863
946
  buttonStyle,
864
947
  connectionVariant
865
- }: WalletButtonProps) => react_jsx_runtime1.JSX.Element;
948
+ }: WalletButtonProps) => react_jsx_runtime3.JSX.Element;
866
949
  //#endregion
867
950
  //#region src/components/WalletButton/SocialIcons.d.ts
868
- declare const SocialIcons: () => react_jsx_runtime1.JSX.Element;
951
+ declare const SocialIcons: () => react_jsx_runtime3.JSX.Element;
869
952
  //#endregion
870
953
  //#region src/components/TransactionModal/TransactionModal.d.ts
871
954
  type TransactionModalProps = {
@@ -895,17 +978,17 @@ declare const TransactionModal: ({
895
978
  txReceipt,
896
979
  txError,
897
980
  onTryAgain
898
- }: TransactionModalProps) => react_jsx_runtime1.JSX.Element;
981
+ }: TransactionModalProps) => react_jsx_runtime3.JSX.Element | null;
899
982
  //#endregion
900
983
  //#region src/components/TransactionModal/Components/ShareButtons.d.ts
901
- type Props$20 = {
984
+ type Props$19 = {
902
985
  descriptionEncoded: string;
903
986
  url?: string;
904
987
  facebookHashtag?: string;
905
988
  };
906
989
  declare const ShareButtons: ({
907
990
  descriptionEncoded
908
- }: Props$20) => react_jsx_runtime1.JSX.Element;
991
+ }: Props$19) => react_jsx_runtime3.JSX.Element;
909
992
  //#endregion
910
993
  //#region src/components/TransactionModal/TransactionModalContent.d.ts
911
994
  declare const TransactionModalContent: ({
@@ -915,7 +998,7 @@ declare const TransactionModalContent: ({
915
998
  txReceipt,
916
999
  txError,
917
1000
  onClose
918
- }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime1.JSX.Element;
1001
+ }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime3.JSX.Element;
919
1002
  //#endregion
920
1003
  //#region src/components/TransactionToast/TransactionToast.d.ts
921
1004
  type TransactionToastProps = {
@@ -935,10 +1018,10 @@ declare const TransactionToast: ({
935
1018
  txError,
936
1019
  onTryAgain,
937
1020
  description
938
- }: TransactionToastProps) => react_jsx_runtime1.JSX.Element | null;
1021
+ }: TransactionToastProps) => react_jsx_runtime3.JSX.Element | null;
939
1022
  //#endregion
940
1023
  //#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
941
- type Props$19 = {
1024
+ type Props$18 = {
942
1025
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
943
1026
  onClose: () => void;
944
1027
  wallet: Wallet;
@@ -947,12 +1030,12 @@ declare const AccountMainContent: ({
947
1030
  setCurrentContent,
948
1031
  wallet,
949
1032
  onClose
950
- }: Props$19) => react_jsx_runtime1.JSX.Element;
1033
+ }: Props$18) => react_jsx_runtime3.JSX.Element;
951
1034
  //#endregion
952
1035
  //#region src/hooks/api/privy/useFetchAppInfo.d.ts
953
1036
  declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
954
1037
  declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
955
- declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query17.UseQueryResult<{
1038
+ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query24.UseQueryResult<{
956
1039
  [k: string]: {
957
1040
  website: string | undefined;
958
1041
  id: string;
@@ -973,7 +1056,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
973
1056
  //#endregion
974
1057
  //#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
975
1058
  declare const fetchPrivyStatus: () => Promise<string>;
976
- declare const useFetchPrivyStatus: () => _tanstack_react_query17.UseQueryResult<string, Error>;
1059
+ declare const useFetchPrivyStatus: () => _tanstack_react_query24.UseQueryResult<string, Error>;
977
1060
  //#endregion
978
1061
  //#region src/hooks/api/vetDomains/useVechainDomain.d.ts
979
1062
  interface VeChainDomainResult {
@@ -983,11 +1066,11 @@ interface VeChainDomainResult {
983
1066
  isPrimaryDomain: boolean;
984
1067
  }
985
1068
  declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
986
- declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query17.UseQueryResult<VeChainDomainResult, Error>;
1069
+ declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query24.UseQueryResult<VeChainDomainResult, Error>;
987
1070
  //#endregion
988
1071
  //#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
989
1072
  declare const getEnsRecordExistsQueryKey: (name: string) => string[];
990
- declare const useEnsRecordExists: (name: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
1073
+ declare const useEnsRecordExists: (name: string) => _tanstack_react_query24.UseQueryResult<boolean, Error>;
991
1074
  //#endregion
992
1075
  //#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
993
1076
  type useClaimVeWorldSubdomainProps = {
@@ -1049,7 +1132,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
1049
1132
  * @param {boolean} [enabled=true] - Flag to enable or disable the hook.
1050
1133
  * @returns The result of the useQuery hook, with the protection status.
1051
1134
  */
1052
- declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
1135
+ declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query24.UseQueryResult<boolean, Error>;
1053
1136
  //#endregion
1054
1137
  //#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
1055
1138
  declare const DomainSchema: z.ZodObject<{
@@ -1077,7 +1160,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
1077
1160
  * @param parentDomain The parent domain (e.g., "veworld.vet")
1078
1161
  * @returns The domains owned by the address
1079
1162
  */
1080
- declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query17.UseQueryResult<{
1163
+ declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query24.UseQueryResult<{
1081
1164
  domains: {
1082
1165
  name: string;
1083
1166
  }[];
@@ -1090,7 +1173,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
1090
1173
  * @param name - The VET domain name
1091
1174
  * @returns The resolved avatar URL
1092
1175
  */
1093
- declare const useGetAvatar: (name: string) => _tanstack_react_query17.UseQueryResult<string | null, Error>;
1176
+ declare const useGetAvatar: (name: string) => _tanstack_react_query24.UseQueryResult<string | null, Error>;
1094
1177
  //#endregion
1095
1178
  //#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
1096
1179
  /**
@@ -1102,7 +1185,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query17.UseQueryRe
1102
1185
  */
1103
1186
  declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
1104
1187
  declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
1105
- declare const useGetTextRecords: (domain?: string) => _tanstack_react_query17.UseQueryResult<TextRecords, Error>;
1188
+ declare const useGetTextRecords: (domain?: string) => _tanstack_react_query24.UseQueryResult<TextRecords, Error>;
1106
1189
  //#endregion
1107
1190
  //#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
1108
1191
  type UpdateTextRecordVariables = {
@@ -1135,7 +1218,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
1135
1218
  * @param domain The domain to get resolver for
1136
1219
  * @returns The resolver address for the domain
1137
1220
  */
1138
- declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query17.UseQueryResult<`0x${string}`, unknown>;
1221
+ declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query24.UseQueryResult<`0x${string}`, unknown>;
1139
1222
  //#endregion
1140
1223
  //#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
1141
1224
  declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
@@ -1145,7 +1228,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
1145
1228
  * @param address The owner's address
1146
1229
  * @returns The avatar URL for the address's primary domain
1147
1230
  */
1148
- declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query17.UseQueryResult<string, Error>;
1231
+ declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query24.UseQueryResult<string, Error>;
1149
1232
  //#endregion
1150
1233
  //#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
1151
1234
  /**
@@ -1162,7 +1245,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
1162
1245
  * @param name - The VET domain name
1163
1246
  * @returns The resolved avatar URL
1164
1247
  */
1165
- declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query17.UseQueryResult<string | null, Error>;
1248
+ declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query24.UseQueryResult<string | null, Error>;
1166
1249
  //#endregion
1167
1250
  //#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
1168
1251
  type useUnsetDomainProps = {
@@ -1271,7 +1354,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
1271
1354
  * Hook to get the current roundId of allocations voting
1272
1355
  * @returns the current roundId of allocations voting
1273
1356
  */
1274
- declare const useCurrentAllocationsRoundId: () => _tanstack_react_query17.UseQueryResult<string, unknown>;
1357
+ declare const useCurrentAllocationsRoundId: () => _tanstack_react_query24.UseQueryResult<string, unknown>;
1275
1358
  //#endregion
1276
1359
  //#region src/hooks/api/wallet/useCustomTokens.d.ts
1277
1360
  declare const useCustomTokens: () => {
@@ -1284,7 +1367,7 @@ declare const useCustomTokens: () => {
1284
1367
  //#endregion
1285
1368
  //#region src/hooks/api/wallet/useGetB3trBalance.d.ts
1286
1369
  declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
1287
- declare const useGetB3trBalance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1370
+ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query24.UseQueryResult<{
1288
1371
  original: string;
1289
1372
  scaled: string;
1290
1373
  formatted: string;
@@ -1293,7 +1376,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query17.U
1293
1376
  //#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
1294
1377
  type TokenWithBalance = CustomTokenInfo & TokenBalance;
1295
1378
  declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
1296
- declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1379
+ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query24.UseQueryResult<{
1297
1380
  original: string;
1298
1381
  scaled: string;
1299
1382
  formatted: string;
@@ -1304,13 +1387,13 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
1304
1387
  }, Error>[];
1305
1388
  //#endregion
1306
1389
  //#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
1307
- declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1390
+ declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1308
1391
  declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
1309
- declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query17.UseQueryResult<CustomTokenInfo, Error>;
1392
+ declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query24.UseQueryResult<CustomTokenInfo, Error>;
1310
1393
  //#endregion
1311
1394
  //#region src/hooks/api/wallet/useGetErc20Balance.d.ts
1312
1395
  declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
1313
- declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query17.UseQueryResult<{
1396
+ declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query24.UseQueryResult<{
1314
1397
  original: string;
1315
1398
  scaled: string;
1316
1399
  formatted: string;
@@ -1327,11 +1410,11 @@ declare const PRICE_FEED_IDS: {
1327
1410
  type SupportedToken = keyof typeof PRICE_FEED_IDS;
1328
1411
  declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
1329
1412
  declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
1330
- declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query17.UseQueryResult<number, Error>;
1413
+ declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query24.UseQueryResult<number, Error>;
1331
1414
  //#endregion
1332
1415
  //#region src/hooks/api/wallet/useGetVot3Balance.d.ts
1333
1416
  declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
1334
- declare const useGetVot3Balance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1417
+ declare const useGetVot3Balance: (address?: string) => _tanstack_react_query24.UseQueryResult<{
1335
1418
  original: string;
1336
1419
  scaled: string;
1337
1420
  formatted: string;
@@ -1350,7 +1433,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
1350
1433
  * @param user - The user address.
1351
1434
  * @returns The isPerson status.
1352
1435
  */
1353
- declare const useIsPerson: (user?: string | null) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
1436
+ declare const useIsPerson: (user?: string | null) => _tanstack_react_query24.UseQueryResult<boolean, Error>;
1354
1437
  //#endregion
1355
1438
  //#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
1356
1439
  type XApp = {
@@ -1388,7 +1471,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
1388
1471
  //#endregion
1389
1472
  //#region src/hooks/api/wallet/useRoundXApps.d.ts
1390
1473
  declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
1391
- declare const useRoundXApps: (roundId?: string) => _tanstack_react_query17.UseQueryResult<{
1474
+ declare const useRoundXApps: (roundId?: string) => _tanstack_react_query24.UseQueryResult<{
1392
1475
  id: string;
1393
1476
  teamWalletAddress: `0x${string}`;
1394
1477
  name: string;
@@ -1419,7 +1502,7 @@ type UseWalletReturnType = {
1419
1502
  };
1420
1503
  disconnect: () => Promise<void>;
1421
1504
  };
1422
- declare const useWallet: () => UseWalletReturnType;
1505
+ declare const useWallet$1: () => UseWalletReturnType;
1423
1506
  //#endregion
1424
1507
  //#region src/hooks/api/wallet/useWalletMetadata.d.ts
1425
1508
  declare const useWalletMetadata: (address: string, networkType: NETWORK_TYPE) => {
@@ -1471,7 +1554,7 @@ type XAppMetadata = {
1471
1554
  * @returns The metadata of the xApp see {@link XAppMetadata}
1472
1555
  */
1473
1556
  declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
1474
- declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query17.UseQueryResult<XAppMetadata | undefined, Error>;
1557
+ declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query24.UseQueryResult<XAppMetadata | undefined, Error>;
1475
1558
  //#endregion
1476
1559
  //#region src/hooks/api/wallet/useXAppShares.d.ts
1477
1560
  /**
@@ -1486,7 +1569,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
1486
1569
  * @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
1487
1570
  *
1488
1571
  */
1489
- declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query17.UseQueryResult<{
1572
+ declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query24.UseQueryResult<{
1490
1573
  app: string;
1491
1574
  share: number;
1492
1575
  unallocatedShare: number;
@@ -1508,7 +1591,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
1508
1591
  * @param ipfsUri - The IPFS URI
1509
1592
  * @returns The metadata from IPFS
1510
1593
  */
1511
- declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<T$1>, Error>;
1594
+ declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query24.UseQueryResult<_tanstack_react_query24.NoInfer<T$1>, Error>;
1512
1595
  //#endregion
1513
1596
  //#region src/hooks/api/ipfs/useIpfsImage.d.ts
1514
1597
  interface IpfsImage {
@@ -1535,14 +1618,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
1535
1618
  * @param imageIpfsUri - The IPFS URI of the NFT media
1536
1619
  * @returns The NFT media
1537
1620
  */
1538
- declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query17.UseQueryResult<IpfsImage, Error>;
1621
+ declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query24.UseQueryResult<IpfsImage, Error>;
1539
1622
  /**
1540
1623
  * Custom hook to fetch a list of IPFS images.
1541
1624
  *
1542
1625
  * @param imageIpfsUriList - An array of IPFS URIs for the images.
1543
1626
  * @returns An array of queries for each IPFS image URI.
1544
1627
  */
1545
- declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query17.UseQueryResult<IpfsImage, Error>[];
1628
+ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query24.UseQueryResult<IpfsImage, Error>[];
1546
1629
  //#endregion
1547
1630
  //#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
1548
1631
  /**
@@ -1550,12 +1633,12 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
1550
1633
  * @param ipfsUris - The IPFS URIs
1551
1634
  * @returns The metadata from IPFS for each URI
1552
1635
  */
1553
- declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query17.UseQueryResult<T$1, Error>[];
1636
+ declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query24.UseQueryResult<T$1, Error>[];
1554
1637
  //#endregion
1555
1638
  //#region src/hooks/api/ipfs/useUploadImages.d.ts
1556
1639
  declare const imageCompressionOptions: Options;
1557
1640
  declare const compressImages: (images: UploadedImage[]) => Promise<File[]>;
1558
- type Props$18 = {
1641
+ type Props$17 = {
1559
1642
  compressImages?: boolean;
1560
1643
  defaultImages?: UploadedImage[];
1561
1644
  };
@@ -1571,7 +1654,7 @@ type UploadedImage = {
1571
1654
  declare const useUploadImages: ({
1572
1655
  compressImages,
1573
1656
  defaultImages
1574
- }: Props$18) => {
1657
+ }: Props$17) => {
1575
1658
  uploadedImages: UploadedImage[];
1576
1659
  setUploadedImages: react0.Dispatch<react0.SetStateAction<UploadedImage[]>>;
1577
1660
  onUpload: (acceptedFiles: File[], keepCurrent?: boolean) => Promise<void>;
@@ -1580,7 +1663,7 @@ declare const useUploadImages: ({
1580
1663
  };
1581
1664
  //#endregion
1582
1665
  //#region src/hooks/api/ipfs/useSingleImageUpload.d.ts
1583
- type Props$17 = {
1666
+ type Props$16 = {
1584
1667
  compressImage?: boolean;
1585
1668
  defaultImage?: UploadedImage;
1586
1669
  };
@@ -1593,7 +1676,7 @@ type Props$17 = {
1593
1676
  declare const useSingleImageUpload: ({
1594
1677
  compressImage,
1595
1678
  defaultImage
1596
- }: Props$17) => {
1679
+ }: Props$16) => {
1597
1680
  uploadedImage: UploadedImage | undefined;
1598
1681
  setUploadedImage: react0.Dispatch<react0.SetStateAction<UploadedImage | undefined>>;
1599
1682
  onUpload: (acceptedFile: File) => Promise<UploadedImage>;
@@ -1761,7 +1844,7 @@ declare const useSwapQuotes: (fromToken: TokenWithValue | null, toToken: TokenWi
1761
1844
  //#endregion
1762
1845
  //#region src/hooks/modals/useConnectModal.d.ts
1763
1846
  declare const useConnectModal: () => {
1764
- open: () => void;
1847
+ open: (initialContent?: ConnectModalContentsTypes) => void;
1765
1848
  close: () => void;
1766
1849
  isOpen: boolean;
1767
1850
  };
@@ -1769,7 +1852,7 @@ declare const ConnectModalProvider: ({
1769
1852
  children
1770
1853
  }: {
1771
1854
  children: ReactNode;
1772
- }) => react_jsx_runtime1.JSX.Element;
1855
+ }) => react_jsx_runtime3.JSX.Element;
1773
1856
  //#endregion
1774
1857
  //#region src/hooks/modals/useAccountModal.d.ts
1775
1858
  declare const useAccountModal: () => {
@@ -1781,7 +1864,7 @@ declare const AccountModalProvider: ({
1781
1864
  children
1782
1865
  }: {
1783
1866
  children: ReactNode;
1784
- }) => react_jsx_runtime1.JSX.Element;
1867
+ }) => react_jsx_runtime3.JSX.Element;
1785
1868
  //#endregion
1786
1869
  //#region src/hooks/modals/useTransactionModal.d.ts
1787
1870
  declare const useTransactionModal: () => {
@@ -1793,7 +1876,7 @@ declare const TransactionModalProvider: ({
1793
1876
  children
1794
1877
  }: {
1795
1878
  children: ReactNode;
1796
- }) => react_jsx_runtime1.JSX.Element;
1879
+ }) => react_jsx_runtime3.JSX.Element;
1797
1880
  //#endregion
1798
1881
  //#region src/hooks/modals/useTransactionToast.d.ts
1799
1882
  declare const useTransactionToast: () => {
@@ -1805,7 +1888,7 @@ declare const TransactionToastProvider: ({
1805
1888
  children
1806
1889
  }: {
1807
1890
  children: ReactNode;
1808
- }) => react_jsx_runtime1.JSX.Element;
1891
+ }) => react_jsx_runtime3.JSX.Element;
1809
1892
  //#endregion
1810
1893
  //#region src/hooks/modals/useWalletModal.d.ts
1811
1894
  declare const useWalletModal: () => {
@@ -1817,7 +1900,7 @@ declare const WalletModalProvider: ({
1817
1900
  children
1818
1901
  }: {
1819
1902
  children: ReactNode;
1820
- }) => react_jsx_runtime1.JSX.Element;
1903
+ }) => react_jsx_runtime3.JSX.Element;
1821
1904
  //#endregion
1822
1905
  //#region src/hooks/modals/useChooseNameModal.d.ts
1823
1906
  declare const useChooseNameModal: () => {
@@ -1829,7 +1912,7 @@ declare const ChooseNameModalProvider: ({
1829
1912
  children
1830
1913
  }: {
1831
1914
  children: ReactNode;
1832
- }) => react_jsx_runtime1.JSX.Element;
1915
+ }) => react_jsx_runtime3.JSX.Element;
1833
1916
  //#endregion
1834
1917
  //#region src/hooks/modals/useSendTokenModal.d.ts
1835
1918
  declare const useSendTokenModal: () => {
@@ -1841,7 +1924,7 @@ declare const SendTokenModalProvider: ({
1841
1924
  children
1842
1925
  }: {
1843
1926
  children: ReactNode;
1844
- }) => react_jsx_runtime1.JSX.Element;
1927
+ }) => react_jsx_runtime3.JSX.Element;
1845
1928
  //#endregion
1846
1929
  //#region src/hooks/modals/useSwapTokenModal.d.ts
1847
1930
  type SwapTokenModalOptions = {
@@ -1858,7 +1941,7 @@ declare const SwapTokenModalProvider: ({
1858
1941
  children
1859
1942
  }: {
1860
1943
  children: ReactNode;
1861
- }) => react_jsx_runtime1.JSX.Element;
1944
+ }) => react_jsx_runtime3.JSX.Element;
1862
1945
  //#endregion
1863
1946
  //#region src/hooks/modals/useExploreEcosystemModal.d.ts
1864
1947
  declare const useExploreEcosystemModal: () => {
@@ -1870,7 +1953,7 @@ declare const ExploreEcosystemModalProvider: ({
1870
1953
  children
1871
1954
  }: {
1872
1955
  children: ReactNode;
1873
- }) => react_jsx_runtime1.JSX.Element;
1956
+ }) => react_jsx_runtime3.JSX.Element;
1874
1957
  //#endregion
1875
1958
  //#region src/hooks/modals/useNotificationsModal.d.ts
1876
1959
  declare const useNotificationsModal: () => {
@@ -1882,7 +1965,7 @@ declare const NotificationsModalProvider: ({
1882
1965
  children
1883
1966
  }: {
1884
1967
  children: ReactNode;
1885
- }) => react_jsx_runtime1.JSX.Element;
1968
+ }) => react_jsx_runtime3.JSX.Element;
1886
1969
  //#endregion
1887
1970
  //#region src/hooks/modals/useFAQModal.d.ts
1888
1971
  declare const useFAQModal: () => {
@@ -1894,7 +1977,7 @@ declare const FAQModalProvider: ({
1894
1977
  children
1895
1978
  }: {
1896
1979
  children: ReactNode;
1897
- }) => react_jsx_runtime1.JSX.Element;
1980
+ }) => react_jsx_runtime3.JSX.Element;
1898
1981
  //#endregion
1899
1982
  //#region src/hooks/modals/useAccountCustomizationModal.d.ts
1900
1983
  declare const useAccountCustomizationModal: () => {
@@ -1906,7 +1989,7 @@ declare const AccountCustomizationModalProvider: ({
1906
1989
  children
1907
1990
  }: {
1908
1991
  children: ReactNode;
1909
- }) => react_jsx_runtime1.JSX.Element;
1992
+ }) => react_jsx_runtime3.JSX.Element;
1910
1993
  //#endregion
1911
1994
  //#region src/hooks/modals/useReceiveModal.d.ts
1912
1995
  declare const useReceiveModal: () => {
@@ -1918,7 +2001,7 @@ declare const ReceiveModalProvider: ({
1918
2001
  children
1919
2002
  }: {
1920
2003
  children: ReactNode;
1921
- }) => react_jsx_runtime1.JSX.Element;
2004
+ }) => react_jsx_runtime3.JSX.Element;
1922
2005
  //#endregion
1923
2006
  //#region src/hooks/modals/useLoginModalContent.d.ts
1924
2007
  type LoginModalContentConfig = {
@@ -1944,7 +2027,7 @@ declare const UpgradeSmartAccountModalProvider: ({
1944
2027
  children
1945
2028
  }: {
1946
2029
  children: ReactNode;
1947
- }) => react_jsx_runtime1.JSX.Element;
2030
+ }) => react_jsx_runtime3.JSX.Element;
1948
2031
  //#endregion
1949
2032
  //#region src/hooks/modals/useProfileModal.d.ts
1950
2033
  declare const useProfileModal: () => {
@@ -1956,7 +2039,7 @@ declare const ProfileModalProvider: ({
1956
2039
  children
1957
2040
  }: {
1958
2041
  children: ReactNode;
1959
- }) => react_jsx_runtime1.JSX.Element;
2042
+ }) => react_jsx_runtime3.JSX.Element;
1960
2043
  //#endregion
1961
2044
  //#region src/hooks/modals/useAccountModalOptions.d.ts
1962
2045
  declare const useAccountModalOptions: () => {
@@ -2027,7 +2110,7 @@ type UseSignTypedDataReturnValue = {
2027
2110
  declare const useSignTypedData: () => UseSignTypedDataReturnValue;
2028
2111
  //#endregion
2029
2112
  //#region src/hooks/login/useLoginWithPasskey.d.ts
2030
- declare const useLoginWithPasskey: () => {
2113
+ declare const useLoginWithPasskey$1: () => {
2031
2114
  loginWithPasskey: () => Promise<void>;
2032
2115
  };
2033
2116
  //#endregion
@@ -2035,7 +2118,7 @@ declare const useLoginWithPasskey: () => {
2035
2118
  interface OAuthOptions {
2036
2119
  provider: OAuthProviderType;
2037
2120
  }
2038
- declare const useLoginWithOAuth: () => {
2121
+ declare const useLoginWithOAuth$1: () => {
2039
2122
  initOAuth: ({
2040
2123
  provider
2041
2124
  }: OAuthOptions) => Promise<void>;
@@ -2092,7 +2175,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
2092
2175
  * );
2093
2176
  * ```
2094
2177
  */
2095
- declare const useAppHubApps: () => _tanstack_react_query17.UseQueryResult<AppHubApp[], Error>;
2178
+ declare const useAppHubApps: () => _tanstack_react_query24.UseQueryResult<AppHubApp[], Error>;
2096
2179
  //#endregion
2097
2180
  //#region src/utils/constants.d.ts
2098
2181
  declare const TOKEN_LOGOS: Record<string, string>;
@@ -2439,7 +2522,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
2439
2522
  method: TMethod;
2440
2523
  args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
2441
2524
  queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
2442
- }) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<TData>, unknown>;
2525
+ }) => _tanstack_react_query24.UseQueryResult<_tanstack_react_query24.NoInfer<TData>, unknown>;
2443
2526
  declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
2444
2527
  thor,
2445
2528
  calls,
@@ -2450,7 +2533,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
2450
2533
  calls: MultipleClausesCallParameters<contracts, allowFailure>;
2451
2534
  queryKey: string[];
2452
2535
  enabled?: boolean;
2453
- }) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
2536
+ }) => _tanstack_react_query24.UseQueryResult<_tanstack_react_query24.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
2454
2537
  //#endregion
2455
2538
  //#region src/hooks/utils/useCurrency.d.ts
2456
2539
  /**
@@ -2574,7 +2657,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
2574
2657
  filterParams,
2575
2658
  mapResponse,
2576
2659
  nodeUrl
2577
- }: UseEventsParams<T$1, K, R>) => _tanstack_react_query17.UseQueryResult<R[], Error>;
2660
+ }: UseEventsParams<T$1, K, R>) => _tanstack_react_query24.UseQueryResult<R[], Error>;
2578
2661
  //#endregion
2579
2662
  //#region src/hooks/utils/useBuildClauses.d.ts
2580
2663
  interface BuildClausesParams {
@@ -2725,7 +2808,7 @@ declare const useGenericDelegatorFeeEstimation: ({
2725
2808
  tokens,
2726
2809
  sendingAmount,
2727
2810
  sendingTokenSymbol
2728
- }: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query17.UseQueryResult<EstimationResponse & {
2811
+ }: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query24.UseQueryResult<EstimationResponse & {
2729
2812
  usedToken: string;
2730
2813
  }, Error>;
2731
2814
  //#endregion
@@ -2739,7 +2822,7 @@ declare const useEstimateAllTokens: ({
2739
2822
  clauses,
2740
2823
  tokens,
2741
2824
  enabled
2742
- }: UseEstimateAllTokensParams) => _tanstack_react_query17.UseQueryResult<Record<GasTokenType, {
2825
+ }: UseEstimateAllTokensParams) => _tanstack_react_query24.UseQueryResult<Record<GasTokenType, {
2743
2826
  cost: number;
2744
2827
  loading: boolean;
2745
2828
  error?: string;
@@ -2756,7 +2839,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
2756
2839
  * @param address The address of the account to get the balance for
2757
2840
  * @returns The account balance
2758
2841
  */
2759
- declare const useAccountBalance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
2842
+ declare const useAccountBalance: (address?: string) => _tanstack_react_query24.UseQueryResult<{
2760
2843
  balance: string;
2761
2844
  energy: string;
2762
2845
  }, Error>;
@@ -2769,7 +2852,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
2769
2852
  * @param version - The version of the smart account implementation
2770
2853
  * @returns The address of the smart account implementation
2771
2854
  */
2772
- declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query17.UseQueryResult<string, Error>;
2855
+ declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query24.UseQueryResult<string, Error>;
2773
2856
  //#endregion
2774
2857
  //#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
2775
2858
  declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
@@ -2778,7 +2861,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
2778
2861
  * Get the current account implementation version used by the smart account factory
2779
2862
  * @returns The current account implementation version
2780
2863
  */
2781
- declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query17.UseQueryResult<number, Error>;
2864
+ declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query24.UseQueryResult<number, Error>;
2782
2865
  //#endregion
2783
2866
  //#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
2784
2867
  declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
@@ -2788,7 +2871,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
2788
2871
  * @param ownerAddress - The address of the owner of the smart account
2789
2872
  * @returns The address of the smart account
2790
2873
  */
2791
- declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<string, Error>;
2874
+ declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query24.UseQueryResult<string, Error>;
2792
2875
  //#endregion
2793
2876
  //#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
2794
2877
  declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
@@ -2798,7 +2881,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
2798
2881
  * @param ownerAddress - The address of the owner of the smart account
2799
2882
  * @returns The version of the smart account
2800
2883
  */
2801
- declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query17.UseQueryResult<{
2884
+ declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query24.UseQueryResult<{
2802
2885
  version: number;
2803
2886
  isDeployed: boolean;
2804
2887
  }, unknown>;
@@ -2811,7 +2894,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
2811
2894
  * @param ownerAddress - The address of the owner of the smart account
2812
2895
  * @returns True if the smart account has a v1 smart account, false otherwise
2813
2896
  */
2814
- declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2897
+ declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query24.UseQueryResult<boolean, Error>;
2815
2898
  //#endregion
2816
2899
  //#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
2817
2900
  declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
@@ -2820,7 +2903,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
2820
2903
  * Check if a smart account is deployed
2821
2904
  * @returns True if the smart account is deployed, false otherwise
2822
2905
  */
2823
- declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2906
+ declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query24.UseQueryResult<boolean, Error>;
2824
2907
  //#endregion
2825
2908
  //#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
2826
2909
  /**
@@ -2853,7 +2936,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
2853
2936
  isDeployed: boolean;
2854
2937
  }>;
2855
2938
  declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
2856
- declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<{
2939
+ declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query24.UseQueryResult<{
2857
2940
  address: undefined;
2858
2941
  isDeployed?: undefined;
2859
2942
  } | {
@@ -2871,7 +2954,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
2871
2954
  * @param targetVersion - The version of the smart account to check for
2872
2955
  * @returns True if the smart account needs an upgrade, false otherwise
2873
2956
  */
2874
- declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2957
+ declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query24.UseQueryResult<boolean, Error>;
2875
2958
  //#endregion
2876
2959
  //#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
2877
2960
  declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
@@ -2882,7 +2965,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
2882
2965
  * @param targetVersion - The target version of the smart account
2883
2966
  * @returns True if the smart account needs an upgrade, false otherwise
2884
2967
  */
2885
- declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2968
+ declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query24.UseQueryResult<boolean, Error>;
2886
2969
  //#endregion
2887
2970
  //#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
2888
2971
  type UseUpgradeSmartAccountVersionProps = {
@@ -2907,7 +2990,7 @@ declare const currentBlockQueryKey: () => string[];
2907
2990
  * Fetches the current block from the blockchain. The block is refetched every 10 seconds.
2908
2991
  * @returns the current block
2909
2992
  */
2910
- declare const useCurrentBlock: () => _tanstack_react_query17.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
2993
+ declare const useCurrentBlock: () => _tanstack_react_query24.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
2911
2994
  //#endregion
2912
2995
  //#region src/hooks/thor/blocks/useGetChainId.d.ts
2913
2996
  declare const getChainId: (thor: ThorClient) => Promise<string>;
@@ -2916,7 +2999,7 @@ declare const getChainIdQueryKey: () => string[];
2916
2999
  * Get the chain id
2917
3000
  * @returns The chain id
2918
3001
  */
2919
- declare const useGetChainId: () => _tanstack_react_query17.UseQueryResult<string, Error>;
3002
+ declare const useGetChainId: () => _tanstack_react_query24.UseQueryResult<string, Error>;
2920
3003
  //#endregion
2921
3004
  //#region src/hooks/thor/logs/logUtils.d.ts
2922
3005
  /**
@@ -3168,7 +3251,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
3168
3251
  * @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
3169
3252
  * @returns Query result containing the transaction receipt
3170
3253
  */
3171
- declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query17.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3254
+ declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query24.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3172
3255
  //#endregion
3173
3256
  //#region src/components/AccountModal/Contents/SendToken/SendTokenContent.d.ts
3174
3257
  type SendTokenContentProps = {
@@ -3184,7 +3267,7 @@ declare const SendTokenContent: ({
3184
3267
  initialAmount,
3185
3268
  initialToAddressOrDomain,
3186
3269
  onBack: parentOnBack
3187
- }: SendTokenContentProps) => react_jsx_runtime1.JSX.Element;
3270
+ }: SendTokenContentProps) => react_jsx_runtime3.JSX.Element;
3188
3271
  //#endregion
3189
3272
  //#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
3190
3273
  type SendTokenSummaryContentProps = {
@@ -3204,10 +3287,10 @@ declare const SendTokenSummaryContent: ({
3204
3287
  amount,
3205
3288
  selectedToken,
3206
3289
  formattedTotalAmount
3207
- }: SendTokenSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3290
+ }: SendTokenSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3208
3291
  //#endregion
3209
3292
  //#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
3210
- type Props$16 = {
3293
+ type Props$15 = {
3211
3294
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3212
3295
  onSelectToken: (token: TokenWithValue) => void;
3213
3296
  onBack: () => void;
@@ -3220,18 +3303,18 @@ declare const SelectTokenContent: ({
3220
3303
  onSelectToken,
3221
3304
  onBack,
3222
3305
  showAllTokens
3223
- }: Props$16) => react_jsx_runtime1.JSX.Element;
3306
+ }: Props$15) => react_jsx_runtime3.JSX.Element;
3224
3307
  //#endregion
3225
3308
  //#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
3226
- type Props$15 = {
3309
+ type Props$14 = {
3227
3310
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3228
3311
  };
3229
3312
  declare const ReceiveTokenContent: ({
3230
3313
  setCurrentContent
3231
- }: Props$15) => react_jsx_runtime1.JSX.Element;
3314
+ }: Props$14) => react_jsx_runtime3.JSX.Element;
3232
3315
  //#endregion
3233
3316
  //#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
3234
- type Props$14 = {
3317
+ type Props$13 = {
3235
3318
  setCurrentContent: React$1.Dispatch<React$1.SetStateAction<AccountModalContentTypes>>;
3236
3319
  fromTokenAddress?: string;
3237
3320
  toTokenAddress?: string;
@@ -3240,7 +3323,7 @@ declare const SwapTokenContent: ({
3240
3323
  setCurrentContent,
3241
3324
  fromTokenAddress,
3242
3325
  toTokenAddress
3243
- }: Props$14) => react_jsx_runtime1.JSX.Element;
3326
+ }: Props$13) => react_jsx_runtime3.JSX.Element;
3244
3327
  //#endregion
3245
3328
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
3246
3329
  type ChooseNameContentProps = {
@@ -3252,7 +3335,7 @@ declare const ChooseNameContent: ({
3252
3335
  setCurrentContent,
3253
3336
  onBack,
3254
3337
  initialContentSource
3255
- }: ChooseNameContentProps) => react_jsx_runtime1.JSX.Element;
3338
+ }: ChooseNameContentProps) => react_jsx_runtime3.JSX.Element;
3256
3339
  //#endregion
3257
3340
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
3258
3341
  type ChooseNameSearchContentProps = {
@@ -3264,7 +3347,7 @@ declare const ChooseNameSearchContent: ({
3264
3347
  name: initialName,
3265
3348
  setCurrentContent,
3266
3349
  initialContentSource
3267
- }: ChooseNameSearchContentProps) => react_jsx_runtime1.JSX.Element;
3350
+ }: ChooseNameSearchContentProps) => react_jsx_runtime3.JSX.Element;
3268
3351
  //#endregion
3269
3352
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
3270
3353
  type ChooseNameSummaryContentProps = {
@@ -3282,7 +3365,7 @@ declare const ChooseNameSummaryContent: ({
3282
3365
  isOwnDomain,
3283
3366
  isUnsetting,
3284
3367
  initialContentSource
3285
- }: ChooseNameSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3368
+ }: ChooseNameSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3286
3369
  //#endregion
3287
3370
  //#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
3288
3371
  type FAQContentProps = {
@@ -3292,7 +3375,7 @@ type FAQContentProps = {
3292
3375
  declare const FAQContent: ({
3293
3376
  onGoBack,
3294
3377
  showLanguageSelector
3295
- }: FAQContentProps) => react_jsx_runtime1.JSX.Element;
3378
+ }: FAQContentProps) => react_jsx_runtime3.JSX.Element;
3296
3379
  //#endregion
3297
3380
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
3298
3381
  type AccountCustomizationContentProps = {
@@ -3302,7 +3385,7 @@ type AccountCustomizationContentProps = {
3302
3385
  declare const CustomizationContent: ({
3303
3386
  setCurrentContent,
3304
3387
  initialContentSource
3305
- }: AccountCustomizationContentProps) => react_jsx_runtime1.JSX.Element;
3388
+ }: AccountCustomizationContentProps) => react_jsx_runtime3.JSX.Element;
3306
3389
  //#endregion
3307
3390
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
3308
3391
  type CustomizationSummaryContentProps = {
@@ -3321,7 +3404,7 @@ declare const CustomizationSummaryContent: ({
3321
3404
  setCurrentContent,
3322
3405
  changes,
3323
3406
  onDoneRedirectContent
3324
- }: CustomizationSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3407
+ }: CustomizationSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3325
3408
  //#endregion
3326
3409
  //#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
3327
3410
  type ProfileContentProps = {
@@ -3331,7 +3414,7 @@ type ProfileContentProps = {
3331
3414
  declare const ProfileContent: ({
3332
3415
  setCurrentContent,
3333
3416
  onLogoutSuccess
3334
- }: ProfileContentProps) => react_jsx_runtime1.JSX.Element;
3417
+ }: ProfileContentProps) => react_jsx_runtime3.JSX.Element;
3335
3418
  //#endregion
3336
3419
  //#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
3337
3420
  type UpgradeSmartAccountContentProps = {
@@ -3343,7 +3426,7 @@ declare const UpgradeSmartAccountContent: ({
3343
3426
  setCurrentContent,
3344
3427
  handleClose,
3345
3428
  initialContent
3346
- }: UpgradeSmartAccountContentProps) => react_jsx_runtime1.JSX.Element;
3429
+ }: UpgradeSmartAccountContentProps) => react_jsx_runtime3.JSX.Element;
3347
3430
  //#endregion
3348
3431
  //#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
3349
3432
  type AssetsContentProps = {
@@ -3351,7 +3434,7 @@ type AssetsContentProps = {
3351
3434
  };
3352
3435
  declare const AssetsContent: ({
3353
3436
  setCurrentContent
3354
- }: AssetsContentProps) => react_jsx_runtime1.JSX.Element;
3437
+ }: AssetsContentProps) => react_jsx_runtime3.JSX.Element;
3355
3438
  //#endregion
3356
3439
  //#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
3357
3440
  type ManageCustomTokenContentProps = {
@@ -3359,15 +3442,15 @@ type ManageCustomTokenContentProps = {
3359
3442
  };
3360
3443
  declare const ManageCustomTokenContent: ({
3361
3444
  setCurrentContent
3362
- }: ManageCustomTokenContentProps) => react_jsx_runtime1.JSX.Element;
3445
+ }: ManageCustomTokenContentProps) => react_jsx_runtime3.JSX.Element;
3363
3446
  //#endregion
3364
3447
  //#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
3365
- type Props$13 = {
3448
+ type Props$12 = {
3366
3449
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3367
3450
  };
3368
3451
  declare const BridgeContent: ({
3369
3452
  setCurrentContent
3370
- }: Props$13) => react_jsx_runtime1.JSX.Element;
3453
+ }: Props$12) => react_jsx_runtime3.JSX.Element;
3371
3454
  //#endregion
3372
3455
  //#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
3373
3456
  type ChangeCurrencyContentProps = {
@@ -3375,23 +3458,23 @@ type ChangeCurrencyContentProps = {
3375
3458
  };
3376
3459
  declare const ChangeCurrencyContent: ({
3377
3460
  setCurrentContent
3378
- }: ChangeCurrencyContentProps) => react_jsx_runtime1.JSX.Element;
3461
+ }: ChangeCurrencyContentProps) => react_jsx_runtime3.JSX.Element;
3379
3462
  //#endregion
3380
3463
  //#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
3381
- type Props$12 = {
3464
+ type Props$11 = {
3382
3465
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3383
3466
  };
3384
3467
  declare const LanguageSettingsContent: ({
3385
3468
  setCurrentContent
3386
- }: Props$12) => react_jsx_runtime1.JSX.Element;
3469
+ }: Props$11) => react_jsx_runtime3.JSX.Element;
3387
3470
  //#endregion
3388
3471
  //#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
3389
- type Props$11 = {
3472
+ type Props$10 = {
3390
3473
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3391
3474
  };
3392
3475
  declare const GasTokenSettingsContent: ({
3393
3476
  setCurrentContent
3394
- }: Props$11) => react_jsx_runtime1.JSX.Element;
3477
+ }: Props$10) => react_jsx_runtime3.JSX.Element;
3395
3478
  //#endregion
3396
3479
  //#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
3397
3480
  type SettingsContentProps = {
@@ -3401,7 +3484,7 @@ type SettingsContentProps = {
3401
3484
  declare const SettingsContent: ({
3402
3485
  setCurrentContent,
3403
3486
  onLogoutSuccess
3404
- }: SettingsContentProps) => react_jsx_runtime1.JSX.Element;
3487
+ }: SettingsContentProps) => react_jsx_runtime3.JSX.Element;
3405
3488
  //#endregion
3406
3489
  //#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
3407
3490
  type TermsAndPrivacyContentProps = {
@@ -3409,7 +3492,7 @@ type TermsAndPrivacyContentProps = {
3409
3492
  };
3410
3493
  declare const TermsAndPrivacyContent: ({
3411
3494
  onGoBack
3412
- }: TermsAndPrivacyContentProps) => react_jsx_runtime1.JSX.Element;
3495
+ }: TermsAndPrivacyContentProps) => react_jsx_runtime3.JSX.Element;
3413
3496
  //#endregion
3414
3497
  //#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
3415
3498
  type DisconnectConfirmContentProps = {
@@ -3425,7 +3508,7 @@ declare const DisconnectConfirmContent: ({
3425
3508
  onClose,
3426
3509
  showCloseButton,
3427
3510
  text
3428
- }: DisconnectConfirmContentProps) => react_jsx_runtime1.JSX.Element;
3511
+ }: DisconnectConfirmContentProps) => react_jsx_runtime3.JSX.Element;
3429
3512
  //#endregion
3430
3513
  //#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
3431
3514
  type CategoryFilter = string | null;
@@ -3462,7 +3545,7 @@ type FailedOperationContentProps = {
3462
3545
  };
3463
3546
  //#endregion
3464
3547
  //#region src/components/AccountModal/Types/Types.d.ts
3465
- type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'bridge' | 'change-currency' | 'change-language' | 'gas-token-settings' | {
3548
+ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'change-currency' | 'change-language' | 'gas-token-settings' | {
3466
3549
  type: 'swap-token';
3467
3550
  props: {
3468
3551
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3520,7 +3603,7 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' |
3520
3603
  };
3521
3604
  //#endregion
3522
3605
  //#region src/components/AccountModal/AccountModal.d.ts
3523
- type Props$10 = {
3606
+ type Props$9 = {
3524
3607
  isOpen: boolean;
3525
3608
  onClose: () => void;
3526
3609
  initialContent?: AccountModalContentTypes;
@@ -3529,7 +3612,7 @@ declare const AccountModal: ({
3529
3612
  isOpen,
3530
3613
  onClose,
3531
3614
  initialContent
3532
- }: Props$10) => react_jsx_runtime1.JSX.Element;
3615
+ }: Props$9) => react_jsx_runtime3.JSX.Element;
3533
3616
  //#endregion
3534
3617
  //#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
3535
3618
  interface AccountDetailsButtonProps {
@@ -3551,7 +3634,7 @@ declare const AccountDetailsButton: ({
3551
3634
  onClick,
3552
3635
  leftImage,
3553
3636
  isActive
3554
- }: AccountDetailsButtonProps) => react_jsx_runtime1.JSX.Element;
3637
+ }: AccountDetailsButtonProps) => react_jsx_runtime3.JSX.Element;
3555
3638
  //#endregion
3556
3639
  //#region src/components/AccountModal/Components/ActionButton.d.ts
3557
3640
  type ActionButtonProps = {
@@ -3593,10 +3676,10 @@ declare const ActionButton: ({
3593
3676
  extraContent,
3594
3677
  dataTestId,
3595
3678
  variant
3596
- }: ActionButtonProps) => react_jsx_runtime1.JSX.Element;
3679
+ }: ActionButtonProps) => react_jsx_runtime3.JSX.Element;
3597
3680
  //#endregion
3598
3681
  //#region src/components/AccountModal/Components/AccountSelector.d.ts
3599
- type Props$9 = {
3682
+ type Props$8 = {
3600
3683
  wallet: Wallet;
3601
3684
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3602
3685
  size?: string;
@@ -3613,7 +3696,7 @@ declare const AccountSelector: ({
3613
3696
  onClose,
3614
3697
  mt,
3615
3698
  style
3616
- }: Props$9) => react_jsx_runtime1.JSX.Element;
3699
+ }: Props$8) => react_jsx_runtime3.JSX.Element;
3617
3700
  //#endregion
3618
3701
  //#region src/components/AccountModal/Components/BalanceSection.d.ts
3619
3702
  declare const BalanceSection: ({
@@ -3624,17 +3707,17 @@ declare const BalanceSection: ({
3624
3707
  mb?: number;
3625
3708
  mt?: number;
3626
3709
  onAssetsClick?: () => void;
3627
- }) => react_jsx_runtime1.JSX.Element;
3710
+ }) => react_jsx_runtime3.JSX.Element;
3628
3711
  //#endregion
3629
3712
  //#region src/components/AccountModal/Components/QuickActionsSection.d.ts
3630
- type Props$8 = {
3713
+ type Props$7 = {
3631
3714
  mt?: number;
3632
3715
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3633
3716
  };
3634
3717
  declare const QuickActionsSection: ({
3635
3718
  mt,
3636
3719
  setCurrentContent
3637
- }: Props$8) => react_jsx_runtime1.JSX.Element;
3720
+ }: Props$7) => react_jsx_runtime3.JSX.Element;
3638
3721
  //#endregion
3639
3722
  //#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
3640
3723
  type FeatureAnnouncementCardProps = {
@@ -3642,16 +3725,16 @@ type FeatureAnnouncementCardProps = {
3642
3725
  };
3643
3726
  declare const FeatureAnnouncementCard: ({
3644
3727
  setCurrentContent
3645
- }: FeatureAnnouncementCardProps) => react_jsx_runtime1.JSX.Element | null;
3728
+ }: FeatureAnnouncementCardProps) => react_jsx_runtime3.JSX.Element | null;
3646
3729
  //#endregion
3647
3730
  //#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
3648
- declare const ExchangeWarningAlert: () => react_jsx_runtime1.JSX.Element;
3731
+ declare const ExchangeWarningAlert: () => react_jsx_runtime3.JSX.Element;
3649
3732
  //#endregion
3650
3733
  //#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
3651
- declare const DomainRequiredAlert: () => react_jsx_runtime1.JSX.Element;
3734
+ declare const DomainRequiredAlert: () => react_jsx_runtime3.JSX.Element;
3652
3735
  //#endregion
3653
3736
  //#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
3654
- declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime1.JSX.Element;
3737
+ declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime3.JSX.Element;
3655
3738
  //#endregion
3656
3739
  //#region src/components/common/ModalBackButton.d.ts
3657
3740
  type BackButtonProps = {
@@ -3660,10 +3743,10 @@ type BackButtonProps = {
3660
3743
  declare const ModalBackButton: ({
3661
3744
  onClick,
3662
3745
  ...props
3663
- }: BackButtonProps) => react_jsx_runtime1.JSX.Element;
3746
+ }: BackButtonProps) => react_jsx_runtime3.JSX.Element;
3664
3747
  //#endregion
3665
3748
  //#region src/components/common/AddressDisplay.d.ts
3666
- type Props$7 = {
3749
+ type Props$6 = {
3667
3750
  wallet: Wallet;
3668
3751
  label?: string;
3669
3752
  style?: PropsOf<typeof VStack>;
@@ -3674,29 +3757,32 @@ declare const AddressDisplay: ({
3674
3757
  label,
3675
3758
  style,
3676
3759
  showHumanAddress
3677
- }: Props$7) => react_jsx_runtime1.JSX.Element;
3760
+ }: Props$6) => react_jsx_runtime3.JSX.Element;
3678
3761
  //#endregion
3679
3762
  //#region src/components/common/VersionFooter.d.ts
3680
- type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3763
+ type Props$5 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3681
3764
  declare const VersionFooter: ({
3682
3765
  ...props
3683
- }: Props$6) => react_jsx_runtime1.JSX.Element;
3766
+ }: Props$5) => react_jsx_runtime3.JSX.Element;
3684
3767
  //#endregion
3685
3768
  //#region src/components/common/StickyHeaderContainer.d.ts
3686
- type Props$5 = {
3769
+ type Props$4 = {
3687
3770
  children: React.ReactNode;
3688
3771
  };
3772
+ declare const useStickyHeaderContext: () => {
3773
+ hasContentBelow: boolean;
3774
+ };
3689
3775
  declare const StickyHeaderContainer: ({
3690
3776
  children
3691
- }: Props$5) => react_jsx_runtime1.JSX.Element;
3777
+ }: Props$4) => react_jsx_runtime3.JSX.Element;
3692
3778
  //#endregion
3693
3779
  //#region src/components/common/StickyFooterContainer.d.ts
3694
- type Props$4 = {
3780
+ type Props$3 = {
3695
3781
  children: React.ReactNode;
3696
3782
  };
3697
3783
  declare const StickyFooterContainer: ({
3698
3784
  children
3699
- }: Props$4) => react_jsx_runtime1.JSX.Element;
3785
+ }: Props$3) => react_jsx_runtime3.JSX.Element;
3700
3786
  //#endregion
3701
3787
  //#region src/components/common/BaseModal.d.ts
3702
3788
  type BaseModalProps = {
@@ -3714,6 +3800,19 @@ type BaseModalProps = {
3714
3800
  allowExternalFocus?: boolean;
3715
3801
  backdropFilter?: string;
3716
3802
  isCloseable?: boolean;
3803
+ /**
3804
+ * Whether to use bottom sheet on mobile devices.
3805
+ * When false (default), uses regular modal on all screen sizes.
3806
+ * When true, uses bottom sheet on mobile (< 768px) and regular modal on desktop.
3807
+ */
3808
+ useBottomSheetOnMobile?: boolean;
3809
+ /**
3810
+ * Minimum and maximum height for the modal on mobile devices.
3811
+ */
3812
+ mobileMinHeight?: string;
3813
+ mobileMaxHeight?: string;
3814
+ desktopMinHeight?: string;
3815
+ desktopMaxHeight?: string;
3717
3816
  };
3718
3817
  declare const BaseModal: ({
3719
3818
  isOpen,
@@ -3726,8 +3825,13 @@ declare const BaseModal: ({
3726
3825
  blockScrollOnMount,
3727
3826
  allowExternalFocus,
3728
3827
  backdropFilter,
3729
- isCloseable
3730
- }: BaseModalProps) => react_jsx_runtime1.JSX.Element;
3828
+ isCloseable,
3829
+ useBottomSheetOnMobile,
3830
+ mobileMinHeight,
3831
+ mobileMaxHeight,
3832
+ desktopMinHeight,
3833
+ desktopMaxHeight
3834
+ }: BaseModalProps) => react_jsx_runtime3.JSX.Element;
3731
3835
  //#endregion
3732
3836
  //#region src/components/common/AssetButton.d.ts
3733
3837
  type AssetButtonProps = ButtonProps & {
@@ -3746,11 +3850,10 @@ declare const AssetButton: ({
3746
3850
  isDisabled,
3747
3851
  onClick,
3748
3852
  ...buttonProps
3749
- }: AssetButtonProps) => react_jsx_runtime1.JSX.Element;
3853
+ }: AssetButtonProps) => react_jsx_runtime3.JSX.Element;
3750
3854
  //#endregion
3751
3855
  //#region src/components/common/AddressDisplayCard.d.ts
3752
3856
  type AddressDisplayCardProps = {
3753
- label: string;
3754
3857
  address: string;
3755
3858
  domain?: string;
3756
3859
  imageSrc: string;
@@ -3760,7 +3863,6 @@ type AddressDisplayCardProps = {
3760
3863
  tokenAddress?: string;
3761
3864
  };
3762
3865
  declare const AddressDisplayCard: ({
3763
- label,
3764
3866
  address,
3765
3867
  domain,
3766
3868
  imageSrc,
@@ -3768,7 +3870,7 @@ declare const AddressDisplayCard: ({
3768
3870
  hideAddress,
3769
3871
  balance,
3770
3872
  tokenAddress
3771
- }: AddressDisplayCardProps) => react_jsx_runtime1.JSX.Element;
3873
+ }: AddressDisplayCardProps) => react_jsx_runtime3.JSX.Element;
3772
3874
  //#endregion
3773
3875
  //#region src/components/common/ModalFAQButton.d.ts
3774
3876
  type FAQButtonProps = {
@@ -3777,13 +3879,13 @@ type FAQButtonProps = {
3777
3879
  declare const ModalFAQButton: ({
3778
3880
  onClick,
3779
3881
  ...props
3780
- }: FAQButtonProps) => react_jsx_runtime1.JSX.Element;
3882
+ }: FAQButtonProps) => react_jsx_runtime3.JSX.Element;
3781
3883
  //#endregion
3782
3884
  //#region src/components/common/ScrollToTopWrapper.d.ts
3783
3885
  declare const ScrollToTopWrapper: ({
3784
3886
  children,
3785
3887
  ...props
3786
- }: StackProps) => react_jsx_runtime1.JSX.Element;
3888
+ }: StackProps) => react_jsx_runtime3.JSX.Element;
3787
3889
  //#endregion
3788
3890
  //#region src/components/common/AccountAvatar.d.ts
3789
3891
  type AccountAvatarProps = {
@@ -3793,7 +3895,7 @@ type AccountAvatarProps = {
3793
3895
  declare const AccountAvatar: ({
3794
3896
  wallet,
3795
3897
  props
3796
- }: AccountAvatarProps) => react_jsx_runtime1.JSX.Element;
3898
+ }: AccountAvatarProps) => react_jsx_runtime3.JSX.Element;
3797
3899
  //#endregion
3798
3900
  //#region src/components/common/TransactionButtonAndStatus.d.ts
3799
3901
  type TransactionButtonAndStatusProps = {
@@ -3835,7 +3937,7 @@ declare const TransactionButtonAndStatus: ({
3835
3937
  isLoadingGasEstimation,
3836
3938
  showGasEstimationError,
3837
3939
  context
3838
- }: TransactionButtonAndStatusProps) => react_jsx_runtime1.JSX.Element;
3940
+ }: TransactionButtonAndStatusProps) => react_jsx_runtime3.JSX.Element;
3839
3941
  //#endregion
3840
3942
  //#region src/components/common/ModalNotificationButton.d.ts
3841
3943
  type NotificationButtonProps = {
@@ -3846,7 +3948,7 @@ declare const ModalNotificationButton: ({
3846
3948
  onClick,
3847
3949
  hasUnreadNotifications,
3848
3950
  ...props
3849
- }: NotificationButtonProps) => react_jsx_runtime1.JSX.Element;
3951
+ }: NotificationButtonProps) => react_jsx_runtime3.JSX.Element;
3850
3952
  //#endregion
3851
3953
  //#region src/components/common/GasFeeSummary.d.ts
3852
3954
  interface GasFeeSummaryProps {
@@ -3882,39 +3984,7 @@ declare const GasFeeTokenSelector: ({
3882
3984
  availableTokens,
3883
3985
  tokenEstimations,
3884
3986
  walletAddress
3885
- }: GasFeeTokenSelectorProps) => react_jsx_runtime1.JSX.Element;
3886
- //#endregion
3887
- //#region src/components/LoginLoadingModal/LoginLoadingModal.d.ts
3888
- type LoginLoadingModalProps = {
3889
- isOpen: boolean;
3890
- onClose: () => void;
3891
- error?: string;
3892
- title?: string;
3893
- loadingText?: string;
3894
- onTryAgain?: () => void;
3895
- };
3896
- declare const LoginLoadingModal: ({
3897
- isOpen,
3898
- onClose,
3899
- error,
3900
- title,
3901
- loadingText,
3902
- onTryAgain
3903
- }: LoginLoadingModalProps) => react_jsx_runtime1.JSX.Element;
3904
- //#endregion
3905
- //#region src/components/EcosystemModal/EcosystemModal.d.ts
3906
- type Props$3 = {
3907
- isOpen: boolean;
3908
- onClose: () => void;
3909
- appsInfo: PrivyAppInfo[];
3910
- isLoading: boolean;
3911
- };
3912
- declare const EcosystemModal: ({
3913
- isOpen,
3914
- onClose,
3915
- appsInfo,
3916
- isLoading
3917
- }: Props$3) => react_jsx_runtime1.JSX.Element;
3987
+ }: GasFeeTokenSelectorProps) => react_jsx_runtime3.JSX.Element;
3918
3988
  //#endregion
3919
3989
  //#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
3920
3990
  type SuccessfulOperationContentProps = {
@@ -3944,7 +4014,7 @@ declare const UpgradeSmartAccountModal: ({
3944
4014
  isOpen,
3945
4015
  onClose,
3946
4016
  style
3947
- }: Props$2) => react_jsx_runtime1.JSX.Element;
4017
+ }: Props$2) => react_jsx_runtime3.JSX.Element;
3948
4018
  //#endregion
3949
4019
  //#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
3950
4020
  type Props$1 = {
@@ -3959,7 +4029,7 @@ declare const LegalDocumentsModal: ({
3959
4029
  onAgree,
3960
4030
  handleLogout,
3961
4031
  onlyOptionalDocuments
3962
- }: Props$1) => react_jsx_runtime1.JSX.Element;
4032
+ }: Props$1) => react_jsx_runtime3.JSX.Element;
3963
4033
  //#endregion
3964
4034
  //#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
3965
4035
  type Props = {
@@ -3971,16 +4041,18 @@ declare const LegalDocumentItem: ({
3971
4041
  document,
3972
4042
  register,
3973
4043
  isText
3974
- }: Props) => react_jsx_runtime1.JSX.Element;
4044
+ }: Props) => react_jsx_runtime3.JSX.Element;
3975
4045
  //#endregion
3976
4046
  //#region src/providers/ModalProvider.d.ts
3977
4047
  type AccountModalOptions = {
3978
4048
  isolatedView?: boolean;
3979
4049
  };
3980
4050
  type ModalContextType = {
3981
- openConnectModal: () => void;
4051
+ openConnectModal: (initialContent?: ConnectModalContentsTypes) => void;
3982
4052
  closeConnectModal: () => void;
3983
4053
  isConnectModalOpen: boolean;
4054
+ connectModalContent: ConnectModalContentsTypes;
4055
+ setConnectModalContent: React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
3984
4056
  openAccountModal: (content?: AccountModalContentTypes, options?: AccountModalOptions) => void;
3985
4057
  closeAccountModal: () => void;
3986
4058
  isAccountModalOpen: boolean;
@@ -4002,7 +4074,7 @@ declare const ModalProvider: ({
4002
4074
  children
4003
4075
  }: {
4004
4076
  children: ReactNode;
4005
- }) => react_jsx_runtime1.JSX.Element;
4077
+ }) => react_jsx_runtime3.JSX.Element;
4006
4078
  //#endregion
4007
4079
  //#region src/config/index.d.ts
4008
4080
  type AppConfig = {
@@ -4047,5 +4119,5 @@ type AppConfig = {
4047
4119
  };
4048
4120
  declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
4049
4121
  //#endregion
4050
- export { ManageCustomTokenContentProps as $, getErc20BalanceQueryKey as $a, useSendTokenModal as $i, useScrollToTop as $n, AccountMainContent as $o, leftPadWithZeros as $r, GasTokenPreferences as $s, useUpgradeRequired as $t, ModalBackButton as A, useXAppsShares as Aa, useSignTypedData as Ai, useGasTokenSelection as An, getTextRecordsQueryKey as Ao, isInvalid as Ar, usePrivyWalletProvider as As, useTxReceipt as At, AccountModal as B, useRefreshBalances as Ba, ReceiveModalProvider as Bi, useEcosystemShortcuts as Bn, useIsDomainProtected as Bo, XNodeStrengthLevelToName as Br, LegalDocumentSource as Bs, getAllEventLogs as Bt, AddressDisplayCard as C, getIpfsImageQueryKey as Ca, AppHubApp as Ci, getAccountBalance as Cn, getAvatarOfAddressQueryKey as Co, ViewFunctionResult as Cr, LegalDocumentsProvider as Cs, useDAppKitWallet as Ct, StickyHeaderContainer as D, getIpfsMetadataQueryKey as Da, useLoginWithVeChain as Di, useEstimateAllTokens as Dn, buildClauses as Do, isValidUrl as Dr, useVechainKitThemeConfig as Ds, useSetWalletRecovery as Dt, StickyFooterContainer as E, getIpfsMetadata as Ea, useAppHubApps as Ei, UseEstimateAllTokensParams as En, useGetResolverAddress as Eo, executeMultipleClausesCall as Er, VechainKitThemeProvider as Es, usePrivy as Et, QuickActionsSection as F, UseWalletReturnType as Fa, ProfileModalProvider as Fi, getDepositAccount as Fn, DomainsResponse as Fo, isRejectionError as Fr, VeChainKitProvider as Fs, buildERC20Clauses as Ft, SettingsContent as G, useIsPerson as Ga, useFAQModal as Gi, buildBatchAuthorizationTypedData as Gn, useEnsRecordExists as Go, convertUriToUrl as Gr, EstimationResponse as Gs, currentBlockQueryKey as Gt, DisconnectConfirmContent as H, XApp as Ha, AccountCustomizationModalProvider as Hi, LocalStorageKey as Hn, useClaimVetDomain as Ho, buildQueryString as Hr, CostLevel as Hs, getChainId as Ht, BalanceSection as I, useWallet as Ia, useProfileModal as Ii, signVip191Transaction as In, getDomainsOfAddress as Io, TIME as Ir, VechainKitProviderProps as Is, useTransferERC20 as It, LanguageSettingsContent as J, PRICE_FEED_IDS as Ja, ExploreEcosystemModalProvider as Ji, GetEventsKeyParams as Jn, fetchPrivyStatus as Jo, uploadBlobToIPFS as Jr, VthoPerGasAtSpeed as Js, getUpgradeRequiredForAccount as Jt, SettingsContentProps as K, getVot3BalanceQueryKey as Ka, NotificationsModalProvider as Ki, buildSingleAuthorizationTypedData as Kn, getVechainDomainQueryKey as Ko, resolveMediaTypeFromMimeType as Kr, Rate as Ks, useCurrentBlock as Kt, AccountSelector as L, getRoundXAppsQueryKey as La, UpgradeSmartAccountModalProvider as Li, useGenericDelegator as Ln, getDomainsOfAddressQueryKey as Lo, EconomicNodeStrengthLevelToName as Lr, useVeChainKitConfig as Ls, UseSendTransactionReturnValue as Lt, DomainRequiredAlert as M, getXAppMetadata as Ma, useNotificationAlerts as Mi, delegateAuthorized as Mn, getAvatarQueryKey as Mo, normalize as Mr, LegalDocumentOptions as Ms, useBuildTransaction as Mt, ExchangeWarningAlert as N, useXAppMetadata as Na, useNotifications as Ni, estimateAndBuildTxBody as Nn, useGetAvatar as No, removePrefix as Nr, VeChainKitConfig as Ns, buildVETClauses as Nt, VersionFooter as O, useIpfsMetadata as Oa, useLoginWithOAuth as Oi, useGenericDelegatorFeeEstimation as On, useUpdateTextRecord as Oo, addPrefix as Or, PrivyWalletProvider as Os, useThor as Ot, FeatureAnnouncementCard as P, useWalletMetadata as Pa, useAccountModalOptions as Pi, estimateGas as Pn, Domain as Po, validate as Pr, VeChainKitContext as Ps, useTransferVET as Pt, ManageCustomTokenContent as Q, useGetTokenUsdPrice as Qa, SendTokenModalProvider as Qi, useEvents as Qn, useFetchAppInfo as Qo, isValidAddress as Qr, GasTokenInfo as Qs, getUpgradeRequiredQueryKey as Qt, ActionButton as R, useRoundXApps as Ra, useUpgradeSmartAccountModal as Ri, useCrossAppConnectionCache as Rn, useGetDomainsOfAddress as Ro, MinXNodeLevel as Rr, EnrichedLegalDocument as Rs, useSendTransaction as Rt, ModalFAQButton as S, getIpfsImage as Sa, notFoundImage as Si, useAccountImplementationAddress as Sn, useGetAvatarLegacy as So, MultipleClausesCallReturnType as Sr, ConnectModalContentsTypes as Ss, ThorClient$1 as St, BaseModal as T, useIpfsImageList as Ta, getAppHubAppsQueryKey as Ti, useAccountBalance as Tn, getResolverAddressQueryKey as To, executeCallClause as Tr, ColorModeSync as Ts, useMfaEnrollment as Tt, DisconnectConfirmContentProps as U, useMostVotedAppsInRound as Ua, useAccountCustomizationModal as Ui, useLocalStorage as Un, useClaimVeWorldSubdomain as Uo, gmNfts as Ur, DepositAccount as Us, getChainIdQueryKey as Ut, AccountModalContentTypes as V, MostVotedAppsInRoundReturnType as Va, useReceiveModal as Vi, useSyncableLocalStorage as Vn, buildVetDomainClauses as Vo, allNodeStrengthLevelToName as Vr, LegalDocumentType as Vs, getEventLogs as Vt, TermsAndPrivacyContent as W, getIsPersonQueryKey as Wa, FAQModalProvider as Wi, BuildClausesParams as Wn, getEnsRecordExistsQueryKey as Wo, xNodeToGMstartingLevel as Wr, EstimatedGas as Ws, useGetChainId as Wt, ChangeCurrencyContentProps as X, getTokenUsdPrice as Xa, SwapTokenModalProvider as Xi, decodeEventLog$1 as Xn, fetchPrivyAppInfo as Xo, compareAddresses as Xr, formatGasCost as Xs, useUpgradeRequiredForAccount as Xt, ChangeCurrencyContent as Y, SupportedToken as Ya, useExploreEcosystemModal as Yi, UseEventsParams as Yn, useFetchPrivyStatus as Yo, validateIpfsUri as Yr, calculateTotalCost as Ys, getUpgradeRequiredForAccountQueryKey as Yt, BridgeContent as Z, getTokenUsdPriceQueryKey as Za, useSwapTokenModal as Zi, getEventsKey as Zn, getPrivyAppInfoQueryKey as Zo, compareListOfAddresses as Zr, GasTokenEstimate as Zs, getUpgradeRequired as Zt, ModalNotificationButton as _, imageCompressionOptions as _a, TokenBalance as _c, VECHAIN_KIT_STORAGE_KEYS as _i, getCurrentAccountImplementationVersion as _n, WalletTokenBalance as _o, removeLocalStorageItem as _r, VeChainLoginButton as _s, SwapTokenContent as _t, useModal as a, useTransactionToast as aa, CURRENCY as ac, humanDomain as ai, useRefreshFactoryQueries as an, getCustomTokenBalanceQueryKey as ao, useCurrency as ar, SocialIcons as as, ProfileContentProps as at, AccountAvatar as b, IpfsImage as ba, VePassportUserStatus as bc, getENV as bi, getAccountImplementationAddress as bn, getAvatarLegacy as bo, setLocalStorageItem as br, MainContent as bs, SendTokenSummaryContent as bt, LegalDocumentsModal as c, AccountModalProvider as ca, CrossAppConnectionCache as cc, DEFAULT_GAS_TOKEN_PREFERENCES as ci, useIsSmartAccountDeployed as cn, useGetB3trBalance as co, useCallClause as cr, WalletDisplayVariant as cs, AccountCustomizationContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useConnectModal as da, ExecuteBatchWithAuthorizationSignData as dc, PrivyEcosystemApp as di, useHasV1SmartAccount as dn, useCurrentAllocationsRoundId as do, getDocumentTitle as dr, VeChainWithPrivyLoginButton as ds, ChooseNameSummaryContent as dt, ChooseNameModalProvider as ea, GasTokenSelection as ec, regexPattern as ei, SmartAccountReturnType as en, useGetErc20Balance as eo, useIsPWA as er, TransactionToast as es, AssetsContent as et, UpgradeSmartAccountModalStyle as f, useSwapQuotes as fa, ExecuteWithAuthorizationSignData as fc, SUPPORTED_GAS_TOKENS as fi, getAccountVersionQueryKey as fn, useTotalBalance as fo, getLocalStorageItem as fr, DappKitButton as fs, ChooseNameSummaryContentProps as ft, GasFeeSummary as g, compressImages as ga, SmartAccount as gc, VECHAIN_KIT_COOKIES_CONFIG as gi, useGetAccountAddress as gn, useTokenPrices as go, isOnline as gr, EcosystemButton as gs, ChooseNameContentProps as gt, GasFeeTokenSelector as h, UploadedImage as ha, PrivyLoginMethod as hc, TogglePassportCheck as hi, getAccountAddressQueryKey as hn, ExchangeRates as ho, isBrowser as hr, PrivyButton as hs, ChooseNameContent as ht, ModalProvider as i, TransactionToastProvider as ia, TextRecords as ic, humanAddress as ii, useRefreshSmartAccountQueries as in, TokenWithBalance as io, useCurrentLanguage as ir, TransactionModalProps as is, ProfileContent as it, CrossAppConnectionSecurityCard as j, XAppMetadata as ja, useSignMessage as ji, decodeRawTx as jn, useGetTextRecords as jo, isValid as jr, LegalDocument as js, BuildTransactionProps as jt, AddressDisplay as k, getXAppsSharesQueryKey as ka, useLoginWithPasskey as ki, useGenericDelegatorFeeEstimationParams as kn, getTextRecords as ko, compare as kr, PrivyWalletProviderContextType as ks, txReceiptQueryKey as kt, LegalDocumentsModalContentsTypes as l, useAccountModal as la, ENSRecords as lc, DEFAULT_PRIVY_ECOSYSTEM_APPS as li, getHasV1SmartAccount as ln, useCustomTokens as lo, useMultipleClausesCall as lr, ConnectPopover as ls, CustomizationContent as lt, LoginLoadingModal as m, useSingleImageUpload as ma, PrivyAppInfo as mc, TOKEN_LOGO_COMPONENTS as mi, getAccountAddress as mn, useTokensWithValues as mo, hasNavigator as mr, LoginWithGoogleButton as ms, ChooseNameSearchContentProps as mt, getConfig as n, WalletModalProvider as na, TransactionSpeed as nc, formatTokenBalance as ni, getSmartAccountQueryKey as nn, getTokenInfo as no, useFeatureAnnouncement as nr, ShareButtons as ns, UpgradeSmartAccountContent as nt, DAppKitWalletButton as o, TransactionModalProvider as oa, CURRENCY_SYMBOLS as oc, humanNumber as oi, getIsDeployed as on, useGetCustomTokenBalances as oo, getCallClauseQueryKey as or, WalletButton as os, CustomizationSummaryContent as ot, EcosystemModal as p, useSwapTransaction as pa, NFTMediaType as pc, TOKEN_LOGOS as pi, useGetAccountVersion as pn, TokenWithValue as po, getWindowOrigin as pr, PasskeyLoginButton as ps, ChooseNameSearchContent as pt, GasTokenSettingsContent as q, useGetVot3Balance as qa, useNotificationsModal as qi, useBuildClauses as qn, useVechainDomain as qo, toIPFSURL as qr, TransactionCost as qs, useUpgradeSmartAccount as qt, AccountModalOptions as r, useWalletModal as ra, ENS_TEXT_RECORDS as rc, getPicassoImage as ri, useSmartAccount as rn, useGetCustomTokenInfo as ro, useCurrentCurrency as rr, TransactionModal as rs, UpgradeSmartAccountContentProps as rt, LegalDocumentItem as s, useTransactionModal as sa, ConnectionSource as sc, isZero as si, getIsDeployedQueryKey as sn, getB3trBalanceQueryKey as so, getCallClauseQueryKeyWithArgs as sr, WalletButtonProps as ss, CustomizationSummaryContentProps as st, AppConfig as t, useChooseNameModal as ta, GasTokenType as tc, randomTransactionUser as ti, getSmartAccount as tn, getCustomTokenInfoQueryKey as to, useGetNodeUrl as tr, TransactionModalContent as ts, AssetsContentProps as tt, UpgradeSmartAccountModal as u, ConnectModalProvider as ua, EnhancedClause as uc, ENV as ui, getHasV1SmartAccountQueryKey as un, getCurrentAllocationsRoundIdQueryKey as uo, copyToClipboard as ur, LoginWithGithubButton as us, FAQContent as ut, TransactionButtonAndStatus as v, useUploadImages as va, TransactionStatus as vc, VECHAIN_KIT_TERMS_CONFIG as vi, getCurrentAccountImplementationVersionQueryKey as vn, useTokenBalances as vo, safeQuerySelector as vr, EmailLoginButton as vs, ReceiveTokenContent as vt, AssetButton as w, useIpfsImage as wa, fetchAppHubApps as wi, getAccountBalanceQueryKey as wn, useGetAvatarOfAddress as wo, buildCallClauses as wr, useLegalDocuments as ws, useDAppKitWalletModal as wt, ScrollToTopWrapper as x, MAX_IMAGE_SIZE as xa, Wallet as xc, getGenericDelegatorUrl as xi, getAccountImplementationAddressQueryKey as xn, getAvatarLegacyQueryKey as xo, MultipleClausesCallParameters as xr, ConnectModal as xs, SendTokenContent as xt, TransactionButtonAndStatusProps as y, useIpfsMetadatas as ya, TransactionStatusErrorType as yc, VECHAIN_PRIVY_APP_ID as yi, useCurrentAccountImplementationVersion as yn, useUnsetDomain as yo, safeWindowOpen as yr, ConnectionButton as ys, SelectTokenContent as yt, AccountDetailsButton as z, useRefreshMetadata as za, useLoginModalContent as zi, EcosystemShortcut as zn, getIsDomainProtectedQueryKey as zo, NodeStrengthLevelToImage as zr, LegalDocumentAgreement as zs, GetEventsProps as zt };
4051
- //# sourceMappingURL=index-BAtr2iQI.d.cts.map
4122
+ export { AssetsContent as $, useGetErc20Balance as $a, ChooseNameModalProvider as $i, useIsPWA as $n, TransactionToast as $o, regexPattern as $r, GasTokenEstimate as $s, SmartAccountReturnType as $t, CrossAppConnectionSecurityCard as A, XAppMetadata as Aa, useSignMessage as Ai, decodeRawTx as An, useGetTextRecords as Ao, isValid as Ar, PrivyWalletProvider as As, BuildTransactionProps as At, AccountModalContentTypes as B, MostVotedAppsInRoundReturnType as Ba, useReceiveModal as Bi, useSyncableLocalStorage as Bn, buildVetDomainClauses as Bo, allNodeStrengthLevelToName as Br, EnrichedLegalDocument as Bs, getEventLogs as Bt, BaseModal as C, useIpfsImage as Ca, Wallet as Cc, fetchAppHubApps as Ci, getAccountBalanceQueryKey as Cn, useGetAvatarOfAddress as Co, buildCallClauses as Cr, ConnectModal as Cs, useDAppKitWalletModal as Ct, VersionFooter as D, useIpfsMetadata as Da, useLoginWithOAuth$1 as Di, useGenericDelegatorFeeEstimation as Dn, useUpdateTextRecord as Do, addPrefix as Dr, ColorModeSync as Ds, useThor$1 as Dt, useStickyHeaderContext as E, getIpfsMetadataQueryKey as Ea, useLoginWithVeChain as Ei, useEstimateAllTokens as En, buildClauses as Eo, isValidUrl as Er, useLegalDocuments as Es, useSetWalletRecovery as Et, BalanceSection as F, useWallet$1 as Fa, useProfileModal as Fi, signVip191Transaction as Fn, getDomainsOfAddress as Fo, TIME as Fr, VeChainKitConfig as Fs, useTransferERC20 as Ft, SettingsContentProps as G, getVot3BalanceQueryKey as Ga, NotificationsModalProvider as Gi, buildSingleAuthorizationTypedData as Gn, getVechainDomainQueryKey as Go, resolveMediaTypeFromMimeType as Gr, DepositAccount as Gs, useCurrentBlock as Gt, DisconnectConfirmContentProps as H, useMostVotedAppsInRound as Ha, useAccountCustomizationModal as Hi, useLocalStorage as Hn, useClaimVeWorldSubdomain as Ho, gmNfts as Hr, LegalDocumentSource as Hs, getChainIdQueryKey as Ht, AccountSelector as I, getRoundXAppsQueryKey as Ia, UpgradeSmartAccountModalProvider as Ii, useGenericDelegator as In, getDomainsOfAddressQueryKey as Io, EconomicNodeStrengthLevelToName as Ir, VeChainKitContext as Is, UseSendTransactionReturnValue as It, ChangeCurrencyContent as J, SupportedToken as Ja, useExploreEcosystemModal as Ji, UseEventsParams as Jn, useFetchPrivyStatus as Jo, validateIpfsUri as Jr, Rate as Js, getUpgradeRequiredForAccountQueryKey as Jt, GasTokenSettingsContent as K, useGetVot3Balance as Ka, useNotificationsModal as Ki, useBuildClauses as Kn, useVechainDomain as Ko, toIPFSURL as Kr, EstimatedGas as Ks, useUpgradeSmartAccount as Kt, ActionButton as L, useRoundXApps as La, useUpgradeSmartAccountModal as Li, useCrossAppConnectionCache as Ln, useGetDomainsOfAddress as Lo, MinXNodeLevel as Lr, VeChainKitProvider as Ls, useSendTransaction as Lt, ExchangeWarningAlert as M, useXAppMetadata as Ma, useNotifications as Mi, estimateAndBuildTxBody as Mn, useGetAvatar as Mo, removePrefix as Mr, usePrivyWalletProvider as Ms, buildVETClauses as Mt, FeatureAnnouncementCard as N, useWalletMetadata as Na, useAccountModalOptions as Ni, estimateGas as Nn, Domain as No, validate as Nr, LegalDocument as Ns, useTransferVET as Nt, AddressDisplay as O, getXAppsSharesQueryKey as Oa, useLoginWithPasskey$1 as Oi, useGenericDelegatorFeeEstimationParams as On, getTextRecords as Oo, compare as Or, VechainKitThemeProvider as Os, txReceiptQueryKey as Ot, QuickActionsSection as P, UseWalletReturnType as Pa, ProfileModalProvider as Pi, getDepositAccount as Pn, DomainsResponse as Po, isRejectionError as Pr, LegalDocumentOptions as Ps, buildERC20Clauses as Pt, ManageCustomTokenContentProps as Q, getErc20BalanceQueryKey as Qa, useSendTokenModal as Qi, useScrollToTop as Qn, AccountMainContent as Qo, leftPadWithZeros as Qr, formatGasCost as Qs, useUpgradeRequired as Qt, AccountDetailsButton as R, useRefreshMetadata as Ra, useLoginModalContent as Ri, EcosystemShortcut as Rn, getIsDomainProtectedQueryKey as Ro, NodeStrengthLevelToImage as Rr, VechainKitProviderProps as Rs, GetEventsProps as Rt, AssetButton as S, getIpfsImageQueryKey as Sa, VePassportUserStatus as Sc, AppHubApp as Si, getAccountBalance as Sn, getAvatarOfAddressQueryKey as So, ViewFunctionResult as Sr, MainContent as Ss, useDAppKitWallet as St, StickyHeaderContainer as T, getIpfsMetadata as Ta, useAppHubApps as Ti, UseEstimateAllTokensParams as Tn, useGetResolverAddress as To, executeMultipleClausesCall as Tr, LegalDocumentsProvider as Ts, usePrivy$1 as Tt, TermsAndPrivacyContent as U, getIsPersonQueryKey as Ua, FAQModalProvider as Ui, BuildClausesParams as Un, getEnsRecordExistsQueryKey as Uo, xNodeToGMstartingLevel as Ur, LegalDocumentType as Us, useGetChainId as Ut, DisconnectConfirmContent as V, XApp as Va, AccountCustomizationModalProvider as Vi, LocalStorageKey as Vn, useClaimVetDomain as Vo, buildQueryString as Vr, LegalDocumentAgreement as Vs, getChainId as Vt, SettingsContent as W, useIsPerson as Wa, useFAQModal as Wi, buildBatchAuthorizationTypedData as Wn, useEnsRecordExists as Wo, convertUriToUrl as Wr, CostLevel as Ws, currentBlockQueryKey as Wt, BridgeContent as X, getTokenUsdPriceQueryKey as Xa, useSwapTokenModal as Xi, getEventsKey as Xn, getPrivyAppInfoQueryKey as Xo, compareListOfAddresses as Xr, VthoPerGasAtSpeed as Xs, getUpgradeRequired as Xt, ChangeCurrencyContentProps as Y, getTokenUsdPrice as Ya, SwapTokenModalProvider as Yi, decodeEventLog$1 as Yn, fetchPrivyAppInfo as Yo, compareAddresses as Yr, TransactionCost as Ys, useUpgradeRequiredForAccount as Yt, ManageCustomTokenContent as Z, useGetTokenUsdPrice as Za, SendTokenModalProvider as Zi, useEvents as Zn, useFetchAppInfo as Zo, isValidAddress as Zr, calculateTotalCost as Zs, getUpgradeRequiredQueryKey as Zt, TransactionButtonAndStatusProps as _, useUploadImages as _a, PrivyLoginMethod as _c, VECHAIN_KIT_TERMS_CONFIG as _i, getCurrentAccountImplementationVersionQueryKey as _n, useTokenBalances as _o, safeQuerySelector as _r, EmailLoginButton as _s, ReceiveTokenContent as _t, useModal as a, TransactionModalProvider as aa, ENS_TEXT_RECORDS as ac, humanNumber as ai, getIsDeployed as an, useGetCustomTokenBalances as ao, getCallClauseQueryKey as ar, WalletButton as as, CustomizationSummaryContent as at, ModalFAQButton as b, MAX_IMAGE_SIZE as ba, TransactionStatus as bc, getGenericDelegatorUrl as bi, getAccountImplementationAddressQueryKey as bn, getAvatarLegacyQueryKey as bo, MultipleClausesCallParameters as br, ErrorContent as bs, SendTokenContent as bt, LegalDocumentsModal as c, useAccountModal as ca, CURRENCY_SYMBOLS as cc, DEFAULT_PRIVY_ECOSYSTEM_APPS as ci, getHasV1SmartAccount as cn, useCustomTokens as co, useMultipleClausesCall as cr, ConnectPopover as cs, CustomizationContent as ct, UpgradeSmartAccountModalContentsTypes as d, useSwapQuotes as da, ENSRecords as dc, SUPPORTED_GAS_TOKENS as di, getAccountVersionQueryKey as dn, useTotalBalance as do, getLocalStorageItem as dr, DappKitButton as ds, ChooseNameSummaryContentProps as dt, useChooseNameModal as ea, GasTokenInfo as ec, randomTransactionUser as ei, getSmartAccount as en, getCustomTokenInfoQueryKey as eo, useGetNodeUrl as er, TransactionModalContent as es, AssetsContentProps as et, UpgradeSmartAccountModalStyle as f, useSwapTransaction as fa, EnhancedClause as fc, TOKEN_LOGOS as fi, useGetAccountVersion as fn, TokenWithValue as fo, getWindowOrigin as fr, PasskeyLoginButton as fs, ChooseNameSearchContent as ft, TransactionButtonAndStatus as g, imageCompressionOptions as ga, PrivyAppInfo as gc, VECHAIN_KIT_STORAGE_KEYS as gi, getCurrentAccountImplementationVersion as gn, WalletTokenBalance as go, removeLocalStorageItem as gr, VeChainLoginButton as gs, SwapTokenContent as gt, ModalNotificationButton as h, compressImages as ha, NFTMediaType as hc, VECHAIN_KIT_COOKIES_CONFIG as hi, useGetAccountAddress as hn, useTokenPrices as ho, isOnline as hr, EcosystemButton as hs, ChooseNameContentProps as ht, ModalProvider as i, useTransactionToast as ia, TransactionSpeed as ic, humanDomain as ii, useRefreshFactoryQueries as in, getCustomTokenBalanceQueryKey as io, useCurrency as ir, SocialIcons as is, ProfileContentProps as it, DomainRequiredAlert as j, getXAppMetadata as ja, useNotificationAlerts as ji, delegateAuthorized as jn, getAvatarQueryKey as jo, normalize as jr, PrivyWalletProviderContextType as js, useBuildTransaction as jt, ModalBackButton as k, useXAppsShares as ka, useSignTypedData as ki, useGasTokenSelection as kn, getTextRecordsQueryKey as ko, isInvalid as kr, useVechainKitThemeConfig as ks, useTxReceipt as kt, LegalDocumentsModalContentsTypes as l, ConnectModalProvider as la, ConnectionSource as lc, ENV as li, getHasV1SmartAccountQueryKey as ln, getCurrentAllocationsRoundIdQueryKey as lo, copyToClipboard as lr, LoginWithGithubButton as ls, FAQContent as lt, GasFeeSummary as m, UploadedImage as ma, ExecuteWithAuthorizationSignData as mc, TogglePassportCheck as mi, getAccountAddressQueryKey as mn, ExchangeRates as mo, isBrowser as mr, PrivyButton as ms, ChooseNameContent as mt, getConfig as n, useWalletModal as na, GasTokenSelection as nc, getPicassoImage as ni, useSmartAccount as nn, useGetCustomTokenInfo as no, useCurrentCurrency as nr, TransactionModal as ns, UpgradeSmartAccountContentProps as nt, DAppKitWalletButton as o, useTransactionModal as oa, TextRecords as oc, isZero as oi, getIsDeployedQueryKey as on, getB3trBalanceQueryKey as oo, getCallClauseQueryKeyWithArgs as or, WalletButtonProps as os, CustomizationSummaryContentProps as ot, GasFeeTokenSelector as p, useSingleImageUpload as pa, ExecuteBatchWithAuthorizationSignData as pc, TOKEN_LOGO_COMPONENTS as pi, getAccountAddress as pn, useTokensWithValues as po, hasNavigator as pr, LoginWithGoogleButton as ps, ChooseNameSearchContentProps as pt, LanguageSettingsContent as q, PRICE_FEED_IDS as qa, ExploreEcosystemModalProvider as qi, GetEventsKeyParams as qn, fetchPrivyStatus as qo, uploadBlobToIPFS as qr, EstimationResponse as qs, getUpgradeRequiredForAccount as qt, AccountModalOptions as r, TransactionToastProvider as ra, GasTokenType as rc, humanAddress as ri, useRefreshSmartAccountQueries as rn, TokenWithBalance as ro, useCurrentLanguage as rr, TransactionModalProps as rs, ProfileContent as rt, LegalDocumentItem as s, AccountModalProvider as sa, CURRENCY as sc, DEFAULT_GAS_TOKEN_PREFERENCES as si, useIsSmartAccountDeployed as sn, useGetB3trBalance as so, useCallClause as sr, WalletDisplayVariant as ss, AccountCustomizationContentProps as st, AppConfig as t, WalletModalProvider as ta, GasTokenPreferences as tc, formatTokenBalance as ti, getSmartAccountQueryKey as tn, getTokenInfo$1 as to, useFeatureAnnouncement as tr, ShareButtons as ts, UpgradeSmartAccountContent as tt, UpgradeSmartAccountModal as u, useConnectModal as ua, CrossAppConnectionCache as uc, PrivyEcosystemApp as ui, useHasV1SmartAccount as un, useCurrentAllocationsRoundId as uo, getDocumentTitle as ur, VeChainWithPrivyLoginButton as us, ChooseNameSummaryContent as ut, AccountAvatar as v, useIpfsMetadatas as va, SmartAccount as vc, VECHAIN_PRIVY_APP_ID as vi, useCurrentAccountImplementationVersion as vn, useUnsetDomain as vo, safeWindowOpen as vr, ConnectionButton as vs, SelectTokenContent as vt, StickyFooterContainer as w, useIpfsImageList as wa, getAppHubAppsQueryKey as wi, useAccountBalance as wn, getResolverAddressQueryKey as wo, executeCallClause as wr, ConnectModalContentsTypes as ws, useMfaEnrollment as wt, AddressDisplayCard as x, getIpfsImage as xa, TransactionStatusErrorType as xc, notFoundImage as xi, useAccountImplementationAddress as xn, useGetAvatarLegacy as xo, MultipleClausesCallReturnType as xr, LoadingContent as xs, ThorClient$1 as xt, ScrollToTopWrapper as y, IpfsImage as ya, TokenBalance as yc, getENV as yi, getAccountImplementationAddress as yn, getAvatarLegacy as yo, setLocalStorageItem as yr, EcosystemContent as ys, SendTokenSummaryContent as yt, AccountModal as z, useRefreshBalances as za, ReceiveModalProvider as zi, useEcosystemShortcuts as zn, useIsDomainProtected as zo, XNodeStrengthLevelToName as zr, useVeChainKitConfig as zs, getAllEventLogs as zt };
4123
+ //# sourceMappingURL=index-BlCAiOq5.d.mts.map