@vechain/vechain-kit 2.0.3 → 2.1.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_runtime3 from "react/jsx-runtime";
5
- import { Account } from "viem/accounts";
4
+ import * as react_jsx_runtime1 from "react/jsx-runtime";
5
+ import * as _vechain_sdk_network2 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";
6
8
  import * as _vechain_sdk_core0 from "@vechain/sdk-core";
7
9
  import { Address, Certificate, CertificateData, Clause, Transaction, TransactionClause } from "@vechain/sdk-core";
8
- import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy as usePrivy$1, useSetWalletRecovery } from "@privy-io/react-auth";
9
- import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor as useThor$1, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
10
- import * as _tanstack_react_query8 from "@tanstack/react-query";
11
- import { UseQueryOptions } from "@tanstack/react-query";
12
- import { CustomTokenInfo } from "@vechain/contract-getters";
13
- import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
14
- import { z } from "zod";
15
- import { Options } from "browser-image-compression";
16
- import * as _vechain_sdk_network0 from "@vechain/sdk-network";
17
- import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
18
- import { UseFormRegister } from "react-hook-form";
19
10
  import { LogLevel, WalletSource } from "@vechain/dapp-kit";
11
+ import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
20
12
  import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
21
13
  import { IconType } from "react-icons";
14
+ import * as _tanstack_react_query46 from "@tanstack/react-query";
15
+ import { UseQueryOptions } from "@tanstack/react-query";
16
+ import { z } from "zod";
17
+ import { CustomTokenInfo } from "@vechain/contract-getters";
18
+ import { Options } from "browser-image-compression";
19
+ import { Account } from "viem/accounts";
22
20
  import * as abitype0 from "abitype";
23
21
  import { AbiParametersToPrimitiveTypes, ExtractAbiFunction, ExtractAbiFunctionNames } from "abitype";
22
+ import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
23
+ import { UseFormRegister } from "react-hook-form";
24
24
 
25
25
  //#region src/config/network.d.ts
26
26
  /**
@@ -506,7 +506,7 @@ type VechainKitProviderProps = {
506
506
  minAmountInEther: number;
507
507
  };
508
508
  };
509
- dappKit: {
509
+ dappKit?: {
510
510
  allowedWallets?: WalletSource[];
511
511
  walletConnectOptions?: WalletConnectOptions;
512
512
  usePersistence?: boolean;
@@ -528,8 +528,8 @@ type VechainKitProviderProps = {
528
528
  darkMode?: boolean;
529
529
  i18n?: I18n;
530
530
  language?: string;
531
- network: {
532
- type: NETWORK_TYPE;
531
+ network?: {
532
+ type?: string;
533
533
  nodeUrl?: string;
534
534
  requireCertificate?: boolean;
535
535
  connectionCertificate?: {
@@ -541,7 +541,12 @@ type VechainKitProviderProps = {
541
541
  legalDocuments?: LegalDocumentOptions;
542
542
  defaultCurrency?: CURRENCY;
543
543
  theme?: VechainKitThemeConfig;
544
+ onLanguageChange?: (language: string) => void;
545
+ onCurrencyChange?: (currency: CURRENCY) => void;
544
546
  };
547
+ /**
548
+ * Configuration object returned by useVeChainKitConfig hook
549
+ */
545
550
  type VeChainKitConfig = {
546
551
  privy?: VechainKitProviderProps['privy'];
547
552
  privyEcosystemAppIDS: string[];
@@ -551,25 +556,51 @@ type VeChainKitConfig = {
551
556
  loginMethods?: VechainKitProviderProps['loginMethods'];
552
557
  darkMode: boolean;
553
558
  i18n?: VechainKitProviderProps['i18n'];
554
- language?: VechainKitProviderProps['language'];
555
- network: VechainKitProviderProps['network'];
559
+ network: {
560
+ type: NETWORK_TYPE;
561
+ nodeUrl: string;
562
+ requireCertificate?: boolean;
563
+ connectionCertificate?: {
564
+ message?: Certificate;
565
+ options?: CertificateData;
566
+ };
567
+ };
568
+ /** Current runtime language value. Reflects the active language in VeChainKit. */
569
+ currentLanguage: string;
556
570
  allowCustomTokens?: boolean;
557
571
  legalDocuments?: VechainKitProviderProps['legalDocuments'];
558
- defaultCurrency?: VechainKitProviderProps['defaultCurrency'];
572
+ /** Current runtime currency value. Reflects the active currency in VeChainKit. */
573
+ currentCurrency: CURRENCY;
559
574
  theme?: VechainKitThemeConfig;
575
+ /** Function to change the language from the host app. Changes will sync to VeChainKit. */
576
+ setLanguage: (language: string) => void;
577
+ /** Function to change the currency from the host app. Changes will sync to VeChainKit. */
578
+ setCurrency: (currency: CURRENCY) => void;
560
579
  };
561
580
  /**
562
581
  * Context to store the Privy and DAppKit configs so that they can be used by the hooks/components
563
582
  */
564
583
  declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
565
584
  /**
566
- * Hook to get the Privy and DAppKit configs
585
+ * Hook to get the VeChainKit configuration
586
+ *
587
+ * @returns VeChainKitConfig object containing:
588
+ * - `currentLanguage`: Current runtime language value
589
+ * - `currentCurrency`: Current runtime currency value
590
+ * - `setLanguage`: Function to change language from host app
591
+ * - `setCurrency`: Function to change currency from host app
592
+ * - Other configuration values (network, darkMode, etc.)
593
+ *
594
+ * @example
595
+ * ```tsx
596
+ * const config = useVeChainKitConfig();
597
+ * console.log(config.currentLanguage); // 'fr' (current value)
598
+ * console.log(config.currentCurrency); // 'eur' (current value)
599
+ * config.setLanguage('de'); // Change language
600
+ * ```
567
601
  */
568
602
  declare const useVeChainKitConfig: () => VeChainKitConfig;
569
- /**
570
- * Provider to wrap the application with Privy and DAppKit
571
- */
572
- declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime3.JSX.Element;
603
+ declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime1.JSX.Element;
573
604
  //#endregion
574
605
  //#region src/providers/PrivyWalletProvider.d.ts
575
606
  interface PrivyWalletProviderContextType {
@@ -611,7 +642,7 @@ declare const PrivyWalletProvider: ({
611
642
  delegatorUrl?: string;
612
643
  delegateAllTransactions: boolean;
613
644
  genericDelegator?: boolean;
614
- }) => react_jsx_runtime3.JSX.Element;
645
+ }) => react_jsx_runtime1.JSX.Element;
615
646
  declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
616
647
  //#endregion
617
648
  //#region src/providers/VechainKitThemeProvider.d.ts
@@ -628,12 +659,12 @@ declare const ColorModeSync: ({
628
659
  darkMode
629
660
  }: {
630
661
  darkMode: boolean;
631
- }) => react_jsx_runtime3.JSX.Element;
662
+ }) => react_jsx_runtime1.JSX.Element;
632
663
  declare const VechainKitThemeProvider: ({
633
664
  children,
634
665
  darkMode,
635
666
  theme: customTheme
636
- }: Props$36) => react_jsx_runtime3.JSX.Element;
667
+ }: Props$36) => react_jsx_runtime1.JSX.Element;
637
668
  //#endregion
638
669
  //#region src/providers/LegalDocumentsProvider.d.ts
639
670
  type Props$35 = {
@@ -649,7 +680,7 @@ type LegalDocumentsContextType = {
649
680
  declare const useLegalDocuments: () => LegalDocumentsContextType;
650
681
  declare const LegalDocumentsProvider: ({
651
682
  children
652
- }: Props$35) => react_jsx_runtime3.JSX.Element;
683
+ }: Props$35) => react_jsx_runtime1.JSX.Element;
653
684
  //#endregion
654
685
  //#region src/components/ConnectModal/ConnectModal.d.ts
655
686
  type Props$34 = {
@@ -660,7 +691,7 @@ type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
660
691
  declare const ConnectModal: ({
661
692
  isOpen,
662
693
  onClose
663
- }: Props$34) => react_jsx_runtime3.JSX.Element;
694
+ }: Props$34) => react_jsx_runtime1.JSX.Element;
664
695
  //#endregion
665
696
  //#region src/components/ConnectModal/Contents/MainContent.d.ts
666
697
  type Props$33 = {
@@ -670,7 +701,7 @@ type Props$33 = {
670
701
  declare const MainContent: ({
671
702
  setCurrentContent,
672
703
  onClose
673
- }: Props$33) => react_jsx_runtime3.JSX.Element;
704
+ }: Props$33) => react_jsx_runtime1.JSX.Element;
674
705
  //#endregion
675
706
  //#region src/components/ConnectModal/Components/ConnectionButton.d.ts
676
707
  interface ConnectionButtonProps {
@@ -693,10 +724,10 @@ declare const ConnectionButton: ({
693
724
  style,
694
725
  variant,
695
726
  iconWidth
696
- }: ConnectionButtonProps) => react_jsx_runtime3.JSX.Element | null;
727
+ }: ConnectionButtonProps) => react_jsx_runtime1.JSX.Element | null;
697
728
  //#endregion
698
729
  //#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
699
- declare const EmailLoginButton: () => react_jsx_runtime3.JSX.Element;
730
+ declare const EmailLoginButton: () => react_jsx_runtime1.JSX.Element;
700
731
  //#endregion
701
732
  //#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
702
733
  type Props$32 = {
@@ -706,7 +737,7 @@ type Props$32 = {
706
737
  declare const VeChainLoginButton: ({
707
738
  isDark,
708
739
  gridColumn
709
- }: Props$32) => react_jsx_runtime3.JSX.Element;
740
+ }: Props$32) => react_jsx_runtime1.JSX.Element;
710
741
  //#endregion
711
742
  //#region src/components/ConnectModal/Components/EcosystemButton.d.ts
712
743
  type Props$31 = {
@@ -718,7 +749,7 @@ type Props$31 = {
718
749
  declare const EcosystemButton: ({
719
750
  appsInfo,
720
751
  isLoading
721
- }: Props$31) => react_jsx_runtime3.JSX.Element;
752
+ }: Props$31) => react_jsx_runtime1.JSX.Element;
722
753
  //#endregion
723
754
  //#region src/components/ConnectModal/Components/PrivyButton.d.ts
724
755
  type Props$30 = {
@@ -730,7 +761,7 @@ declare const PrivyButton: ({
730
761
  isDark,
731
762
  onViewMoreLogin,
732
763
  gridColumn
733
- }: Props$30) => react_jsx_runtime3.JSX.Element;
764
+ }: Props$30) => react_jsx_runtime1.JSX.Element;
734
765
  //#endregion
735
766
  //#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
736
767
  type Props$29 = {
@@ -740,7 +771,7 @@ type Props$29 = {
740
771
  declare const LoginWithGoogleButton: ({
741
772
  isDark,
742
773
  gridColumn
743
- }: Props$29) => react_jsx_runtime3.JSX.Element;
774
+ }: Props$29) => react_jsx_runtime1.JSX.Element;
744
775
  //#endregion
745
776
  //#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
746
777
  type Props$28 = {
@@ -750,7 +781,7 @@ type Props$28 = {
750
781
  declare const PasskeyLoginButton: ({
751
782
  isDark,
752
783
  gridColumn
753
- }: Props$28) => react_jsx_runtime3.JSX.Element;
784
+ }: Props$28) => react_jsx_runtime1.JSX.Element;
754
785
  //#endregion
755
786
  //#region src/components/ConnectModal/Components/DappKitButton.d.ts
756
787
  type Props$27 = {
@@ -760,7 +791,7 @@ type Props$27 = {
760
791
  declare const DappKitButton: ({
761
792
  isDark,
762
793
  gridColumn
763
- }: Props$27) => react_jsx_runtime3.JSX.Element;
794
+ }: Props$27) => react_jsx_runtime1.JSX.Element;
764
795
  //#endregion
765
796
  //#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
766
797
  type Props$26 = {
@@ -770,7 +801,7 @@ type Props$26 = {
770
801
  declare const VeChainWithPrivyLoginButton: ({
771
802
  isDark,
772
803
  gridColumn
773
- }: Props$26) => react_jsx_runtime3.JSX.Element;
804
+ }: Props$26) => react_jsx_runtime1.JSX.Element;
774
805
  //#endregion
775
806
  //#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
776
807
  type Props$25 = {
@@ -780,7 +811,7 @@ type Props$25 = {
780
811
  declare const LoginWithGithubButton: ({
781
812
  isDark,
782
813
  gridColumn
783
- }: Props$25) => react_jsx_runtime3.JSX.Element;
814
+ }: Props$25) => react_jsx_runtime1.JSX.Element;
784
815
  //#endregion
785
816
  //#region src/components/ConnectModal/ConnectPopover.d.ts
786
817
  type ConnectPopoverProps = {
@@ -790,7 +821,7 @@ type ConnectPopoverProps = {
790
821
  declare const ConnectPopover: ({
791
822
  isLoading,
792
823
  buttonStyle
793
- }: ConnectPopoverProps) => react_jsx_runtime3.JSX.Element;
824
+ }: ConnectPopoverProps) => react_jsx_runtime1.JSX.Element;
794
825
  //#endregion
