@vechain/vechain-kit 2.0.4 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  import { ButtonProps, IconButtonProps, ImageProps, PropsOf, StackProps, ThemeTypings, VStack } from "@chakra-ui/react";
2
2
  import * as react0 from "react";
3
3
  import React$1, { ElementType, ReactElement, ReactNode } from "react";
4
- import * as react_jsx_runtime1 from "react/jsx-runtime";
4
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
5
5
  import * as _vechain_sdk_network0 from "@vechain/sdk-network";
6
6
  import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
7
7
  import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy, useSetWalletRecovery } from "@privy-io/react-auth";
@@ -11,7 +11,7 @@ import { LogLevel, WalletSource } from "@vechain/dapp-kit";
11
11
  import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
12
12
  import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
13
13
  import { IconType } from "react-icons";
14
- import * as _tanstack_react_query17 from "@tanstack/react-query";
14
+ import * as _tanstack_react_query8 from "@tanstack/react-query";
15
15
  import { UseQueryOptions } from "@tanstack/react-query";
16
16
  import { z } from "zod";
17
17
  import { CustomTokenInfo } from "@vechain/contract-getters";
@@ -53,7 +53,7 @@ declare const genesises: {
53
53
  readonly main: CompressedBlockDetail;
54
54
  readonly test: CompressedBlockDetail;
55
55
  readonly solo: CompressedBlockDetail;
56
- which(gid: string): "test" | "main" | "solo" | undefined;
56
+ which(gid: string): "main" | "test" | "solo" | undefined;
57
57
  };
58
58
  //#endregion
59
59
  //#region src/types/types.d.ts
@@ -343,22 +343,30 @@ interface ThemeTokens {
343
343
  color: string;
344
344
  border: string;
345
345
  hoverBg?: string;
346
+ backdropFilter?: string;
347
+ rounded?: string | number;
346
348
  };
347
349
  primaryButton: {
348
350
  bg: string;
349
351
  color: string;
350
352
  border: string;
351
353
  hoverBg?: string;
354
+ backdropFilter?: string;
355
+ rounded?: string | number;
352
356
  };
353
357
  tertiaryButton: {
354
358
  bg: string;
355
359
  color: string;
356
360
  border: string;
361
+ backdropFilter?: string;
362
+ rounded?: string | number;
357
363
  };
358
364
  loginButton: {
359
365
  bg: string;
360
366
  color: string;
361
367
  border: string;
368
+ backdropFilter?: string;
369
+ rounded?: string | number;
362
370
  };
363
371
  };
364
372
  effects: {
@@ -394,8 +402,12 @@ interface ThemeTokens {
394
402
  large: string;
395
403
  xl: string;
396
404
  full: string;
405
+ modal: string;
397
406
  };
398
407
  };
408
+ modal: {
409
+ rounded?: string | number;
410
+ };
399
411
  }
400
412
  /**
401
413
  * Developer-facing theme configuration
@@ -411,6 +423,9 @@ interface VechainKitThemeConfig {
411
423
  modal?: {
412
424
  backgroundColor?: string;
413
425
  border?: string;
426
+ backdropFilter?: string;
427
+ borderRadius?: string;
428
+ rounded?: string | number;
414
429
  };
415
430
  buttons?: {
416
431
  secondaryButton?: {
@@ -418,22 +433,30 @@ interface VechainKitThemeConfig {
418
433
  color?: string;
419
434
  border?: string;
420
435
  hoverBg?: string;
436
+ backdropFilter?: string;
437
+ rounded?: string | number;
421
438
  };
422
439
  primaryButton?: {
423
440
  bg?: string;
424
441
  color?: string;
425
442
  border?: string;
426
443
  hoverBg?: string;
444
+ backdropFilter?: string;
445
+ rounded?: string | number;
427
446
  };
428
447
  tertiaryButton?: {
429
448
  bg?: string;
430
449
  color?: string;
431
450
  border?: string;
451
+ backdropFilter?: string;
452
+ rounded?: string | number;
432
453
  };
433
454
  loginButton?: {
434
455
  bg?: string;
435
456
  color?: string;
436
457
  border?: string;
458
+ backdropFilter?: string;
459
+ rounded?: string | number;
437
460
  };
438
461
  };
439
462
  fonts?: {
@@ -541,7 +564,12 @@ type VechainKitProviderProps = {
541
564
  legalDocuments?: LegalDocumentOptions;
542
565
  defaultCurrency?: CURRENCY;
543
566
  theme?: VechainKitThemeConfig;
567
+ onLanguageChange?: (language: string) => void;
568
+ onCurrencyChange?: (currency: CURRENCY) => void;
544
569
  };
570
+ /**
571
+ * Configuration object returned by useVeChainKitConfig hook
572
+ */
545
573
  type VeChainKitConfig = {
546
574
  privy?: VechainKitProviderProps['privy'];
547
575
  privyEcosystemAppIDS: string[];
@@ -551,7 +579,6 @@ type VeChainKitConfig = {
551
579
  loginMethods?: VechainKitProviderProps['loginMethods'];
552
580
  darkMode: boolean;
553
581
  i18n?: VechainKitProviderProps['i18n'];
554
- language?: VechainKitProviderProps['language'];
555
582
  network: {
556
583
  type: NETWORK_TYPE;
557
584
  nodeUrl: string;
@@ -561,23 +588,42 @@ type VeChainKitConfig = {
561
588
  options?: CertificateData;
562
589
  };
563
590
  };
591
+ /** Current runtime language value. Reflects the active language in VeChainKit. */
592
+ currentLanguage: string;
564
593
  allowCustomTokens?: boolean;
565
594
  legalDocuments?: VechainKitProviderProps['legalDocuments'];
566
- defaultCurrency?: VechainKitProviderProps['defaultCurrency'];
595
+ /** Current runtime currency value. Reflects the active currency in VeChainKit. */
596
+ currentCurrency: CURRENCY;
567
597
  theme?: VechainKitThemeConfig;
598
+ /** Function to change the language from the host app. Changes will sync to VeChainKit. */
599
+ setLanguage: (language: string) => void;
600
+ /** Function to change the currency from the host app. Changes will sync to VeChainKit. */
601
+ setCurrency: (currency: CURRENCY) => void;
568
602
  };
569
603
  /**
570
604
  * Context to store the Privy and DAppKit configs so that they can be used by the hooks/components
571
605
  */
572
606
  declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
573
607
  /**
574
- * Hook to get the Privy and DAppKit configs
608
+ * Hook to get the VeChainKit configuration
609
+ *
610
+ * @returns VeChainKitConfig object containing:
611
+ * - `currentLanguage`: Current runtime language value
612
+ * - `currentCurrency`: Current runtime currency value
613
+ * - `setLanguage`: Function to change language from host app
614
+ * - `setCurrency`: Function to change currency from host app
615
+ * - Other configuration values (network, darkMode, etc.)
616
+ *
617
+ * @example
618
+ * ```tsx
619
+ * const config = useVeChainKitConfig();
620
+ * console.log(config.currentLanguage); // 'fr' (current value)
621
+ * console.log(config.currentCurrency); // 'eur' (current value)
622
+ * config.setLanguage('de'); // Change language
623
+ * ```
575
624
  */
576
625
  declare const useVeChainKitConfig: () => VeChainKitConfig;
577
- /**
578
- * Provider to wrap the application with Privy and DAppKit
579
- */
580
- declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime1.JSX.Element;
626
+ declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime0.JSX.Element;
581
627
  //#endregion
582
628
  //#region src/providers/PrivyWalletProvider.d.ts
583
629
  interface PrivyWalletProviderContextType {
@@ -619,7 +665,7 @@ declare const PrivyWalletProvider: ({
619
665
  delegatorUrl?: string;
620
666
  delegateAllTransactions: boolean;
621
667
  genericDelegator?: boolean;
622
- }) => react_jsx_runtime1.JSX.Element;
668
+ }) => react_jsx_runtime0.JSX.Element;
623
669
  declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
624
670
  //#endregion
625
671
  //#region src/providers/VechainKitThemeProvider.d.ts
@@ -636,12 +682,12 @@ declare const ColorModeSync: ({
636
682
  darkMode
637
683
  }: {
638
684
  darkMode: boolean;
639
- }) => react_jsx_runtime1.JSX.Element;
685
+ }) => react_jsx_runtime0.JSX.Element;
640
686
  declare const VechainKitThemeProvider: ({
641
687
  children,
642
688
  darkMode,
643
689
  theme: customTheme
644
- }: Props$36) => react_jsx_runtime1.JSX.Element;
690
+ }: Props$36) => react_jsx_runtime0.JSX.Element;
645
691
  //#endregion
646
692
  //#region src/providers/LegalDocumentsProvider.d.ts
647
693
  type Props$35 = {
@@ -657,7 +703,7 @@ type LegalDocumentsContextType = {
657
703
  declare const useLegalDocuments: () => LegalDocumentsContextType;
658
704
  declare const LegalDocumentsProvider: ({
659
705
  children
660
- }: Props$35) => react_jsx_runtime1.JSX.Element;
706
+ }: Props$35) => react_jsx_runtime0.JSX.Element;
661
707
  //#endregion
662
708
  //#region src/components/ConnectModal/ConnectModal.d.ts
663
709
  type Props$34 = {
@@ -668,7 +714,7 @@ type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
668
714
  declare const ConnectModal: ({
669
715
  isOpen,
670
716
  onClose
671
- }: Props$34) => react_jsx_runtime1.JSX.Element;
717
+ }: Props$34) => react_jsx_runtime0.JSX.Element;
672
718
  //#endregion
673
719
  //#region src/components/ConnectModal/Contents/MainContent.d.ts
674
720
  type Props$33 = {
@@ -678,7 +724,7 @@ type Props$33 = {
678
724
  declare const MainContent: ({
679
725
  setCurrentContent,
680
726
  onClose
681
- }: Props$33) => react_jsx_runtime1.JSX.Element;
727
+ }: Props$33) => react_jsx_runtime0.JSX.Element;
682
728
  //#endregion
683
729
  //#region src/components/ConnectModal/Components/ConnectionButton.d.ts
684
730
  interface ConnectionButtonProps {
@@ -701,10 +747,10 @@ declare const ConnectionButton: ({
701
747
  style,
702
748
  variant,
703
749
  iconWidth
704
- }: ConnectionButtonProps) => react_jsx_runtime1.JSX.Element | null;
750
+ }: ConnectionButtonProps) => react_jsx_runtime0.JSX.Element | null;
705
751
  //#endregion
706
752
  //#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
707
- declare const EmailLoginButton: () => react_jsx_runtime1.JSX.Element;
753
+ declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
708
754
  //#endregion
709
755
  //#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