795
826
  //#region src/components/WalletButton/types.d.ts
796
827
  type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
@@ -807,10 +838,10 @@ declare const WalletButton: ({
807
838
  desktopVariant,
808
839
  buttonStyle,
809
840
  connectionVariant
810
- }: WalletButtonProps) => react_jsx_runtime3.JSX.Element;
841
+ }: WalletButtonProps) => react_jsx_runtime1.JSX.Element;
811
842
  //#endregion
812
843
  //#region src/components/WalletButton/SocialIcons.d.ts
813
- declare const SocialIcons: () => react_jsx_runtime3.JSX.Element;
844
+ declare const SocialIcons: () => react_jsx_runtime1.JSX.Element;
814
845
  //#endregion
815
846
  //#region src/components/TransactionModal/TransactionModal.d.ts
816
847
  type TransactionModalProps = {
@@ -840,7 +871,7 @@ declare const TransactionModal: ({
840
871
  txReceipt,
841
872
  txError,
842
873
  onTryAgain
843
- }: TransactionModalProps) => react_jsx_runtime3.JSX.Element;
874
+ }: TransactionModalProps) => react_jsx_runtime1.JSX.Element;
844
875
  //#endregion
845
876
  //#region src/components/TransactionModal/Components/ShareButtons.d.ts
846
877
  type Props$24 = {
@@ -850,7 +881,7 @@ type Props$24 = {
850
881
  };
851
882
  declare const ShareButtons: ({
852
883
  descriptionEncoded
853
- }: Props$24) => react_jsx_runtime3.JSX.Element;
884
+ }: Props$24) => react_jsx_runtime1.JSX.Element;
854
885
  //#endregion
855
886
  //#region src/components/TransactionModal/TransactionModalContent.d.ts
856
887
  declare const TransactionModalContent: ({
@@ -860,7 +891,7 @@ declare const TransactionModalContent: ({
860
891
  txReceipt,
861
892
  txError,
862
893
  onClose
863
- }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime3.JSX.Element;
894
+ }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime1.JSX.Element;
864
895
  //#endregion
865
896
  //#region src/components/TransactionToast/TransactionToast.d.ts
866
897
  type TransactionToastProps = {
@@ -880,7 +911,7 @@ declare const TransactionToast: ({
880
911
  txError,
881
912
  onTryAgain,
882
913
  description
883
- }: TransactionToastProps) => react_jsx_runtime3.JSX.Element | null;
914
+ }: TransactionToastProps) => react_jsx_runtime1.JSX.Element | null;
884
915
  //#endregion
885
916
  //#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
886
917
  type Props$23 = {
@@ -892,7 +923,7 @@ declare const AccountMainContent: ({
892
923
  setCurrentContent,
893
924
  wallet,
894
925
  onClose
895
- }: Props$23) => react_jsx_runtime3.JSX.Element;
926
+ }: Props$23) => react_jsx_runtime1.JSX.Element;
896
927
  //#endregion
897
928
  //#region src/components/AccountModal/Contents/Account/AccessAndSecurityContent.d.ts
898
929
  type Props$22 = {
@@ -900,7 +931,7 @@ type Props$22 = {
900
931
  };
901
932
  declare const AccessAndSecurityContent: ({
902
933
  setCurrentContent
903
- }: Props$22) => react_jsx_runtime3.JSX.Element;
934
+ }: Props$22) => react_jsx_runtime1.JSX.Element;
904
935
  //#endregion
905
936
  //#region src/components/AccountModal/Contents/Account/SettingsContent.d.ts
906
937
  type SettingsContentProps = {
@@ -910,7 +941,7 @@ type SettingsContentProps = {
910
941
  declare const SettingsContent: ({
911
942
  setCurrentContent,
912
943
  onLogoutSuccess
913
- }: SettingsContentProps) => react_jsx_runtime3.JSX.Element;
944
+ }: SettingsContentProps) => react_jsx_runtime1.JSX.Element;
914
945
  //#endregion
915
946
  //#region src/components/AccountModal/Contents/Account/EmbeddedWalletContent.d.ts
916
947
  type Props$21 = {
@@ -918,7 +949,7 @@ type Props$21 = {
918
949
  };
919
950
  declare const EmbeddedWalletContent: ({
920
951
  setCurrentContent
921
- }: Props$21) => react_jsx_runtime3.JSX.Element;
952
+ }: Props$21) => react_jsx_runtime1.JSX.Element;
922
953
  //#endregion
923
954
  //#region src/components/AccountModal/Contents/Account/DisconnectConfirmContent.d.ts
924
955
  type DisconnectConfirmContentProps = {
@@ -934,12 +965,12 @@ declare const DisconnectConfirmContent: ({
934
965
  onClose,
935
966
  showCloseButton,
936
967
  text
937
- }: DisconnectConfirmContentProps) => react_jsx_runtime3.JSX.Element;
968
+ }: DisconnectConfirmContentProps) => react_jsx_runtime1.JSX.Element;
938
969
  //#endregion
939
970
  //#region src/hooks/api/privy/useFetchAppInfo.d.ts
940
971
  declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
941
972
  declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