710
756
  type Props$32 = {
@@ -714,7 +760,7 @@ type Props$32 = {
714
760
  declare const VeChainLoginButton: ({
715
761
  isDark,
716
762
  gridColumn
717
- }: Props$32) => react_jsx_runtime1.JSX.Element;
763
+ }: Props$32) => react_jsx_runtime0.JSX.Element;
718
764
  //#endregion
719
765
  //#region src/components/ConnectModal/Components/EcosystemButton.d.ts
720
766
  type Props$31 = {
@@ -726,7 +772,7 @@ type Props$31 = {
726
772
  declare const EcosystemButton: ({
727
773
  appsInfo,
728
774
  isLoading
729
- }: Props$31) => react_jsx_runtime1.JSX.Element;
775
+ }: Props$31) => react_jsx_runtime0.JSX.Element;
730
776
  //#endregion
731
777
  //#region src/components/ConnectModal/Components/PrivyButton.d.ts
732
778
  type Props$30 = {
@@ -738,7 +784,7 @@ declare const PrivyButton: ({
738
784
  isDark,
739
785
  onViewMoreLogin,
740
786
  gridColumn
741
- }: Props$30) => react_jsx_runtime1.JSX.Element;
787
+ }: Props$30) => react_jsx_runtime0.JSX.Element;
742
788
  //#endregion
743
789
  //#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
744
790
  type Props$29 = {
@@ -748,7 +794,7 @@ type Props$29 = {
748
794
  declare const LoginWithGoogleButton: ({
749
795
  isDark,
750
796
  gridColumn
751
- }: Props$29) => react_jsx_runtime1.JSX.Element;
797
+ }: Props$29) => react_jsx_runtime0.JSX.Element;
752
798
  //#endregion
753
799
  //#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
754
800
  type Props$28 = {
@@ -758,7 +804,7 @@ type Props$28 = {
758
804
  declare const PasskeyLoginButton: ({
759
805
  isDark,
760
806
  gridColumn
761
- }: Props$28) => react_jsx_runtime1.JSX.Element;
807
+ }: Props$28) => react_jsx_runtime0.JSX.Element;
762
808
  //#endregion
763
809
  //#region src/components/ConnectModal/Components/DappKitButton.d.ts
764
810
  type Props$27 = {
@@ -768,7 +814,7 @@ type Props$27 = {
768
814
  declare const DappKitButton: ({
769
815
  isDark,
770
816
  gridColumn
771
- }: Props$27) => react_jsx_runtime1.JSX.Element;
817
+ }: Props$27) => react_jsx_runtime0.JSX.Element;
772
818
  //#endregion
773
819
  //#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
774
820
  type Props$26 = {
@@ -778,7 +824,7 @@ type Props$26 = {
778
824
  declare const VeChainWithPrivyLoginButton: ({
779
825
  isDark,
780
826
  gridColumn
781
- }: Props$26) => react_jsx_runtime1.JSX.Element;
827
+ }: Props$26) => react_jsx_runtime0.JSX.Element;
782
828
  //#endregion
783
829
  //#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
784
830
  type Props$25 = {
@@ -788,7 +834,7 @@ type Props$25 = {
788
834
  declare const LoginWithGithubButton: ({
789
835
  isDark,
790
836
  gridColumn
791
- }: Props$25) => react_jsx_runtime1.JSX.Element;
837
+ }: Props$25) => react_jsx_runtime0.JSX.Element;
792
838
  //#endregion
793
839
  //#region src/components/ConnectModal/ConnectPopover.d.ts
794
840
  type ConnectPopoverProps = {
@@ -798,7 +844,7 @@ type ConnectPopoverProps = {
798
844
  declare const ConnectPopover: ({
799
845
  isLoading,
800
846
  buttonStyle
801
- }: ConnectPopoverProps) => react_jsx_runtime1.JSX.Element;
847
+ }: ConnectPopoverProps) => react_jsx_runtime0.JSX.Element;
802
848
  //#endregion
803
849
  //#region src/components/WalletButton/types.d.ts
804
850
  type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
@@ -815,10 +861,10 @@ declare const WalletButton: ({
815
861
  desktopVariant,
816
862
  buttonStyle,
817
863
  connectionVariant
818
- }: WalletButtonProps) => react_jsx_runtime1.JSX.Element;
864
+ }: WalletButtonProps) => react_jsx_runtime0.JSX.Element;
819
865
  //#endregion
820
866
  //#region src/components/WalletButton/SocialIcons.d.ts
821
- declare const SocialIcons: () => react_jsx_runtime1.JSX.Element;
867
+ declare const SocialIcons: () => react_jsx_runtime0.JSX.Element;
822
868
  //#endregion
823
869
  //#region src/components/TransactionModal/TransactionModal.d.ts
824
870
  type TransactionModalProps = {
@@ -848,7 +894,7 @@ declare const TransactionModal: ({
848
894
  txReceipt,
849
895
  txError,
850
896
  onTryAgain
851
- }: TransactionModalProps) => react_jsx_runtime1.JSX.Element;
897
+ }: TransactionModalProps) => react_jsx_runtime0.JSX.Element;
852
898
  //#endregion
853
899
  //#region src/components/TransactionModal/Components/ShareButtons.d.ts
854
900
  type Props$24 = {
@@ -858,7 +904,7 @@ type Props$24 = {
858
904
  };
859
905
  declare const ShareButtons: ({
860
906
  descriptionEncoded
861
- }: Props$24) => react_jsx_runtime1.JSX.Element;
907
+ }: Props$24) => react_jsx_runtime0.JSX.Element;
862
908
  //#endregion
863
909
  //#region src/components/TransactionModal/TransactionModalContent.d.ts
864
910
  declare const TransactionModalContent: ({
@@ -868,7 +914,7 @@ declare const TransactionModalContent: ({
868
914
  txReceipt,
869
915
  txError,
870
916
  onClose
871
- }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime1.JSX.Element;
917
+ }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime0.JSX.Element;
872
918
  //#endregion
873
919
  //#region src/components/TransactionToast/TransactionToast.d.ts
874
920
  type TransactionToastProps = {
@@ -888,7 +934,7 @@ declare const TransactionToast: ({
888
934
  txError,
889
935
  onTryAgain,
890
936
  description
891
- }: TransactionToastProps) => react_jsx_runtime1.JSX.Element | null;
937
+ }: TransactionToastProps) => react_jsx_runtime0.JSX.Element | null;
892
938
  //#endregion
893
939
  //#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
894
940
  type Props$23 = {
@@ -900,7 +946,7 @@ declare const AccountMainContent: ({
900
946
  setCurrentContent,
901
947
  wallet,
902
948
  onClose
903
- }: Props$23) => react_jsx_runtime1.JSX.Element;
949
+ }: Props$23) => react_jsx_runtime0.JSX.Element;
904
950
  //#endregion
905
951
  //#region src/components/AccountModal/Contents/Account/AccessAndSecurityContent.d.ts
906
952
  type Props$22 = {
@@ -908,7 +954,7 @@ type Props$22 = {
908
954
  };
909
955
  declare const AccessAndSecurityContent: ({
910
956
  setCurrentContent
911
- }: Props$22) => react_jsx_runtime1.JSX.Element;
957
+ }: Props$22) => react_jsx_runtime0.JSX.Element;
912
958
  //#endregion
913
959
  //#region src/components/AccountModal/Contents/Account/SettingsContent.d.ts
914
960
  type SettingsContentProps = {
@@ -918,7 +964,7 @@ type SettingsContentProps = {
918
964
  declare const SettingsContent: ({
919
965
  setCurrentContent,
920
966
  onLogoutSuccess
921
- }: SettingsContentProps) => react_jsx_runtime1.JSX.Element;
967
+ }: SettingsContentProps) => react_jsx_runtime0.JSX.Element;
922
968
  //#endregion
923
969
  //#region src/components/AccountModal/Contents/Account/EmbeddedWalletContent.d.ts
924
970
  type Props$21 = {
@@ -926,7 +972,7 @@ type Props$21 = {
926
972
  };
927
973
  declare const EmbeddedWalletContent: ({
928
974
  setCurrentContent
929
- }: Props$21) => react_jsx_runtime1.JSX.Element;
975
+ }: Props$21) => react_jsx_runtime0.JSX.Element;
930
976
  //#endregion
931
977
  //#region src/components/AccountModal/Contents/Account/DisconnectConfirmContent.d.ts
932
978
  type DisconnectConfirmContentProps = {
@@ -942,12 +988,12 @@ declare const DisconnectConfirmContent: ({
942
988
  onClose,
943
989
  showCloseButton,
944
990
  text
945
- }: DisconnectConfirmContentProps) => react_jsx_runtime1.JSX.Element;
991
+ }: DisconnectConfirmContentProps) => react_jsx_runtime0.JSX.Element;
946
992
  //#endregion
947
993
  //#region src/hooks/api/privy/useFetchAppInfo.d.ts
948
994
  declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
949
995
  declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