942
- declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
973
+ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query46.UseQueryResult<{
943
974
  [k: string]: {
944
975
  website: string | undefined;
945
976
  id: string;
@@ -960,7 +991,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
960
991
  //#endregion
961
992
  //#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
962
993
  declare const fetchPrivyStatus: () => Promise<string>;
963
- declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
994
+ declare const useFetchPrivyStatus: () => _tanstack_react_query46.UseQueryResult<string, Error>;
964
995
  //#endregion
965
996
  //#region src/hooks/api/vetDomains/useVechainDomain.d.ts
966
997
  interface VeChainDomainResult {
@@ -970,11 +1001,11 @@ interface VeChainDomainResult {
970
1001
  isPrimaryDomain: boolean;
971
1002
  }
972
1003
  declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
973
- declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
1004
+ declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query46.UseQueryResult<VeChainDomainResult, Error>;
974
1005
  //#endregion
975
1006
  //#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
976
1007
  declare const getEnsRecordExistsQueryKey: (name: string) => string[];
977
- declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1008
+ declare const useEnsRecordExists: (name: string) => _tanstack_react_query46.UseQueryResult<boolean, Error>;
978
1009
  //#endregion
979
1010
  //#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
980
1011
  type useClaimVeWorldSubdomainProps = {
@@ -1014,7 +1045,7 @@ type useClaimVetDomainReturnValue = {
1014
1045
  sendTransaction: () => Promise<void>;
1015
1046
  clauses: () => TransactionClause[];
1016
1047
  } & Omit<UseSendTransactionReturnValue, 'sendTransaction'>;
1017
- declare const buildVetDomainClauses: (domain: string, alreadyOwned: boolean, account: Wallet, network: VechainKitProviderProps["network"]) => TransactionClause[];
1048
+ declare const buildVetDomainClauses: (domain: string, alreadyOwned: boolean, account: Wallet, network: VeChainKitConfig["network"]) => TransactionClause[];
1018
1049
  /**
1019
1050
  * Hook for claiming a .vet domain
1020
1051
  *
@@ -1036,7 +1067,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
1036
1067
  * @param {boolean} [enabled=true] - Flag to enable or disable the hook.
1037
1068
  * @returns The result of the useQuery hook, with the protection status.
1038
1069
  */
1039
- declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1070
+ declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query46.UseQueryResult<boolean, Error>;
1040
1071
  //#endregion
1041
1072
  //#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
1042
1073
  declare const DomainSchema: z.ZodObject<{
@@ -1064,7 +1095,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
1064
1095
  * @param parentDomain The parent domain (e.g., "veworld.vet")
1065
1096
  * @returns The domains owned by the address
1066
1097
  */
1067
- declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
1098
+ declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query46.UseQueryResult<{
1068
1099
  domains: {
1069
1100
  name: string;
1070
1101
  }[];
@@ -1077,7 +1108,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
1077
1108
  * @param name - The VET domain name
1078
1109
  * @returns The resolved avatar URL
1079
1110
  */
1080
- declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1111
+ declare const useGetAvatar: (name: string) => _tanstack_react_query46.UseQueryResult<string | null, Error>;
1081
1112
  //#endregion
1082
1113
  //#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
1083
1114
  /**
@@ -1089,7 +1120,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryRes
1089
1120
  */
1090
1121
  declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
1091
1122
  declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
1092
- declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
1123
+ declare const useGetTextRecords: (domain?: string) => _tanstack_react_query46.UseQueryResult<TextRecords, Error>;
1093
1124
  //#endregion
1094
1125
  //#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
1095
1126
  type UpdateTextRecordVariables = {
@@ -1122,7 +1153,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
1122
1153
  * @param domain The domain to get resolver for
1123
1154
  * @returns The resolver address for the domain
1124
1155
  */
1125
- declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
1156
+ declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query46.UseQueryResult<`0x${string}`, unknown>;
1126
1157
  //#endregion
1127
1158
  //#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
1128
1159
  declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
@@ -1132,7 +1163,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
1132
1163
  * @param address The owner's address
1133
1164
  * @returns The avatar URL for the address's primary domain
1134
1165
  */
1135
- declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
1166
+ declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query46.UseQueryResult<string, Error>;
1136
1167
  //#endregion
1137
1168
  //#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
1138
1169
  /**
@@ -1149,7 +1180,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
1149
1180
  * @param name - The VET domain name
1150
1181
  * @returns The resolved avatar URL
1151
1182
  */
1152
- declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1183
+ declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query46.UseQueryResult<string | null, Error>;
1153
1184
  //#endregion
1154
1185
  //#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
1155
1186
  type useUnsetDomainProps = {
@@ -1258,7 +1289,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
1258
1289
  * Hook to get the current roundId of allocations voting
1259
1290
  * @returns the current roundId of allocations voting
1260
1291
  */
1261
- declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
1292
+ declare const useCurrentAllocationsRoundId: () => _tanstack_react_query46.UseQueryResult<string, unknown>;
1262
1293
  //#endregion
1263
1294
  //#region src/hooks/api/wallet/useCustomTokens.d.ts
1264
1295
  declare const useCustomTokens: () => {
@@ -1271,7 +1302,7 @@ declare const useCustomTokens: () => {
1271
1302
  //#endregion
1272
1303
  //#region src/hooks/api/wallet/useGetB3trBalance.d.ts
1273
1304
  declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
1274
- declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1305
+ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query46.UseQueryResult<{
1275
1306
  original: string;
1276
1307
  scaled: string;
1277
1308
  formatted: string;
@@ -1280,7 +1311,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.Us
1280
1311
  //#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
1281
1312
  type TokenWithBalance = CustomTokenInfo & TokenBalance;
1282
1313
  declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
1283
- declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1314
+ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query46.UseQueryResult<{
1284
1315
  original: string;
1285
1316
  scaled: string;
1286
1317
  formatted: string;
@@ -1291,13 +1322,13 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
1291
1322
  }, Error>[];
1292
1323
  //#endregion
1293
1324
  //#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
1294
- declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1325
+ declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1295
1326
  declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
1296
- declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
1327
+ declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query46.UseQueryResult<CustomTokenInfo, Error>;
1297
1328
  //#endregion
1298
1329
  //#region src/hooks/api/wallet/useGetErc20Balance.d.ts
1299
1330
  declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
1300
- declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query8.UseQueryResult<{
1331
+ declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query46.UseQueryResult<{
1301
1332
  original: string;
1302
1333
  scaled: string;
1303
1334
  formatted: string;
@@ -1314,11 +1345,11 @@ declare const PRICE_FEED_IDS: {
1314
1345
  type SupportedToken = keyof typeof PRICE_FEED_IDS;
1315
1346
  declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
1316
1347
  declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
1317
- declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
1348
+ declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query46.UseQueryResult<number, Error>;
1318
1349
  //#endregion
1319
1350
  //#region src/hooks/api/wallet/useGetVot3Balance.d.ts
1320
1351
  declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
1321
- declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1352
+ declare const useGetVot3Balance: (address?: string) => _tanstack_react_query46.UseQueryResult<{
1322
1353
  original: string;
1323
1354
  scaled: string;
1324
1355
  formatted: string;
@@ -1337,7 +1368,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
1337
1368
  * @param user - The user address.
1338
1369
  * @returns The isPerson status.
1339
1370
  */
1340
- declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1371
+ declare const useIsPerson: (user?: string | null) => _tanstack_react_query46.UseQueryResult<boolean, Error>;
1341
1372
  //#endregion
1342
1373
  //#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
1343
1374
  type XApp = {
@@ -1375,7 +1406,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
1375
1406
  //#endregion
1376
1407
  //#region src/hooks/api/wallet/useRoundXApps.d.ts
1377
1408
  declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => (string | unknown[])[];
1378
- declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1409
+ declare const useRoundXApps: (roundId?: string) => _tanstack_react_query46.UseQueryResult<{
1379
1410
  id: string;
1380
1411
  teamWalletAddress: `0x${string}`;
1381
1412
  name: string;
@@ -1406,7 +1437,7 @@ type UseWalletReturnType = {
1406
1437
  };
1407
1438
  disconnect: () => Promise<void>;
1408
1439
  };
1409
- declare const useWallet$1: () => UseWalletReturnType;
1440
+ declare const useWallet: () => UseWalletReturnType;
1410
1441
  //#endregion
1411
1442
  //#region src/hooks/api/wallet/useWalletMetadata.d.ts
1412
1443
  declare const useWalletMetadata: (address: string, networkType: NETWORK_TYPE) => {
@@ -1458,7 +1489,7 @@ type XAppMetadata = {
1458
1489
  * @returns The metadata of the xApp see {@link XAppMetadata}
1459
1490
  */
1460
1491
  declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
1461
- declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
1492
+ declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query46.UseQueryResult<XAppMetadata | undefined, Error>;
1462
1493
  //#endregion
1463
1494
  //#region src/hooks/api/wallet/useXAppShares.d.ts
1464
1495
  /**
@@ -1473,7 +1504,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
1473
1504
  * @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
1474
1505
  *
1475
1506
  */
1476
- declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1507
+ declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query46.UseQueryResult<{
1477
1508
  app: string;
1478
1509
  share: number;
1479
1510
  unallocatedShare: number;
@@ -1495,7 +1526,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
1495
1526
  * @param ipfsUri - The IPFS URI
1496
1527
  * @returns The metadata from IPFS
1497
1528
  */
1498
- declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
1529
+ declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query46.UseQueryResult<_tanstack_react_query46.NoInfer<T$1>, Error>;
1499
1530
  //#endregion
1500
1531
  //#region src/hooks/api/ipfs/useIpfsImage.d.ts
1501
1532
  interface IpfsImage {
@@ -1522,14 +1553,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
1522
1553
  * @param imageIpfsUri - The IPFS URI of the NFT media
1523
1554
  * @returns The NFT media
1524
1555
  */
1525
- declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
1556
+ declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query46.UseQueryResult<IpfsImage, Error>;
1526
1557
  /**
1527
1558
  * Custom hook to fetch a list of IPFS images.
1528
1559
  *
1529
1560
  * @param imageIpfsUriList - An array of IPFS URIs for the images.
1530
1561
  * @returns An array of queries for each IPFS image URI.
1531
1562
  */
1532
- declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
1563
+ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query46.UseQueryResult<IpfsImage, Error>[];
1533
1564
  //#endregion
1534
1565
  //#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
1535
1566
  /**
@@ -1537,7 +1568,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
1537
1568
  * @param ipfsUris - The IPFS URIs
1538
1569
  * @returns The metadata from IPFS for each URI
1539
1570
  */
1540
- declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
1571
+ declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query46.UseQueryResult<T$1, Error>[];
1541
1572
  //#endregion
1542
1573
  //#region src/hooks/api/ipfs/useUploadImages.d.ts
1543
1574
  declare const imageCompressionOptions: Options;
@@ -1718,7 +1749,7 @@ declare const useSwapTransaction: (params: SwapParams | null, quote: SwapQuote |
1718
1749
  executeSwap: () => Promise<void>;
1719
1750
  isTransactionPending: boolean;
1720
1751
  isWaitingForWalletConfirmation: boolean;
1721
- txReceipt: _vechain_sdk_network0.TransactionReceipt | null;
1752
+ txReceipt: _vechain_sdk_network2.TransactionReceipt | null;
1722
1753
  status: TransactionStatus;
1723
1754
  resetStatus: () => void;
1724
1755
  error: TransactionStatusErrorType | undefined;
@@ -1756,7 +1787,7 @@ declare const ConnectModalProvider: ({
1756
1787
  children
1757
1788
  }: {
1758
1789
  children: ReactNode;
1759
- }) => react_jsx_runtime3.JSX.Element;
1790
+ }) => react_jsx_runtime1.JSX.Element;
1760
1791
  //#endregion
1761
1792
  //#region src/hooks/modals/useAccountModal.d.ts
1762
1793
  declare const useAccountModal: () => {
@@ -1768,7 +1799,7 @@ declare const AccountModalProvider: ({
1768
1799
  children
1769
1800
  }: {
1770
1801
  children: ReactNode;
1771
- }) => react_jsx_runtime3.JSX.Element;
1802
+ }) => react_jsx_runtime1.JSX.Element;
1772
1803
  //#endregion
1773
1804
  //#region src/hooks/modals/useTransactionModal.d.ts
1774
1805
  declare const useTransactionModal: () => {
@@ -1780,7 +1811,7 @@ declare const TransactionModalProvider: ({
1780
1811
  children
1781
1812
  }: {
1782
1813
  children: ReactNode;
1783
- }) => react_jsx_runtime3.JSX.Element;
1814
+ }) => react_jsx_runtime1.JSX.Element;
1784
1815
  //#endregion
1785
1816
  //#region src/hooks/modals/useTransactionToast.d.ts
1786
1817
  declare const useTransactionToast: () => {
@@ -1792,7 +1823,7 @@ declare const TransactionToastProvider: ({
1792
1823
  children
1793
1824
  }: {
1794
1825
  children: ReactNode;
1795
- }) => react_jsx_runtime3.JSX.Element;
1826
+ }) => react_jsx_runtime1.JSX.Element;
1796
1827
  //#endregion
1797
1828
  //#region src/hooks/modals/useWalletModal.d.ts
1798
1829
  declare const useWalletModal: () => {
@@ -1804,7 +1835,7 @@ declare const WalletModalProvider: ({
1804
1835
  children
1805
1836
  }: {
1806
1837
  children: ReactNode;
1807
- }) => react_jsx_runtime3.JSX.Element;
1838
+ }) => react_jsx_runtime1.JSX.Element;
1808
1839
  //#endregion
1809
1840
  //#region src/hooks/modals/useChooseNameModal.d.ts
1810
1841
  declare const useChooseNameModal: () => {
@@ -1816,7 +1847,7 @@ declare const ChooseNameModalProvider: ({
1816
1847
  children
1817
1848
  }: {
1818
1849
  children: ReactNode;
1819
- }) => react_jsx_runtime3.JSX.Element;
1850
+ }) => react_jsx_runtime1.JSX.Element;
1820
1851
  //#endregion
1821
1852
  //#region src/hooks/modals/useSendTokenModal.d.ts
1822
1853
  declare const useSendTokenModal: () => {
@@ -1828,7 +1859,7 @@ declare const SendTokenModalProvider: ({
1828
1859
  children
1829
1860
  }: {
1830
1861
  children: ReactNode;
1831
- }) => react_jsx_runtime3.JSX.Element;
1862
+ }) => react_jsx_runtime1.JSX.Element;
1832
1863
  //#endregion
1833
1864
  //#region src/hooks/modals/useSwapTokenModal.d.ts
1834
1865
  type SwapTokenModalOptions = {
@@ -1845,7 +1876,7 @@ declare const SwapTokenModalProvider: ({
1845
1876
  children
1846
1877
  }: {
1847
1878
  children: ReactNode;
1848
- }) => react_jsx_runtime3.JSX.Element;
1879
+ }) => react_jsx_runtime1.JSX.Element;
1849
1880
  //#endregion
1850
1881
  //#region src/hooks/modals/useAccessAndSecurityModal.d.ts
1851
1882
  declare const useAccessAndSecurityModal: () => {
@@ -1857,7 +1888,7 @@ declare const AccessAndSecurityModalProvider: ({
1857
1888
  children
1858
1889
  }: {
1859
1890
  children: ReactNode;
1860
- }) => react_jsx_runtime3.JSX.Element;
1891
+ }) => react_jsx_runtime1.JSX.Element;
1861
1892
  //#endregion
1862
1893
  //#region src/hooks/modals/useExploreEcosystemModal.d.ts
1863
1894
  declare const useExploreEcosystemModal: () => {
@@ -1869,7 +1900,7 @@ declare const ExploreEcosystemModalProvider: ({
1869
1900
  children
1870
1901
  }: {
1871
1902
  children: ReactNode;
1872
- }) => react_jsx_runtime3.JSX.Element;
1903
+ }) => react_jsx_runtime1.JSX.Element;
1873
1904
  //#endregion
1874
1905
  //#region src/hooks/modals/useNotificationsModal.d.ts
1875
1906
  declare const useNotificationsModal: () => {
@@ -1881,7 +1912,7 @@ declare const NotificationsModalProvider: ({
1881
1912
  children
1882
1913
  }: {
1883
1914
  children: ReactNode;
1884
- }) => react_jsx_runtime3.JSX.Element;
1915
+ }) => react_jsx_runtime1.JSX.Element;
1885
1916
  //#endregion
1886
1917
  //#region src/hooks/modals/useFAQModal.d.ts
1887
1918
  declare const useFAQModal: () => {
@@ -1893,7 +1924,7 @@ declare const FAQModalProvider: ({
1893
1924
  children
1894
1925
  }: {
1895
1926
  children: ReactNode;
1896
- }) => react_jsx_runtime3.JSX.Element;
1927
+ }) => react_jsx_runtime1.JSX.Element;
1897
1928
  //#endregion
1898
1929
  //#region src/hooks/modals/useAccountCustomizationModal.d.ts
1899
1930
  declare const useAccountCustomizationModal: () => {
@@ -1905,7 +1936,7 @@ declare const AccountCustomizationModalProvider: ({
1905
1936
  children
1906
1937
  }: {
1907
1938
  children: ReactNode;
1908
- }) => react_jsx_runtime3.JSX.Element;
1939
+ }) => react_jsx_runtime1.JSX.Element;
1909
1940
  //#endregion
1910
1941
  //#region src/hooks/modals/useReceiveModal.d.ts
1911
1942
  declare const useReceiveModal: () => {
@@ -1917,7 +1948,7 @@ declare const ReceiveModalProvider: ({
1917
1948
  children
1918
1949
  }: {
1919
1950
  children: ReactNode;
1920
- }) => react_jsx_runtime3.JSX.Element;
1951
+ }) => react_jsx_runtime1.JSX.Element;
1921
1952
  //#endregion
1922
1953
  //#region src/hooks/modals/useLoginModalContent.d.ts
1923
1954
  type LoginModalContentConfig = {
@@ -1943,7 +1974,7 @@ declare const UpgradeSmartAccountModalProvider: ({
1943
1974
  children
1944
1975
  }: {
1945
1976
  children: ReactNode;
1946
- }) => react_jsx_runtime3.JSX.Element;
1977
+ }) => react_jsx_runtime1.JSX.Element;
1947
1978
  //#endregion
1948
1979
  //#region src/hooks/modals/useProfileModal.d.ts
1949
1980
  declare const useProfileModal: () => {
@@ -1955,7 +1986,7 @@ declare const ProfileModalProvider: ({
1955
1986
  children
1956
1987
  }: {
1957
1988
  children: ReactNode;
1958
- }) => react_jsx_runtime3.JSX.Element;
1989
+ }) => react_jsx_runtime1.JSX.Element;
1959
1990
  //#endregion
1960
1991
  //#region src/hooks/modals/useAccountModalOptions.d.ts
1961
1992
  declare const useAccountModalOptions: () => {
@@ -2026,7 +2057,7 @@ type UseSignTypedDataReturnValue = {
2026
2057
  declare const useSignTypedData: () => UseSignTypedDataReturnValue;
2027
2058
  //#endregion
2028
2059
  //#region src/hooks/login/useLoginWithPasskey.d.ts
2029
- declare const useLoginWithPasskey$1: () => {
2060
+ declare const useLoginWithPasskey: () => {
2030
2061
  loginWithPasskey: () => Promise<void>;
2031
2062
  };
2032
2063
  //#endregion
@@ -2034,7 +2065,7 @@ declare const useLoginWithPasskey$1: () => {
2034
2065
  interface OAuthOptions {
2035
2066
  provider: OAuthProviderType;
2036
2067
  }
2037
- declare const useLoginWithOAuth$1: () => {
2068
+ declare const useLoginWithOAuth: () => {
2038
2069
  initOAuth: ({
2039
2070
  provider
2040
2071
  }: OAuthOptions) => Promise<void>;
@@ -2091,7 +2122,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
2091
2122
  * );
2092
2123
  * ```
2093
2124
  */
2094
- declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
2125
+ declare const useAppHubApps: () => _tanstack_react_query46.UseQueryResult<AppHubApp[], Error>;
2095
2126
  //#endregion
2096
2127
  //#region src/utils/constants.d.ts
2097
2128
  declare const TOKEN_LOGOS: Record<string, string>;
@@ -2438,7 +2469,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
2438
2469
  method: TMethod;
2439
2470
  args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
2440
2471
  queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
2441
- }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
2472
+ }) => _tanstack_react_query46.UseQueryResult<_tanstack_react_query46.NoInfer<TData>, unknown>;
2442
2473
  declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
2443
2474
  thor,
2444
2475
  calls,
@@ -2449,11 +2480,14 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
2449
2480
  calls: MultipleClausesCallParameters<contracts, allowFailure>;
2450
2481
  queryKey: string[];
2451
2482
  enabled?: boolean;
2452
- }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
2483
+ }) => _tanstack_react_query46.UseQueryResult<_tanstack_react_query46.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
2453
2484
  //#endregion
2454
2485
  //#region src/hooks/utils/useCurrency.d.ts
2455
2486
  /**
2456
2487
  * Hook for managing currency preferences
2488
+ *
2489
+ * Note: This hook now uses the currency from VeChainKit context.
2490
+ * For setting currency, use the setCurrency function from useCurrentCurrency() hook instead.
2457
2491
  */
2458
2492
  declare const useCurrency: () => {
2459
2493
  currentCurrency: CURRENCY;
@@ -2461,6 +2495,63 @@ declare const useCurrency: () => {
2461
2495
  changeCurrency: (newCurrency: CURRENCY) => void;
2462
2496
  };
2463
2497
  //#endregion
2498
+ //#region src/hooks/utils/useCurrentLanguage.d.ts
2499
+ /**
2500
+ * Hook to get and set the current language in VeChainKit
2501
+ *
2502
+ * This hook provides the current runtime language value and a function to change it.
2503
+ * Changes made via this hook will sync to VeChainKit settings and trigger callbacks.
2504
+ *
2505
+ * @returns Object with:
2506
+ * - `currentLanguage`: Current language code (e.g., 'en', 'fr', 'de')
2507
+ * - `setLanguage`: Function to change the language
2508
+ *
2509
+ * @example
2510
+ * ```tsx
2511
+ * const { currentLanguage, setLanguage } = useCurrentLanguage();
2512
+ *
2513
+ * return (
2514
+ * <select value={currentLanguage} onChange={(e) => setLanguage(e.target.value)}>
2515
+ * <option value="en">English</option>
2516
+ * <option value="fr">Français</option>
2517
+ * </select>
2518
+ * );
2519
+ * ```
2520
+ */
2521
+ declare const useCurrentLanguage: () => {
2522
+ currentLanguage: string;
2523
+ setLanguage: (language: string) => void;
2524
+ };
2525
+ //#endregion
2526
+ //#region src/hooks/utils/useCurrentCurrency.d.ts
2527
+ /**
2528
+ * Hook to get and set the current currency in VeChainKit
2529
+ *
2530
+ * This hook provides the current runtime currency value and a function to change it.
2531
+ * Changes made via this hook will sync to VeChainKit settings and trigger callbacks.
2532
+ *
2533
+ * @returns Object with:
2534
+ * - `currentCurrency`: Current currency code ('usd', 'eur', or 'gbp')
2535
+ * - `setCurrency`: Function to change the currency
2536
+ *
2537
+ * @example
2538
+ * ```tsx
2539
+ * const { currentCurrency, setCurrency } = useCurrentCurrency();
2540
+ *
2541
+ * return (
2542
+ * <select value={currentCurrency} onChange={(e) => setCurrency(e.target.value as CURRENCY)}>
2543
+ * <option value="usd">USD ($)</option>
2544
+ * <option value="eur">EUR (€)</option>
2545
+ * <option value="gbp">GBP (£)</option>
2546
+ * </select>
2547
+ * );
2548
+ * ```
2549
+ */
2550
+ declare const useCurrentCurrency: () => {
2551
+ currentCurrency: CURRENCY;
2552
+ setCurrency: (currency: CURRENCY) => void;
2553
+ };
2554
+ //#endregion
2464
2555
  //#region src/hooks/utils/useFeatureAnnouncement.d.ts
2465
2556
  declare const useFeatureAnnouncement: () => {
2466
2557
  isVisible: boolean;
@@ -2513,7 +2604,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
2513
2604
  filterParams,
2514
2605
  mapResponse,
2515
2606
  nodeUrl
2516
- }: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
2607
+ }: UseEventsParams<T$1, K, R>) => _tanstack_react_query46.UseQueryResult<R[], Error>;
2517
2608
  //#endregion
2518
2609
  //#region src/hooks/utils/useBuildClauses.d.ts
2519
2610
  interface BuildClausesParams {
@@ -2664,7 +2755,7 @@ declare const useGasEstimation: ({
2664
2755
  tokens,
2665
2756
  sendingAmount,
2666
2757
  sendingTokenSymbol
2667
- }: UseGasEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
2758
+ }: UseGasEstimationParams) => _tanstack_react_query46.UseQueryResult<EstimationResponse & {
2668
2759
  usedToken: string;
2669
2760
  }, Error>;
2670
2761
  //#endregion
@@ -2678,7 +2769,7 @@ declare const useEstimateAllTokens: ({
2678
2769
  clauses,
2679
2770
  tokens,
2680
2771
  enabled
2681
- }: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
2772
+ }: UseEstimateAllTokensParams) => _tanstack_react_query46.UseQueryResult<Record<GasTokenType, {
2682
2773
  cost: number;
2683
2774
  loading: boolean;
2684
2775
  error?: string;
@@ -2695,7 +2786,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
2695
2786
  * @param address The address of the account to get the balance for
2696
2787
  * @returns The account balance
2697
2788
  */
2698
- declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
2789
+ declare const useAccountBalance: (address?: string) => _tanstack_react_query46.UseQueryResult<{
2699
2790
  balance: string;
2700
2791
  energy: string;
2701
2792
  }, Error>;
@@ -2708,7 +2799,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
2708
2799
  * @param version - The version of the smart account implementation
2709
2800
  * @returns The address of the smart account implementation
2710
2801
  */
2711
- declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
2802
+ declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query46.UseQueryResult<string, Error>;
2712
2803
  //#endregion
2713
2804
  //#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
2714
2805
  declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
@@ -2717,7 +2808,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
2717
2808
  * Get the current account implementation version used by the smart account factory
2718
2809
  * @returns The current account implementation version
2719
2810
  */
2720
- declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
2811
+ declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query46.UseQueryResult<number, Error>;
2721
2812
  //#endregion
2722
2813
  //#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
2723
2814
  declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
@@ -2727,7 +2818,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
2727
2818
  * @param ownerAddress - The address of the owner of the smart account
2728
2819
  * @returns The address of the smart account
2729
2820
  */
2730
- declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
2821
+ declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query46.UseQueryResult<string, Error>;
2731
2822
  //#endregion
2732
2823
  //#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
2733
2824
  declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => (string | unknown[])[];
@@ -2737,7 +2828,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
2737
2828
  * @param ownerAddress - The address of the owner of the smart account
2738
2829
  * @returns The version of the smart account
2739
2830
  */
2740
- declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
2831
+ declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query46.UseQueryResult<{
2741
2832
  version: number;
2742
2833
  isDeployed: boolean;
2743
2834
  }, unknown>;
@@ -2750,7 +2841,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
2750
2841
  * @param ownerAddress - The address of the owner of the smart account
2751
2842
  * @returns True if the smart account has a v1 smart account, false otherwise
2752
2843
  */
2753
- declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2844
+ declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query46.UseQueryResult<boolean, Error>;
2754
2845
  //#endregion
2755
2846
  //#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
2756
2847
  declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
@@ -2759,7 +2850,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
2759
2850
  * Check if a smart account is deployed
2760
2851
  * @returns True if the smart account is deployed, false otherwise
2761
2852
  */
2762
- declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2853
+ declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query46.UseQueryResult<boolean, Error>;
2763
2854
  //#endregion
2764
2855
  //#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
2765
2856
  /**
@@ -2792,7 +2883,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
2792
2883
  isDeployed: boolean;
2793
2884
  }>;
2794
2885
  declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
2795
- declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
2886
+ declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query46.UseQueryResult<{
2796
2887
  address: undefined;
2797
2888
  isDeployed?: undefined;
2798
2889
  } | {
@@ -2810,7 +2901,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
2810
2901
  * @param targetVersion - The version of the smart account to check for
2811
2902
  * @returns True if the smart account needs an upgrade, false otherwise
2812
2903
  */
2813
- declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2904
+ declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query46.UseQueryResult<boolean, Error>;
2814
2905
  //#endregion
2815
2906
  //#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
2816
2907
  declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
@@ -2821,7 +2912,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
2821
2912
  * @param targetVersion - The target version of the smart account
2822
2913
  * @returns True if the smart account needs an upgrade, false otherwise
2823
2914
  */
2824
- declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2915
+ declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query46.UseQueryResult<boolean, Error>;
2825
2916
  //#endregion
2826
2917
  //#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
2827
2918
  type UseUpgradeSmartAccountVersionProps = {
@@ -2846,7 +2937,7 @@ declare const currentBlockQueryKey: () => string[];
2846
2937
  * Fetches the current block from the blockchain. The block is refetched every 10 seconds.
2847
2938
  * @returns the current block
2848
2939
  */
2849
- declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
2940
+ declare const useCurrentBlock: () => _tanstack_react_query46.UseQueryResult<_vechain_sdk_network2.ExpandedBlockDetail, Error>;
2850
2941
  //#endregion
2851
2942
  //#region src/hooks/thor/blocks/useGetChainId.d.ts
2852
2943
  declare const getChainId: (thor: ThorClient) => Promise<string>;
@@ -2855,7 +2946,7 @@ declare const getChainIdQueryKey: () => string[];
2855
2946
  * Get the chain id
2856
2947
  * @returns The chain id
2857
2948
  */
2858
- declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
2949
+ declare const useGetChainId: () => _tanstack_react_query46.UseQueryResult<string, Error>;
2859
2950
  //#endregion
2860
2951
  //#region src/hooks/thor/logs/logUtils.d.ts
2861
2952
  /**
@@ -3081,7 +3172,7 @@ declare const useBuildTransaction: <ClausesParams>({
3081
3172
  sendTransaction: (props: ClausesParams) => Promise<void>;
3082
3173
  isTransactionPending: boolean;
3083
3174
  isWaitingForWalletConfirmation: boolean;
3084
- txReceipt: _vechain_sdk_network0.TransactionReceipt | null;
3175
+ txReceipt: _vechain_sdk_network2.TransactionReceipt | null;
3085
3176
  status: TransactionStatus;
3086
3177
  resetStatus: () => void;
3087
3178
  error?: TransactionStatusErrorType;
@@ -3096,7 +3187,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
3096
3187
  * @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
3097
3188
  * @returns Query result containing the transaction receipt
3098
3189
  */
3099
- declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3190
+ declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query46.UseQueryResult<_vechain_sdk_network2.TransactionReceipt, Error>;
3100
3191
  //#endregion
3101
3192
  //#region src/components/AccountModal/Contents/SendToken/SendTokenContent.d.ts
3102
3193
  type SendTokenContentProps = {
@@ -3112,7 +3203,7 @@ declare const SendTokenContent: ({
3112
3203
  initialAmount,
3113
3204
  initialToAddressOrDomain,
3114
3205
  onBack: parentOnBack
3115
- }: SendTokenContentProps) => react_jsx_runtime3.JSX.Element;
3206
+ }: SendTokenContentProps) => react_jsx_runtime1.JSX.Element;
3116
3207
  //#endregion
3117
3208
  //#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
3118
3209
  type SendTokenSummaryContentProps = {
@@ -3132,7 +3223,7 @@ declare const SendTokenSummaryContent: ({
3132
3223
  amount,
3133
3224
  selectedToken,
3134
3225
  formattedTotalAmount
3135
- }: SendTokenSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3226
+ }: SendTokenSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3136
3227
  //#endregion
3137
3228
  //#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
3138
3229
  type Props$18 = {
@@ -3148,7 +3239,7 @@ declare const SelectTokenContent: ({
3148
3239
  onSelectToken,
3149
3240
  onBack,
3150
3241
  showAllTokens
3151
- }: Props$18) => react_jsx_runtime3.JSX.Element;
3242
+ }: Props$18) => react_jsx_runtime1.JSX.Element;
3152
3243
  //#endregion
3153
3244
  //#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
3154
3245
  type Props$17 = {
@@ -3156,7 +3247,7 @@ type Props$17 = {
3156
3247
  };
3157
3248
  declare const ReceiveTokenContent: ({
3158
3249
  setCurrentContent
3159
- }: Props$17) => react_jsx_runtime3.JSX.Element;
3250
+ }: Props$17) => react_jsx_runtime1.JSX.Element;
3160
3251
  //#endregion
3161
3252
  //#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
3162
3253
  type Props$16 = {
@@ -3168,7 +3259,7 @@ declare const SwapTokenContent: ({
3168
3259
  setCurrentContent,
3169
3260
  fromTokenAddress,
3170
3261
  toTokenAddress
3171
- }: Props$16) => react_jsx_runtime3.JSX.Element;
3262
+ }: Props$16) => react_jsx_runtime1.JSX.Element;
3172
3263
  //#endregion
3173
3264
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
3174
3265
  type ChooseNameContentProps = {
@@ -3180,7 +3271,7 @@ declare const ChooseNameContent: ({
3180
3271
  setCurrentContent,
3181
3272
  onBack,
3182
3273
  initialContentSource
3183
- }: ChooseNameContentProps) => react_jsx_runtime3.JSX.Element;
3274
+ }: ChooseNameContentProps) => react_jsx_runtime1.JSX.Element;
3184
3275
  //#endregion
3185
3276
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
3186
3277
  type ChooseNameSearchContentProps = {
@@ -3192,7 +3283,7 @@ declare const ChooseNameSearchContent: ({
3192
3283
  name: initialName,
3193
3284
  setCurrentContent,
3194
3285
  initialContentSource
3195
- }: ChooseNameSearchContentProps) => react_jsx_runtime3.JSX.Element;
3286
+ }: ChooseNameSearchContentProps) => react_jsx_runtime1.JSX.Element;
3196
3287
  //#endregion
3197
3288
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
3198
3289
  type ChooseNameSummaryContentProps = {
@@ -3210,7 +3301,7 @@ declare const ChooseNameSummaryContent: ({
3210
3301
  isOwnDomain,
3211
3302
  isUnsetting,
3212
3303
  initialContentSource
3213
- }: ChooseNameSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3304
+ }: ChooseNameSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3214
3305
  //#endregion
3215
3306
  //#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
3216
3307
  type FAQContentProps = {
@@ -3220,7 +3311,7 @@ type FAQContentProps = {
3220
3311
  declare const FAQContent: ({
3221
3312
  onGoBack,
3222
3313
  showLanguageSelector
3223
- }: FAQContentProps) => react_jsx_runtime3.JSX.Element;
3314
+ }: FAQContentProps) => react_jsx_runtime1.JSX.Element;
3224
3315
  //#endregion
3225
3316
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
3226
3317
  type AccountCustomizationContentProps = {
@@ -3230,7 +3321,7 @@ type AccountCustomizationContentProps = {
3230
3321
  declare const CustomizationContent: ({
3231
3322
  setCurrentContent,
3232
3323
  initialContentSource
3233
- }: AccountCustomizationContentProps) => react_jsx_runtime3.JSX.Element;
3324
+ }: AccountCustomizationContentProps) => react_jsx_runtime1.JSX.Element;
3234
3325
  //#endregion
3235
3326
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
3236
3327
  type CustomizationSummaryContentProps = {
@@ -3249,7 +3340,7 @@ declare const CustomizationSummaryContent: ({
3249
3340
  setCurrentContent,
3250
3341
  changes,
3251
3342
  onDoneRedirectContent
3252
- }: CustomizationSummaryContentProps) => react_jsx_runtime3.JSX.Element;
3343
+ }: CustomizationSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3253
3344
  //#endregion
3254
3345
  //#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
3255
3346
  type ProfileContentProps = {
@@ -3259,7 +3350,7 @@ type ProfileContentProps = {
3259
3350
  declare const ProfileContent: ({
3260
3351
  setCurrentContent,
3261
3352
  onLogoutSuccess
3262
- }: ProfileContentProps) => react_jsx_runtime3.JSX.Element;
3353
+ }: ProfileContentProps) => react_jsx_runtime1.JSX.Element;
3263
3354
  //#endregion
3264
3355
  //#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
3265
3356
  type UpgradeSmartAccountContentProps = {
@@ -3271,7 +3362,7 @@ declare const UpgradeSmartAccountContent: ({
3271
3362
  setCurrentContent,
3272
3363
  handleClose,
3273
3364
  initialContent
3274
- }: UpgradeSmartAccountContentProps) => react_jsx_runtime3.JSX.Element;
3365
+ }: UpgradeSmartAccountContentProps) => react_jsx_runtime1.JSX.Element;
3275
3366
  //#endregion
3276
3367
  //#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
3277
3368
  type AssetsContentProps = {
@@ -3279,7 +3370,7 @@ type AssetsContentProps = {
3279
3370
  };
3280
3371
  declare const AssetsContent: ({
3281
3372
  setCurrentContent
3282
- }: AssetsContentProps) => react_jsx_runtime3.JSX.Element;
3373
+ }: AssetsContentProps) => react_jsx_runtime1.JSX.Element;
3283
3374
  //#endregion
3284
3375
  //#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
3285
3376
  type ManageCustomTokenContentProps = {
@@ -3287,7 +3378,7 @@ type ManageCustomTokenContentProps = {
3287
3378
  };
3288
3379
  declare const ManageCustomTokenContent: ({
3289
3380
  setCurrentContent
3290
- }: ManageCustomTokenContentProps) => react_jsx_runtime3.JSX.Element;
3381
+ }: ManageCustomTokenContentProps) => react_jsx_runtime1.JSX.Element;
3291
3382
  //#endregion
3292
3383
  //#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
3293
3384
  type Props$15 = {
@@ -3295,7 +3386,7 @@ type Props$15 = {
3295
3386
  };
3296
3387
  declare const BridgeContent: ({
3297
3388
  setCurrentContent
3298
- }: Props$15) => react_jsx_runtime3.JSX.Element;
3389
+ }: Props$15) => react_jsx_runtime1.JSX.Element;
3299
3390
  //#endregion
3300
3391
  //#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
3301
3392
  type ChangeCurrencyContentProps = {
@@ -3303,7 +3394,7 @@ type ChangeCurrencyContentProps = {
3303
3394
  };
3304
3395
  declare const ChangeCurrencyContent: ({
3305
3396
  setCurrentContent
3306
- }: ChangeCurrencyContentProps) => react_jsx_runtime3.JSX.Element;
3397
+ }: ChangeCurrencyContentProps) => react_jsx_runtime1.JSX.Element;
3307
3398
  //#endregion
3308
3399
  //#region src/components/AccountModal/Contents/KitSettings/GeneralSettingsContent.d.ts
3309
3400
  type Props$14 = {
@@ -3311,7 +3402,7 @@ type Props$14 = {
3311
3402
  };
3312
3403
  declare const GeneralSettingsContent: ({
3313
3404
  setCurrentContent
3314
- }: Props$14) => react_jsx_runtime3.JSX.Element;
3405
+ }: Props$14) => react_jsx_runtime1.JSX.Element;
3315
3406
  //#endregion
3316
3407
  //#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
3317
3408
  type Props$13 = {
@@ -3319,7 +3410,7 @@ type Props$13 = {
3319
3410
  };
3320
3411
  declare const LanguageSettingsContent: ({
3321
3412
  setCurrentContent
3322
- }: Props$13) => react_jsx_runtime3.JSX.Element;
3413
+ }: Props$13) => react_jsx_runtime1.JSX.Element;
3323
3414
  //#endregion
3324
3415
  //#region src/components/AccountModal/Contents/KitSettings/AppearanceSettingsContent.d.ts
3325
3416
  type Props$12 = {
@@ -3327,7 +3418,7 @@ type Props$12 = {
3327
3418
  };
3328
3419
  declare const AppearanceSettingsContent: ({
3329
3420
  setCurrentContent
3330
- }: Props$12) => react_jsx_runtime3.JSX.Element;
3421
+ }: Props$12) => react_jsx_runtime1.JSX.Element;
3331
3422
  //#endregion
3332
3423
  //#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
3333
3424
  type Props$11 = {
@@ -3335,7 +3426,7 @@ type Props$11 = {
3335
3426
  };
3336
3427
  declare const GasTokenSettingsContent: ({
3337
3428
  setCurrentContent
3338
- }: Props$11) => react_jsx_runtime3.JSX.Element;
3429
+ }: Props$11) => react_jsx_runtime1.JSX.Element;
3339
3430
  //#endregion
3340
3431
  //#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
3341
3432
  type TermsAndPrivacyContentProps = {
@@ -3343,7 +3434,7 @@ type TermsAndPrivacyContentProps = {
3343
3434
  };
3344
3435
  declare const TermsAndPrivacyContent: ({
3345
3436
  onGoBack
3346
- }: TermsAndPrivacyContentProps) => react_jsx_runtime3.JSX.Element;
3437
+ }: TermsAndPrivacyContentProps) => react_jsx_runtime1.JSX.Element;
3347
3438
  //#endregion
3348
3439
  //#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
3349
3440
  type CategoryFilter = string | null;
@@ -3447,7 +3538,7 @@ declare const AccountModal: ({
3447
3538
  isOpen,
3448
3539
  onClose,
3449
3540
  initialContent
3450
- }: Props$10) => react_jsx_runtime3.JSX.Element;
3541
+ }: Props$10) => react_jsx_runtime1.JSX.Element;
3451
3542
  //#endregion
3452
3543
  //#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
3453
3544
  interface AccountDetailsButtonProps {
@@ -3469,7 +3560,7 @@ declare const AccountDetailsButton: ({
3469
3560
  onClick,
3470
3561
  leftImage,
3471
3562
  isActive
3472
- }: AccountDetailsButtonProps) => react_jsx_runtime3.JSX.Element;
3563
+ }: AccountDetailsButtonProps) => react_jsx_runtime1.JSX.Element;
3473
3564
  //#endregion
3474
3565
  //#region src/components/AccountModal/Components/ActionButton.d.ts
3475
3566
  type ActionButtonProps = {
@@ -3511,7 +3602,7 @@ declare const ActionButton: ({
3511
3602
  extraContent,
3512
3603
  dataTestId,
3513
3604
  variant
3514
- }: ActionButtonProps) => react_jsx_runtime3.JSX.Element;
3605
+ }: ActionButtonProps) => react_jsx_runtime1.JSX.Element;
3515
3606
  //#endregion
3516
3607
  //#region src/components/AccountModal/Components/AccountSelector.d.ts
3517
3608
  type Props$9 = {
@@ -3531,7 +3622,7 @@ declare const AccountSelector: ({
3531
3622
  onClose,
3532
3623
  mt,
3533
3624
  style
3534
- }: Props$9) => react_jsx_runtime3.JSX.Element;
3625
+ }: Props$9) => react_jsx_runtime1.JSX.Element;
3535
3626
  //#endregion
3536
3627
  //#region src/components/AccountModal/Components/BalanceSection.d.ts
3537
3628
  declare const BalanceSection: ({
@@ -3542,7 +3633,7 @@ declare const BalanceSection: ({
3542
3633
  mb?: number;
3543
3634
  mt?: number;
3544
3635
  onAssetsClick?: () => void;
3545
- }) => react_jsx_runtime3.JSX.Element;
3636
+ }) => react_jsx_runtime1.JSX.Element;
3546
3637
  //#endregion
3547
3638
  //#region src/components/AccountModal/Components/QuickActionsSection.d.ts
3548
3639
  type Props$8 = {
@@ -3552,7 +3643,7 @@ type Props$8 = {
3552
3643
  declare const QuickActionsSection: ({
3553
3644
  mt,
3554
3645
  setCurrentContent
3555
- }: Props$8) => react_jsx_runtime3.JSX.Element;
3646
+ }: Props$8) => react_jsx_runtime1.JSX.Element;
3556
3647
  //#endregion
3557
3648
  //#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
3558
3649
  type FeatureAnnouncementCardProps = {
@@ -3560,16 +3651,16 @@ type FeatureAnnouncementCardProps = {
3560
3651
  };
3561
3652
  declare const FeatureAnnouncementCard: ({
3562
3653
  setCurrentContent
3563
- }: FeatureAnnouncementCardProps) => react_jsx_runtime3.JSX.Element | null;
3654
+ }: FeatureAnnouncementCardProps) => react_jsx_runtime1.JSX.Element | null;
3564
3655
  //#endregion
3565
3656
  //#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
3566
- declare const ExchangeWarningAlert: () => react_jsx_runtime3.JSX.Element;
3657
+ declare const ExchangeWarningAlert: () => react_jsx_runtime1.JSX.Element;
3567
3658
  //#endregion
3568
3659
  //#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
3569
- declare const DomainRequiredAlert: () => react_jsx_runtime3.JSX.Element;
3660
+ declare const DomainRequiredAlert: () => react_jsx_runtime1.JSX.Element;
3570
3661
  //#endregion
3571
3662
  //#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
3572
- declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime3.JSX.Element;
3663
+ declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime1.JSX.Element;
3573
3664
  //#endregion
3574
3665
  //#region src/components/common/ModalBackButton.d.ts
3575
3666
  type BackButtonProps = {
@@ -3578,7 +3669,7 @@ type BackButtonProps = {
3578
3669
  declare const ModalBackButton: ({
3579
3670
  onClick,
3580
3671
  ...props
3581
- }: BackButtonProps) => react_jsx_runtime3.JSX.Element;
3672
+ }: BackButtonProps) => react_jsx_runtime1.JSX.Element;
3582
3673
  //#endregion
3583
3674
  //#region src/components/common/AddressDisplay.d.ts
3584
3675
  type Props$7 = {
@@ -3592,13 +3683,13 @@ declare const AddressDisplay: ({
3592
3683
  label,
3593
3684
  style,
3594
3685
  showHumanAddress
3595
- }: Props$7) => react_jsx_runtime3.JSX.Element;
3686
+ }: Props$7) => react_jsx_runtime1.JSX.Element;
3596
3687
  //#endregion
3597
3688
  //#region src/components/common/VersionFooter.d.ts
3598
3689
  type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3599
3690
  declare const VersionFooter: ({
3600
3691
  ...props
3601
- }: Props$6) => react_jsx_runtime3.JSX.Element;
3692
+ }: Props$6) => react_jsx_runtime1.JSX.Element;
3602
3693
  //#endregion
3603
3694
  //#region src/components/common/StickyHeaderContainer.d.ts
3604
3695
  type Props$5 = {
@@ -3606,7 +3697,7 @@ type Props$5 = {
3606
3697
  };
3607
3698
  declare const StickyHeaderContainer: ({
3608
3699
  children
3609
- }: Props$5) => react_jsx_runtime3.JSX.Element;
3700
+ }: Props$5) => react_jsx_runtime1.JSX.Element;
3610
3701
  //#endregion
3611
3702
  //#region src/components/common/StickyFooterContainer.d.ts
3612
3703
  type Props$4 = {
@@ -3614,7 +3705,7 @@ type Props$4 = {
3614
3705
  };
3615
3706
  declare const StickyFooterContainer: ({
3616
3707
  children
3617
- }: Props$4) => react_jsx_runtime3.JSX.Element;
3708
+ }: Props$4) => react_jsx_runtime1.JSX.Element;
3618
3709
  //#endregion
3619
3710
  //#region src/components/common/BaseModal.d.ts
3620
3711
  type BaseModalProps = {
@@ -3645,7 +3736,7 @@ declare const BaseModal: ({
3645
3736
  allowExternalFocus,
3646
3737
  backdropFilter,
3647
3738
  isCloseable
3648
- }: BaseModalProps) => react_jsx_runtime3.JSX.Element;
3739
+ }: BaseModalProps) => react_jsx_runtime1.JSX.Element;
3649
3740
  //#endregion
3650
3741
  //#region src/components/common/AssetButton.d.ts
3651
3742
  type AssetButtonProps = ButtonProps & {
@@ -3664,7 +3755,7 @@ declare const AssetButton: ({
3664
3755
  isDisabled,
3665
3756
  onClick,
3666
3757
  ...buttonProps
3667
- }: AssetButtonProps) => react_jsx_runtime3.JSX.Element;
3758
+ }: AssetButtonProps) => react_jsx_runtime1.JSX.Element;
3668
3759
  //#endregion
3669
3760
  //#region src/components/common/AddressDisplayCard.d.ts
3670
3761
  type AddressDisplayCardProps = {
@@ -3686,7 +3777,7 @@ declare const AddressDisplayCard: ({
3686
3777
  hideAddress,
3687
3778
  balance,
3688
3779
  tokenAddress
3689
- }: AddressDisplayCardProps) => react_jsx_runtime3.JSX.Element;
3780
+ }: AddressDisplayCardProps) => react_jsx_runtime1.JSX.Element;
3690
3781
  //#endregion
3691
3782
  //#region src/components/common/ModalFAQButton.d.ts
3692
3783
  type FAQButtonProps = {
@@ -3695,13 +3786,13 @@ type FAQButtonProps = {
3695
3786
  declare const ModalFAQButton: ({
3696
3787
  onClick,
3697
3788
  ...props
3698
- }: FAQButtonProps) => react_jsx_runtime3.JSX.Element;
3789
+ }: FAQButtonProps) => react_jsx_runtime1.JSX.Element;
3699
3790
  //#endregion
3700
3791
  //#region src/components/common/ScrollToTopWrapper.d.ts
3701
3792
  declare const ScrollToTopWrapper: ({
3702
3793
  children,
3703
3794
  ...props
3704
- }: StackProps) => react_jsx_runtime3.JSX.Element;
3795
+ }: StackProps) => react_jsx_runtime1.JSX.Element;
3705
3796
  //#endregion
3706
3797
  //#region src/components/common/AccountAvatar.d.ts
3707
3798
  type AccountAvatarProps = {
@@ -3711,7 +3802,7 @@ type AccountAvatarProps = {
3711
3802
  declare const AccountAvatar: ({
3712
3803
  wallet,
3713
3804
  props
3714
- }: AccountAvatarProps) => react_jsx_runtime3.JSX.Element;
3805
+ }: AccountAvatarProps) => react_jsx_runtime1.JSX.Element;
3715
3806
  //#endregion
3716
3807
  //#region src/components/common/TransactionButtonAndStatus.d.ts
3717
3808
  type TransactionButtonAndStatusProps = {
@@ -3753,7 +3844,7 @@ declare const TransactionButtonAndStatus: ({
3753
3844
  isLoadingGasEstimation,
3754
3845
  showGasEstimationError,
3755
3846
  context
3756
- }: TransactionButtonAndStatusProps) => react_jsx_runtime3.JSX.Element;
3847
+ }: TransactionButtonAndStatusProps) => react_jsx_runtime1.JSX.Element;
3757
3848
  //#endregion
3758
3849
  //#region src/components/common/ModalNotificationButton.d.ts
3759
3850
  type NotificationButtonProps = {
@@ -3764,7 +3855,7 @@ declare const ModalNotificationButton: ({
3764
3855
  onClick,
3765
3856
  hasUnreadNotifications,
3766
3857
  ...props
3767
- }: NotificationButtonProps) => react_jsx_runtime3.JSX.Element;
3858
+ }: NotificationButtonProps) => react_jsx_runtime1.JSX.Element;
3768
3859
  //#endregion
3769
3860
  //#region src/components/common/GasFeeSummary.d.ts
3770
3861
  interface GasFeeSummaryProps {
@@ -3800,7 +3891,7 @@ declare const GasFeeTokenSelector: ({
3800
3891
  availableTokens,
3801
3892
  tokenEstimations,
3802
3893
  walletAddress
3803
- }: GasFeeTokenSelectorProps) => react_jsx_runtime3.JSX.Element;
3894
+ }: GasFeeTokenSelectorProps) => react_jsx_runtime1.JSX.Element;
3804
3895
  //#endregion
3805
3896
  //#region src/components/LoginLoadingModal/LoginLoadingModal.d.ts
3806
3897
  type LoginLoadingModalProps = {
@@ -3818,7 +3909,7 @@ declare const LoginLoadingModal: ({
3818
3909
  title,
3819
3910
  loadingText,
3820
3911
  onTryAgain
3821
- }: LoginLoadingModalProps) => react_jsx_runtime3.JSX.Element;
3912
+ }: LoginLoadingModalProps) => react_jsx_runtime1.JSX.Element;
3822
3913
  //#endregion
3823
3914
  //#region src/components/EcosystemModal/EcosystemModal.d.ts
3824
3915
  type Props$3 = {
@@ -3832,7 +3923,7 @@ declare const EcosystemModal: ({
3832
3923
  onClose,
3833
3924
  appsInfo,
3834
3925
  isLoading
3835
- }: Props$3) => react_jsx_runtime3.JSX.Element;
3926
+ }: Props$3) => react_jsx_runtime1.JSX.Element;
3836
3927
  //#endregion
3837
3928
  //#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
3838
3929
  type SuccessfulOperationContentProps = {
@@ -3862,7 +3953,7 @@ declare const UpgradeSmartAccountModal: ({
3862
3953
  isOpen,
3863
3954
  onClose,
3864
3955
  style
3865
- }: Props$2) => react_jsx_runtime3.JSX.Element;
3956
+ }: Props$2) => react_jsx_runtime1.JSX.Element;
3866
3957
  //#endregion
3867
3958
  //#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
3868
3959
  type Props$1 = {
@@ -3877,7 +3968,7 @@ declare const LegalDocumentsModal: ({
3877
3968
  onAgree,
3878
3969
  handleLogout,
3879
3970
  onlyOptionalDocuments
3880
- }: Props$1) => react_jsx_runtime3.JSX.Element;
3971
+ }: Props$1) => react_jsx_runtime1.JSX.Element;
3881
3972
  //#endregion
3882
3973
  //#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
3883
3974
  type Props = {
@@ -3889,7 +3980,7 @@ declare const LegalDocumentItem: ({
3889
3980
  document,
3890
3981
  register,
3891
3982
  isText
3892
- }: Props) => react_jsx_runtime3.JSX.Element;
3983
+ }: Props) => react_jsx_runtime1.JSX.Element;
3893
3984
  //#endregion
3894
3985
  //#region src/providers/ModalProvider.d.ts
3895
3986
  type AccountModalOptions = {
@@ -3920,7 +4011,7 @@ declare const ModalProvider: ({
3920
4011
  children
3921
4012
  }: {
3922
4013
  children: ReactNode;
3923
- }) => react_jsx_runtime3.JSX.Element;
4014
+ }) => react_jsx_runtime1.JSX.Element;
3924
4015
  //#endregion
3925
4016
  //#region src/config/index.d.ts
3926
4017
  type AppConfig = {
@@ -3965,5 +4056,5 @@ type AppConfig = {
3965
4056
  };
3966
4057
  declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
3967
4058
  //#endregion
3968
- export { AssetsContentProps as $, getCustomTokenInfoQueryKey as $a, useChooseNameModal as $i, useGetNodeUrl as $n, EmbeddedWalletContent as $o, getPicassoImage as $r, formatGasCost as $s, getSmartAccount as $t, ModalBackButton as A, getXAppMetadata as Aa, useAccountModalOptions as Ai, delegateAuthorized as An, getAvatarQueryKey as Ao, validate as Ar, VechainKitThemeProvider as As, useBuildTransaction as At, AccountModal as B, XApp as Ba, FAQModalProvider as Bi, LocalStorageKey as Bn, useClaimVetDomain as Bo, xNodeToGMstartingLevel as Br, useVeChainKitConfig as Bs, getChainId as Bt, AddressDisplayCard as C, useIpfsImageList as Ca, VePassportUserStatus as Cc, useLoginWithVeChain as Ci, useAccountBalance as Cn, getResolverAddressQueryKey as Co, isValidUrl as Cr, ConnectionButton as Cs, useMfaEnrollment as Ct, StickyHeaderContainer as D, getXAppsSharesQueryKey as Da, useSignMessage as Di, useGasEstimation as Dn, getTextRecords as Do, isValid as Dr, LegalDocumentsProvider as Ds, txReceiptQueryKey as Dt, StickyFooterContainer as E, useIpfsMetadata as Ea, useSignTypedData as Ei, UseGasEstimationParams as En, useUpdateTextRecord as Eo, isInvalid as Er, ConnectModalContentsTypes as Es, useThor$1 as Et, QuickActionsSection as F, getRoundXAppsQueryKey as Fa, useLoginModalContent as Fi, useGenericDelegator as Fn, getDomainsOfAddressQueryKey as Fo, NodeStrengthLevelToImage as Fr, LegalDocument as Fs, UseSendTransactionReturnValue as Ft, LanguageSettingsContent as G, useGetVot3Balance as Ga, useExploreEcosystemModal as Gi, useBuildClauses as Gn, useVechainDomain as Go, validateIpfsUri as Gr, CostLevel as Gs, useUpgradeSmartAccount as Gt, TermsAndPrivacyContent as H, getIsPersonQueryKey as Ha, NotificationsModalProvider as Hi, BuildClausesParams as Hn, getEnsRecordExistsQueryKey as Ho, resolveMediaTypeFromMimeType as Hr, LegalDocumentAgreement as Hs, useGetChainId as Ht, BalanceSection as I, useRoundXApps as Ia, ReceiveModalProvider as Ii, useCrossAppConnectionCache as In, useGetDomainsOfAddress as Io, XNodeStrengthLevelToName as Ir, LegalDocumentOptions as Is, useSendTransaction as It, ChangeCurrencyContentProps as J, getTokenUsdPrice as Ja, SwapTokenModalProvider as Ji, decodeEventLog$1 as Jn, fetchPrivyAppInfo as Jo, isValidAddress as Jr, EstimationResponse as Js, useUpgradeRequiredForAccount as Jt, GeneralSettingsContent as K, PRICE_FEED_IDS as Ka, AccessAndSecurityModalProvider as Ki, GetEventsKeyParams as Kn, fetchPrivyStatus as Ko, compareAddresses as Kr, DepositAccount as Ks, getUpgradeRequiredForAccount as Kt, AccountSelector as L, useRefreshMetadata as La, useReceiveModal as Li, EcosystemShortcut as Ln, getIsDomainProtectedQueryKey as Lo, allNodeStrengthLevelToName as Lr, VeChainKitContext as Ls, GetEventsProps as Lt, DomainRequiredAlert as M, useWalletMetadata as Ma, useProfileModal as Mi, estimateGas as Mn, Domain as Mo, TIME as Mr, PrivyWalletProvider as Ms, useTransferVET as Mt, ExchangeWarningAlert as N, UseWalletReturnType as Na, UpgradeSmartAccountModalProvider as Ni, getDepositAccount as Nn, DomainsResponse as No, EconomicNodeStrengthLevelToName as Nr, PrivyWalletProviderContextType as Ns, buildERC20Clauses as Nt, VersionFooter as O, useXAppsShares as Oa, useNotificationAlerts as Oi, useGasTokenSelection as On, getTextRecordsQueryKey as Oo, normalize as Or, useLegalDocuments as Os, useTxReceipt as Ot, FeatureAnnouncementCard as P, useWallet$1 as Pa, useUpgradeSmartAccountModal as Pi, signVip191Transaction as Pn, getDomainsOfAddress as Po, MinXNodeLevel as Pr, usePrivyWalletProvider as Ps, useTransferERC20 as Pt, AssetsContent as Q, useGetErc20Balance as Qa, ChooseNameModalProvider as Qi, useIsPWA as Qn, DisconnectConfirmContentProps as Qo, formatTokenBalance as Qr, calculateTotalCost as Qs, SmartAccountReturnType as Qt, ActionButton as R, useRefreshBalances as Ra, AccountCustomizationModalProvider as Ri, useEcosystemShortcuts as Rn, useIsDomainProtected as Ro, buildQueryString as Rr, VeChainKitProvider as Rs, getAllEventLogs as Rt, ModalFAQButton as S, useIpfsImage as Sa, TransactionStatusErrorType as Sc, useAppHubApps as Si, getAccountBalanceQueryKey as Sn, useGetAvatarOfAddress as So, executeMultipleClausesCall as Sr, EmailLoginButton as Ss, useDAppKitWalletModal as St, BaseModal as T, getIpfsMetadataQueryKey as Ta, useLoginWithPasskey$1 as Ti, useEstimateAllTokens as Tn, buildClauses as To, compare as Tr, ConnectModal as Ts, useSetWalletRecovery as Tt, GasTokenSettingsContent as U, useIsPerson as Ua, useNotificationsModal as Ui, buildBatchAuthorizationTypedData as Un, useEnsRecordExists as Uo, toIPFSURL as Ur, LegalDocumentSource as Us, currentBlockQueryKey as Ut, AccountModalContentTypes as V, useMostVotedAppsInRound as Va, useFAQModal as Vi, useLocalStorage as Vn, useClaimVeWorldSubdomain as Vo, convertUriToUrl as Vr, EnrichedLegalDocument as Vs, getChainIdQueryKey as Vt, AppearanceSettingsContent as W, getVot3BalanceQueryKey as Wa, ExploreEcosystemModalProvider as Wi, buildSingleAuthorizationTypedData as Wn, getVechainDomainQueryKey as Wo, uploadBlobToIPFS as Wr, LegalDocumentType as Ws, useCurrentBlock as Wt, ManageCustomTokenContent as X, useGetTokenUsdPrice as Xa, SendTokenModalProvider as Xi, useEvents as Xn, useFetchAppInfo as Xo, regexPattern as Xr, TransactionCost as Xs, getUpgradeRequiredQueryKey as Xt, BridgeContent as Y, getTokenUsdPriceQueryKey as Ya, useSwapTokenModal as Yi, getEventsKey as Yn, getPrivyAppInfoQueryKey as Yo, leftPadWithZeros as Yr, Rate as Ys, getUpgradeRequired as Yt, ManageCustomTokenContentProps as Z, getErc20BalanceQueryKey as Za, useSendTokenModal as Zi, useScrollToTop as Zn, DisconnectConfirmContent as Zo, randomTransactionUser as Zr, VthoPerGasAtSpeed as Zs, useUpgradeRequired as Zt, ModalNotificationButton as _, useIpfsMetadatas as _a, PrivyAppInfo as _c, getGenericDelegatorUrl as _i, useCurrentAccountImplementationVersion as _n, useUnsetDomain as _o, MultipleClausesCallParameters as _r, PasskeyLoginButton as _s, SelectTokenContent as _t, useModal as a, useTransactionModal as aa, TransactionSpeed as ac, DEFAULT_PRIVY_ECOSYSTEM_APPS as ai, getIsDeployedQueryKey as an, getB3trBalanceQueryKey as ao, useMultipleClausesCall as ar, TransactionModalContent as as, CustomizationSummaryContentProps as at, AccountAvatar as b, getIpfsImage as ba, TokenBalance as bc, fetchAppHubApps as bi, useAccountImplementationAddress as bn, useGetAvatarLegacy as bo, buildCallClauses as br, EcosystemButton as bs, ThorClient$1 as bt, LegalDocumentsModal as c, ConnectModalProvider as ca, CURRENCY as cc, SUPPORTED_GAS_TOKENS as ci, getHasV1SmartAccountQueryKey as cn, getCurrentAllocationsRoundIdQueryKey as co, getLocalStorageItem as cr, TransactionModalProps as cs, FAQContent as ct, UpgradeSmartAccountModalContentsTypes as d, useSwapTransaction as da, CrossAppConnectionCache as dc, TogglePassportCheck as di, useGetAccountVersion as dn, TokenWithValue as do, isBrowser as dr, WalletButtonProps as ds, ChooseNameSearchContent as dt, WalletModalProvider as ea, GasTokenEstimate as ec, humanAddress as ei, getSmartAccountQueryKey as en, getTokenInfo$1 as eo, useFeatureAnnouncement as er, SettingsContent as es, UpgradeSmartAccountContent as et, UpgradeSmartAccountModalStyle as f, useSingleImageUpload as fa, ENSRecords as fc, VECHAIN_KIT_COOKIES_CONFIG as fi, getAccountAddress as fn, useTokensWithValues as fo, isOnline as fr, WalletDisplayVariant as fs, ChooseNameSearchContentProps as ft, GasFeeSummary as g, useUploadImages as ga, NFTMediaType as gc, getENV as gi, getCurrentAccountImplementationVersionQueryKey as gn, useTokenBalances as go, setLocalStorageItem as gr, DappKitButton as gs, ReceiveTokenContent as gt, GasFeeTokenSelector as h, imageCompressionOptions as ha, ExecuteWithAuthorizationSignData as hc, VECHAIN_PRIVY_APP_ID as hi, getCurrentAccountImplementationVersion as hn, WalletTokenBalance as ho, safeWindowOpen as hr, VeChainWithPrivyLoginButton as hs, SwapTokenContent as ht, ModalProvider as i, TransactionModalProvider as ia, GasTokenType as ic, DEFAULT_GAS_TOKEN_PREFERENCES as ii, getIsDeployed as in, useGetCustomTokenBalances as io, useCallClause as ir, TransactionToast as is, CustomizationSummaryContent as it, CrossAppConnectionSecurityCard as j, useXAppMetadata as ja, ProfileModalProvider as ji, estimateAndBuildTxBody as jn, useGetAvatar as jo, isRejectionError as jr, useVechainKitThemeConfig as js, buildVETClauses as jt, AddressDisplay as k, XAppMetadata as ka, useNotifications as ki, decodeRawTx as kn, useGetTextRecords as ko, removePrefix as kr, ColorModeSync as ks, BuildTransactionProps as kt, LegalDocumentsModalContentsTypes as l, useConnectModal as la, CURRENCY_SYMBOLS as lc, TOKEN_LOGOS as li, useHasV1SmartAccount as ln, useCurrentAllocationsRoundId as lo, getWindowOrigin as lr, SocialIcons as ls, ChooseNameSummaryContent as lt, LoginLoadingModal as m, compressImages as ma, ExecuteBatchWithAuthorizationSignData as mc, VECHAIN_KIT_TERMS_CONFIG as mi, useGetAccountAddress as mn, useTokenPrices as mo, safeQuerySelector as mr, LoginWithGithubButton as ms, ChooseNameContentProps as mt, getConfig as n, TransactionToastProvider as na, GasTokenPreferences as nc, humanNumber as ni, useRefreshSmartAccountQueries as nn, TokenWithBalance as no, getCallClauseQueryKey as nr, AccessAndSecurityContent as ns, ProfileContent as nt, DAppKitWalletButton as o, AccountModalProvider as oa, ENS_TEXT_RECORDS as oc, ENV as oi, useIsSmartAccountDeployed as on, useGetB3trBalance as oo, copyToClipboard as or, ShareButtons as os, AccountCustomizationContentProps as ot, EcosystemModal as p, UploadedImage as pa, EnhancedClause as pc, VECHAIN_KIT_STORAGE_KEYS as pi, getAccountAddressQueryKey as pn, ExchangeRates as po, removeLocalStorageItem as pr, ConnectPopover as ps, ChooseNameContent as pt, ChangeCurrencyContent as q, SupportedToken as qa, useAccessAndSecurityModal as qi, UseEventsParams as qn, useFetchPrivyStatus as qo, compareListOfAddresses as qr, EstimatedGas as qs, getUpgradeRequiredForAccountQueryKey as qt, AccountModalOptions as r, useTransactionToast as ra, GasTokenSelection as rc, isZero as ri, useRefreshFactoryQueries as rn, getCustomTokenBalanceQueryKey as ro, getCallClauseQueryKeyWithArgs as rr, AccountMainContent as rs, ProfileContentProps as rt, LegalDocumentItem as s, useAccountModal as sa, TextRecords as sc, PrivyEcosystemApp as si, getHasV1SmartAccount as sn, useCustomTokens as so, getDocumentTitle as sr, TransactionModal as ss, CustomizationContent as st, AppConfig as t, useWalletModal as ta, GasTokenInfo as tc, humanDomain as ti, useSmartAccount as tn, useGetCustomTokenInfo as to, useCurrency as tr, SettingsContentProps as ts, UpgradeSmartAccountContentProps as tt, UpgradeSmartAccountModal as u, useSwapQuotes as ua, ConnectionSource as uc, TOKEN_LOGO_COMPONENTS as ui, getAccountVersionQueryKey as un, useTotalBalance as uo, hasNavigator as ur, WalletButton as us, ChooseNameSummaryContentProps as ut, TransactionButtonAndStatus as v, IpfsImage as va, PrivyLoginMethod as vc, notFoundImage as vi, getAccountImplementationAddress as vn, getAvatarLegacy as vo, MultipleClausesCallReturnType as vr, LoginWithGoogleButton as vs, SendTokenSummaryContent as vt, AssetButton as w, getIpfsMetadata as wa, Wallet as wc, useLoginWithOAuth$1 as wi, UseEstimateAllTokensParams as wn, useGetResolverAddress as wo, addPrefix as wr, MainContent as ws, usePrivy$1 as wt, ScrollToTopWrapper as x, getIpfsImageQueryKey as xa, TransactionStatus as xc, getAppHubAppsQueryKey as xi, getAccountBalance as xn, getAvatarOfAddressQueryKey as xo, executeCallClause as xr, VeChainLoginButton as xs, useDAppKitWallet as xt, TransactionButtonAndStatusProps as y, MAX_IMAGE_SIZE as ya, SmartAccount as yc, AppHubApp as yi, getAccountImplementationAddressQueryKey as yn, getAvatarLegacyQueryKey as yo, ViewFunctionResult as yr, PrivyButton as ys, SendTokenContent as yt, AccountDetailsButton as z, MostVotedAppsInRoundReturnType as za, useAccountCustomizationModal as zi, useSyncableLocalStorage as zn, buildVetDomainClauses as zo, gmNfts as zr, VechainKitProviderProps as zs, getEventLogs as zt };
3969
- //# sourceMappingURL=index-hAce7WHc.d.mts.map
4059
+ export { AssetsContentProps as $, getErc20BalanceQueryKey as $a, useSendTokenModal as $i, useGetNodeUrl as $n, DisconnectConfirmContent as $o, randomTransactionUser as $r, TransactionCost as $s, getSmartAccount as $t, ModalBackButton as A, useXAppsShares as Aa, useNotificationAlerts as Ai, delegateAuthorized as An, getTextRecordsQueryKey as Ao, normalize as Ar, useLegalDocuments as As, useBuildTransaction as At, AccountModal as B, useRefreshBalances as Ba, AccountCustomizationModalProvider as Bi, LocalStorageKey as Bn, useIsDomainProtected as Bo, buildQueryString as Br, VeChainKitContext as Bs, getChainId as Bt, AddressDisplayCard as C, getIpfsImageQueryKey as Ca, TokenBalance as Cc, getAppHubAppsQueryKey as Ci, useAccountBalance as Cn, getAvatarOfAddressQueryKey as Co, executeCallClause as Cr, VeChainLoginButton as Cs, useMfaEnrollment as Ct, StickyHeaderContainer as D, getIpfsMetadataQueryKey as Da, Wallet as Dc, useLoginWithPasskey as Di, useGasEstimation as Dn, buildClauses as Do, compare as Dr, ConnectModal as Ds, txReceiptQueryKey as Dt, StickyFooterContainer as E, getIpfsMetadata as Ea, VePassportUserStatus as Ec, useLoginWithOAuth as Ei, UseGasEstimationParams as En, useGetResolverAddress as Eo, addPrefix as Er, MainContent as Es, useThor as Et, QuickActionsSection as F, UseWalletReturnType as Fa, UpgradeSmartAccountModalProvider as Fi, useGenericDelegator as Fn, DomainsResponse as Fo, EconomicNodeStrengthLevelToName as Fr, PrivyWalletProviderContextType as Fs, UseSendTransactionReturnValue as Ft, LanguageSettingsContent as G, useIsPerson as Ga, useNotificationsModal as Gi, useBuildClauses as Gn, useEnsRecordExists as Go, toIPFSURL as Gr, LegalDocumentAgreement as Gs, useUpgradeSmartAccount as Gt, TermsAndPrivacyContent as H, XApp as Ha, FAQModalProvider as Hi, BuildClausesParams as Hn, useClaimVetDomain as Ho, xNodeToGMstartingLevel as Hr, VechainKitProviderProps as Hs, useGetChainId as Ht, BalanceSection as I, useWallet as Ia, useUpgradeSmartAccountModal as Ii, useCrossAppConnectionCache as In, getDomainsOfAddress as Io, MinXNodeLevel as Ir, usePrivyWalletProvider as Is, useSendTransaction as It, ChangeCurrencyContentProps as J, PRICE_FEED_IDS as Ja, AccessAndSecurityModalProvider as Ji, decodeEventLog$1 as Jn, fetchPrivyStatus as Jo, compareAddresses as Jr, CostLevel as Js, useUpgradeRequiredForAccount as Jt, GeneralSettingsContent as K, getVot3BalanceQueryKey as Ka, ExploreEcosystemModalProvider as Ki, GetEventsKeyParams as Kn, getVechainDomainQueryKey as Ko, uploadBlobToIPFS as Kr, LegalDocumentSource as Ks, getUpgradeRequiredForAccount as Kt, AccountSelector as L, getRoundXAppsQueryKey as La, useLoginModalContent as Li, EcosystemShortcut as Ln, getDomainsOfAddressQueryKey as Lo, NodeStrengthLevelToImage as Lr, LegalDocument as Ls, GetEventsProps as Lt, DomainRequiredAlert as M, getXAppMetadata as Ma, useAccountModalOptions as Mi, estimateGas as Mn, getAvatarQueryKey as Mo, validate as Mr, VechainKitThemeProvider as Ms, useTransferVET as Mt, ExchangeWarningAlert as N, useXAppMetadata as Na, ProfileModalProvider as Ni, getDepositAccount as Nn, useGetAvatar as No, isRejectionError as Nr, useVechainKitThemeConfig as Ns, buildERC20Clauses as Nt, VersionFooter as O, useIpfsMetadata as Oa, useSignTypedData as Oi, useGasTokenSelection as On, useUpdateTextRecord as Oo, isInvalid as Or, ConnectModalContentsTypes as Os, useTxReceipt as Ot, FeatureAnnouncementCard as P, useWalletMetadata as Pa, useProfileModal as Pi, signVip191Transaction as Pn, Domain as Po, TIME as Pr, PrivyWalletProvider as Ps, useTransferERC20 as Pt, AssetsContent as Q, useGetTokenUsdPrice as Qa, SendTokenModalProvider as Qi, useIsPWA as Qn, useFetchAppInfo as Qo, regexPattern as Qr, Rate as Qs, SmartAccountReturnType as Qt, ActionButton as R, useRoundXApps as Ra, ReceiveModalProvider as Ri, useEcosystemShortcuts as Rn, useGetDomainsOfAddress as Ro, XNodeStrengthLevelToName as Rr, LegalDocumentOptions as Rs, getAllEventLogs as Rt, ModalFAQButton as S, getIpfsImage as Sa, SmartAccount as Sc, fetchAppHubApps as Si, getAccountBalanceQueryKey as Sn, useGetAvatarLegacy as So, buildCallClauses as Sr, EcosystemButton as Ss, useDAppKitWalletModal as St, BaseModal as T, useIpfsImageList as Ta, TransactionStatusErrorType as Tc, useLoginWithVeChain as Ti, useEstimateAllTokens as Tn, getResolverAddressQueryKey as To, isValidUrl as Tr, ConnectionButton as Ts, useSetWalletRecovery as Tt, GasTokenSettingsContent as U, useMostVotedAppsInRound as Ua, useFAQModal as Ui, buildBatchAuthorizationTypedData as Un, useClaimVeWorldSubdomain as Uo, convertUriToUrl as Ur, useVeChainKitConfig as Us, currentBlockQueryKey as Ut, AccountModalContentTypes as V, MostVotedAppsInRoundReturnType as Va, useAccountCustomizationModal as Vi, useLocalStorage as Vn, buildVetDomainClauses as Vo, gmNfts as Vr, VeChainKitProvider as Vs, getChainIdQueryKey as Vt, AppearanceSettingsContent as W, getIsPersonQueryKey as Wa, NotificationsModalProvider as Wi, buildSingleAuthorizationTypedData as Wn, getEnsRecordExistsQueryKey as Wo, resolveMediaTypeFromMimeType as Wr, EnrichedLegalDocument as Ws, useCurrentBlock as Wt, ManageCustomTokenContent as X, getTokenUsdPrice as Xa, SwapTokenModalProvider as Xi, useEvents as Xn, fetchPrivyAppInfo as Xo, isValidAddress as Xr, EstimatedGas as Xs, getUpgradeRequiredQueryKey as Xt, BridgeContent as Y, SupportedToken as Ya, useAccessAndSecurityModal as Yi, getEventsKey as Yn, useFetchPrivyStatus as Yo, compareListOfAddresses as Yr, DepositAccount as Ys, getUpgradeRequired as Yt, ManageCustomTokenContentProps as Z, getTokenUsdPriceQueryKey as Za, useSwapTokenModal as Zi, useScrollToTop as Zn, getPrivyAppInfoQueryKey as Zo, leftPadWithZeros as Zr, EstimationResponse as Zs, useUpgradeRequired as Zt, ModalNotificationButton as _, imageCompressionOptions as _a, ExecuteBatchWithAuthorizationSignData as _c, VECHAIN_PRIVY_APP_ID as _i, useCurrentAccountImplementationVersion as _n, WalletTokenBalance as _o, safeWindowOpen as _r, VeChainWithPrivyLoginButton as _s, SelectTokenContent as _t, useModal as a, useTransactionToast as aa, GasTokenPreferences as ac, isZero as ai, getIsDeployedQueryKey as an, getCustomTokenBalanceQueryKey as ao, getCallClauseQueryKeyWithArgs as ar, AccountMainContent as as, CustomizationSummaryContentProps as at, AccountAvatar as b, IpfsImage as ba, PrivyAppInfo as bc, notFoundImage as bi, useAccountImplementationAddress as bn, getAvatarLegacy as bo, MultipleClausesCallReturnType as br, LoginWithGoogleButton as bs, ThorClient$1 as bt, LegalDocumentsModal as c, AccountModalProvider as ca, TransactionSpeed as cc, ENV as ci, getHasV1SmartAccountQueryKey as cn, useGetB3trBalance as co, copyToClipboard as cr, ShareButtons as cs, FAQContent as ct, UpgradeSmartAccountModalContentsTypes as d, useConnectModal as da, CURRENCY as dc, TOKEN_LOGOS as di, useGetAccountVersion as dn, useCurrentAllocationsRoundId as do, getWindowOrigin as dr, SocialIcons as ds, ChooseNameSearchContent as dt, ChooseNameModalProvider as ea, VthoPerGasAtSpeed as ec, formatTokenBalance as ei, getSmartAccountQueryKey as en, useGetErc20Balance as eo, useFeatureAnnouncement as er, DisconnectConfirmContentProps as es, UpgradeSmartAccountContent as et, UpgradeSmartAccountModalStyle as f, useSwapQuotes as fa, CURRENCY_SYMBOLS as fc, TOKEN_LOGO_COMPONENTS as fi, getAccountAddress as fn, useTotalBalance as fo, hasNavigator as fr, WalletButton as fs, ChooseNameSearchContentProps as ft, GasFeeSummary as g, compressImages as ga, EnhancedClause as gc, VECHAIN_KIT_TERMS_CONFIG as gi, getCurrentAccountImplementationVersionQueryKey as gn, useTokenPrices as go, safeQuerySelector as gr, LoginWithGithubButton as gs, ReceiveTokenContent as gt, GasFeeTokenSelector as h, UploadedImage as ha, ENSRecords as hc, VECHAIN_KIT_STORAGE_KEYS as hi, getCurrentAccountImplementationVersion as hn, ExchangeRates as ho, removeLocalStorageItem as hr, ConnectPopover as hs, SwapTokenContent as ht, ModalProvider as i, TransactionToastProvider as ia, GasTokenInfo as ic, humanNumber as ii, getIsDeployed as in, TokenWithBalance as io, getCallClauseQueryKey as ir, AccessAndSecurityContent as is, CustomizationSummaryContent as it, CrossAppConnectionSecurityCard as j, XAppMetadata as ja, useNotifications as ji, estimateAndBuildTxBody as jn, useGetTextRecords as jo, removePrefix as jr, ColorModeSync as js, buildVETClauses as jt, AddressDisplay as k, getXAppsSharesQueryKey as ka, useSignMessage as ki, decodeRawTx as kn, getTextRecords as ko, isValid as kr, LegalDocumentsProvider as ks, BuildTransactionProps as kt, LegalDocumentsModalContentsTypes as l, useAccountModal as la, ENS_TEXT_RECORDS as lc, PrivyEcosystemApp as li, useHasV1SmartAccount as ln, useCustomTokens as lo, getDocumentTitle as lr, TransactionModal as ls, ChooseNameSummaryContent as lt, LoginLoadingModal as m, useSingleImageUpload as ma, CrossAppConnectionCache as mc, VECHAIN_KIT_COOKIES_CONFIG as mi, useGetAccountAddress as mn, useTokensWithValues as mo, isOnline as mr, WalletDisplayVariant as ms, ChooseNameContentProps as mt, getConfig as n, WalletModalProvider as na, formatGasCost as nc, humanAddress as ni, useRefreshSmartAccountQueries as nn, getTokenInfo as no, useCurrentLanguage as nr, SettingsContent as ns, ProfileContent as nt, DAppKitWalletButton as o, TransactionModalProvider as oa, GasTokenSelection as oc, DEFAULT_GAS_TOKEN_PREFERENCES as oi, useIsSmartAccountDeployed as on, useGetCustomTokenBalances as oo, useCallClause as or, TransactionToast as os, AccountCustomizationContentProps as ot, EcosystemModal as p, useSwapTransaction as pa, ConnectionSource as pc, TogglePassportCheck as pi, getAccountAddressQueryKey as pn, TokenWithValue as po, isBrowser as pr, WalletButtonProps as ps, ChooseNameContent as pt, ChangeCurrencyContent as q, useGetVot3Balance as qa, useExploreEcosystemModal as qi, UseEventsParams as qn, useVechainDomain as qo, validateIpfsUri as qr, LegalDocumentType as qs, getUpgradeRequiredForAccountQueryKey as qt, AccountModalOptions as r, useWalletModal as ra, GasTokenEstimate as rc, humanDomain as ri, useRefreshFactoryQueries as rn, useGetCustomTokenInfo as ro, useCurrency as rr, SettingsContentProps as rs, ProfileContentProps as rt, LegalDocumentItem as s, useTransactionModal as sa, GasTokenType as sc, DEFAULT_PRIVY_ECOSYSTEM_APPS as si, getHasV1SmartAccount as sn, getB3trBalanceQueryKey as so, useMultipleClausesCall as sr, TransactionModalContent as ss, CustomizationContent as st, AppConfig as t, useChooseNameModal as ta, calculateTotalCost as tc, getPicassoImage as ti, useSmartAccount as tn, getCustomTokenInfoQueryKey as to, useCurrentCurrency as tr, EmbeddedWalletContent as ts, UpgradeSmartAccountContentProps as tt, UpgradeSmartAccountModal as u, ConnectModalProvider as ua, TextRecords as uc, SUPPORTED_GAS_TOKENS as ui, getAccountVersionQueryKey as un, getCurrentAllocationsRoundIdQueryKey as uo, getLocalStorageItem as ur, TransactionModalProps as us, ChooseNameSummaryContentProps as ut, TransactionButtonAndStatus as v, useUploadImages as va, ExecuteWithAuthorizationSignData as vc, getENV as vi, getAccountImplementationAddress as vn, useTokenBalances as vo, setLocalStorageItem as vr, DappKitButton as vs, SendTokenSummaryContent as vt, AssetButton as w, useIpfsImage as wa, TransactionStatus as wc, useAppHubApps as wi, UseEstimateAllTokensParams as wn, useGetAvatarOfAddress as wo, executeMultipleClausesCall as wr, EmailLoginButton as ws, usePrivy as wt, ScrollToTopWrapper as x, MAX_IMAGE_SIZE as xa, PrivyLoginMethod as xc, AppHubApp as xi, getAccountBalance as xn, getAvatarLegacyQueryKey as xo, ViewFunctionResult as xr, PrivyButton as xs, useDAppKitWallet as xt, TransactionButtonAndStatusProps as y, useIpfsMetadatas as ya, NFTMediaType as yc, getGenericDelegatorUrl as yi, getAccountImplementationAddressQueryKey as yn, useUnsetDomain as yo, MultipleClausesCallParameters as yr, PasskeyLoginButton as ys, SendTokenContent as yt, AccountDetailsButton as z, useRefreshMetadata as za, useReceiveModal as zi, useSyncableLocalStorage as zn, getIsDomainProtectedQueryKey as zo, allNodeStrengthLevelToName as zr, VeChainKitConfig as zs, getEventLogs as zt };
4060
+ //# sourceMappingURL=index-BqitwzCD.d.cts.map