950
- declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query17.UseQueryResult<{
996
+ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
951
997
  [k: string]: {
952
998
  website: string | undefined;
953
999
  id: string;
@@ -968,7 +1014,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
968
1014
  //#endregion
969
1015
  //#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
970
1016
  declare const fetchPrivyStatus: () => Promise<string>;
971
- declare const useFetchPrivyStatus: () => _tanstack_react_query17.UseQueryResult<string, Error>;
1017
+ declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
972
1018
  //#endregion
973
1019
  //#region src/hooks/api/vetDomains/useVechainDomain.d.ts
974
1020
  interface VeChainDomainResult {
@@ -978,11 +1024,11 @@ interface VeChainDomainResult {
978
1024
  isPrimaryDomain: boolean;
979
1025
  }
980
1026
  declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
981
- declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query17.UseQueryResult<VeChainDomainResult, Error>;
1027
+ declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
982
1028
  //#endregion
983
1029
  //#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
984
1030
  declare const getEnsRecordExistsQueryKey: (name: string) => string[];
985
- declare const useEnsRecordExists: (name: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
1031
+ declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
986
1032
  //#endregion
987
1033
  //#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
988
1034
  type useClaimVeWorldSubdomainProps = {
@@ -1044,7 +1090,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
1044
1090
  * @param {boolean} [enabled=true] - Flag to enable or disable the hook.
1045
1091
  * @returns The result of the useQuery hook, with the protection status.
1046
1092
  */
1047
- declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
1093
+ declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1048
1094
  //#endregion
1049
1095
  //#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
1050
1096
  declare const DomainSchema: z.ZodObject<{
@@ -1072,7 +1118,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
1072
1118
  * @param parentDomain The parent domain (e.g., "veworld.vet")
1073
1119
  * @returns The domains owned by the address
1074
1120
  */
1075
- declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query17.UseQueryResult<{
1121
+ declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
1076
1122
  domains: {
1077
1123
  name: string;
1078
1124
  }[];
@@ -1085,7 +1131,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
1085
1131
  * @param name - The VET domain name
1086
1132
  * @returns The resolved avatar URL
1087
1133
  */
1088
- declare const useGetAvatar: (name: string) => _tanstack_react_query17.UseQueryResult<string | null, Error>;
1134
+ declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1089
1135
  //#endregion
1090
1136
  //#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
1091
1137
  /**
@@ -1097,7 +1143,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query17.UseQueryRe
1097
1143
  */
1098
1144
  declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
1099
1145
  declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
1100
- declare const useGetTextRecords: (domain?: string) => _tanstack_react_query17.UseQueryResult<TextRecords, Error>;
1146
+ declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
1101
1147
  //#endregion
1102
1148
  //#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
1103
1149
  type UpdateTextRecordVariables = {
@@ -1130,7 +1176,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
1130
1176
  * @param domain The domain to get resolver for
1131
1177
  * @returns The resolver address for the domain
1132
1178
  */
1133
- declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query17.UseQueryResult<`0x${string}`, unknown>;
1179
+ declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
1134
1180
  //#endregion
1135
1181
  //#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
1136
1182
  declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
@@ -1140,7 +1186,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
1140
1186
  * @param address The owner's address
1141
1187
  * @returns The avatar URL for the address's primary domain
1142
1188
  */
1143
- declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query17.UseQueryResult<string, Error>;
1189
+ declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
1144
1190
  //#endregion
1145
1191
  //#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
1146
1192
  /**
@@ -1157,7 +1203,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
1157
1203
  * @param name - The VET domain name
1158
1204
  * @returns The resolved avatar URL
1159
1205
  */
1160
- declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query17.UseQueryResult<string | null, Error>;
1206
+ declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1161
1207
  //#endregion
1162
1208
  //#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
1163
1209
  type useUnsetDomainProps = {
@@ -1266,7 +1312,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
1266
1312
  * Hook to get the current roundId of allocations voting
1267
1313
  * @returns the current roundId of allocations voting
1268
1314
  */
1269
- declare const useCurrentAllocationsRoundId: () => _tanstack_react_query17.UseQueryResult<string, unknown>;
1315
+ declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
1270
1316
  //#endregion
1271
1317
  //#region src/hooks/api/wallet/useCustomTokens.d.ts
1272
1318
  declare const useCustomTokens: () => {
@@ -1279,7 +1325,7 @@ declare const useCustomTokens: () => {
1279
1325
  //#endregion
1280
1326
  //#region src/hooks/api/wallet/useGetB3trBalance.d.ts
1281
1327
  declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
1282
- declare const useGetB3trBalance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1328
+ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1283
1329
  original: string;
1284
1330
  scaled: string;
1285
1331
  formatted: string;
@@ -1288,7 +1334,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query17.U
1288
1334
  //#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
1289
1335
  type TokenWithBalance = CustomTokenInfo & TokenBalance;
1290
1336
  declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
1291
- declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1337
+ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1292
1338
  original: string;
1293
1339
  scaled: string;
1294
1340
  formatted: string;
@@ -1301,11 +1347,11 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
1301
1347
  //#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
1302
1348
  declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1303
1349
  declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
1304
- declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query17.UseQueryResult<CustomTokenInfo, Error>;
1350
+ declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
1305
1351
  //#endregion
1306
1352
  //#region src/hooks/api/wallet/useGetErc20Balance.d.ts
1307
1353
  declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
1308
- declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query17.UseQueryResult<{
1354
+ declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query8.UseQueryResult<{
1309
1355
  original: string;
1310
1356
  scaled: string;
1311
1357
  formatted: string;
@@ -1322,11 +1368,11 @@ declare const PRICE_FEED_IDS: {
1322
1368
  type SupportedToken = keyof typeof PRICE_FEED_IDS;
1323
1369
  declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
1324
1370
  declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
1325
- declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query17.UseQueryResult<number, Error>;
1371
+ declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
1326
1372
  //#endregion
1327
1373
  //#region src/hooks/api/wallet/useGetVot3Balance.d.ts
1328
1374
  declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
1329
- declare const useGetVot3Balance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
1375
+ declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1330
1376
  original: string;
1331
1377
  scaled: string;
1332
1378
  formatted: string;
@@ -1345,7 +1391,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
1345
1391
  * @param user - The user address.
1346
1392
  * @returns The isPerson status.
1347
1393
  */
1348
- declare const useIsPerson: (user?: string | null) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
1394
+ declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1349
1395
  //#endregion
1350
1396
  //#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
1351
1397
  type XApp = {
@@ -1383,7 +1429,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
1383
1429
  //#endregion
1384
1430
  //#region src/hooks/api/wallet/useRoundXApps.d.ts
1385
1431
  declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => (string | unknown[])[];
1386
- declare const useRoundXApps: (roundId?: string) => _tanstack_react_query17.UseQueryResult<{
1432
+ declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1387
1433
  id: string;
1388
1434
  teamWalletAddress: `0x${string}`;
1389
1435
  name: string;
@@ -1466,7 +1512,7 @@ type XAppMetadata = {
1466
1512
  * @returns The metadata of the xApp see {@link XAppMetadata}
1467
1513
  */
1468
1514
  declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
1469
- declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query17.UseQueryResult<XAppMetadata | undefined, Error>;
1515
+ declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
1470
1516
  //#endregion
1471
1517
  //#region src/hooks/api/wallet/useXAppShares.d.ts
1472
1518
  /**
@@ -1481,7 +1527,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
1481
1527
  * @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
1482
1528
  *
1483
1529
  */
1484
- declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query17.UseQueryResult<{
1530
+ declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1485
1531
  app: string;
1486
1532
  share: number;
1487
1533
  unallocatedShare: number;
@@ -1503,7 +1549,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
1503
1549
  * @param ipfsUri - The IPFS URI
1504
1550
  * @returns The metadata from IPFS
1505
1551
  */
1506
- declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<T$1>, Error>;
1552
+ declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
1507
1553
  //#endregion
1508
1554
  //#region src/hooks/api/ipfs/useIpfsImage.d.ts
1509
1555
  interface IpfsImage {
@@ -1530,14 +1576,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
1530
1576
  * @param imageIpfsUri - The IPFS URI of the NFT media
1531
1577
  * @returns The NFT media
1532
1578
  */
1533
- declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query17.UseQueryResult<IpfsImage, Error>;
1579
+ declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
1534
1580
  /**
1535
1581
  * Custom hook to fetch a list of IPFS images.
1536
1582
  *
1537
1583
  * @param imageIpfsUriList - An array of IPFS URIs for the images.
1538
1584
  * @returns An array of queries for each IPFS image URI.
1539
1585
  */
1540
- declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query17.UseQueryResult<IpfsImage, Error>[];
1586
+ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
1541
1587
  //#endregion
1542
1588
  //#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
1543
1589
  /**
@@ -1545,7 +1591,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
1545
1591
  * @param ipfsUris - The IPFS URIs
1546
1592
  * @returns The metadata from IPFS for each URI
1547
1593
  */
1548
- declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query17.UseQueryResult<T$1, Error>[];
1594
+ declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
1549
1595
  //#endregion
1550
1596
  //#region src/hooks/api/ipfs/useUploadImages.d.ts
1551
1597
  declare const imageCompressionOptions: Options;
@@ -1764,7 +1810,7 @@ declare const ConnectModalProvider: ({
1764
1810
  children
1765
1811
  }: {
1766
1812
  children: ReactNode;
1767
- }) => react_jsx_runtime1.JSX.Element;
1813
+ }) => react_jsx_runtime0.JSX.Element;
1768
1814
  //#endregion
1769
1815
  //#region src/hooks/modals/useAccountModal.d.ts
1770
1816
  declare const useAccountModal: () => {
@@ -1776,7 +1822,7 @@ declare const AccountModalProvider: ({
1776
1822
  children
1777
1823
  }: {
1778
1824
  children: ReactNode;
1779
- }) => react_jsx_runtime1.JSX.Element;
1825
+ }) => react_jsx_runtime0.JSX.Element;
1780
1826
  //#endregion
1781
1827
  //#region src/hooks/modals/useTransactionModal.d.ts
1782
1828
  declare const useTransactionModal: () => {
@@ -1788,7 +1834,7 @@ declare const TransactionModalProvider: ({
1788
1834
  children
1789
1835
  }: {
1790
1836
  children: ReactNode;
1791
- }) => react_jsx_runtime1.JSX.Element;
1837
+ }) => react_jsx_runtime0.JSX.Element;
1792
1838
  //#endregion
1793
1839
  //#region src/hooks/modals/useTransactionToast.d.ts
1794
1840
  declare const useTransactionToast: () => {
@@ -1800,7 +1846,7 @@ declare const TransactionToastProvider: ({
1800
1846
  children
1801
1847
  }: {
1802
1848
  children: ReactNode;
1803
- }) => react_jsx_runtime1.JSX.Element;
1849
+ }) => react_jsx_runtime0.JSX.Element;
1804
1850
  //#endregion
1805
1851
  //#region src/hooks/modals/useWalletModal.d.ts
1806
1852
  declare const useWalletModal: () => {
@@ -1812,7 +1858,7 @@ declare const WalletModalProvider: ({
1812
1858
  children
1813
1859
  }: {
1814
1860
  children: ReactNode;
1815
- }) => react_jsx_runtime1.JSX.Element;
1861
+ }) => react_jsx_runtime0.JSX.Element;
1816
1862
  //#endregion
1817
1863
  //#region src/hooks/modals/useChooseNameModal.d.ts
1818
1864
  declare const useChooseNameModal: () => {
@@ -1824,7 +1870,7 @@ declare const ChooseNameModalProvider: ({
1824
1870
  children
1825
1871
  }: {
1826
1872
  children: ReactNode;
1827
- }) => react_jsx_runtime1.JSX.Element;
1873
+ }) => react_jsx_runtime0.JSX.Element;
1828
1874
  //#endregion
1829
1875
  //#region src/hooks/modals/useSendTokenModal.d.ts
1830
1876
  declare const useSendTokenModal: () => {
@@ -1836,7 +1882,7 @@ declare const SendTokenModalProvider: ({
1836
1882
  children
1837
1883
  }: {
1838
1884
  children: ReactNode;
1839
- }) => react_jsx_runtime1.JSX.Element;
1885
+ }) => react_jsx_runtime0.JSX.Element;
1840
1886
  //#endregion
1841
1887
  //#region src/hooks/modals/useSwapTokenModal.d.ts
1842
1888
  type SwapTokenModalOptions = {
@@ -1853,7 +1899,7 @@ declare const SwapTokenModalProvider: ({
1853
1899
  children
1854
1900
  }: {
1855
1901
  children: ReactNode;
1856
- }) => react_jsx_runtime1.JSX.Element;
1902
+ }) => react_jsx_runtime0.JSX.Element;
1857
1903
  //#endregion
1858
1904
  //#region src/hooks/modals/useAccessAndSecurityModal.d.ts
1859
1905
  declare const useAccessAndSecurityModal: () => {
@@ -1865,7 +1911,7 @@ declare const AccessAndSecurityModalProvider: ({
1865
1911
  children
1866
1912
  }: {
1867
1913
  children: ReactNode;
1868
- }) => react_jsx_runtime1.JSX.Element;
1914
+ }) => react_jsx_runtime0.JSX.Element;
1869
1915
  //#endregion
1870
1916
  //#region src/hooks/modals/useExploreEcosystemModal.d.ts
1871
1917
  declare const useExploreEcosystemModal: () => {
@@ -1877,7 +1923,7 @@ declare const ExploreEcosystemModalProvider: ({
1877
1923
  children
1878
1924
  }: {
1879
1925
  children: ReactNode;
1880
- }) => react_jsx_runtime1.JSX.Element;
1926
+ }) => react_jsx_runtime0.JSX.Element;
1881
1927
  //#endregion
1882
1928
  //#region src/hooks/modals/useNotificationsModal.d.ts
1883
1929
  declare const useNotificationsModal: () => {
@@ -1889,7 +1935,7 @@ declare const NotificationsModalProvider: ({
1889
1935
  children
1890
1936
  }: {
1891
1937
  children: ReactNode;
1892
- }) => react_jsx_runtime1.JSX.Element;
1938
+ }) => react_jsx_runtime0.JSX.Element;
1893
1939
  //#endregion
1894
1940
  //#region src/hooks/modals/useFAQModal.d.ts
1895
1941
  declare const useFAQModal: () => {
@@ -1901,7 +1947,7 @@ declare const FAQModalProvider: ({
1901
1947
  children
1902
1948
  }: {
1903
1949
  children: ReactNode;
1904
- }) => react_jsx_runtime1.JSX.Element;
1950
+ }) => react_jsx_runtime0.JSX.Element;
1905
1951
  //#endregion
1906
1952
  //#region src/hooks/modals/useAccountCustomizationModal.d.ts
1907
1953
  declare const useAccountCustomizationModal: () => {
@@ -1913,7 +1959,7 @@ declare const AccountCustomizationModalProvider: ({
1913
1959
  children
1914
1960
  }: {
1915
1961
  children: ReactNode;
1916
- }) => react_jsx_runtime1.JSX.Element;
1962
+ }) => react_jsx_runtime0.JSX.Element;
1917
1963
  //#endregion
1918
1964
  //#region src/hooks/modals/useReceiveModal.d.ts
1919
1965
  declare const useReceiveModal: () => {
@@ -1925,7 +1971,7 @@ declare const ReceiveModalProvider: ({
1925
1971
  children
1926
1972
  }: {
1927
1973
  children: ReactNode;
1928
- }) => react_jsx_runtime1.JSX.Element;
1974
+ }) => react_jsx_runtime0.JSX.Element;
1929
1975
  //#endregion
1930
1976
  //#region src/hooks/modals/useLoginModalContent.d.ts
1931
1977
  type LoginModalContentConfig = {
@@ -1951,7 +1997,7 @@ declare const UpgradeSmartAccountModalProvider: ({
1951
1997
  children
1952
1998
  }: {
1953
1999
  children: ReactNode;
1954
- }) => react_jsx_runtime1.JSX.Element;
2000
+ }) => react_jsx_runtime0.JSX.Element;
1955
2001
  //#endregion
1956
2002
  //#region src/hooks/modals/useProfileModal.d.ts
1957
2003
  declare const useProfileModal: () => {
@@ -1963,7 +2009,7 @@ declare const ProfileModalProvider: ({
1963
2009
  children
1964
2010
  }: {
1965
2011
  children: ReactNode;
1966
- }) => react_jsx_runtime1.JSX.Element;
2012
+ }) => react_jsx_runtime0.JSX.Element;
1967
2013
  //#endregion
1968
2014
  //#region src/hooks/modals/useAccountModalOptions.d.ts
1969
2015
  declare const useAccountModalOptions: () => {
@@ -2099,7 +2145,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
2099
2145
  * );
2100
2146
  * ```
2101
2147
  */
2102
- declare const useAppHubApps: () => _tanstack_react_query17.UseQueryResult<AppHubApp[], Error>;
2148
+ declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
2103
2149
  //#endregion
2104
2150
  //#region src/utils/constants.d.ts
2105
2151
  declare const TOKEN_LOGOS: Record<string, string>;
@@ -2446,7 +2492,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
2446
2492
  method: TMethod;
2447
2493
  args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
2448
2494
  queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
2449
- }) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<TData>, unknown>;
2495
+ }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
2450
2496
  declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
2451
2497
  thor,
2452
2498
  calls,
@@ -2457,11 +2503,14 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
2457
2503
  calls: MultipleClausesCallParameters<contracts, allowFailure>;
2458
2504
  queryKey: string[];
2459
2505
  enabled?: boolean;
2460
- }) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
2506
+ }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
2461
2507
  //#endregion
2462
2508
  //#region src/hooks/utils/useCurrency.d.ts
2463
2509
  /**
2464
2510
  * Hook for managing currency preferences
2511
+ *
2512
+ * Note: This hook now uses the currency from VeChainKit context.
2513
+ * For setting currency, use the setCurrency function from useCurrentCurrency() hook instead.
2465
2514
  */
2466
2515
  declare const useCurrency: () => {
2467
2516
  currentCurrency: CURRENCY;
@@ -2469,6 +2518,63 @@ declare const useCurrency: () => {
2469
2518
  changeCurrency: (newCurrency: CURRENCY) => void;
2470
2519
  };
2471
2520
  //#endregion
2521
+ //#region src/hooks/utils/useCurrentLanguage.d.ts
2522
+ /**
2523
+ * Hook to get and set the current language in VeChainKit
2524
+ *
2525
+ * This hook provides the current runtime language value and a function to change it.
2526
+ * Changes made via this hook will sync to VeChainKit settings and trigger callbacks.
2527
+ *
2528
+ * @returns Object with:
2529
+ * - `currentLanguage`: Current language code (e.g., 'en', 'fr', 'de')
2530
+ * - `setLanguage`: Function to change the language
2531
+ *
2532
+ * @example
2533
+ * ```tsx
2534
+ * const { currentLanguage, setLanguage } = useCurrentLanguage();
2535
+ *
2536
+ * return (
2537
+ * <select value={currentLanguage} onChange={(e) => setLanguage(e.target.value)}>
2538
+ * <option value="en">English</option>
2539
+ * <option value="fr">Français</option>
2540
+ * </select>
2541
+ * );
2542
+ * ```
2543
+ */
2544
+ declare const useCurrentLanguage: () => {
2545
+ currentLanguage: string;
2546
+ setLanguage: (language: string) => void;
2547
+ };
2548
+ //#endregion
2549
+ //#region src/hooks/utils/useCurrentCurrency.d.ts
2550
+ /**
2551
+ * Hook to get and set the current currency in VeChainKit
2552
+ *
2553
+ * This hook provides the current runtime currency value and a function to change it.
2554
+ * Changes made via this hook will sync to VeChainKit settings and trigger callbacks.
2555
+ *
2556
+ * @returns Object with:
2557
+ * - `currentCurrency`: Current currency code ('usd', 'eur', or 'gbp')
2558
+ * - `setCurrency`: Function to change the currency
2559
+ *
2560
+ * @example
2561
+ * ```tsx
2562
+ * const { currentCurrency, setCurrency } = useCurrentCurrency();
2563
+ *
2564
+ * return (
2565
+ * <select value={currentCurrency} onChange={(e) => setCurrency(e.target.value as CURRENCY)}>
2566
+ * <option value="usd">USD ($)</option>
2567
+ * <option value="eur">EUR (€)</option>
2568
+ * <option value="gbp">GBP (£)</option>
2569
+ * </select>
2570
+ * );
2571
+ * ```
2572
+ */
2573
+ declare const useCurrentCurrency: () => {
2574
+ currentCurrency: CURRENCY;
2575
+ setCurrency: (currency: CURRENCY) => void;
2576
+ };
2577
+ //#endregion
2472
2578
  //#region src/hooks/utils/useFeatureAnnouncement.d.ts
2473
2579
  declare const useFeatureAnnouncement: () => {
2474
2580
  isVisible: boolean;
@@ -2521,7 +2627,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
2521
2627
  filterParams,
2522
2628
  mapResponse,
2523
2629
  nodeUrl
2524
- }: UseEventsParams<T$1, K, R>) => _tanstack_react_query17.UseQueryResult<R[], Error>;
2630
+ }: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
2525
2631
  //#endregion
2526
2632
  //#region src/hooks/utils/useBuildClauses.d.ts
2527
2633
  interface BuildClausesParams {
@@ -2672,7 +2778,7 @@ declare const useGasEstimation: ({
2672
2778
  tokens,
2673
2779
  sendingAmount,
2674
2780
  sendingTokenSymbol
2675
- }: UseGasEstimationParams) => _tanstack_react_query17.UseQueryResult<EstimationResponse & {
2781
+ }: UseGasEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
2676
2782
  usedToken: string;
2677
2783
  }, Error>;
2678
2784
  //#endregion
@@ -2686,7 +2792,7 @@ declare const useEstimateAllTokens: ({
2686
2792
  clauses,
2687
2793
  tokens,
2688
2794
  enabled
2689
- }: UseEstimateAllTokensParams) => _tanstack_react_query17.UseQueryResult<Record<GasTokenType, {
2795
+ }: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
2690
2796
  cost: number;
2691
2797
  loading: boolean;
2692
2798
  error?: string;
@@ -2703,7 +2809,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
2703
2809
  * @param address The address of the account to get the balance for
2704
2810
  * @returns The account balance
2705
2811
  */
2706
- declare const useAccountBalance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
2812
+ declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
2707
2813
  balance: string;
2708
2814
  energy: string;
2709
2815
  }, Error>;
@@ -2716,7 +2822,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
2716
2822
  * @param version - The version of the smart account implementation
2717
2823
  * @returns The address of the smart account implementation
2718
2824
  */
2719
- declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query17.UseQueryResult<string, Error>;
2825
+ declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
2720
2826
  //#endregion
2721
2827
  //#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
2722
2828
  declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
@@ -2725,7 +2831,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
2725
2831
  * Get the current account implementation version used by the smart account factory
2726
2832
  * @returns The current account implementation version
2727
2833
  */
2728
- declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query17.UseQueryResult<number, Error>;
2834
+ declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
2729
2835
  //#endregion
2730
2836
  //#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
2731
2837
  declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
@@ -2735,7 +2841,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
2735
2841
  * @param ownerAddress - The address of the owner of the smart account
2736
2842
  * @returns The address of the smart account
2737
2843
  */
2738
- declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<string, Error>;
2844
+ declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
2739
2845
  //#endregion
2740
2846
  //#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
2741
2847
  declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => (string | unknown[])[];
@@ -2745,7 +2851,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
2745
2851
  * @param ownerAddress - The address of the owner of the smart account
2746
2852
  * @returns The version of the smart account
2747
2853
  */
2748
- declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query17.UseQueryResult<{
2854
+ declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
2749
2855
  version: number;
2750
2856
  isDeployed: boolean;
2751
2857
  }, unknown>;
@@ -2758,7 +2864,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
2758
2864
  * @param ownerAddress - The address of the owner of the smart account
2759
2865
  * @returns True if the smart account has a v1 smart account, false otherwise
2760
2866
  */
2761
- declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2867
+ declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2762
2868
  //#endregion
2763
2869
  //#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
2764
2870
  declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
@@ -2767,7 +2873,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
2767
2873
  * Check if a smart account is deployed
2768
2874
  * @returns True if the smart account is deployed, false otherwise
2769
2875
  */
2770
- declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2876
+ declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2771
2877
  //#endregion
2772
2878
  //#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
2773
2879
  /**
@@ -2800,7 +2906,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
2800
2906
  isDeployed: boolean;
2801
2907
  }>;
2802
2908
  declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
2803
- declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<{
2909
+ declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
2804
2910
  address: undefined;
2805
2911
  isDeployed?: undefined;
2806
2912
  } | {
@@ -2818,7 +2924,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
2818
2924
  * @param targetVersion - The version of the smart account to check for
2819
2925
  * @returns True if the smart account needs an upgrade, false otherwise
2820
2926
  */
2821
- declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2927
+ declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2822
2928
  //#endregion
2823
2929
  //#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
2824
2930
  declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
@@ -2829,7 +2935,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
2829
2935
  * @param targetVersion - The target version of the smart account
2830
2936
  * @returns True if the smart account needs an upgrade, false otherwise
2831
2937
  */
2832
- declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
2938
+ declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
2833
2939
  //#endregion
2834
2940
  //#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
2835
2941
  type UseUpgradeSmartAccountVersionProps = {
@@ -2854,7 +2960,7 @@ declare const currentBlockQueryKey: () => string[];
2854
2960
  * Fetches the current block from the blockchain. The block is refetched every 10 seconds.
2855
2961
  * @returns the current block
2856
2962
  */
2857
- declare const useCurrentBlock: () => _tanstack_react_query17.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
2963
+ declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
2858
2964
  //#endregion
2859
2965
  //#region src/hooks/thor/blocks/useGetChainId.d.ts
2860
2966
  declare const getChainId: (thor: ThorClient) => Promise<string>;
@@ -2863,7 +2969,7 @@ declare const getChainIdQueryKey: () => string[];
2863
2969
  * Get the chain id
2864
2970
  * @returns The chain id
2865
2971
  */
2866
- declare const useGetChainId: () => _tanstack_react_query17.UseQueryResult<string, Error>;
2972
+ declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
2867
2973
  //#endregion
2868
2974
  //#region src/hooks/thor/logs/logUtils.d.ts
2869
2975
  /**
@@ -3104,7 +3210,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
3104
3210
  * @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
3105
3211
  * @returns Query result containing the transaction receipt
3106
3212
  */
3107
- declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query17.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3213
+ declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3108
3214
  //#endregion
3109
3215
  //#region src/components/AccountModal/Contents/SendToken/SendTokenContent.d.ts
3110
3216
  type SendTokenContentProps = {
@@ -3120,7 +3226,7 @@ declare const SendTokenContent: ({
3120
3226
  initialAmount,
3121
3227
  initialToAddressOrDomain,
3122
3228
  onBack: parentOnBack
3123
- }: SendTokenContentProps) => react_jsx_runtime1.JSX.Element;
3229
+ }: SendTokenContentProps) => react_jsx_runtime0.JSX.Element;
3124
3230
  //#endregion
3125
3231
  //#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
3126
3232
  type SendTokenSummaryContentProps = {
@@ -3140,7 +3246,7 @@ declare const SendTokenSummaryContent: ({
3140
3246
  amount,
3141
3247
  selectedToken,
3142
3248
  formattedTotalAmount
3143
- }: SendTokenSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3249
+ }: SendTokenSummaryContentProps) => react_jsx_runtime0.JSX.Element;
3144
3250
  //#endregion
3145
3251
  //#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
3146
3252
  type Props$18 = {
@@ -3156,7 +3262,7 @@ declare const SelectTokenContent: ({
3156
3262
  onSelectToken,
3157
3263
  onBack,
3158
3264
  showAllTokens
3159
- }: Props$18) => react_jsx_runtime1.JSX.Element;
3265
+ }: Props$18) => react_jsx_runtime0.JSX.Element;
3160
3266
  //#endregion
3161
3267
  //#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
3162
3268
  type Props$17 = {
@@ -3164,7 +3270,7 @@ type Props$17 = {
3164
3270
  };
3165
3271
  declare const ReceiveTokenContent: ({
3166
3272
  setCurrentContent
3167
- }: Props$17) => react_jsx_runtime1.JSX.Element;
3273
+ }: Props$17) => react_jsx_runtime0.JSX.Element;
3168
3274
  //#endregion
3169
3275
  //#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
3170
3276
  type Props$16 = {
@@ -3176,7 +3282,7 @@ declare const SwapTokenContent: ({
3176
3282
  setCurrentContent,
3177
3283
  fromTokenAddress,
3178
3284
  toTokenAddress
3179
- }: Props$16) => react_jsx_runtime1.JSX.Element;
3285
+ }: Props$16) => react_jsx_runtime0.JSX.Element;
3180
3286
  //#endregion
3181
3287
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
3182
3288
  type ChooseNameContentProps = {
@@ -3188,7 +3294,7 @@ declare const ChooseNameContent: ({
3188
3294
  setCurrentContent,
3189
3295
  onBack,
3190
3296
  initialContentSource
3191
- }: ChooseNameContentProps) => react_jsx_runtime1.JSX.Element;
3297
+ }: ChooseNameContentProps) => react_jsx_runtime0.JSX.Element;
3192
3298
  //#endregion
3193
3299
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
3194
3300
  type ChooseNameSearchContentProps = {
@@ -3200,7 +3306,7 @@ declare const ChooseNameSearchContent: ({
3200
3306
  name: initialName,
3201
3307
  setCurrentContent,
3202
3308
  initialContentSource
3203
- }: ChooseNameSearchContentProps) => react_jsx_runtime1.JSX.Element;
3309
+ }: ChooseNameSearchContentProps) => react_jsx_runtime0.JSX.Element;
3204
3310
  //#endregion
3205
3311
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
3206
3312
  type ChooseNameSummaryContentProps = {
@@ -3218,7 +3324,7 @@ declare const ChooseNameSummaryContent: ({
3218
3324
  isOwnDomain,
3219
3325
  isUnsetting,
3220
3326
  initialContentSource
3221
- }: ChooseNameSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3327
+ }: ChooseNameSummaryContentProps) => react_jsx_runtime0.JSX.Element;
3222
3328
  //#endregion
3223
3329
  //#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
3224
3330
  type FAQContentProps = {
@@ -3228,7 +3334,7 @@ type FAQContentProps = {
3228
3334
  declare const FAQContent: ({
3229
3335
  onGoBack,
3230
3336
  showLanguageSelector
3231
- }: FAQContentProps) => react_jsx_runtime1.JSX.Element;
3337
+ }: FAQContentProps) => react_jsx_runtime0.JSX.Element;
3232
3338
  //#endregion
3233
3339
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
3234
3340
  type AccountCustomizationContentProps = {
@@ -3238,7 +3344,7 @@ type AccountCustomizationContentProps = {
3238
3344
  declare const CustomizationContent: ({
3239
3345
  setCurrentContent,
3240
3346
  initialContentSource
3241
- }: AccountCustomizationContentProps) => react_jsx_runtime1.JSX.Element;
3347
+ }: AccountCustomizationContentProps) => react_jsx_runtime0.JSX.Element;
3242
3348
  //#endregion
3243
3349
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
3244
3350
  type CustomizationSummaryContentProps = {
@@ -3257,7 +3363,7 @@ declare const CustomizationSummaryContent: ({
3257
3363
  setCurrentContent,
3258
3364
  changes,
3259
3365
  onDoneRedirectContent
3260
- }: CustomizationSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3366
+ }: CustomizationSummaryContentProps) => react_jsx_runtime0.JSX.Element;
3261
3367
  //#endregion
3262
3368
  //#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
3263
3369
  type ProfileContentProps = {
@@ -3267,7 +3373,7 @@ type ProfileContentProps = {
3267
3373
  declare const ProfileContent: ({
3268
3374
  setCurrentContent,
3269
3375
  onLogoutSuccess
3270
- }: ProfileContentProps) => react_jsx_runtime1.JSX.Element;
3376
+ }: ProfileContentProps) => react_jsx_runtime0.JSX.Element;
3271
3377
  //#endregion
3272
3378
  //#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
3273
3379
  type UpgradeSmartAccountContentProps = {
@@ -3279,7 +3385,7 @@ declare const UpgradeSmartAccountContent: ({
3279
3385
  setCurrentContent,
3280
3386
  handleClose,
3281
3387
  initialContent
3282
- }: UpgradeSmartAccountContentProps) => react_jsx_runtime1.JSX.Element;
3388
+ }: UpgradeSmartAccountContentProps) => react_jsx_runtime0.JSX.Element;
3283
3389
  //#endregion
3284
3390
  //#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
3285
3391
  type AssetsContentProps = {
@@ -3287,7 +3393,7 @@ type AssetsContentProps = {
3287
3393
  };
3288
3394
  declare const AssetsContent: ({
3289
3395
  setCurrentContent
3290
- }: AssetsContentProps) => react_jsx_runtime1.JSX.Element;
3396
+ }: AssetsContentProps) => react_jsx_runtime0.JSX.Element;
3291
3397
  //#endregion
3292
3398
  //#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
3293
3399
  type ManageCustomTokenContentProps = {
@@ -3295,7 +3401,7 @@ type ManageCustomTokenContentProps = {
3295
3401
  };
3296
3402
  declare const ManageCustomTokenContent: ({
3297
3403
  setCurrentContent
3298
- }: ManageCustomTokenContentProps) => react_jsx_runtime1.JSX.Element;
3404
+ }: ManageCustomTokenContentProps) => react_jsx_runtime0.JSX.Element;
3299
3405
  //#endregion
3300
3406
  //#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
3301
3407
  type Props$15 = {
@@ -3303,7 +3409,7 @@ type Props$15 = {
3303
3409
  };
3304
3410
  declare const BridgeContent: ({
3305
3411
  setCurrentContent
3306
- }: Props$15) => react_jsx_runtime1.JSX.Element;
3412
+ }: Props$15) => react_jsx_runtime0.JSX.Element;
3307
3413
  //#endregion
3308
3414
  //#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
3309
3415
  type ChangeCurrencyContentProps = {
@@ -3311,7 +3417,7 @@ type ChangeCurrencyContentProps = {
3311
3417
  };
3312
3418
  declare const ChangeCurrencyContent: ({
3313
3419
  setCurrentContent
3314
- }: ChangeCurrencyContentProps) => react_jsx_runtime1.JSX.Element;
3420
+ }: ChangeCurrencyContentProps) => react_jsx_runtime0.JSX.Element;
3315
3421
  //#endregion
3316
3422
  //#region src/components/AccountModal/Contents/KitSettings/GeneralSettingsContent.d.ts
3317
3423
  type Props$14 = {
@@ -3319,7 +3425,7 @@ type Props$14 = {
3319
3425
  };
3320
3426
  declare const GeneralSettingsContent: ({
3321
3427
  setCurrentContent
3322
- }: Props$14) => react_jsx_runtime1.JSX.Element;
3428
+ }: Props$14) => react_jsx_runtime0.JSX.Element;
3323
3429
  //#endregion
3324
3430
  //#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
3325
3431
  type Props$13 = {
@@ -3327,7 +3433,7 @@ type Props$13 = {
3327
3433
  };
3328
3434
  declare const LanguageSettingsContent: ({
3329
3435
  setCurrentContent
3330
- }: Props$13) => react_jsx_runtime1.JSX.Element;
3436
+ }: Props$13) => react_jsx_runtime0.JSX.Element;
3331
3437
  //#endregion
3332
3438
  //#region src/components/AccountModal/Contents/KitSettings/AppearanceSettingsContent.d.ts
3333
3439
  type Props$12 = {
@@ -3335,7 +3441,7 @@ type Props$12 = {
3335
3441
  };
3336
3442
  declare const AppearanceSettingsContent: ({
3337
3443
  setCurrentContent
3338
- }: Props$12) => react_jsx_runtime1.JSX.Element;
3444
+ }: Props$12) => react_jsx_runtime0.JSX.Element;
3339
3445
  //#endregion
3340
3446
  //#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
3341
3447
  type Props$11 = {
@@ -3343,7 +3449,7 @@ type Props$11 = {
3343
3449
  };
3344
3450
  declare const GasTokenSettingsContent: ({
3345
3451
  setCurrentContent
3346
- }: Props$11) => react_jsx_runtime1.JSX.Element;
3452
+ }: Props$11) => react_jsx_runtime0.JSX.Element;
3347
3453
  //#endregion
3348
3454
  //#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
3349
3455
  type TermsAndPrivacyContentProps = {
@@ -3351,7 +3457,7 @@ type TermsAndPrivacyContentProps = {
3351
3457
  };
3352
3458
  declare const TermsAndPrivacyContent: ({
3353
3459
  onGoBack
3354
- }: TermsAndPrivacyContentProps) => react_jsx_runtime1.JSX.Element;
3460
+ }: TermsAndPrivacyContentProps) => react_jsx_runtime0.JSX.Element;
3355
3461
  //#endregion
3356
3462
  //#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
3357
3463
  type CategoryFilter = string | null;
@@ -3455,7 +3561,7 @@ declare const AccountModal: ({
3455
3561
  isOpen,
3456
3562
  onClose,
3457
3563
  initialContent
3458
- }: Props$10) => react_jsx_runtime1.JSX.Element;
3564
+ }: Props$10) => react_jsx_runtime0.JSX.Element;
3459
3565
  //#endregion
3460
3566
  //#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
3461
3567
  interface AccountDetailsButtonProps {
@@ -3477,7 +3583,7 @@ declare const AccountDetailsButton: ({
3477
3583
  onClick,
3478
3584
  leftImage,
3479
3585
  isActive
3480
- }: AccountDetailsButtonProps) => react_jsx_runtime1.JSX.Element;
3586
+ }: AccountDetailsButtonProps) => react_jsx_runtime0.JSX.Element;
3481
3587
  //#endregion
3482
3588
  //#region src/components/AccountModal/Components/ActionButton.d.ts
3483
3589
  type ActionButtonProps = {
@@ -3519,7 +3625,7 @@ declare const ActionButton: ({
3519
3625
  extraContent,
3520
3626
  dataTestId,
3521
3627
  variant
3522
- }: ActionButtonProps) => react_jsx_runtime1.JSX.Element;
3628
+ }: ActionButtonProps) => react_jsx_runtime0.JSX.Element;
3523
3629
  //#endregion
3524
3630
  //#region src/components/AccountModal/Components/AccountSelector.d.ts
3525
3631
  type Props$9 = {
@@ -3539,7 +3645,7 @@ declare const AccountSelector: ({
3539
3645
  onClose,
3540
3646
  mt,
3541
3647
  style
3542
- }: Props$9) => react_jsx_runtime1.JSX.Element;
3648
+ }: Props$9) => react_jsx_runtime0.JSX.Element;
3543
3649
  //#endregion
3544
3650
  //#region src/components/AccountModal/Components/BalanceSection.d.ts
3545
3651
  declare const BalanceSection: ({
@@ -3550,7 +3656,7 @@ declare const BalanceSection: ({
3550
3656
  mb?: number;
3551
3657
  mt?: number;
3552
3658
  onAssetsClick?: () => void;
3553
- }) => react_jsx_runtime1.JSX.Element;
3659
+ }) => react_jsx_runtime0.JSX.Element;
3554
3660
  //#endregion
3555
3661
  //#region src/components/AccountModal/Components/QuickActionsSection.d.ts
3556
3662
  type Props$8 = {
@@ -3560,7 +3666,7 @@ type Props$8 = {
3560
3666
  declare const QuickActionsSection: ({
3561
3667
  mt,
3562
3668
  setCurrentContent
3563
- }: Props$8) => react_jsx_runtime1.JSX.Element;
3669
+ }: Props$8) => react_jsx_runtime0.JSX.Element;
3564
3670
  //#endregion
3565
3671
  //#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
3566
3672
  type FeatureAnnouncementCardProps = {
@@ -3568,16 +3674,16 @@ type FeatureAnnouncementCardProps = {
3568
3674
  };
3569
3675
  declare const FeatureAnnouncementCard: ({
3570
3676
  setCurrentContent
3571
- }: FeatureAnnouncementCardProps) => react_jsx_runtime1.JSX.Element | null;
3677
+ }: FeatureAnnouncementCardProps) => react_jsx_runtime0.JSX.Element | null;
3572
3678
  //#endregion
3573
3679
  //#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
3574
- declare const ExchangeWarningAlert: () => react_jsx_runtime1.JSX.Element;
3680
+ declare const ExchangeWarningAlert: () => react_jsx_runtime0.JSX.Element;
3575
3681
  //#endregion
3576
3682
  //#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
3577
- declare const DomainRequiredAlert: () => react_jsx_runtime1.JSX.Element;
3683
+ declare const DomainRequiredAlert: () => react_jsx_runtime0.JSX.Element;
3578
3684
  //#endregion
3579
3685
  //#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
3580
- declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime1.JSX.Element;
3686
+ declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime0.JSX.Element;
3581
3687
  //#endregion
3582
3688
  //#region src/components/common/ModalBackButton.d.ts
3583
3689
  type BackButtonProps = {
@@ -3586,7 +3692,7 @@ type BackButtonProps = {
3586
3692
  declare const ModalBackButton: ({
3587
3693
  onClick,
3588
3694
  ...props
3589
- }: BackButtonProps) => react_jsx_runtime1.JSX.Element;
3695
+ }: BackButtonProps) => react_jsx_runtime0.JSX.Element;
3590
3696
  //#endregion
3591
3697
  //#region src/components/common/AddressDisplay.d.ts
3592
3698
  type Props$7 = {
@@ -3600,13 +3706,13 @@ declare const AddressDisplay: ({
3600
3706
  label,
3601
3707
  style,
3602
3708
  showHumanAddress
3603
- }: Props$7) => react_jsx_runtime1.JSX.Element;
3709
+ }: Props$7) => react_jsx_runtime0.JSX.Element;
3604
3710
  //#endregion
3605
3711
  //#region src/components/common/VersionFooter.d.ts
3606
3712
  type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3607
3713
  declare const VersionFooter: ({
3608
3714
  ...props
3609
- }: Props$6) => react_jsx_runtime1.JSX.Element;
3715
+ }: Props$6) => react_jsx_runtime0.JSX.Element;
3610
3716
  //#endregion
3611
3717
  //#region src/components/common/StickyHeaderContainer.d.ts
3612
3718
  type Props$5 = {
@@ -3614,7 +3720,7 @@ type Props$5 = {
3614
3720
  };
3615
3721
  declare const StickyHeaderContainer: ({
3616
3722
  children
3617
- }: Props$5) => react_jsx_runtime1.JSX.Element;
3723
+ }: Props$5) => react_jsx_runtime0.JSX.Element;
3618
3724
  //#endregion
3619
3725
  //#region src/components/common/StickyFooterContainer.d.ts
3620
3726
  type Props$4 = {
@@ -3622,7 +3728,7 @@ type Props$4 = {
3622
3728
  };
3623
3729
  declare const StickyFooterContainer: ({
3624
3730
  children
3625
- }: Props$4) => react_jsx_runtime1.JSX.Element;
3731
+ }: Props$4) => react_jsx_runtime0.JSX.Element;
3626
3732
  //#endregion
3627
3733
  //#region src/components/common/BaseModal.d.ts
3628
3734
  type BaseModalProps = {
@@ -3653,7 +3759,7 @@ declare const BaseModal: ({
3653
3759
  allowExternalFocus,
3654
3760
  backdropFilter,
3655
3761
  isCloseable
3656
- }: BaseModalProps) => react_jsx_runtime1.JSX.Element;
3762
+ }: BaseModalProps) => react_jsx_runtime0.JSX.Element;
3657
3763
  //#endregion
3658
3764
  //#region src/components/common/AssetButton.d.ts
3659
3765
  type AssetButtonProps = ButtonProps & {
@@ -3672,7 +3778,7 @@ declare const AssetButton: ({
3672
3778
  isDisabled,
3673
3779
  onClick,
3674
3780
  ...buttonProps
3675
- }: AssetButtonProps) => react_jsx_runtime1.JSX.Element;
3781
+ }: AssetButtonProps) => react_jsx_runtime0.JSX.Element;
3676
3782
  //#endregion
3677
3783
  //#region src/components/common/AddressDisplayCard.d.ts
3678
3784
  type AddressDisplayCardProps = {
@@ -3694,7 +3800,7 @@ declare const AddressDisplayCard: ({
3694
3800
  hideAddress,
3695
3801
  balance,
3696
3802
  tokenAddress
3697
- }: AddressDisplayCardProps) => react_jsx_runtime1.JSX.Element;
3803
+ }: AddressDisplayCardProps) => react_jsx_runtime0.JSX.Element;
3698
3804
  //#endregion
3699
3805
  //#region src/components/common/ModalFAQButton.d.ts
3700
3806
  type FAQButtonProps = {
@@ -3703,13 +3809,13 @@ type FAQButtonProps = {
3703
3809
  declare const ModalFAQButton: ({
3704
3810
  onClick,
3705
3811
  ...props
3706
- }: FAQButtonProps) => react_jsx_runtime1.JSX.Element;
3812
+ }: FAQButtonProps) => react_jsx_runtime0.JSX.Element;
3707
3813
  //#endregion
3708
3814
  //#region src/components/common/ScrollToTopWrapper.d.ts
3709
3815
  declare const ScrollToTopWrapper: ({
3710
3816
  children,
3711
3817
  ...props
3712
- }: StackProps) => react_jsx_runtime1.JSX.Element;
3818
+ }: StackProps) => react_jsx_runtime0.JSX.Element;
3713
3819
  //#endregion
3714
3820
  //#region src/components/common/AccountAvatar.d.ts
3715
3821
  type AccountAvatarProps = {
@@ -3719,7 +3825,7 @@ type AccountAvatarProps = {
3719
3825
  declare const AccountAvatar: ({
3720
3826
  wallet,
3721
3827
  props
3722
- }: AccountAvatarProps) => react_jsx_runtime1.JSX.Element;
3828
+ }: AccountAvatarProps) => react_jsx_runtime0.JSX.Element;
3723
3829
  //#endregion
3724
3830
  //#region src/components/common/TransactionButtonAndStatus.d.ts
3725
3831
  type TransactionButtonAndStatusProps = {
@@ -3761,7 +3867,7 @@ declare const TransactionButtonAndStatus: ({
3761
3867
  isLoadingGasEstimation,
3762
3868
  showGasEstimationError,
3763
3869
  context
3764
- }: TransactionButtonAndStatusProps) => react_jsx_runtime1.JSX.Element;
3870
+ }: TransactionButtonAndStatusProps) => react_jsx_runtime0.JSX.Element;
3765
3871
  //#endregion
3766
3872
  //#region src/components/common/ModalNotificationButton.d.ts
3767
3873
  type NotificationButtonProps = {
@@ -3772,7 +3878,7 @@ declare const ModalNotificationButton: ({
3772
3878
  onClick,
3773
3879
  hasUnreadNotifications,
3774
3880
  ...props
3775
- }: NotificationButtonProps) => react_jsx_runtime1.JSX.Element;
3881
+ }: NotificationButtonProps) => react_jsx_runtime0.JSX.Element;
3776
3882
  //#endregion
3777
3883
  //#region src/components/common/GasFeeSummary.d.ts
3778
3884
  interface GasFeeSummaryProps {
@@ -3808,7 +3914,7 @@ declare const GasFeeTokenSelector: ({
3808
3914
  availableTokens,
3809
3915
  tokenEstimations,
3810
3916
  walletAddress
3811
- }: GasFeeTokenSelectorProps) => react_jsx_runtime1.JSX.Element;
3917
+ }: GasFeeTokenSelectorProps) => react_jsx_runtime0.JSX.Element;
3812
3918
  //#endregion
3813
3919
  //#region src/components/LoginLoadingModal/LoginLoadingModal.d.ts
3814
3920
  type LoginLoadingModalProps = {
@@ -3826,7 +3932,7 @@ declare const LoginLoadingModal: ({
3826
3932
  title,
3827
3933
  loadingText,
3828
3934
  onTryAgain
3829
- }: LoginLoadingModalProps) => react_jsx_runtime1.JSX.Element;
3935
+ }: LoginLoadingModalProps) => react_jsx_runtime0.JSX.Element;
3830
3936
  //#endregion
3831
3937
  //#region src/components/EcosystemModal/EcosystemModal.d.ts
3832
3938
  type Props$3 = {
@@ -3840,7 +3946,7 @@ declare const EcosystemModal: ({
3840
3946
  onClose,
3841
3947
  appsInfo,
3842
3948
  isLoading
3843
- }: Props$3) => react_jsx_runtime1.JSX.Element;
3949
+ }: Props$3) => react_jsx_runtime0.JSX.Element;
3844
3950
  //#endregion
3845
3951
  //#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
3846
3952
  type SuccessfulOperationContentProps = {
@@ -3870,7 +3976,7 @@ declare const UpgradeSmartAccountModal: ({
3870
3976
  isOpen,
3871
3977
  onClose,
3872
3978
  style
3873
- }: Props$2) => react_jsx_runtime1.JSX.Element;
3979
+ }: Props$2) => react_jsx_runtime0.JSX.Element;
3874
3980
  //#endregion
3875
3981
  //#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
3876
3982
  type Props$1 = {
@@ -3885,7 +3991,7 @@ declare const LegalDocumentsModal: ({
3885
3991
  onAgree,
3886
3992
  handleLogout,
3887
3993
  onlyOptionalDocuments
3888
- }: Props$1) => react_jsx_runtime1.JSX.Element;
3994
+ }: Props$1) => react_jsx_runtime0.JSX.Element;
3889
3995
  //#endregion
3890
3996
  //#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
3891
3997
  type Props = {
@@ -3897,7 +4003,7 @@ declare const LegalDocumentItem: ({
3897
4003
  document,
3898
4004
  register,
3899
4005
  isText
3900
- }: Props) => react_jsx_runtime1.JSX.Element;
4006
+ }: Props) => react_jsx_runtime0.JSX.Element;
3901
4007
  //#endregion
3902
4008
  //#region src/providers/ModalProvider.d.ts
3903
4009
  type AccountModalOptions = {
@@ -3928,7 +4034,7 @@ declare const ModalProvider: ({
3928
4034
  children
3929
4035
  }: {
3930
4036
  children: ReactNode;
3931
- }) => react_jsx_runtime1.JSX.Element;
4037
+ }) => react_jsx_runtime0.JSX.Element;
3932
4038
  //#endregion
3933
4039
  //#region src/config/index.d.ts
3934
4040
  type AppConfig = {
@@ -3973,5 +4079,5 @@ type AppConfig = {
3973
4079
  };
3974
4080
  declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
3975
4081
  //#endregion
3976
- export { AssetsContentProps as $, getCustomTokenInfoQueryKey as $a, useChooseNameModal as $i, useGetNodeUrl as $n, EmbeddedWalletContent as $o, getPicassoImage as $r, calculateTotalCost as $s, getSmartAccount as $t, ModalBackButton as A, getXAppMetadata as Aa, useAccountModalOptions as Ai, delegateAuthorized as An, getAvatarQueryKey as Ao, validate as Ar, VechainKitThemeProvider as As, useBuildTransaction as At, AccountModal as B, XApp as Ba, FAQModalProvider as Bi, LocalStorageKey as Bn, useClaimVetDomain as Bo, xNodeToGMstartingLevel as Br, VechainKitProviderProps as Bs, getChainId as Bt, AddressDisplayCard as C, useIpfsImageList as Ca, TransactionStatusErrorType as Cc, useLoginWithVeChain as Ci, useAccountBalance as Cn, getResolverAddressQueryKey as Co, isValidUrl as Cr, ConnectionButton as Cs, useMfaEnrollment as Ct, StickyHeaderContainer as D, getXAppsSharesQueryKey as Da, useSignMessage as Di, useGasEstimation as Dn, getTextRecords as Do, isValid as Dr, LegalDocumentsProvider as Ds, txReceiptQueryKey as Dt, StickyFooterContainer as E, useIpfsMetadata as Ea, useSignTypedData as Ei, UseGasEstimationParams as En, useUpdateTextRecord as Eo, isInvalid as Er, ConnectModalContentsTypes as Es, useThor as Et, QuickActionsSection as F, getRoundXAppsQueryKey as Fa, useLoginModalContent as Fi, useGenericDelegator as Fn, getDomainsOfAddressQueryKey as Fo, NodeStrengthLevelToImage as Fr, LegalDocument as Fs, UseSendTransactionReturnValue as Ft, LanguageSettingsContent as G, useGetVot3Balance as Ga, useExploreEcosystemModal as Gi, useBuildClauses as Gn, useVechainDomain as Go, validateIpfsUri as Gr, LegalDocumentType as Gs, useUpgradeSmartAccount as Gt, TermsAndPrivacyContent as H, getIsPersonQueryKey as Ha, NotificationsModalProvider as Hi, BuildClausesParams as Hn, getEnsRecordExistsQueryKey as Ho, resolveMediaTypeFromMimeType as Hr, EnrichedLegalDocument as Hs, useGetChainId as Ht, BalanceSection as I, useRoundXApps as Ia, ReceiveModalProvider as Ii, useCrossAppConnectionCache as In, useGetDomainsOfAddress as Io, XNodeStrengthLevelToName as Ir, LegalDocumentOptions as Is, useSendTransaction as It, ChangeCurrencyContentProps as J, getTokenUsdPrice as Ja, SwapTokenModalProvider as Ji, decodeEventLog$1 as Jn, fetchPrivyAppInfo as Jo, isValidAddress as Jr, EstimatedGas as Js, useUpgradeRequiredForAccount as Jt, GeneralSettingsContent as K, PRICE_FEED_IDS as Ka, AccessAndSecurityModalProvider as Ki, GetEventsKeyParams as Kn, fetchPrivyStatus as Ko, compareAddresses as Kr, CostLevel as Ks, getUpgradeRequiredForAccount as Kt, AccountSelector as L, useRefreshMetadata as La, useReceiveModal as Li, EcosystemShortcut as Ln, getIsDomainProtectedQueryKey as Lo, allNodeStrengthLevelToName as Lr, VeChainKitConfig as Ls, GetEventsProps as Lt, DomainRequiredAlert as M, useWalletMetadata as Ma, useProfileModal as Mi, estimateGas as Mn, Domain as Mo, TIME as Mr, PrivyWalletProvider as Ms, useTransferVET as Mt, ExchangeWarningAlert as N, UseWalletReturnType as Na, UpgradeSmartAccountModalProvider as Ni, getDepositAccount as Nn, DomainsResponse as No, EconomicNodeStrengthLevelToName as Nr, PrivyWalletProviderContextType as Ns, buildERC20Clauses as Nt, VersionFooter as O, useXAppsShares as Oa, useNotificationAlerts as Oi, useGasTokenSelection as On, getTextRecordsQueryKey as Oo, normalize as Or, useLegalDocuments as Os, useTxReceipt as Ot, FeatureAnnouncementCard as P, useWallet as Pa, useUpgradeSmartAccountModal as Pi, signVip191Transaction as Pn, getDomainsOfAddress as Po, MinXNodeLevel as Pr, usePrivyWalletProvider as Ps, useTransferERC20 as Pt, AssetsContent as Q, useGetErc20Balance as Qa, ChooseNameModalProvider as Qi, useIsPWA as Qn, DisconnectConfirmContentProps as Qo, formatTokenBalance as Qr, VthoPerGasAtSpeed as Qs, SmartAccountReturnType as Qt, ActionButton as R, useRefreshBalances as Ra, AccountCustomizationModalProvider as Ri, useEcosystemShortcuts as Rn, useIsDomainProtected as Ro, buildQueryString as Rr, VeChainKitContext as Rs, getAllEventLogs as Rt, ModalFAQButton as S, useIpfsImage as Sa, TransactionStatus as Sc, useAppHubApps as Si, getAccountBalanceQueryKey as Sn, useGetAvatarOfAddress as So, executeMultipleClausesCall as Sr, EmailLoginButton as Ss, useDAppKitWalletModal as St, BaseModal as T, getIpfsMetadataQueryKey as Ta, Wallet as Tc, useLoginWithPasskey as Ti, useEstimateAllTokens as Tn, buildClauses as To, compare as Tr, ConnectModal as Ts, useSetWalletRecovery as Tt, GasTokenSettingsContent as U, useIsPerson as Ua, useNotificationsModal as Ui, buildBatchAuthorizationTypedData as Un, useEnsRecordExists as Uo, toIPFSURL as Ur, LegalDocumentAgreement as Us, currentBlockQueryKey as Ut, AccountModalContentTypes as V, useMostVotedAppsInRound as Va, useFAQModal as Vi, useLocalStorage as Vn, useClaimVeWorldSubdomain as Vo, convertUriToUrl as Vr, useVeChainKitConfig as Vs, getChainIdQueryKey as Vt, AppearanceSettingsContent as W, getVot3BalanceQueryKey as Wa, ExploreEcosystemModalProvider as Wi, buildSingleAuthorizationTypedData as Wn, getVechainDomainQueryKey as Wo, uploadBlobToIPFS as Wr, LegalDocumentSource as Ws, useCurrentBlock as Wt, ManageCustomTokenContent as X, useGetTokenUsdPrice as Xa, SendTokenModalProvider as Xi, useEvents as Xn, useFetchAppInfo as Xo, regexPattern as Xr, Rate as Xs, getUpgradeRequiredQueryKey as Xt, BridgeContent as Y, getTokenUsdPriceQueryKey as Ya, useSwapTokenModal as Yi, getEventsKey as Yn, getPrivyAppInfoQueryKey as Yo, leftPadWithZeros as Yr, EstimationResponse as Ys, getUpgradeRequired as Yt, ManageCustomTokenContentProps as Z, getErc20BalanceQueryKey as Za, useSendTokenModal as Zi, useScrollToTop as Zn, DisconnectConfirmContent as Zo, randomTransactionUser as Zr, TransactionCost as Zs, useUpgradeRequired as Zt, ModalNotificationButton as _, useIpfsMetadatas as _a, NFTMediaType as _c, getGenericDelegatorUrl as _i, useCurrentAccountImplementationVersion as _n, useUnsetDomain as _o, MultipleClausesCallParameters as _r, PasskeyLoginButton as _s, SelectTokenContent as _t, useModal as a, useTransactionModal as aa, GasTokenType as ac, DEFAULT_PRIVY_ECOSYSTEM_APPS as ai, getIsDeployedQueryKey as an, getB3trBalanceQueryKey as ao, useMultipleClausesCall as ar, TransactionModalContent as as, CustomizationSummaryContentProps as at, AccountAvatar as b, getIpfsImage as ba, SmartAccount as bc, fetchAppHubApps as bi, useAccountImplementationAddress as bn, useGetAvatarLegacy as bo, buildCallClauses as br, EcosystemButton as bs, ThorClient$1 as bt, LegalDocumentsModal as c, ConnectModalProvider as ca, TextRecords as cc, SUPPORTED_GAS_TOKENS as ci, getHasV1SmartAccountQueryKey as cn, getCurrentAllocationsRoundIdQueryKey as co, getLocalStorageItem as cr, TransactionModalProps as cs, FAQContent as ct, UpgradeSmartAccountModalContentsTypes as d, useSwapTransaction as da, ConnectionSource as dc, TogglePassportCheck as di, useGetAccountVersion as dn, TokenWithValue as do, isBrowser as dr, WalletButtonProps as ds, ChooseNameSearchContent as dt, WalletModalProvider as ea, formatGasCost as ec, humanAddress as ei, getSmartAccountQueryKey as en, getTokenInfo as eo, useFeatureAnnouncement as er, SettingsContent as es, UpgradeSmartAccountContent as et, UpgradeSmartAccountModalStyle as f, useSingleImageUpload as fa, CrossAppConnectionCache as fc, VECHAIN_KIT_COOKIES_CONFIG as fi, getAccountAddress as fn, useTokensWithValues as fo, isOnline as fr, WalletDisplayVariant as fs, ChooseNameSearchContentProps as ft, GasFeeSummary as g, useUploadImages as ga, ExecuteWithAuthorizationSignData as gc, getENV as gi, getCurrentAccountImplementationVersionQueryKey as gn, useTokenBalances as go, setLocalStorageItem as gr, DappKitButton as gs, ReceiveTokenContent as gt, GasFeeTokenSelector as h, imageCompressionOptions as ha, ExecuteBatchWithAuthorizationSignData as hc, VECHAIN_PRIVY_APP_ID as hi, getCurrentAccountImplementationVersion as hn, WalletTokenBalance as ho, safeWindowOpen as hr, VeChainWithPrivyLoginButton as hs, SwapTokenContent as ht, ModalProvider as i, TransactionModalProvider as ia, GasTokenSelection as ic, DEFAULT_GAS_TOKEN_PREFERENCES as ii, getIsDeployed as in, useGetCustomTokenBalances as io, useCallClause as ir, TransactionToast as is, CustomizationSummaryContent as it, CrossAppConnectionSecurityCard as j, useXAppMetadata as ja, ProfileModalProvider as ji, estimateAndBuildTxBody as jn, useGetAvatar as jo, isRejectionError as jr, useVechainKitThemeConfig as js, buildVETClauses as jt, AddressDisplay as k, XAppMetadata as ka, useNotifications as ki, decodeRawTx as kn, useGetTextRecords as ko, removePrefix as kr, ColorModeSync as ks, BuildTransactionProps as kt, LegalDocumentsModalContentsTypes as l, useConnectModal as la, CURRENCY as lc, TOKEN_LOGOS as li, useHasV1SmartAccount as ln, useCurrentAllocationsRoundId as lo, getWindowOrigin as lr, SocialIcons as ls, ChooseNameSummaryContent as lt, LoginLoadingModal as m, compressImages as ma, EnhancedClause as mc, VECHAIN_KIT_TERMS_CONFIG as mi, useGetAccountAddress as mn, useTokenPrices as mo, safeQuerySelector as mr, LoginWithGithubButton as ms, ChooseNameContentProps as mt, getConfig as n, TransactionToastProvider as na, GasTokenInfo as nc, humanNumber as ni, useRefreshSmartAccountQueries as nn, TokenWithBalance as no, getCallClauseQueryKey as nr, AccessAndSecurityContent as ns, ProfileContent as nt, DAppKitWalletButton as o, AccountModalProvider as oa, TransactionSpeed as oc, ENV as oi, useIsSmartAccountDeployed as on, useGetB3trBalance as oo, copyToClipboard as or, ShareButtons as os, AccountCustomizationContentProps as ot, EcosystemModal as p, UploadedImage as pa, ENSRecords as pc, VECHAIN_KIT_STORAGE_KEYS as pi, getAccountAddressQueryKey as pn, ExchangeRates as po, removeLocalStorageItem as pr, ConnectPopover as ps, ChooseNameContent as pt, ChangeCurrencyContent as q, SupportedToken as qa, useAccessAndSecurityModal as qi, UseEventsParams as qn, useFetchPrivyStatus as qo, compareListOfAddresses as qr, DepositAccount as qs, getUpgradeRequiredForAccountQueryKey as qt, AccountModalOptions as r, useTransactionToast as ra, GasTokenPreferences as rc, isZero as ri, useRefreshFactoryQueries as rn, getCustomTokenBalanceQueryKey as ro, getCallClauseQueryKeyWithArgs as rr, AccountMainContent as rs, ProfileContentProps as rt, LegalDocumentItem as s, useAccountModal as sa, ENS_TEXT_RECORDS as sc, PrivyEcosystemApp as si, getHasV1SmartAccount as sn, useCustomTokens as so, getDocumentTitle as sr, TransactionModal as ss, CustomizationContent as st, AppConfig as t, useWalletModal as ta, GasTokenEstimate as tc, humanDomain as ti, useSmartAccount as tn, useGetCustomTokenInfo as to, useCurrency as tr, SettingsContentProps as ts, UpgradeSmartAccountContentProps as tt, UpgradeSmartAccountModal as u, useSwapQuotes as ua, CURRENCY_SYMBOLS as uc, TOKEN_LOGO_COMPONENTS as ui, getAccountVersionQueryKey as un, useTotalBalance as uo, hasNavigator as ur, WalletButton as us, ChooseNameSummaryContentProps as ut, TransactionButtonAndStatus as v, IpfsImage as va, PrivyAppInfo as vc, notFoundImage as vi, getAccountImplementationAddress as vn, getAvatarLegacy as vo, MultipleClausesCallReturnType as vr, LoginWithGoogleButton as vs, SendTokenSummaryContent as vt, AssetButton as w, getIpfsMetadata as wa, VePassportUserStatus as wc, useLoginWithOAuth as wi, UseEstimateAllTokensParams as wn, useGetResolverAddress as wo, addPrefix as wr, MainContent as ws, usePrivy as wt, ScrollToTopWrapper as x, getIpfsImageQueryKey as xa, TokenBalance as xc, getAppHubAppsQueryKey as xi, getAccountBalance as xn, getAvatarOfAddressQueryKey as xo, executeCallClause as xr, VeChainLoginButton as xs, useDAppKitWallet as xt, TransactionButtonAndStatusProps as y, MAX_IMAGE_SIZE as ya, PrivyLoginMethod as yc, AppHubApp as yi, getAccountImplementationAddressQueryKey as yn, getAvatarLegacyQueryKey as yo, ViewFunctionResult as yr, PrivyButton as ys, SendTokenContent as yt, AccountDetailsButton as z, MostVotedAppsInRoundReturnType as za, useAccountCustomizationModal as zi, useSyncableLocalStorage as zn, buildVetDomainClauses as zo, gmNfts as zr, VeChainKitProvider as zs, getEventLogs as zt };
3977
- //# sourceMappingURL=index-CozseDtf.d.cts.map
4082
+ 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 };
4083
+ //# sourceMappingURL=index-CoM8jwiv.d.cts.map