@vechain/vechain-kit 2.6.9 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { ButtonProps, IconButtonProps, ImageProps, PropsOf, StackProps, ThemeTypings, VStack } from "@chakra-ui/react";
1
+ import { BoxProps, ButtonProps, IconButtonProps, ImageProps, PropsOf, StackProps, TextProps, ThemeTypings, VStack } from "@chakra-ui/react";
2
2
  import * as react0 from "react";
3
3
  import React$1, { ElementType, ReactElement, ReactNode } from "react";
4
4
  import * as react_jsx_runtime1 from "react/jsx-runtime";
@@ -11,11 +11,12 @@ 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_query8 from "@tanstack/react-query";
14
+ import * as _tanstack_react_query37 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";
18
18
  import { Options } from "browser-image-compression";
19
+ import * as _tanstack_query_core0 from "@tanstack/query-core";
19
20
  import { Account } from "viem/accounts";
20
21
  import * as abitype0 from "abitype";
21
22
  import { AbiParametersToPrimitiveTypes, ExtractAbiFunction, ExtractAbiFunctionNames } from "abitype";
@@ -56,6 +57,55 @@ declare const genesises: {
56
57
  which(gid: string): "main" | "test" | "solo" | undefined;
57
58
  };
58
59
  //#endregion
60
+ //#region src/config/index.d.ts
61
+ type AppConfig = {
62
+ ipfsFetchingService: string;
63
+ ipfsPinningService: string;
64
+ vthoContractAddress: string;
65
+ b3trContractAddress: string;
66
+ vot3ContractAddress: string;
67
+ b3trGovernorAddress: string;
68
+ timelockContractAddress: string;
69
+ xAllocationPoolContractAddress: string;
70
+ xAllocationVotingContractAddress: string;
71
+ emissionsContractAddress: string;
72
+ voterRewardsContractAddress: string;
73
+ galaxyMemberContractAddress: string;
74
+ treasuryContractAddress: string;
75
+ x2EarnAppsContractAddress: string;
76
+ x2EarnCreatorContractAddress: string;
77
+ x2EarnRewardsPoolContractAddress: string;
78
+ nodeManagementContractAddress: string;
79
+ veBetterPassportContractAddress: string;
80
+ veDelegate: string;
81
+ veDelegateVotes: string;
82
+ veDelegateTokenContractAddress: string;
83
+ oracleContractAddress: string;
84
+ accountFactoryAddress: string;
85
+ cleanifyCampaignsContractAddress: string;
86
+ cleanifyChallengesContractAddress: string;
87
+ veWorldSubdomainClaimerContractAddress: string;
88
+ vetDomainsContractAddress: string;
89
+ vetDomainsPublicResolverAddress: string;
90
+ vetDomainsReverseRegistrarAddress: string;
91
+ vnsResolverAddress: string;
92
+ sassContractAddress: string;
93
+ vvetContractAddress: string;
94
+ stargateContractAddress: string;
95
+ stargateNftContractAddress: string;
96
+ navigatorRegistryContractAddress: string;
97
+ betterSwapFactoryAddress: string;
98
+ juicyPoolAddress: string;
99
+ vetDomainAvatarUrl: string;
100
+ nodeUrl: string;
101
+ indexerUrl: string;
102
+ b3trIndexerUrl: string;
103
+ graphQlIndexerUrl: string;
104
+ network: Network;
105
+ explorerUrl: string;
106
+ };
107
+ declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
108
+ //#endregion
59
109
  //#region src/types/types.d.ts
60
110
  type TokenBalance = {
61
111
  original: string;
@@ -336,6 +386,10 @@ interface ThemeTokens {
336
386
  success: string;
337
387
  error: string;
338
388
  warning: string;
389
+ /** Brand accent. Used by the connect flow's spinner top arc, focus
390
+ * rings, "Waiting for signature…" headline, and the email submit
391
+ * link when the address is valid. */
392
+ accent: string;
339
393
  };
340
394
  buttons: {
341
395
  button: {
@@ -416,6 +470,10 @@ interface ThemeTokens {
416
470
  */
417
471
  interface VechainKitThemeConfig {
418
472
  textColor?: string;
473
+ /** Brand accent. Used by the connect modal's spinner, focus rings, the
474
+ * "Waiting for signature…" headline, and the email submit link when the
475
+ * address is valid. Default: blue (`#3b82f6` light / `#60a5fa` dark). */
476
+ accent?: string;
419
477
  overlay?: {
420
478
  backgroundColor?: string;
421
479
  blur?: string;
@@ -493,8 +551,8 @@ interface VechainKitThemeConfig {
493
551
  }
494
552
  //#endregion
495
553
  //#region src/providers/VeChainKitProvider.d.ts
496
- type AlwaysAvailableMethods = 'vechain' | 'dappkit' | 'ecosystem';
497
- type PrivyDependentMethods = 'email' | 'google' | 'github' | 'passkey' | 'more';
554
+ type AlwaysAvailableMethods = 'vechain' | 'dappkit' | 'ecosystem' | 'veworld' | 'sync2' | 'wallet-connect';
555
+ type PrivyDependentMethods = 'email' | 'google' | 'apple' | 'github' | 'passkey' | 'more';
498
556
  type AccountQuickAction = 'send' | 'swap' | 'receive';
499
557
  type LoginMethodOrder = {
500
558
  method: AlwaysAvailableMethods | (VechainKitProviderProps['privy'] extends undefined ? never : PrivyDependentMethods);
@@ -576,6 +634,23 @@ type VechainKitProviderProps = {
576
634
  allowCustomTokens?: boolean;
577
635
  /** When true, community tokens (e.g. SASS) are included in token lists and balances. */
578
636
  allowCommunityTokens?: boolean;
637
+ /**
638
+ * Override default contract addresses for the selected network.
639
+ * Useful when deploying custom contract instances (e.g., on solo or testnet).
640
+ * Only the provided fields are overridden; the rest use the network defaults.
641
+ *
642
+ * @example
643
+ * ```tsx
644
+ * <VeChainKitProvider
645
+ * network={{ type: 'solo' }}
646
+ * contractAddresses={{
647
+ * b3trContractAddress: '0x...',
648
+ * vot3ContractAddress: '0x...',
649
+ * }}
650
+ * >
651
+ * ```
652
+ */
653
+ contractAddresses?: Partial<AppConfig>;
579
654
  legalDocuments?: LegalDocumentOptions;
580
655
  hiddenQuickActions?: AccountQuickAction[];
581
656
  defaultCurrency?: CURRENCY;
@@ -595,6 +670,8 @@ type VeChainKitConfig = {
595
670
  loginMethods?: VechainKitProviderProps['loginMethods'];
596
671
  darkMode: boolean;
597
672
  i18n?: VechainKitProviderProps['i18n'];
673
+ /** The full app config for the current network, with any contractAddresses overrides applied. */
674
+ appConfig: AppConfig;
598
675
  network: {
599
676
  type: NETWORK_TYPE;
600
677
  nodeUrl: string;
@@ -641,6 +718,17 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
641
718
  * ```
642
719
  */
643
720
  declare const useVeChainKitConfig: () => VeChainKitConfig;
721
+ /**
722
+ * Hook to get the merged app config for the current network.
723
+ * Returns the base network config with any contractAddresses overrides applied.
724
+ *
725
+ * @example
726
+ * ```tsx
727
+ * const config = useAppConfig();
728
+ * const b3trAddress = config.b3trContractAddress;
729
+ * ```
730
+ */
731
+ declare const useAppConfig: () => AppConfig;
644
732
  declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime1.JSX.Element;
645
733
  //#endregion
646
734
  //#region src/providers/PrivyWalletProvider.d.ts
@@ -688,7 +776,7 @@ declare const PrivyWalletProvider: ({
688
776
  declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
689
777
  //#endregion
690
778
  //#region src/providers/VechainKitThemeProvider.d.ts
691
- type Props$35 = {
779
+ type Props$42 = {
692
780
  children: ReactNode;
693
781
  darkMode?: boolean;
694
782
  theme?: VechainKitThemeConfig;
@@ -698,19 +786,14 @@ declare const useVechainKitThemeConfig: () => {
698
786
  tokens?: ThemeTokens;
699
787
  themeConfig?: VechainKitThemeConfig;
700
788
  };
701
- declare const ColorModeSync: ({
702
- darkMode
703
- }: {
704
- darkMode: boolean;
705
- }) => react_jsx_runtime1.JSX.Element;
706
789
  declare const VechainKitThemeProvider: ({
707
790
  children,
708
791
  darkMode,
709
792
  theme: customTheme
710
- }: Props$35) => react_jsx_runtime1.JSX.Element;
793
+ }: Props$42) => react_jsx_runtime1.JSX.Element;
711
794
  //#endregion
712
795
  //#region src/providers/LegalDocumentsProvider.d.ts
713
- type Props$34 = {
796
+ type Props$41 = {
714
797
  children: Readonly<ReactNode>;
715
798
  };
716
799
  type LegalDocumentsContextType = {
@@ -723,10 +806,10 @@ type LegalDocumentsContextType = {
723
806
  declare const useLegalDocuments: () => LegalDocumentsContextType;
724
807
  declare const LegalDocumentsProvider: ({
725
808
  children
726
- }: Props$34) => react_jsx_runtime1.JSX.Element;
809
+ }: Props$41) => react_jsx_runtime1.JSX.Element;
727
810
  //#endregion
728
811
  //#region src/components/ConnectModal/ConnectModal.d.ts
729
- type Props$33 = {
812
+ type Props$40 = {
730
813
  isOpen: boolean;
731
814
  onClose: () => void;
732
815
  initialContent?: ConnectModalContentsTypes;
@@ -753,21 +836,26 @@ type ConnectModalContentsTypes = 'main' | 'faq' | {
753
836
  error: string;
754
837
  onTryAgain: () => void;
755
838
  };
839
+ } | {
840
+ type: 'more';
841
+ props: {
842
+ showBackButton?: boolean;
843
+ };
756
844
  };
757
845
  declare const ConnectModal: ({
758
846
  isOpen,
759
847
  onClose,
760
848
  initialContent,
761
849
  preventAutoClose
762
- }: Props$33) => react_jsx_runtime1.JSX.Element;
850
+ }: Props$40) => react_jsx_runtime1.JSX.Element;
763
851
  //#endregion
764
852
  //#region src/components/ConnectModal/Contents/MainContent.d.ts
765
- type Props$32 = {
853
+ type Props$39 = {
766
854
  setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
767
855
  };
768
856
  declare const MainContent: ({
769
857
  setCurrentContent
770
- }: Props$32) => react_jsx_runtime1.JSX.Element;
858
+ }: Props$39) => react_jsx_runtime1.JSX.Element;
771
859
  //#endregion
772
860
  //#region src/components/ConnectModal/Contents/LoadingContent.d.ts
773
861
  type LoadingContentProps = {
@@ -777,14 +865,25 @@ type LoadingContentProps = {
777
865
  onClose: () => void;
778
866
  onGoBack: () => void;
779
867
  showBackButton?: boolean;
868
+ /**
869
+ * Icon to render inside the 64×64 spinner ring. Optional — when omitted
870
+ * the ring shows on its own.
871
+ */
872
+ providerIcon?: ReactNode;
780
873
  };
874
+ /**
875
+ * Centered 64×64 spinner ring (3px stroke, top arc coloured with --m-accent)
876
+ * with the provider icon centered inside. Below the ring: an accent-colored
877
+ * "Waiting for signature…" headline and the hint copy. A persistent Cancel
878
+ * link at the bottom returns the user where they came from.
879
+ */
781
880
  declare const LoadingContent: ({
782
881
  loadingText,
783
882
  title,
784
- onTryAgain,
785
883
  onClose,
786
884
  onGoBack,
787
- showBackButton
885
+ showBackButton,
886
+ providerIcon
788
887
  }: LoadingContentProps) => react_jsx_runtime1.JSX.Element;
789
888
  //#endregion
790
889
  //#region src/components/ConnectModal/Contents/ErrorContent.d.ts
@@ -794,6 +893,13 @@ type ErrorContentProps = {
794
893
  onTryAgain: () => void;
795
894
  onGoBack: () => void;
796
895
  };
896
+ /**
897
+ * Error view per spec:
898
+ * - 56×56 soft-red circle with an alert glyph
899
+ * - "Couldn't connect" headline at 18px Bold
900
+ * - Plain message body
901
+ * - Back (secondary) + Try again (primary) side-by-side
902
+ */
797
903
  declare const ErrorContent: ({
798
904
  error,
799
905
  onClose,
@@ -802,7 +908,7 @@ declare const ErrorContent: ({
802
908
  }: ErrorContentProps) => react_jsx_runtime1.JSX.Element;
803
909
  //#endregion
804
910
  //#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
805
- type Props$31 = {
911
+ type Props$38 = {
806
912
  onClose: () => void;
807
913
  appsInfo: PrivyAppInfo[];
808
914
  isLoading: boolean;
@@ -815,7 +921,19 @@ declare const EcosystemContent: ({
815
921
  isLoading,
816
922
  setCurrentContent,
817
923
  showBackButton
818
- }: Props$31) => react_jsx_runtime1.JSX.Element;
924
+ }: Props$38) => react_jsx_runtime1.JSX.Element;
925
+ //#endregion
926
+ //#region src/components/ConnectModal/Contents/MoreOptionsContent.d.ts
927
+ type Props$37 = {
928
+ onClose: () => void;
929
+ setCurrentContent: React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
930
+ showBackButton?: boolean;
931
+ };
932
+ declare const MoreOptionsContent: ({
933
+ onClose,
934
+ setCurrentContent,
935
+ showBackButton
936
+ }: Props$37) => react_jsx_runtime1.JSX.Element;
819
937
  //#endregion
820
938
  //#region src/components/ConnectModal/Components/ConnectionButton.d.ts
821
939
  interface ConnectionButtonProps {
@@ -829,6 +947,13 @@ interface ConnectionButtonProps {
829
947
  variant?: string;
830
948
  iconWidth?: string;
831
949
  }
950
+ /**
951
+ * Login provider button — uses the three-slot layout from the design spec:
952
+ * [ 24px icon ] [ label flex=1 ] [ optional trailing slot ]
953
+ *
954
+ * - Height ~52px, padding 14px 18px, gap 14px
955
+ * - Icon-only mode (no `text`) keeps the legacy compact layout
956
+ */
832
957
  declare const ConnectionButton: ({
833
958
  onClick,
834
959
  text,
@@ -838,13 +963,13 @@ declare const ConnectionButton: ({
838
963
  style,
839
964
  variant,
840
965
  iconWidth
841
- }: ConnectionButtonProps) => react_jsx_runtime1.JSX.Element | null;
966
+ }: ConnectionButtonProps) => react_jsx_runtime1.JSX.Element;
842
967
  //#endregion
843
968
  //#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
844
969
  declare const EmailLoginButton: () => react_jsx_runtime1.JSX.Element;
845
970
  //#endregion
846
971
  //#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
847
- type Props$30 = {
972
+ type Props$36 = {
848
973
  isDark: boolean;
849
974
  gridColumn?: number;
850
975
  setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
@@ -853,10 +978,10 @@ declare const VeChainLoginButton: ({
853
978
  isDark,
854
979
  gridColumn,
855
980
  setCurrentContent
856
- }: Props$30) => react_jsx_runtime1.JSX.Element;
981
+ }: Props$36) => react_jsx_runtime1.JSX.Element;
857
982
  //#endregion
858
983
  //#region src/components/ConnectModal/Components/EcosystemButton.d.ts
859
- type Props$29 = {
984
+ type Props$35 = {
860
985
  isDark: boolean;
861
986
  appsInfo: PrivyAppInfo[];
862
987
  isLoading: boolean;
@@ -867,10 +992,10 @@ declare const EcosystemButton: ({
867
992
  appsInfo,
868
993
  isLoading,
869
994
  setCurrentContent
870
- }: Props$29) => react_jsx_runtime1.JSX.Element;
995
+ }: Props$35) => react_jsx_runtime1.JSX.Element;
871
996
  //#endregion
872
997
  //#region src/components/ConnectModal/Components/PrivyButton.d.ts
873
- type Props$28 = {
998
+ type Props$34 = {
874
999
  isDark: boolean;
875
1000
  onViewMoreLogin: () => void;
876
1001
  gridColumn?: number;
@@ -879,20 +1004,33 @@ declare const PrivyButton: ({
879
1004
  isDark,
880
1005
  onViewMoreLogin,
881
1006
  gridColumn
882
- }: Props$28) => react_jsx_runtime1.JSX.Element;
1007
+ }: Props$34) => react_jsx_runtime1.JSX.Element;
883
1008
  //#endregion
884
1009
  //#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
885
- type Props$27 = {
1010
+ type Props$33 = {
886
1011
  isDark: boolean;
887
1012
  gridColumn?: number;
888
1013
  };
1014
+ /** Secondary outline button — theme-driven stroke + row hover. */
889
1015
  declare const LoginWithGoogleButton: ({
890
1016
  isDark,
891
1017
  gridColumn
892
- }: Props$27) => react_jsx_runtime1.JSX.Element;
1018
+ }: Props$33) => react_jsx_runtime1.JSX.Element;
1019
+ //#endregion
1020
+ //#region src/components/ConnectModal/Components/LoginWithAppleButton.d.ts
1021
+ type Props$32 = {
1022
+ isDark: boolean;
1023
+ gridColumn?: number;
1024
+ };
1025
+ /** Secondary outline button — theme-driven stroke + row hover. Apple glyph
1026
+ * flips to match the modal's text color so it stays legible across themes. */
1027
+ declare const LoginWithAppleButton: ({
1028
+ isDark,
1029
+ gridColumn
1030
+ }: Props$32) => react_jsx_runtime1.JSX.Element;
893
1031
  //#endregion
894
1032
  //#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
895
- type Props$26 = {
1033
+ type Props$31 = {
896
1034
  isDark: boolean;
897
1035
  gridColumn?: number;
898
1036
  setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
@@ -901,37 +1039,79 @@ declare const PasskeyLoginButton: ({
901
1039
  isDark,
902
1040
  gridColumn,
903
1041
  setCurrentContent
904
- }: Props$26) => react_jsx_runtime1.JSX.Element;
1042
+ }: Props$31) => react_jsx_runtime1.JSX.Element;
905
1043
  //#endregion
906
1044
  //#region src/components/ConnectModal/Components/DappKitButton.d.ts
907
- type Props$25 = {
1045
+ type Props$30 = {
908
1046
  isDark: boolean;
909
1047
  gridColumn?: number;
910
1048
  };
911
1049
  declare const DappKitButton: ({
912
1050
  isDark,
913
1051
  gridColumn
914
- }: Props$25) => react_jsx_runtime1.JSX.Element;
1052
+ }: Props$30) => react_jsx_runtime1.JSX.Element;
915
1053
  //#endregion
916
1054
  //#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
917
- type Props$24 = {
1055
+ type Props$29 = {
918
1056
  isDark: boolean;
919
1057
  gridColumn?: number;
920
1058
  };
921
1059
  declare const VeChainWithPrivyLoginButton: ({
922
1060
  isDark,
923
1061
  gridColumn
924
- }: Props$24) => react_jsx_runtime1.JSX.Element;
1062
+ }: Props$29) => react_jsx_runtime1.JSX.Element;
925
1063
  //#endregion
926
1064
  //#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
927
- type Props$23 = {
1065
+ type Props$28 = {
928
1066
  isDark: boolean;
929
1067
  gridColumn?: number;
930
1068
  };
931
1069
  declare const LoginWithGithubButton: ({
932
1070
  isDark,
933
1071
  gridColumn
934
- }: Props$23) => react_jsx_runtime1.JSX.Element;
1072
+ }: Props$28) => react_jsx_runtime1.JSX.Element;
1073
+ //#endregion
1074
+ //#region src/components/ConnectModal/Components/VeWorldButton.d.ts
1075
+ type Props$27 = {
1076
+ isDark: boolean;
1077
+ gridColumn?: number;
1078
+ setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
1079
+ };
1080
+ /**
1081
+ * Primary CTA — filled with the theme's primary-button surface.
1082
+ * Devs that customise `theme.buttons.primaryButton.{bg,color}` automatically
1083
+ * restyle this button too.
1084
+ * Recommended-provider green dot in the trailing slot.
1085
+ */
1086
+ declare const VeWorldButton: ({
1087
+ isDark,
1088
+ gridColumn,
1089
+ setCurrentContent
1090
+ }: Props$27) => react_jsx_runtime1.JSX.Element;
1091
+ //#endregion
1092
+ //#region src/components/ConnectModal/Components/Sync2Button.d.ts
1093
+ type Props$26 = {
1094
+ isDark: boolean;
1095
+ gridColumn?: number;
1096
+ setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
1097
+ };
1098
+ declare const Sync2Button: ({
1099
+ isDark,
1100
+ gridColumn,
1101
+ setCurrentContent
1102
+ }: Props$26) => react_jsx_runtime1.JSX.Element;
1103
+ //#endregion
1104
+ //#region src/components/ConnectModal/Components/WalletConnectButton.d.ts
1105
+ type Props$25 = {
1106
+ isDark: boolean;
1107
+ gridColumn?: number;
1108
+ setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
1109
+ };
1110
+ declare const WalletConnectButton: ({
1111
+ isDark,
1112
+ gridColumn,
1113
+ setCurrentContent
1114
+ }: Props$25) => react_jsx_runtime1.JSX.Element;
935
1115
  //#endregion
936
1116
  //#region src/components/ConnectModal/ConnectPopover.d.ts
937
1117
  type ConnectPopoverProps = {
@@ -996,14 +1176,14 @@ declare const TransactionModal: ({
996
1176
  }: TransactionModalProps) => react_jsx_runtime1.JSX.Element | null;
997
1177
  //#endregion
998
1178
  //#region src/components/TransactionModal/Components/ShareButtons.d.ts
999
- type Props$22 = {
1179
+ type Props$24 = {
1000
1180
  description: string;
1001
1181
  url?: string;
1002
1182
  facebookHashtag?: string;
1003
1183
  };
1004
1184
  declare const ShareButtons: ({
1005
1185
  description
1006
- }: Props$22) => react_jsx_runtime1.JSX.Element;
1186
+ }: Props$24) => react_jsx_runtime1.JSX.Element;
1007
1187
  //#endregion
1008
1188
  //#region src/components/TransactionModal/TransactionModalContent.d.ts
1009
1189
  declare const TransactionModalContent: ({
@@ -1036,7 +1216,7 @@ declare const TransactionToast: ({
1036
1216
  }: TransactionToastProps) => react_jsx_runtime1.JSX.Element | null;
1037
1217
  //#endregion
1038
1218
  //#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
1039
- type Props$21 = {
1219
+ type Props$23 = {
1040
1220
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
1041
1221
  onClose: () => void;
1042
1222
  wallet: Wallet;
@@ -1049,12 +1229,12 @@ declare const AccountMainContent: ({
1049
1229
  wallet,
1050
1230
  onClose,
1051
1231
  switchFeedback
1052
- }: Props$21) => react_jsx_runtime1.JSX.Element;
1232
+ }: Props$23) => react_jsx_runtime1.JSX.Element;
1053
1233
  //#endregion
1054
1234
  //#region src/hooks/api/privy/useFetchAppInfo.d.ts
1055
1235
  declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
1056
1236
  declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
1057
- declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
1237
+ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query37.UseQueryResult<{
1058
1238
  [k: string]: {
1059
1239
  website: string | undefined;
1060
1240
  id: string;
@@ -1075,7 +1255,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
1075
1255
  //#endregion
1076
1256
  //#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
1077
1257
  declare const fetchPrivyStatus: () => Promise<string>;
1078
- declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
1258
+ declare const useFetchPrivyStatus: () => _tanstack_react_query37.UseQueryResult<string, Error>;
1079
1259
  //#endregion
1080
1260
  //#region src/hooks/api/vetDomains/useVechainDomain.d.ts
1081
1261
  interface VeChainDomainResult {
@@ -1085,11 +1265,11 @@ interface VeChainDomainResult {
1085
1265
  isPrimaryDomain: boolean;
1086
1266
  }
1087
1267
  declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
1088
- declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
1268
+ declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query37.UseQueryResult<VeChainDomainResult, Error>;
1089
1269
  //#endregion
1090
1270
  //#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
1091
1271
  declare const getEnsRecordExistsQueryKey: (name: string) => string[];
1092
- declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1272
+ declare const useEnsRecordExists: (name: string) => _tanstack_react_query37.UseQueryResult<boolean, Error>;
1093
1273
  //#endregion
1094
1274
  //#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
1095
1275
  type useClaimVeWorldSubdomainProps = {
@@ -1151,7 +1331,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
1151
1331
  * @param {boolean} [enabled=true] - Flag to enable or disable the hook.
1152
1332
  * @returns The result of the useQuery hook, with the protection status.
1153
1333
  */
1154
- declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1334
+ declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query37.UseQueryResult<boolean, Error>;
1155
1335
  //#endregion
1156
1336
  //#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
1157
1337
  declare const DomainSchema: z.ZodObject<{
@@ -1179,7 +1359,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
1179
1359
  * @param parentDomain The parent domain (e.g., "veworld.vet")
1180
1360
  * @returns The domains owned by the address
1181
1361
  */
1182
- declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
1362
+ declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query37.UseQueryResult<{
1183
1363
  domains: {
1184
1364
  name: string;
1185
1365
  }[];
@@ -1192,7 +1372,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
1192
1372
  * @param name - The VET domain name
1193
1373
  * @returns The resolved avatar URL
1194
1374
  */
1195
- declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1375
+ declare const useGetAvatar: (name: string) => _tanstack_react_query37.UseQueryResult<string | null, Error>;
1196
1376
  //#endregion
1197
1377
  //#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
1198
1378
  /**
@@ -1204,7 +1384,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryRes
1204
1384
  */
1205
1385
  declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
1206
1386
  declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
1207
- declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
1387
+ declare const useGetTextRecords: (domain?: string) => _tanstack_react_query37.UseQueryResult<TextRecords, Error>;
1208
1388
  //#endregion
1209
1389
  //#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
1210
1390
  type UpdateTextRecordVariables = {
@@ -1237,7 +1417,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
1237
1417
  * @param domain The domain to get resolver for
1238
1418
  * @returns The resolver address for the domain
1239
1419
  */
1240
- declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
1420
+ declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query37.UseQueryResult<`0x${string}`, unknown>;
1241
1421
  //#endregion
1242
1422
  //#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
1243
1423
  declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
@@ -1247,7 +1427,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
1247
1427
  * @param address The owner's address
1248
1428
  * @returns The avatar URL for the address's primary domain
1249
1429
  */
1250
- declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
1430
+ declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query37.UseQueryResult<string, Error>;
1251
1431
  //#endregion
1252
1432
  //#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
1253
1433
  /**
@@ -1264,7 +1444,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
1264
1444
  * @param name - The VET domain name
1265
1445
  * @returns The resolved avatar URL
1266
1446
  */
1267
- declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1447
+ declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query37.UseQueryResult<string | null, Error>;
1268
1448
  //#endregion
1269
1449
  //#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
1270
1450
  type useUnsetDomainProps = {
@@ -1303,9 +1483,8 @@ type ExchangeRates = {
1303
1483
  gbpUsdPrice: number;
1304
1484
  };
1305
1485
  declare const useTokenPrices: () => {
1306
- prices: {
1307
- [x: string]: number;
1308
- };
1486
+ prices: Record<string, number>;
1487
+ priceChanges: Record<string, number>;
1309
1488
  exchangeRates: ExchangeRates;
1310
1489
  isLoading: boolean;
1311
1490
  };
@@ -1315,6 +1494,7 @@ type TokenWithValue = WalletTokenBalance & {
1315
1494
  priceUsd: number;
1316
1495
  valueUsd: number;
1317
1496
  valueInCurrency: number;
1497
+ priceChange24hPct?: number;
1318
1498
  };
1319
1499
  type UseTokensWithValuesProps = {
1320
1500
  address?: string;
@@ -1326,6 +1506,7 @@ declare const useTokensWithValues: ({
1326
1506
  priceUsd: number;
1327
1507
  valueUsd: number;
1328
1508
  valueInCurrency: number;
1509
+ priceChange24hPct: number;
1329
1510
  address: string;
1330
1511
  symbol: string;
1331
1512
  balance: string;
@@ -1334,6 +1515,7 @@ declare const useTokensWithValues: ({
1334
1515
  priceUsd: number;
1335
1516
  valueUsd: number;
1336
1517
  valueInCurrency: number;
1518
+ priceChange24hPct: number;
1337
1519
  address: string;
1338
1520
  symbol: string;
1339
1521
  balance: string;
@@ -1342,6 +1524,7 @@ declare const useTokensWithValues: ({
1342
1524
  priceUsd: number;
1343
1525
  valueUsd: number;
1344
1526
  valueInCurrency: number;
1527
+ priceChange24hPct: number;
1345
1528
  address: string;
1346
1529
  symbol: string;
1347
1530
  balance: string;
@@ -1358,6 +1541,11 @@ declare const useTotalBalance: ({
1358
1541
  }: UseTotalBalanceProps) => {
1359
1542
  totalBalanceInCurrency: number;
1360
1543
  totalBalanceUsd: number;
1544
+ liquidBalanceInCurrency: number;
1545
+ liquidBalanceUsd: number;
1546
+ stakingInCurrency: number;
1547
+ stakingUsd: number;
1548
+ priceChange24hPct: number | undefined;
1361
1549
  formattedBalance: string;
1362
1550
  isLoading: boolean;
1363
1551
  hasAnyBalance: boolean;
@@ -1373,7 +1561,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
1373
1561
  * Hook to get the current roundId of allocations voting
1374
1562
  * @returns the current roundId of allocations voting
1375
1563
  */
1376
- declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
1564
+ declare const useCurrentAllocationsRoundId: () => _tanstack_react_query37.UseQueryResult<string, unknown>;
1377
1565
  //#endregion
1378
1566
  //#region src/hooks/api/wallet/useCustomTokens.d.ts
1379
1567
  declare const useCustomTokens: () => {
@@ -1386,7 +1574,7 @@ declare const useCustomTokens: () => {
1386
1574
  //#endregion
1387
1575
  //#region src/hooks/api/wallet/useGetB3trBalance.d.ts
1388
1576
  declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
1389
- declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1577
+ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query37.UseQueryResult<{
1390
1578
  original: string;
1391
1579
  scaled: string;
1392
1580
  formatted: string;
@@ -1395,7 +1583,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.Us
1395
1583
  //#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
1396
1584
  type TokenWithBalance = CustomTokenInfo & TokenBalance;
1397
1585
  declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string, decimals?: number) => (string | number | undefined)[];
1398
- declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1586
+ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query37.UseQueryResult<{
1399
1587
  original: string;
1400
1588
  scaled: string;
1401
1589
  formatted: string;
@@ -1408,14 +1596,14 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
1408
1596
  //#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
1409
1597
  declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1410
1598
  declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
1411
- declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
1599
+ declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query37.UseQueryResult<CustomTokenInfo, Error>;
1412
1600
  //#endregion
1413
1601
  //#region src/hooks/api/wallet/useGetErc20Balance.d.ts
1414
1602
  declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
1415
1603
  type UseGetErc20BalanceOptions = {
1416
1604
  enabled?: boolean;
1417
1605
  };
1418
- declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query8.UseQueryResult<{
1606
+ declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query37.UseQueryResult<{
1419
1607
  original: string;
1420
1608
  scaled: string;
1421
1609
  formatted: string;
@@ -1432,11 +1620,46 @@ declare const PRICE_FEED_IDS: {
1432
1620
  type SupportedToken = keyof typeof PRICE_FEED_IDS;
1433
1621
  declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
1434
1622
  declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
1435
- declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
1623
+ declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query37.UseQueryResult<number, Error>;
1624
+ //#endregion
1625
+ //#region src/hooks/api/wallet/useOraclePriceChanges24h.d.ts
1626
+ type PricePoint = {
1627
+ timestamp: number;
1628
+ value: number;
1629
+ };
1630
+ type OracleHistory24h = {
1631
+ /** All emitted ValueUpdate observations per token, ascending by time. */
1632
+ history: Partial<Record<SupportedToken, PricePoint[]>>;
1633
+ /** Current spot value per token (USD). */
1634
+ latest: Partial<Record<SupportedToken, number>>;
1635
+ };
1636
+ type PriceChanges24h = Partial<Record<SupportedToken, number>>;
1637
+ /**
1638
+ * Shared 24h oracle scan: fetches every `ValueUpdate` emitted by
1639
+ * `OracleVechainEnergy` over the last day plus the current spot for each
1640
+ * supported feed. Multiple downstream hooks (`useOraclePriceChanges24h`,
1641
+ * `useTokenPriceHistory24h`, the portfolio chart) all derive from this single
1642
+ * query so we never run the same RPC scan twice in a session.
1643
+ */
1644
+ declare const useOracleHistory24h: () => _tanstack_react_query37.UseQueryResult<OracleHistory24h, Error>;
1645
+ declare const useOraclePriceChanges24h: () => {
1646
+ data: Partial<Record<"B3TR" | "VET" | "VTHO" | "GBP" | "EUR", number>>;
1647
+ };
1648
+ /** Per-token sparkline points (ascending by timestamp). */
1649
+ declare const useTokenPriceHistory24h: (token?: SupportedToken) => {
1650
+ points: PricePoint[];
1651
+ isLoading: boolean;
1652
+ };
1653
+ //#endregion
1654
+ //#region src/hooks/api/wallet/usePortfolioPriceHistory24h.d.ts
1655
+ declare const usePortfolioPriceHistory24h: (address?: string) => {
1656
+ points: PricePoint[];
1657
+ isLoading: boolean;
1658
+ };
1436
1659
  //#endregion
1437
1660
  //#region src/hooks/api/wallet/useGetVot3Balance.d.ts
1438
1661
  declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
1439
- declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1662
+ declare const useGetVot3Balance: (address?: string) => _tanstack_react_query37.UseQueryResult<{
1440
1663
  original: string;
1441
1664
  scaled: string;
1442
1665
  formatted: string;
@@ -1455,7 +1678,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
1455
1678
  * @param user - The user address.
1456
1679
  * @returns The isPerson status.
1457
1680
  */
1458
- declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1681
+ declare const useIsPerson: (user?: string | null) => _tanstack_react_query37.UseQueryResult<boolean, Error>;
1459
1682
  //#endregion
1460
1683
  //#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
1461
1684
  type XApp = {
@@ -1493,7 +1716,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
1493
1716
  //#endregion
1494
1717
  //#region src/hooks/api/wallet/useRoundXApps.d.ts
1495
1718
  declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
1496
- declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1719
+ declare const useRoundXApps: (roundId?: string) => _tanstack_react_query37.UseQueryResult<{
1497
1720
  id: string;
1498
1721
  teamWalletAddress: `0x${string}`;
1499
1722
  name: string;
@@ -1607,7 +1830,7 @@ type XAppMetadata = {
1607
1830
  * @returns The metadata of the xApp see {@link XAppMetadata}
1608
1831
  */
1609
1832
  declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
1610
- declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
1833
+ declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query37.UseQueryResult<XAppMetadata | undefined, Error>;
1611
1834
  //#endregion
1612
1835
  //#region src/hooks/api/wallet/useXAppShares.d.ts
1613
1836
  /**
@@ -1622,7 +1845,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
1622
1845
  * @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
1623
1846
  *
1624
1847
  */
1625
- declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1848
+ declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query37.UseQueryResult<{
1626
1849
  app: string;
1627
1850
  share: number;
1628
1851
  unallocatedShare: number;
@@ -1644,7 +1867,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
1644
1867
  * @param ipfsUri - The IPFS URI
1645
1868
  * @returns The metadata from IPFS
1646
1869
  */
1647
- declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
1870
+ declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query37.UseQueryResult<_tanstack_react_query37.NoInfer<T$1>, Error>;
1648
1871
  //#endregion
1649
1872
  //#region src/hooks/api/ipfs/useIpfsImage.d.ts
1650
1873
  interface IpfsImage {
@@ -1671,14 +1894,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
1671
1894
  * @param imageIpfsUri - The IPFS URI of the NFT media
1672
1895
  * @returns The NFT media
1673
1896
  */
1674
- declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
1897
+ declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query37.UseQueryResult<IpfsImage, Error>;
1675
1898
  /**
1676
1899
  * Custom hook to fetch a list of IPFS images.
1677
1900
  *
1678
1901
  * @param imageIpfsUriList - An array of IPFS URIs for the images.
1679
1902
  * @returns An array of queries for each IPFS image URI.
1680
1903
  */
1681
- declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
1904
+ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query37.UseQueryResult<IpfsImage, Error>[];
1682
1905
  //#endregion
1683
1906
  //#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
1684
1907
  /**
@@ -1686,12 +1909,12 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
1686
1909
  * @param ipfsUris - The IPFS URIs
1687
1910
  * @returns The metadata from IPFS for each URI
1688
1911
  */
1689
- declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
1912
+ declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query37.UseQueryResult<T$1, Error>[];
1690
1913
  //#endregion
1691
1914
  //#region src/hooks/api/ipfs/useUploadImages.d.ts
1692
1915
  declare const imageCompressionOptions: Options;
1693
1916
  declare const compressImages: (images: UploadedImage[]) => Promise<File[]>;
1694
- type Props$20 = {
1917
+ type Props$22 = {
1695
1918
  compressImages?: boolean;
1696
1919
  defaultImages?: UploadedImage[];
1697
1920
  };
@@ -1707,7 +1930,7 @@ type UploadedImage = {
1707
1930
  declare const useUploadImages: ({
1708
1931
  compressImages,
1709
1932
  defaultImages
1710
- }: Props$20) => {
1933
+ }: Props$22) => {
1711
1934
  uploadedImages: UploadedImage[];
1712
1935
  setUploadedImages: react0.Dispatch<react0.SetStateAction<UploadedImage[]>>;
1713
1936
  onUpload: (acceptedFiles: File[], keepCurrent?: boolean) => Promise<void>;
@@ -1716,7 +1939,7 @@ declare const useUploadImages: ({
1716
1939
  };
1717
1940
  //#endregion
1718
1941
  //#region src/hooks/api/ipfs/useSingleImageUpload.d.ts
1719
- type Props$19 = {
1942
+ type Props$21 = {
1720
1943
  compressImage?: boolean;
1721
1944
  defaultImage?: UploadedImage;
1722
1945
  };
@@ -1729,7 +1952,7 @@ type Props$19 = {
1729
1952
  declare const useSingleImageUpload: ({
1730
1953
  compressImage,
1731
1954
  defaultImage
1732
- }: Props$19) => {
1955
+ }: Props$21) => {
1733
1956
  uploadedImage: UploadedImage | undefined;
1734
1957
  setUploadedImage: react0.Dispatch<react0.SetStateAction<UploadedImage | undefined>>;
1735
1958
  onUpload: (acceptedFile: File) => Promise<UploadedImage>;
@@ -1895,6 +2118,166 @@ type UnifiedSwapQuotesResult = {
1895
2118
  */
1896
2119
  declare const useSwapQuotes: (fromToken: TokenWithValue | null, toToken: TokenWithValue | null, amountIn: string, userAddress: string, slippageTolerance?: number, enabled?: boolean) => UnifiedSwapQuotesResult;
1897
2120
  //#endregion
2121
+ //#region src/hooks/api/transferHistory/types.d.ts
2122
+ type TransferDirection = 'sent' | 'received';
2123
+ type TransferEventType = 'VET' | 'FUNGIBLE_TOKEN' | 'NFT';
2124
+ type IndexerTransfer = {
2125
+ id: string;
2126
+ blockId: string;
2127
+ blockNumber: number;
2128
+ blockTimestamp: number;
2129
+ txId: string;
2130
+ from: string;
2131
+ to: string;
2132
+ value: string;
2133
+ tokenAddress?: string;
2134
+ tokenId?: string;
2135
+ topics: string[];
2136
+ eventType: TransferEventType;
2137
+ };
2138
+ type TransferHistoryItem = {
2139
+ id: string;
2140
+ txId: string;
2141
+ blockNumber: number;
2142
+ timestamp: number;
2143
+ direction: TransferDirection;
2144
+ from: string;
2145
+ to: string;
2146
+ tokenAddress: string | null;
2147
+ tokenSymbol: string;
2148
+ tokenDecimals: number;
2149
+ rawValue: string;
2150
+ amount: number;
2151
+ eventType: TransferEventType;
2152
+ };
2153
+ declare const VET_TOKEN_SENTINEL = "0x";
2154
+ declare const VTHO_TOKEN_ADDRESS = "0x0000000000000000000000000000456e65726779";
2155
+ //#endregion
2156
+ //#region src/hooks/api/transferHistory/useTransferHistory.d.ts
2157
+ declare const getTransferHistoryQueryKey: (address?: string, networkType?: string, tokenAddress?: string | null) => (string | undefined)[];
2158
+ type UseTransferHistoryOptions = {
2159
+ tokenAddress?: string | null;
2160
+ enabled?: boolean;
2161
+ };
2162
+ declare const useTransferHistory: (address?: string, {
2163
+ tokenAddress,
2164
+ enabled
2165
+ }?: UseTransferHistoryOptions) => {
2166
+ transfers: TransferHistoryItem[];
2167
+ isLoading: boolean;
2168
+ isFetching: boolean;
2169
+ isFetchingNextPage: boolean;
2170
+ hasNextPage: boolean;
2171
+ fetchNextPage: (options?: _tanstack_react_query37.FetchNextPageOptions) => Promise<_tanstack_react_query37.InfiniteQueryObserverResult<_tanstack_react_query37.InfiniteData<{
2172
+ items: TransferHistoryItem[];
2173
+ hasNext: boolean;
2174
+ }, unknown>, Error>>;
2175
+ isUnsupportedNetwork: boolean;
2176
+ error: Error | null;
2177
+ };
2178
+ //#endregion
2179
+ //#region src/hooks/api/transferHistory/useTokenTransferHistory.d.ts
2180
+ declare const useTokenTransferHistory: (address?: string, tokenAddress?: string | null, options?: {
2181
+ enabled?: boolean;
2182
+ }) => {
2183
+ transfers: TransferHistoryItem[];
2184
+ isLoading: boolean;
2185
+ isFetching: boolean;
2186
+ isFetchingNextPage: boolean;
2187
+ hasNextPage: boolean;
2188
+ fetchNextPage: (options?: _tanstack_query_core0.FetchNextPageOptions) => Promise<_tanstack_query_core0.InfiniteQueryObserverResult<_tanstack_query_core0.InfiniteData<{
2189
+ items: TransferHistoryItem[];
2190
+ hasNext: boolean;
2191
+ }, unknown>, Error>>;
2192
+ isUnsupportedNetwork: boolean;
2193
+ error: Error | null;
2194
+ };
2195
+ //#endregion
2196
+ //#region src/hooks/api/staking/useStargatePositions.d.ts
2197
+ type StargatePosition = {
2198
+ tokenId: string;
2199
+ levelId: number;
2200
+ vetAmountStaked: string;
2201
+ vetAmountFormatted: number;
2202
+ valueUsd: number;
2203
+ valueInCurrency: number;
2204
+ isDelegated: boolean;
2205
+ };
2206
+ type StargatePositionsResult = {
2207
+ positions: StargatePosition[];
2208
+ totalVet: number;
2209
+ totalValueUsd: number;
2210
+ totalValueInCurrency: number;
2211
+ isLoading: boolean;
2212
+ error: unknown;
2213
+ };
2214
+ declare const useStargatePositions: (address?: string) => StargatePositionsResult;
2215
+ //#endregion
2216
+ //#region src/hooks/api/staking/useNavigatorPosition.d.ts
2217
+ type NavigatorPosition = {
2218
+ isNavigator: boolean;
2219
+ isDelegated: boolean;
2220
+ stakedB3TR: number;
2221
+ stakedB3TRRaw: string;
2222
+ delegatedAmount: number;
2223
+ delegatedAmountRaw: string;
2224
+ navigatorAddress?: string;
2225
+ totalB3TR: number;
2226
+ totalValueUsd: number;
2227
+ totalValueInCurrency: number;
2228
+ isLoading: boolean;
2229
+ error: unknown;
2230
+ };
2231
+ declare const useNavigatorPosition: (address?: string) => NavigatorPosition;
2232
+ //#endregion
2233
+ //#region src/hooks/api/staking/useBetterSwapLpPositions.d.ts
2234
+ type LpPositionToken = {
2235
+ address: string;
2236
+ symbol: string;
2237
+ amount: number;
2238
+ };
2239
+ type LpPosition = {
2240
+ pairAddress: string;
2241
+ lpBalance: number;
2242
+ sharePct: number;
2243
+ token0: LpPositionToken;
2244
+ token1: LpPositionToken;
2245
+ valueUsd: number;
2246
+ valueInCurrency: number;
2247
+ };
2248
+ declare const useBetterSwapLpPositions: (address?: string) => {
2249
+ positions: LpPosition[];
2250
+ totalValueUsd: number;
2251
+ totalValueInCurrency: number;
2252
+ isLoading: boolean;
2253
+ error: Error | null;
2254
+ };
2255
+ //#endregion
2256
+ //#region src/hooks/api/staking/useJuicyPosition.d.ts
2257
+ type JuicyAssetPosition = {
2258
+ asset: string;
2259
+ symbol: string;
2260
+ decimals: number;
2261
+ amount: number;
2262
+ valueUsd: number;
2263
+ valueInCurrency: number;
2264
+ };
2265
+ type JuicyPositionResult = {
2266
+ supplied: JuicyAssetPosition[];
2267
+ borrowed: JuicyAssetPosition[];
2268
+ totalSuppliedUsd: number;
2269
+ totalSuppliedInCurrency: number;
2270
+ totalBorrowedUsd: number;
2271
+ totalBorrowedInCurrency: number;
2272
+ healthFactor: number | null;
2273
+ netValueUsd: number;
2274
+ netValueInCurrency: number;
2275
+ hasPosition: boolean;
2276
+ isLoading: boolean;
2277
+ error: unknown;
2278
+ };
2279
+ declare const useJuicyPosition: (address?: string) => JuicyPositionResult;
2280
+ //#endregion
1898
2281
  //#region src/hooks/modals/useConnectModal.d.ts
1899
2282
  declare const useConnectModal: () => {
1900
2283
  open: (initialContent?: ConnectModalContentsTypes) => void;
@@ -2059,10 +2442,14 @@ declare const ReceiveModalProvider: ({
2059
2442
  //#region src/hooks/modals/useLoginModalContent.d.ts
2060
2443
  type LoginModalContentConfig = {
2061
2444
  showGoogleLogin: boolean;
2445
+ showAppleLogin: boolean;
2062
2446
  showEmailLogin: boolean;
2063
2447
  showPasskey: boolean;
2064
2448
  showVeChainLogin: boolean;
2065
2449
  showDappKit: boolean;
2450
+ showVeWorld: boolean;
2451
+ showSync2: boolean;
2452
+ showWalletConnect: boolean;
2066
2453
  showEcosystem: boolean;
2067
2454
  showMoreLogin: boolean;
2068
2455
  showGithubLogin: boolean;
@@ -2194,6 +2581,22 @@ declare const useLoginWithVeChain: () => {
2194
2581
  login: () => Promise<void>;
2195
2582
  };
2196
2583
  //#endregion
2584
+ //#region src/hooks/login/useConnectWithDappKitSource.d.ts
2585
+ type SetCurrentContent = React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
2586
+ /**
2587
+ * Drives a dapp-kit wallet connection (setSource + connect) while reflecting
2588
+ * progress in the ConnectModal's local sub-content state (loading/error).
2589
+ *
2590
+ * Uses the legacy `connect()` API rather than `connectV2()` because:
2591
+ * - WalletConnect's signer throws "not implemented" for V2.
2592
+ * - The VeWorld desktop extension also rejects V2 ("Attempt failed").
2593
+ * V2 is only reliable inside the VeWorld mobile in-app browser, which is
2594
+ * handled separately in ModalProvider.
2595
+ */
2596
+ declare const useConnectWithDappKitSource: (source: WalletSource, setCurrentContent: SetCurrentContent) => {
2597
+ connect: () => Promise<void>;
2598
+ };
2599
+ //#endregion
2197
2600
  //#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryLabel.d.ts
2198
2601
  type AllowedCategories = 'defi' | 'games' | 'collectibles' | 'marketplaces' | 'utilities' | 'vebetter';
2199
2602
  //#endregion
@@ -2240,7 +2643,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
2240
2643
  * );
2241
2644
  * ```
2242
2645
  */
2243
- declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
2646
+ declare const useAppHubApps: () => _tanstack_react_query37.UseQueryResult<AppHubApp[], Error>;
2244
2647
  //#endregion
2245
2648
  //#region src/utils/constants.d.ts
2246
2649
  /** Tokens that cannot be swapped or transferred (e.g. governance voting tokens) */
@@ -2595,7 +2998,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
2595
2998
  method: TMethod;
2596
2999
  args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
2597
3000
  queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
2598
- }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
3001
+ }) => _tanstack_react_query37.UseQueryResult<_tanstack_react_query37.NoInfer<TData>, unknown>;
2599
3002
  declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
2600
3003
  thor,
2601
3004
  calls,
@@ -2606,7 +3009,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
2606
3009
  calls: MultipleClausesCallParameters<contracts, allowFailure>;
2607
3010
  queryKey: string[];
2608
3011
  enabled?: boolean;
2609
- }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
3012
+ }) => _tanstack_react_query37.UseQueryResult<_tanstack_react_query37.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
2610
3013
  //#endregion
2611
3014
  //#region src/hooks/utils/useCurrency.d.ts
2612
3015
  /**
@@ -2730,7 +3133,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
2730
3133
  filterParams,
2731
3134
  mapResponse,
2732
3135
  nodeUrl
2733
- }: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
3136
+ }: UseEventsParams<T$1, K, R>) => _tanstack_react_query37.UseQueryResult<R[], Error>;
2734
3137
  //#endregion
2735
3138
  //#region src/hooks/utils/useBuildClauses.d.ts
2736
3139
  interface BuildClausesParams {
@@ -2882,7 +3285,7 @@ declare const useGenericDelegatorFeeEstimation: ({
2882
3285
  tokens,
2883
3286
  sendingAmount,
2884
3287
  sendingTokenSymbol
2885
- }: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
3288
+ }: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query37.UseQueryResult<EstimationResponse & {
2886
3289
  usedToken: string;
2887
3290
  }, Error>;
2888
3291
  //#endregion
@@ -2896,7 +3299,7 @@ declare const useEstimateAllTokens: ({
2896
3299
  clauses,
2897
3300
  tokens,
2898
3301
  enabled
2899
- }: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
3302
+ }: UseEstimateAllTokensParams) => _tanstack_react_query37.UseQueryResult<Record<GasTokenType, {
2900
3303
  cost: number;
2901
3304
  loading: boolean;
2902
3305
  error?: string;
@@ -2913,7 +3316,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
2913
3316
  * @param address The address of the account to get the balance for
2914
3317
  * @returns The account balance
2915
3318
  */
2916
- declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
3319
+ declare const useAccountBalance: (address?: string) => _tanstack_react_query37.UseQueryResult<{
2917
3320
  balance: string;
2918
3321
  energy: string;
2919
3322
  }, Error>;
@@ -2926,7 +3329,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
2926
3329
  * @param version - The version of the smart account implementation
2927
3330
  * @returns The address of the smart account implementation
2928
3331
  */
2929
- declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
3332
+ declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query37.UseQueryResult<string, Error>;
2930
3333
  //#endregion
2931
3334
  //#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
2932
3335
  declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
@@ -2935,7 +3338,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
2935
3338
  * Get the current account implementation version used by the smart account factory
2936
3339
  * @returns The current account implementation version
2937
3340
  */
2938
- declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
3341
+ declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query37.UseQueryResult<number, Error>;
2939
3342
  //#endregion
2940
3343
  //#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
2941
3344
  declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
@@ -2945,7 +3348,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
2945
3348
  * @param ownerAddress - The address of the owner of the smart account
2946
3349
  * @returns The address of the smart account
2947
3350
  */
2948
- declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
3351
+ declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query37.UseQueryResult<string, Error>;
2949
3352
  //#endregion
2950
3353
  //#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
2951
3354
  declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
@@ -2955,7 +3358,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
2955
3358
  * @param ownerAddress - The address of the owner of the smart account
2956
3359
  * @returns The version of the smart account
2957
3360
  */
2958
- declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
3361
+ declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query37.UseQueryResult<{
2959
3362
  version: number;
2960
3363
  isDeployed: boolean;
2961
3364
  }, unknown>;
@@ -2968,7 +3371,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
2968
3371
  * @param ownerAddress - The address of the owner of the smart account
2969
3372
  * @returns True if the smart account has a v1 smart account, false otherwise
2970
3373
  */
2971
- declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3374
+ declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query37.UseQueryResult<boolean, Error>;
2972
3375
  //#endregion
2973
3376
  //#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
2974
3377
  declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
@@ -2977,7 +3380,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
2977
3380
  * Check if a smart account is deployed
2978
3381
  * @returns True if the smart account is deployed, false otherwise
2979
3382
  */
2980
- declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3383
+ declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query37.UseQueryResult<boolean, Error>;
2981
3384
  //#endregion
2982
3385
  //#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
2983
3386
  /**
@@ -3010,7 +3413,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
3010
3413
  isDeployed: boolean;
3011
3414
  }>;
3012
3415
  declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
3013
- declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
3416
+ declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query37.UseQueryResult<{
3014
3417
  address: undefined;
3015
3418
  isDeployed?: undefined;
3016
3419
  } | {
@@ -3028,7 +3431,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
3028
3431
  * @param targetVersion - The version of the smart account to check for
3029
3432
  * @returns True if the smart account needs an upgrade, false otherwise
3030
3433
  */
3031
- declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3434
+ declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query37.UseQueryResult<boolean, Error>;
3032
3435
  //#endregion
3033
3436
  //#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
3034
3437
  declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
@@ -3039,7 +3442,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
3039
3442
  * @param targetVersion - The target version of the smart account
3040
3443
  * @returns True if the smart account needs an upgrade, false otherwise
3041
3444
  */
3042
- declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3445
+ declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query37.UseQueryResult<boolean, Error>;
3043
3446
  //#endregion
3044
3447
  //#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
3045
3448
  type UseUpgradeSmartAccountVersionProps = {
@@ -3064,7 +3467,7 @@ declare const currentBlockQueryKey: () => string[];
3064
3467
  * Fetches the current block from the blockchain. The block is refetched every 10 seconds.
3065
3468
  * @returns the current block
3066
3469
  */
3067
- declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
3470
+ declare const useCurrentBlock: () => _tanstack_react_query37.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
3068
3471
  //#endregion
3069
3472
  //#region src/hooks/thor/blocks/useGetChainId.d.ts
3070
3473
  declare const getChainId: (thor: ThorClient) => Promise<string>;
@@ -3073,7 +3476,7 @@ declare const getChainIdQueryKey: () => string[];
3073
3476
  * Get the chain id
3074
3477
  * @returns The chain id
3075
3478
  */
3076
- declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
3479
+ declare const useGetChainId: () => _tanstack_react_query37.UseQueryResult<string, Error>;
3077
3480
  //#endregion
3078
3481
  //#region src/hooks/thor/logs/logUtils.d.ts
3079
3482
  /**
@@ -3328,7 +3731,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
3328
3731
  * @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
3329
3732
  * @returns Query result containing the transaction receipt
3330
3733
  */
3331
- declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3734
+ declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query37.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3332
3735
  //#endregion
3333
3736
  //#region src/hooks/thor/transactions/useGasEstimate.d.ts
3334
3737
  declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
@@ -3389,7 +3792,7 @@ declare const SendTokenSummaryContent: ({
3389
3792
  }: SendTokenSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3390
3793
  //#endregion
3391
3794
  //#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
3392
- type Props$18 = {
3795
+ type Props$20 = {
3393
3796
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3394
3797
  onSelectToken: (token: TokenWithValue) => void;
3395
3798
  onBack: () => void;
@@ -3407,27 +3810,31 @@ declare const SelectTokenContent: ({
3407
3810
  onBack,
3408
3811
  showAllTokens,
3409
3812
  excludedTokenSymbols
3410
- }: Props$18) => react_jsx_runtime1.JSX.Element;
3813
+ }: Props$20) => react_jsx_runtime1.JSX.Element;
3411
3814
  //#endregion
3412
3815
  //#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
3413
- type Props$17 = {
3816
+ type ReceiveTokenContentProps = {
3414
3817
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3818
+ onBack?: () => void;
3415
3819
  };
3416
3820
  declare const ReceiveTokenContent: ({
3417
- setCurrentContent
3418
- }: Props$17) => react_jsx_runtime1.JSX.Element;
3821
+ setCurrentContent,
3822
+ onBack
3823
+ }: ReceiveTokenContentProps) => react_jsx_runtime1.JSX.Element;
3419
3824
  //#endregion
3420
3825
  //#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
3421
- type Props$16 = {
3826
+ type SwapTokenContentProps = {
3422
3827
  setCurrentContent: React$1.Dispatch<React$1.SetStateAction<AccountModalContentTypes>>;
3423
3828
  fromTokenAddress?: string;
3424
3829
  toTokenAddress?: string;
3830
+ onBack?: () => void;
3425
3831
  };
3426
3832
  declare const SwapTokenContent: ({
3427
3833
  setCurrentContent,
3428
3834
  fromTokenAddress,
3429
- toTokenAddress
3430
- }: Props$16) => react_jsx_runtime1.JSX.Element;
3835
+ toTokenAddress,
3836
+ onBack
3837
+ }: SwapTokenContentProps) => react_jsx_runtime1.JSX.Element;
3431
3838
  //#endregion
3432
3839
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
3433
3840
  type ChooseNameContentProps = {
@@ -3553,12 +3960,12 @@ declare const ManageCustomTokenContent: ({
3553
3960
  }: ManageCustomTokenContentProps) => react_jsx_runtime1.JSX.Element;
3554
3961
  //#endregion
3555
3962
  //#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
3556
- type Props$15 = {
3963
+ type Props$19 = {
3557
3964
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3558
3965
  };
3559
3966
  declare const BridgeContent: ({
3560
3967
  setCurrentContent
3561
- }: Props$15) => react_jsx_runtime1.JSX.Element;
3968
+ }: Props$19) => react_jsx_runtime1.JSX.Element;
3562
3969
  //#endregion
3563
3970
  //#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
3564
3971
  type ChangeCurrencyContentProps = {
@@ -3569,20 +3976,20 @@ declare const ChangeCurrencyContent: ({
3569
3976
  }: ChangeCurrencyContentProps) => react_jsx_runtime1.JSX.Element;
3570
3977
  //#endregion
3571
3978
  //#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
3572
- type Props$14 = {
3979
+ type Props$18 = {
3573
3980
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3574
3981
  };
3575
3982
  declare const LanguageSettingsContent: ({
3576
3983
  setCurrentContent
3577
- }: Props$14) => react_jsx_runtime1.JSX.Element;
3984
+ }: Props$18) => react_jsx_runtime1.JSX.Element;
3578
3985
  //#endregion
3579
3986
  //#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
3580
- type Props$13 = {
3987
+ type Props$17 = {
3581
3988
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3582
3989
  };
3583
3990
  declare const GasTokenSettingsContent: ({
3584
3991
  setCurrentContent
3585
- }: Props$13) => react_jsx_runtime1.JSX.Element;
3992
+ }: Props$17) => react_jsx_runtime1.JSX.Element;
3586
3993
  //#endregion
3587
3994
  //#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
3588
3995
  type SettingsContentProps = {
@@ -3619,7 +4026,7 @@ declare const DisconnectConfirmContent: ({
3619
4026
  }: DisconnectConfirmContentProps) => react_jsx_runtime1.JSX.Element;
3620
4027
  //#endregion
3621
4028
  //#region src/components/AccountModal/Contents/SelectWallet/SelectWalletContent.d.ts
3622
- type Props$12 = {
4029
+ type Props$16 = {
3623
4030
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3624
4031
  onClose: () => void;
3625
4032
  returnTo?: 'main' | 'profile';
@@ -3629,7 +4036,7 @@ declare const SelectWalletContent: ({
3629
4036
  setCurrentContent,
3630
4037
  returnTo,
3631
4038
  onLogoutSuccess: _onLogoutSuccess
3632
- }: Props$12) => react_jsx_runtime1.JSX.Element;
4039
+ }: Props$16) => react_jsx_runtime1.JSX.Element;
3633
4040
  //#endregion
3634
4041
  //#region src/components/AccountModal/Contents/SelectWallet/RemoveWalletConfirmContent.d.ts
3635
4042
  type RemoveWalletConfirmContentProps = {
@@ -3647,6 +4054,43 @@ declare const RemoveWalletConfirmContent: ({
3647
4054
  onClose
3648
4055
  }: RemoveWalletConfirmContentProps) => react_jsx_runtime1.JSX.Element;
3649
4056
  //#endregion
4057
+ //#region src/components/AccountModal/Contents/TokenDetail/TokenDetailContent.d.ts
4058
+ type TokenDetailContentProps = {
4059
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
4060
+ token: TokenWithValue;
4061
+ };
4062
+ declare const TokenDetailContent: ({
4063
+ setCurrentContent,
4064
+ token
4065
+ }: TokenDetailContentProps) => react_jsx_runtime1.JSX.Element;
4066
+ //#endregion
4067
+ //#region src/components/AccountModal/Contents/TransactionHistory/TransactionHistoryContent.d.ts
4068
+ type TransactionHistoryContentProps = {
4069
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
4070
+ tokenFilter?: {
4071
+ address: string;
4072
+ symbol: string;
4073
+ };
4074
+ onBack?: () => void;
4075
+ };
4076
+ declare const TransactionHistoryContent: ({
4077
+ setCurrentContent,
4078
+ tokenFilter,
4079
+ onBack
4080
+ }: TransactionHistoryContentProps) => react_jsx_runtime1.JSX.Element;
4081
+ //#endregion
4082
+ //#region src/components/AccountModal/Contents/TransactionHistory/TransactionDetailContent.d.ts
4083
+ type TransactionDetailContentProps = {
4084
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
4085
+ item: TransferHistoryItem;
4086
+ onBack?: () => void;
4087
+ };
4088
+ declare const TransactionDetailContent: ({
4089
+ setCurrentContent,
4090
+ item,
4091
+ onBack
4092
+ }: TransactionDetailContentProps) => react_jsx_runtime1.JSX.Element;
4093
+ //#endregion
3650
4094
  //#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
3651
4095
  type CategoryFilter = string | null;
3652
4096
  //#endregion
@@ -3709,7 +4153,11 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | {
3709
4153
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3710
4154
  fromTokenAddress?: string;
3711
4155
  toTokenAddress?: string;
4156
+ onBack?: () => void;
3712
4157
  };
4158
+ } | {
4159
+ type: 'receive-token';
4160
+ props: ReceiveTokenContentProps;
3713
4161
  } | {
3714
4162
  type: 'account-customization';
3715
4163
  props: AccountCustomizationContentProps;
@@ -3737,6 +4185,15 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | {
3737
4185
  } | {
3738
4186
  type: 'send-token-summary';
3739
4187
  props: SendTokenSummaryContentProps;
4188
+ } | {
4189
+ type: 'token-detail';
4190
+ props: TokenDetailContentProps;
4191
+ } | {
4192
+ type: 'transaction-history';
4193
+ props: TransactionHistoryContentProps;
4194
+ } | {
4195
+ type: 'transaction-detail';
4196
+ props: TransactionDetailContentProps;
3740
4197
  } | {
3741
4198
  type: 'choose-name';
3742
4199
  props: ChooseNameContentProps;
@@ -3764,7 +4221,7 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | {
3764
4221
  };
3765
4222
  //#endregion
3766
4223
  //#region src/components/AccountModal/AccountModal.d.ts
3767
- type Props$11 = {
4224
+ type Props$15 = {
3768
4225
  isOpen: boolean;
3769
4226
  onClose: () => void;
3770
4227
  initialContent?: AccountModalContentTypes;
@@ -3773,7 +4230,7 @@ declare const AccountModal: ({
3773
4230
  isOpen,
3774
4231
  onClose,
3775
4232
  initialContent
3776
- }: Props$11) => react_jsx_runtime1.JSX.Element;
4233
+ }: Props$15) => react_jsx_runtime1.JSX.Element;
3777
4234
  //#endregion
3778
4235
  //#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
3779
4236
  interface AccountDetailsButtonProps {
@@ -3840,7 +4297,7 @@ declare const ActionButton: ({
3840
4297
  }: ActionButtonProps) => react_jsx_runtime1.JSX.Element;
3841
4298
  //#endregion
3842
4299
  //#region src/components/AccountModal/Components/AccountSelector.d.ts
3843
- type Props$10 = {
4300
+ type Props$14 = {
3844
4301
  wallet: Wallet;
3845
4302
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3846
4303
  size?: string;
@@ -3857,7 +4314,7 @@ declare const AccountSelector: ({
3857
4314
  onClose,
3858
4315
  mt,
3859
4316
  style
3860
- }: Props$10) => react_jsx_runtime1.JSX.Element;
4317
+ }: Props$14) => react_jsx_runtime1.JSX.Element;
3861
4318
  //#endregion
3862
4319
  //#region src/components/AccountModal/Components/BalanceSection.d.ts
3863
4320
  declare const BalanceSection: ({
@@ -3871,14 +4328,14 @@ declare const BalanceSection: ({
3871
4328
  }) => react_jsx_runtime1.JSX.Element;
3872
4329
  //#endregion
3873
4330
  //#region src/components/AccountModal/Components/QuickActionsSection.d.ts
3874
- type Props$9 = {
4331
+ type Props$13 = {
3875
4332
  mt?: number;
3876
4333
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3877
4334
  };
3878
4335
  declare const QuickActionsSection: ({
3879
4336
  mt,
3880
4337
  setCurrentContent
3881
- }: Props$9) => react_jsx_runtime1.JSX.Element | null;
4338
+ }: Props$13) => react_jsx_runtime1.JSX.Element | null;
3882
4339
  //#endregion
3883
4340
  //#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
3884
4341
  type FeatureAnnouncementCardProps = {
@@ -3907,7 +4364,7 @@ declare const ModalBackButton: ({
3907
4364
  }: BackButtonProps) => react_jsx_runtime1.JSX.Element;
3908
4365
  //#endregion
3909
4366
  //#region src/components/common/AddressDisplay.d.ts
3910
- type Props$8 = {
4367
+ type Props$12 = {
3911
4368
  wallet: Wallet;
3912
4369
  label?: string;
3913
4370
  style?: PropsOf<typeof VStack>;
@@ -3922,16 +4379,16 @@ declare const AddressDisplay: ({
3922
4379
  showHumanAddress,
3923
4380
  setCurrentContent,
3924
4381
  onLogout
3925
- }: Props$8) => react_jsx_runtime1.JSX.Element;
4382
+ }: Props$12) => react_jsx_runtime1.JSX.Element;
3926
4383
  //#endregion
3927
4384
  //#region src/components/common/VersionFooter.d.ts
3928
- type Props$7 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
4385
+ type Props$11 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3929
4386
  declare const VersionFooter: ({
3930
4387
  ...props
3931
- }: Props$7) => react_jsx_runtime1.JSX.Element;
4388
+ }: Props$11) => react_jsx_runtime1.JSX.Element;
3932
4389
  //#endregion
3933
4390
  //#region src/components/common/StickyHeaderContainer.d.ts
3934
- type Props$6 = {
4391
+ type Props$10 = {
3935
4392
  children: React.ReactNode;
3936
4393
  };
3937
4394
  declare const useStickyHeaderContext: () => {
@@ -3939,15 +4396,15 @@ declare const useStickyHeaderContext: () => {
3939
4396
  };
3940
4397
  declare const StickyHeaderContainer: ({
3941
4398
  children
3942
- }: Props$6) => react_jsx_runtime1.JSX.Element;
4399
+ }: Props$10) => react_jsx_runtime1.JSX.Element;
3943
4400
  //#endregion
3944
4401
  //#region src/components/common/StickyFooterContainer.d.ts
3945
- type Props$5 = {
4402
+ type Props$9 = {
3946
4403
  children: React.ReactNode;
3947
4404
  };
3948
4405
  declare const StickyFooterContainer: ({
3949
4406
  children
3950
- }: Props$5) => react_jsx_runtime1.JSX.Element;
4407
+ }: Props$9) => react_jsx_runtime1.JSX.Element;
3951
4408
  //#endregion
3952
4409
  //#region src/components/common/BaseModal.d.ts
3953
4410
  type BaseModalProps = {
@@ -4006,6 +4463,7 @@ type AssetButtonProps = ButtonProps & {
4006
4463
  currentCurrency: CURRENCY;
4007
4464
  isDisabled?: boolean;
4008
4465
  onClick?: () => void;
4466
+ priceChange24hPct?: number;
4009
4467
  };
4010
4468
  declare const AssetButton: ({
4011
4469
  symbol,
@@ -4014,6 +4472,7 @@ declare const AssetButton: ({
4014
4472
  currentCurrency,
4015
4473
  isDisabled,
4016
4474
  onClick,
4475
+ priceChange24hPct,
4017
4476
  ...buttonProps
4018
4477
  }: AssetButtonProps) => react_jsx_runtime1.JSX.Element;
4019
4478
  //#endregion
@@ -4152,7 +4611,7 @@ declare const GasFeeTokenSelector: ({
4152
4611
  }: GasFeeTokenSelectorProps) => react_jsx_runtime1.JSX.Element;
4153
4612
  //#endregion
4154
4613
  //#region src/components/common/InlineFeedback.d.ts
4155
- type Props$4 = {
4614
+ type Props$8 = {
4156
4615
  message: string;
4157
4616
  duration?: number;
4158
4617
  onClose?: () => void;
@@ -4161,10 +4620,10 @@ declare const InlineFeedback: ({
4161
4620
  message,
4162
4621
  duration,
4163
4622
  onClose
4164
- }: Props$4) => react_jsx_runtime1.JSX.Element;
4623
+ }: Props$8) => react_jsx_runtime1.JSX.Element;
4165
4624
  //#endregion
4166
4625
  //#region src/components/common/WalletSwitchFeedback.d.ts
4167
- type Props$3 = {
4626
+ type Props$7 = {
4168
4627
  /**
4169
4628
  * Show feedback flag passed via content props (desktop)
4170
4629
  * If true, shows the feedback message
@@ -4178,6 +4637,74 @@ type Props$3 = {
4178
4637
  */
4179
4638
  declare const WalletSwitchFeedback: ({
4180
4639
  showFeedback
4640
+ }: Props$7) => react_jsx_runtime1.JSX.Element | null;
4641
+ //#endregion
4642
+ //#region src/components/common/PriceChangeBadge.d.ts
4643
+ type Props$6 = TextProps & {
4644
+ valuePct?: number;
4645
+ showSuffix?: boolean;
4646
+ };
4647
+ declare const PriceChangeBadge: ({
4648
+ valuePct,
4649
+ showSuffix,
4650
+ ...textProps
4651
+ }: Props$6) => react_jsx_runtime1.JSX.Element | null;
4652
+ //#endregion
4653
+ //#region src/components/common/AddressOrDomainLabel.d.ts
4654
+ type Props$5 = TextProps & {
4655
+ address: string;
4656
+ /**
4657
+ * Characters to keep on each side of the address when it has no domain.
4658
+ * Defaults to 4/4 (e.g. `0xab12...cd34`).
4659
+ */
4660
+ headLen?: number;
4661
+ tailLen?: number;
4662
+ };
4663
+ declare const AddressOrDomainLabel: ({
4664
+ address,
4665
+ headLen,
4666
+ tailLen,
4667
+ ...textProps
4668
+ }: Props$5) => react_jsx_runtime1.JSX.Element;
4669
+ //#endregion
4670
+ //#region src/components/common/CopyIconButton.d.ts
4671
+ type Props$4 = Omit<IconButtonProps, 'aria-label' | 'icon' | 'onClick'> & {
4672
+ value: string;
4673
+ ariaLabel?: string;
4674
+ };
4675
+ declare const CopyIconButton: ({
4676
+ value,
4677
+ ariaLabel,
4678
+ size,
4679
+ variant,
4680
+ ...rest
4681
+ }: Props$4) => react_jsx_runtime1.JSX.Element;
4682
+ //#endregion
4683
+ //#region src/components/common/PriceChart.d.ts
4684
+ type Props$3 = BoxProps & {
4685
+ points: PricePoint[];
4686
+ /** 'up' = green, 'down' = red, 'neutral' = muted. Defaults to 'neutral'. */
4687
+ tone?: 'up' | 'down' | 'neutral';
4688
+ /** Chart height in px. */
4689
+ chartHeight?: number;
4690
+ /** Overall opacity (useful as background underlay). Defaults to 1. */
4691
+ chartOpacity?: number;
4692
+ /** Stroke thickness in px. Defaults to 1.75. */
4693
+ strokeWidth?: number;
4694
+ /** Show a hover/touch tooltip with the value at the cursor. */
4695
+ interactive?: boolean;
4696
+ /** Format the numeric value shown in the tooltip. */
4697
+ formatValue?: (value: number) => string;
4698
+ };
4699
+ declare const PriceChart: ({
4700
+ points,
4701
+ tone,
4702
+ chartHeight,
4703
+ chartOpacity,
4704
+ strokeWidth,
4705
+ interactive,
4706
+ formatValue,
4707
+ ...boxProps
4181
4708
  }: Props$3) => react_jsx_runtime1.JSX.Element | null;
4182
4709
  //#endregion
4183
4710
  //#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
@@ -4272,48 +4799,5 @@ declare const ModalProvider: ({
4272
4799
  children: ReactNode;
4273
4800
  }) => react_jsx_runtime1.JSX.Element;
4274
4801
  //#endregion
4275
- //#region src/config/index.d.ts
4276
- type AppConfig = {
4277
- ipfsFetchingService: string;
4278
- ipfsPinningService: string;
4279
- vthoContractAddress: string;
4280
- b3trContractAddress: string;
4281
- vot3ContractAddress: string;
4282
- b3trGovernorAddress: string;
4283
- timelockContractAddress: string;
4284
- xAllocationPoolContractAddress: string;
4285
- xAllocationVotingContractAddress: string;
4286
- emissionsContractAddress: string;
4287
- voterRewardsContractAddress: string;
4288
- galaxyMemberContractAddress: string;
4289
- treasuryContractAddress: string;
4290
- x2EarnAppsContractAddress: string;
4291
- x2EarnCreatorContractAddress: string;
4292
- x2EarnRewardsPoolContractAddress: string;
4293
- nodeManagementContractAddress: string;
4294
- veBetterPassportContractAddress: string;
4295
- veDelegate: string;
4296
- veDelegateVotes: string;
4297
- veDelegateTokenContractAddress: string;
4298
- oracleContractAddress: string;
4299
- accountFactoryAddress: string;
4300
- cleanifyCampaignsContractAddress: string;
4301
- cleanifyChallengesContractAddress: string;
4302
- veWorldSubdomainClaimerContractAddress: string;
4303
- vetDomainsContractAddress: string;
4304
- vetDomainsPublicResolverAddress: string;
4305
- vetDomainsReverseRegistrarAddress: string;
4306
- vnsResolverAddress: string;
4307
- sassContractAddress: string;
4308
- vetDomainAvatarUrl: string;
4309
- nodeUrl: string;
4310
- indexerUrl: string;
4311
- b3trIndexerUrl: string;
4312
- graphQlIndexerUrl: string;
4313
- network: Network;
4314
- explorerUrl: string;
4315
- };
4316
- declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
4317
- //#endregion
4318
- export { LanguageSettingsContent as $, useRoundXApps as $a, AccountCustomizationModalProvider as $i, buildSingleAuthorizationTypedData as $n, getDomainsOfAddressQueryKey as $o, convertUriToUrl as $r, VeChainKitConfig as $s, useCurrentBlock as $t, AddressDisplay as A, useIpfsMetadatas as Aa, EnhancedClause as Ac, getGenericDelegatorUrl as Ai, getAccountBalance as An, useTokensWithValues as Ao, ViewFunctionResult as Ar, LoginWithGoogleButton as As, useMfaEnrollment as At, AccountDetailsButton as B, getXAppsSharesQueryKey as Ba, VePassportUserStatus as Bc, useSignMessage as Bi, estimateAndBuildTxBody as Bn, useGetAvatarOfAddress as Bo, removePrefix as Br, ConnectModal as Bs, buildVETClauses as Bt, AddressDisplayCard as C, useSwapQuotes as Ca, ENS_TEXT_RECORDS as Cc, TOKEN_LOGO_COMPONENTS as Ci, useGetAccountAddress as Cn, getB3trBalanceQueryKey as Co, isOnline as Cr, WalletButtonProps as Cs, ReceiveTokenContent as Ct, StickyHeaderContainer as D, compressImages as Da, ConnectionSource as Dc, VECHAIN_KIT_TERMS_CONFIG as Di, getAccountImplementationAddress as Dn, useCurrentAllocationsRoundId as Do, setLocalStorageItem as Dr, VeChainWithPrivyLoginButton as Ds, ThorClient$1 as Dt, StickyFooterContainer as E, UploadedImage as Ea, CURRENCY_SYMBOLS as Ec, VECHAIN_KIT_STORAGE_KEYS as Ei, useCurrentAccountImplementationVersion as En, getCurrentAllocationsRoundIdQueryKey as Eo, safeWindowOpen as Er, LoginWithGithubButton as Es, SendTokenContent as Et, FeatureAnnouncementCard as F, useIpfsImage as Fa, PrivyLoginMethod as Fc, useAppHubApps as Fi, useGenericDelegatorFeeEstimation as Fn, useUnsetDomain as Fo, addPrefix as Fr, ConnectionButton as Fs, useGasEstimate as Ft, RemoveWalletConfirmContentProps as G, UseSwitchWalletReturnType as Ga, useAccountModalOptions as Gi, useCrossAppConnectionCache as Gn, getTextRecords as Go, EconomicNodeStrengthLevelToName as Gr, VechainKitThemeProvider as Gs, useSendTransaction as Gt, AccountModalContentTypes as H, XAppMetadata as Ha, useNotifications as Hi, getDepositAccount as Hn, useGetResolverAddress as Ho, isRejectionError as Hr, LegalDocumentsProvider as Hs, buildERC20Clauses as Ht, QuickActionsSection as I, useIpfsImageList as Ia, SmartAccount as Ic, useLoginWithVeChain as Ii, useGenericDelegatorFeeEstimationParams as In, getAvatarLegacy as Io, compare as Ir, EcosystemContent as Is, txReceiptQueryKey as It, DisconnectConfirmContentProps as J, useWalletStorage as Ja, UpgradeSmartAccountModalProvider as Ji, useSyncableLocalStorage as Jn, getAvatarQueryKey as Jo, XNodeStrengthLevelToName as Jr, PrivyWalletProviderContextType as Js, getEventLogs as Jt, SelectWalletContent as K, useSwitchWallet as Ka, ProfileModalProvider as Ki, EcosystemShortcut as Kn, getTextRecordsQueryKey as Ko, MinXNodeLevel as Kr, useVechainKitThemeConfig as Ks, GetEventsProps as Kt, BalanceSection as L, getIpfsMetadata as La, TokenBalance as Lc, useLoginWithOAuth as Li, useGasTokenSelection as Ln, getAvatarLegacyQueryKey as Lo, isInvalid as Lr, ErrorContent as Ls, useTxReceipt as Lt, CrossAppConnectionSecurityCard as M, MAX_IMAGE_SIZE as Ma, ExecuteWithAuthorizationSignData as Mc, AppHubApp as Mi, useAccountBalance as Mn, useTokenPrices as Mo, executeCallClause as Mr, EcosystemButton as Ms, useSetWalletRecovery as Mt, DomainRequiredAlert as N, getIpfsImage as Na, NFTMediaType as Nc, fetchAppHubApps as Ni, UseEstimateAllTokensParams as Nn, WalletTokenBalance as No, executeMultipleClausesCall as Nr, VeChainLoginButton as Ns, useThor as Nt, useStickyHeaderContext as O, imageCompressionOptions as Oa, CrossAppConnectionCache as Oc, VECHAIN_PRIVY_APP_ID as Oi, getAccountImplementationAddressQueryKey as On, useTotalBalance as Oo, MultipleClausesCallParameters as Or, DappKitButton as Os, useDAppKitWallet as Ot, ExchangeWarningAlert as P, getIpfsImageQueryKey as Pa, PrivyAppInfo as Pc, getAppHubAppsQueryKey as Pi, useEstimateAllTokens as Pn, useTokenBalances as Po, isValidUrl as Pr, EmailLoginButton as Ps, VECHAIN_KIT_QUERY_KEYS as Pt, GasTokenSettingsContent as Q, getRoundXAppsQueryKey as Qa, useReceiveModal as Qi, buildBatchAuthorizationTypedData as Qn, getDomainsOfAddress as Qo, xNodeToGMstartingLevel as Qr, LegalDocumentOptions as Qs, currentBlockQueryKey as Qt, AccountSelector as R, getIpfsMetadataQueryKey as Ra, TransactionStatus as Rc, useLoginWithPasskey as Ri, decodeRawTx as Rn, useGetAvatarLegacy as Ro, isValid as Rr, LoadingContent as Rs, BuildTransactionProps as Rt, ModalFAQButton as S, useConnectModal as Sa, TransactionSpeed as Sc, TOKEN_LOGOS as Si, getAccountAddressQueryKey as Sn, useGetCustomTokenBalances as So, isBrowser as Sr, WalletButton as Ss, SwapTokenContent as St, BaseModal as T, useSingleImageUpload as Ta, CURRENCY as Tc, VECHAIN_KIT_COOKIES_CONFIG as Ti, getCurrentAccountImplementationVersionQueryKey as Tn, useCustomTokens as To, safeQuerySelector as Tr, ConnectPopover as Ts, SendTokenSummaryContent as Tt, SwitchFeedback as U, getXAppMetadata as Ua, SettingsModalProvider as Ui, signVip191Transaction as Un, buildClauses as Uo, simpleHash as Ur, useLegalDocuments as Us, useTransferERC20 as Ut, AccountModal as V, useXAppsShares as Va, Wallet as Vc, useNotificationAlerts as Vi, estimateGas as Vn, getResolverAddressQueryKey as Vo, validate as Vr, ConnectModalContentsTypes as Vs, useTransferVET as Vt, RemoveWalletConfirmContent as W, useXAppMetadata as Wa, useSettingsModal as Wi, useGenericDelegator as Wn, useUpdateTextRecord as Wo, TIME as Wr, ColorModeSync as Ws, UseSendTransactionReturnValue as Wt, SettingsContent as X, UseWalletReturnType as Xa, useLoginModalContent as Xi, useLocalStorage as Xn, Domain as Xo, buildQueryString as Xr, AccountQuickAction as Xs, getChainIdQueryKey as Xt, TermsAndPrivacyContent as Y, useWalletMetadata as Ya, useUpgradeSmartAccountModal as Yi, LocalStorageKey as Yn, useGetAvatar as Yo, allNodeStrengthLevelToName as Yr, usePrivyWalletProvider as Ys, getChainId as Yt, SettingsContentProps as Z, useWallet as Za, ReceiveModalProvider as Zi, BuildClausesParams as Zn, DomainsResponse as Zo, gmNfts as Zr, LegalDocument as Zs, useGetChainId as Zt, ModalNotificationButton as _, TransactionModalProvider as _a, GasTokenEstimate as _c, DEFAULT_PRIVY_ECOSYSTEM_APPS as _i, getHasV1SmartAccountQueryKey as _n, getCustomTokenInfoQueryKey as _o, copyToClipboard as _r, TransactionModalContent as _s, ChooseNameSummaryContentProps as _t, useModal as a, ExploreEcosystemModalProvider as aa, LegalDocumentAgreement as ac, compareListOfAddresses as ai, getUpgradeRequiredQueryKey as an, getIsPersonQueryKey as ao, useEvents as ar, useClaimVeWorldSubdomain as as, AssetsContent as at, AccountAvatar as b, useAccountModal as ba, GasTokenSelection as bc, PrivyEcosystemApp as bi, useGetAccountVersion as bn, TokenWithBalance as bo, getWindowOrigin as br, TransactionModalProps as bs, ChooseNameContent as bt, LegalDocumentsModal as c, useSwapTokenModal as ca, CostLevel as cc, regexPattern as ci, getSmartAccount as cn, useGetVot3Balance as co, useGetNodeUrl as cr, getVechainDomainQueryKey as cs, UpgradeSmartAccountContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, ChooseNameModalProvider as da, EstimationResponse as dc, getPicassoImage as di, useRefreshSmartAccountQueries as dn, getTokenUsdPrice as do, useCurrentLanguage as dr, useFetchPrivyStatus as ds, CustomizationSummaryContent as dt, useAccountCustomizationModal as ea, VeChainKitContext as ec, resolveMediaTypeFromMimeType as ei, useUpgradeSmartAccount as en, useRefreshMetadata as eo, useBuildClauses as er, useGetDomainsOfAddress as es, ChangeCurrencyContent as et, UpgradeSmartAccountModalStyle as f, useChooseNameModal as fa, Rate as fc, humanAddress as fi, useRefreshFactoryQueries as fn, getTokenUsdPriceQueryKey as fo, useCurrency as fr, fetchPrivyAppInfo as fs, CustomizationSummaryContentProps as ft, GasFeeSummary as g, useTransactionToast as ga, formatGasCost as gc, DEFAULT_GAS_TOKEN_PREFERENCES as gi, getHasV1SmartAccount as gn, useGetErc20Balance as go, useMultipleClausesCall as gr, TransactionToast as gs, ChooseNameSummaryContent as gt, GasFeeTokenSelector as h, TransactionToastProvider as ha, calculateTotalCost as hc, isZero as hi, useIsSmartAccountDeployed as hn, getErc20BalanceQueryKey as ho, useCallClause as hr, AccountMainContent as hs, FAQContent as ht, ModalProvider as i, useNotificationsModal as ia, EnrichedLegalDocument as ic, compareAddresses as ii, getUpgradeRequired as in, useMostVotedAppsInRound as io, getEventsKey as ir, useClaimVetDomain as is, ManageCustomTokenContentProps as it, ModalBackButton as j, IpfsImage as ja, ExecuteBatchWithAuthorizationSignData as jc, notFoundImage as ji, getAccountBalanceQueryKey as jn, ExchangeRates as jo, buildCallClauses as jr, PrivyButton as js, usePrivy as jt, VersionFooter as k, useUploadImages as ka, ENSRecords as kc, getENV as ki, useAccountImplementationAddress as kn, TokenWithValue as ko, MultipleClausesCallReturnType as kr, PasskeyLoginButton as ks, useDAppKitWalletModal as kt, LegalDocumentsModalContentsTypes as l, SendTokenModalProvider as la, DepositAccount as lc, randomTransactionUser as li, getSmartAccountQueryKey as ln, PRICE_FEED_IDS as lo, useFeatureAnnouncement as lr, useVechainDomain as ls, ProfileContent as lt, InlineFeedback as m, useWalletModal as ma, VthoPerGasAtSpeed as mc, humanNumber as mi, getIsDeployedQueryKey as mn, UseGetErc20BalanceOptions as mo, getCallClauseQueryKeyWithArgs as mr, useFetchAppInfo as ms, CustomizationContent as mt, getConfig as n, useFAQModal as na, VechainKitProviderProps as nc, uploadBlobToIPFS as ni, getUpgradeRequiredForAccountQueryKey as nn, MostVotedAppsInRoundReturnType as no, UseEventsParams as nr, useIsDomainProtected as ns, BridgeContent as nt, DAppKitWalletButton as o, useExploreEcosystemModal as oa, LegalDocumentSource as oc, isValidAddress as oi, useUpgradeRequired as on, useIsPerson as oo, useScrollToTop as or, getEnsRecordExistsQueryKey as os, AssetsContentProps as ot, WalletSwitchFeedback as p, WalletModalProvider as pa, TransactionCost as pc, humanDomain as pi, getIsDeployed as pn, useGetTokenUsdPrice as po, getCallClauseQueryKey as pr, getPrivyAppInfoQueryKey as ps, AccountCustomizationContentProps as pt, DisconnectConfirmContent as q, StoredWallet as qa, useProfileModal as qi, useEcosystemShortcuts as qn, useGetTextRecords as qo, NodeStrengthLevelToImage as qr, PrivyWalletProvider as qs, getAllEventLogs as qt, AccountModalOptions as r, NotificationsModalProvider as ra, useVeChainKitConfig as rc, validateIpfsUri as ri, useUpgradeRequiredForAccount as rn, XApp as ro, decodeEventLog$1 as rr, buildVetDomainClauses as rs, ManageCustomTokenContent as rt, LegalDocumentItem as s, SwapTokenModalProvider as sa, LegalDocumentType as sc, leftPadWithZeros as si, SmartAccountReturnType as sn, getVot3BalanceQueryKey as so, useIsPWA as sr, useEnsRecordExists as ss, UpgradeSmartAccountContent as st, AppConfig as t, FAQModalProvider as ta, VeChainKitProvider as tc, toIPFSURL as ti, getUpgradeRequiredForAccount as tn, useRefreshBalances as to, GetEventsKeyParams as tr, getIsDomainProtectedQueryKey as ts, ChangeCurrencyContentProps as tt, UpgradeSmartAccountModal as u, useSendTokenModal as ua, EstimatedGas as uc, formatTokenBalance as ui, useSmartAccount as un, SupportedToken as uo, useCurrentCurrency as ur, fetchPrivyStatus as us, ProfileContentProps as ut, TransactionButtonAndStatus as v, useTransactionModal as va, GasTokenInfo as vc, ENV as vi, useHasV1SmartAccount as vn, getTokenInfo as vo, getDocumentTitle as vr, ShareButtons as vs, ChooseNameSearchContent as vt, AssetButton as w, useSwapTransaction as wa, TextRecords as wc, TogglePassportCheck as wi, getCurrentAccountImplementationVersion as wn, useGetB3trBalance as wo, removeLocalStorageItem as wr, WalletDisplayVariant as ws, SelectTokenContent as wt, ScrollToTopWrapper as x, ConnectModalProvider as xa, GasTokenType as xc, SUPPORTED_GAS_TOKENS as xi, getAccountAddress as xn, getCustomTokenBalanceQueryKey as xo, hasNavigator as xr, SocialIcons as xs, ChooseNameContentProps as xt, TransactionButtonAndStatusProps as y, AccountModalProvider as ya, GasTokenPreferences as yc, NON_TRANSFERABLE_TOKEN_SYMBOLS as yi, getAccountVersionQueryKey as yn, useGetCustomTokenInfo as yo, getLocalStorageItem as yr, TransactionModal as ys, ChooseNameSearchContentProps as yt, ActionButton as z, useIpfsMetadata as za, TransactionStatusErrorType as zc, useSignTypedData as zi, delegateAuthorized as zn, getAvatarOfAddressQueryKey as zo, normalize as zr, MainContent as zs, useBuildTransaction as zt };
4319
- //# sourceMappingURL=index-DJ6mUqNG.d.cts.map
4802
+ export { RemoveWalletConfirmContentProps as $, VTHO_TOKEN_ADDRESS as $a, EstimatedGas as $c, useNotifications as $i, signVip191Transaction as $n, getErc20BalanceQueryKey as $o, simpleHash as $r, AccountMainContent as $s, useTransferERC20 as $t, useStickyHeaderContext as A, AccountModalProvider as Aa, ConnectModalContentsTypes as Ac, PrivyEcosystemApp as Ai, Wallet as Al, useGetAccountVersion as An, useRoundXApps as Ao, getWindowOrigin as Ar, getTextRecordsQueryKey as As, SwapTokenContent as At, AccountSelector as B, NavigatorPosition as Ba, LegalDocumentOptions as Bc, getGenericDelegatorUrl as Bi, getAccountBalance as Bn, usePortfolioPriceHistory24h as Bo, ViewFunctionResult as Br, useIsDomainProtected as Bs, useMfaEnrollment as Bt, ScrollToTopWrapper as C, useChooseNameModal as Ca, ConnectionButton as Cc, humanDomain as Ci, PrivyAppInfo as Cl, getIsDeployed as Cn, useSwitchWallet as Co, getCallClauseQueryKey as Cr, getAvatarOfAddressQueryKey as Cs, FAQContent as Ct, BaseModal as D, useTransactionToast as Da, LoadingContent as Dc, DEFAULT_PRIVY_ECOSYSTEM_APPS as Di, TransactionStatus as Dl, getHasV1SmartAccountQueryKey as Dn, UseWalletReturnType as Do, copyToClipboard as Dr, buildClauses as Ds, ChooseNameSearchContentProps as Dt, AssetButton as E, TransactionToastProvider as Ea, ErrorContent as Ec, DEFAULT_GAS_TOKEN_PREFERENCES as Ei, TokenBalance as El, getHasV1SmartAccount as En, useWalletMetadata as Eo, useMultipleClausesCall as Er, useGetResolverAddress as Es, ChooseNameSearchContent as Et, DomainRequiredAlert as F, JuicyPositionResult as Fa, PrivyWalletProvider as Fc, VECHAIN_KIT_COOKIES_CONFIG as Fi, getCurrentAccountImplementationVersionQueryKey as Fn, useMostVotedAppsInRound as Fo, safeQuerySelector as Fr, DomainsResponse as Fs, SendTokenSummaryContent as Ft, SwitchFeedback as G, useTokenTransferHistory as Ga, useAppConfig as Gc, useAppHubApps as Gi, useGenericDelegatorFeeEstimation as Gn, useOraclePriceChanges24h as Go, addPrefix as Gr, useEnsRecordExists as Gs, useGasEstimate as Gt, AccountDetailsButton as H, StargatePosition as Ha, VeChainKitContext as Hc, AppHubApp as Hi, useAccountBalance as Hn, PriceChanges24h as Ho, executeCallClause as Hr, useClaimVetDomain as Hs, useSetWalletRecovery as Ht, ExchangeWarningAlert as I, useJuicyPosition as Ia, PrivyWalletProviderContextType as Ic, VECHAIN_KIT_STORAGE_KEYS as Ii, useCurrentAccountImplementationVersion as In, getIsPersonQueryKey as Io, safeWindowOpen as Ir, getDomainsOfAddress as Is, SendTokenContent as It, TransactionHistoryContent as J, IndexerTransfer as Ja, LegalDocumentAgreement as Jc, useLoginWithOAuth as Ji, decodeRawTx as Jn, SupportedToken as Jo, isValid as Jr, fetchPrivyStatus as Js, BuildTransactionProps as Jt, TransactionDetailContent as K, getTransferHistoryQueryKey as Ka, useVeChainKitConfig as Kc, useConnectWithDappKitSource as Ki, useGenericDelegatorFeeEstimationParams as Kn, useTokenPriceHistory24h as Ko, compare as Kr, getVechainDomainQueryKey as Ks, txReceiptQueryKey as Kt, FeatureAnnouncementCard as L, LpPosition as La, usePrivyWalletProvider as Lc, VECHAIN_KIT_TERMS_CONFIG as Li, getAccountImplementationAddress as Ln, useIsPerson as Lo, setLocalStorageItem as Lr, getDomainsOfAddressQueryKey as Ls, ThorClient$1 as Lt, AddressDisplay as M, ConnectModalProvider as Ma, useLegalDocuments as Mc, TOKEN_LOGOS as Mi, getConfig as Ml, getAccountAddressQueryKey as Mn, useRefreshBalances as Mo, isBrowser as Mr, getAvatarQueryKey as Ms, ReceiveTokenContent as Mt, ModalBackButton as N, useConnectModal as Na, VechainKitThemeProvider as Nc, TOKEN_LOGO_COMPONENTS as Ni, useGetAccountAddress as Nn, MostVotedAppsInRoundReturnType as No, isOnline as Nr, useGetAvatar as Ns, ReceiveTokenContentProps as Nt, StickyFooterContainer as O, TransactionModalProvider as Oa, MainContent as Oc, ENV as Oi, TransactionStatusErrorType as Ol, useHasV1SmartAccount as On, useWallet as Oo, getDocumentTitle as Or, useUpdateTextRecord as Os, ChooseNameContent as Ot, CrossAppConnectionSecurityCard as P, JuicyAssetPosition as Pa, useVechainKitThemeConfig as Pc, TogglePassportCheck as Pi, getCurrentAccountImplementationVersion as Pn, XApp as Po, removeLocalStorageItem as Pr, Domain as Ps, SelectTokenContent as Pt, RemoveWalletConfirmContent as Q, VET_TOKEN_SENTINEL as Qa, DepositAccount as Qc, useNotificationAlerts as Qi, getDepositAccount as Qn, UseGetErc20BalanceOptions as Qo, isRejectionError as Qr, useFetchAppInfo as Qs, buildERC20Clauses as Qt, QuickActionsSection as R, LpPositionToken as Ra, AccountQuickAction as Rc, VECHAIN_PRIVY_APP_ID as Ri, getAccountImplementationAddressQueryKey as Rn, getVot3BalanceQueryKey as Ro, MultipleClausesCallParameters as Rr, useGetDomainsOfAddress as Rs, useDAppKitWallet as Rt, AccountAvatar as S, ChooseNameModalProvider as Sa, EmailLoginButton as Sc, humanAddress as Si, NFTMediaType as Sl, useRefreshFactoryQueries as Sn, UseSwitchWalletReturnType as So, useCurrency as Sr, useGetAvatarLegacy as Ss, CustomizationContent as St, AddressDisplayCard as T, useWalletModal as Ta, EcosystemContent as Tc, isZero as Ti, SmartAccount as Tl, useIsSmartAccountDeployed as Tn, useWalletStorage as To, useCallClause as Tr, getResolverAddressQueryKey as Ts, ChooseNameSummaryContentProps as Tt, AccountModal as U, StargatePositionsResult as Ua, VeChainKitProvider as Uc, fetchAppHubApps as Ui, UseEstimateAllTokensParams as Un, PricePoint as Uo, executeMultipleClausesCall as Ur, useClaimVeWorldSubdomain as Us, useThor as Ut, ActionButton as V, useNavigatorPosition as Va, VeChainKitConfig as Vc, notFoundImage as Vi, getAccountBalanceQueryKey as Vn, OracleHistory24h as Vo, buildCallClauses as Vr, buildVetDomainClauses as Vs, usePrivy as Vt, AccountModalContentTypes as W, useStargatePositions as Wa, VechainKitProviderProps as Wc, getAppHubAppsQueryKey as Wi, useEstimateAllTokens as Wn, useOracleHistory24h as Wo, isValidUrl as Wr, getEnsRecordExistsQueryKey as Ws, VECHAIN_KIT_QUERY_KEYS as Wt, TokenDetailContent as X, TransferEventType as Xa, LegalDocumentType as Xc, useSignTypedData as Xi, estimateAndBuildTxBody as Xn, getTokenUsdPriceQueryKey as Xo, removePrefix as Xr, fetchPrivyAppInfo as Xs, buildVETClauses as Xt, TransactionHistoryContentProps as Y, TransferDirection as Ya, LegalDocumentSource as Yc, useLoginWithPasskey as Yi, delegateAuthorized as Yn, getTokenUsdPrice as Yo, normalize as Yr, useFetchPrivyStatus as Ys, useBuildTransaction as Yt, TokenDetailContentProps as Z, TransferHistoryItem as Za, CostLevel as Zc, useSignMessage as Zi, estimateGas as Zn, useGetTokenUsdPrice as Zo, validate as Zr, getPrivyAppInfoQueryKey as Zs, useTransferVET as Zt, GasFeeTokenSelector as _, useExploreEcosystemModal as _a, LoginWithAppleButton as _c, leftPadWithZeros as _i, CrossAppConnectionCache as _l, SmartAccountReturnType as _n, getXAppsSharesQueryKey as _o, useIsPWA as _r, WalletTokenBalance as _s, ProfileContent as _t, LegalDocumentItem as a, UpgradeSmartAccountModalProvider as aa, SocialIcons as ac, allNodeStrengthLevelToName as ai, formatGasCost as al, getChainId as an, imageCompressionOptions as ao, LocalStorageKey as ar, getCustomTokenBalanceQueryKey as as, SettingsContentProps as at, TransactionButtonAndStatus as b, SendTokenModalProvider as ba, EcosystemButton as bc, formatTokenBalance as bi, ExecuteBatchWithAuthorizationSignData as bl, useSmartAccount as bn, getXAppMetadata as bo, useCurrentCurrency as br, getAvatarLegacy as bs, CustomizationSummaryContentProps as bt, UpgradeSmartAccountModal as c, ReceiveModalProvider as ca, WalletDisplayVariant as cc, xNodeToGMstartingLevel as ci, GasTokenPreferences as cl, currentBlockQueryKey as cn, IpfsImage as co, buildBatchAuthorizationTypedData as cr, useGetB3trBalance as cs, ChangeCurrencyContent as ct, PriceChart as d, useAccountCustomizationModal as da, Sync2Button as dc, toIPFSURL as di, TransactionSpeed as dl, getUpgradeRequiredForAccount as dn, getIpfsImageQueryKey as do, GetEventsKeyParams as dr, useCurrentAllocationsRoundId as ds, ManageCustomTokenContent as dt, SettingsModalProvider as ea, TransactionToast as ec, TIME as ei, EstimationResponse as el, UseSendTransactionReturnValue as en, useSwapQuotes as eo, useGenericDelegator as er, useGetErc20Balance as es, SelectWalletContent as et, CopyIconButton as f, FAQModalProvider as fa, VeWorldButton as fc, uploadBlobToIPFS as fi, ENS_TEXT_RECORDS as fl, getUpgradeRequiredForAccountQueryKey as fn, useIpfsImage as fo, UseEventsParams as fr, useTotalBalance as fs, ManageCustomTokenContentProps as ft, InlineFeedback as g, ExploreEcosystemModalProvider as ga, PasskeyLoginButton as gc, isValidAddress as gi, ConnectionSource as gl, useUpgradeRequired as gn, useIpfsMetadata as go, useScrollToTop as gr, useTokenPrices as gs, UpgradeSmartAccountContentProps as gt, WalletSwitchFeedback as h, useNotificationsModal as ha, DappKitButton as hc, compareListOfAddresses as hi, CURRENCY_SYMBOLS as hl, getUpgradeRequiredQueryKey as hn, getIpfsMetadataQueryKey as ho, useEvents as hr, ExchangeRates as hs, UpgradeSmartAccountContent as ht, DAppKitWalletButton as i, useProfileModal as ia, TransactionModalProps as ic, XNodeStrengthLevelToName as ii, calculateTotalCost as il, getEventLogs as in, compressImages as io, useSyncableLocalStorage as ir, TokenWithBalance as is, SettingsContent as it, VersionFooter as j, useAccountModal as ja, LegalDocumentsProvider as jc, SUPPORTED_GAS_TOKENS as ji, AppConfig as jl, getAccountAddress as jn, useRefreshMetadata as jo, hasNavigator as jr, useGetTextRecords as js, SwapTokenContentProps as jt, StickyHeaderContainer as k, useTransactionModal as ka, ConnectModal as kc, NON_TRANSFERABLE_TOKEN_SYMBOLS as ki, VePassportUserStatus as kl, getAccountVersionQueryKey as kn, getRoundXAppsQueryKey as ko, getLocalStorageItem as kr, getTextRecords as ks, ChooseNameContentProps as kt, UpgradeSmartAccountModalContentsTypes as l, useReceiveModal as la, ConnectPopover as lc, convertUriToUrl as li, GasTokenSelection as ll, useCurrentBlock as ln, MAX_IMAGE_SIZE as lo, buildSingleAuthorizationTypedData as lr, useCustomTokens as ls, ChangeCurrencyContentProps as lt, PriceChangeBadge as m, NotificationsModalProvider as ma, VeChainWithPrivyLoginButton as mc, compareAddresses as mi, CURRENCY as ml, getUpgradeRequired as mn, getIpfsMetadata as mo, getEventsKey as mr, useTokensWithValues as ms, AssetsContentProps as mt, ModalProvider as n, useAccountModalOptions as na, ShareButtons as nc, MinXNodeLevel as ni, TransactionCost as nl, GetEventsProps as nn, useSingleImageUpload as no, EcosystemShortcut as nr, getTokenInfo as ns, DisconnectConfirmContentProps as nt, LegalDocumentsModal as o, useUpgradeSmartAccountModal as oa, WalletButton as oc, buildQueryString as oi, GasTokenEstimate as ol, getChainIdQueryKey as on, useUploadImages as oo, useLocalStorage as or, useGetCustomTokenBalances as os, GasTokenSettingsContent as ot, AddressOrDomainLabel as p, useFAQModal as pa, LoginWithGithubButton as pc, validateIpfsUri as pi, TextRecords as pl, useUpgradeRequiredForAccount as pn, useIpfsImageList as po, decodeEventLog$1 as pr, TokenWithValue as ps, AssetsContent as pt, TransactionDetailContentProps as q, useTransferHistory as qa, EnrichedLegalDocument as qc, useLoginWithVeChain as qi, useGasTokenSelection as qn, PRICE_FEED_IDS as qo, isInvalid as qr, useVechainDomain as qs, useTxReceipt as qt, useModal as r, ProfileModalProvider as ra, TransactionModal as rc, NodeStrengthLevelToImage as ri, VthoPerGasAtSpeed as rl, getAllEventLogs as rn, UploadedImage as ro, useEcosystemShortcuts as rr, useGetCustomTokenInfo as rs, TermsAndPrivacyContent as rt, LegalDocumentsModalContentsTypes as s, useLoginModalContent as sa, WalletButtonProps as sc, gmNfts as si, GasTokenInfo as sl, useGetChainId as sn, useIpfsMetadatas as so, BuildClausesParams as sr, getB3trBalanceQueryKey as ss, LanguageSettingsContent as st, AccountModalOptions as t, useSettingsModal as ta, TransactionModalContent as tc, EconomicNodeStrengthLevelToName as ti, Rate as tl, useSendTransaction as tn, useSwapTransaction as to, useCrossAppConnectionCache as tr, getCustomTokenInfoQueryKey as ts, DisconnectConfirmContent as tt, UpgradeSmartAccountModalStyle as u, AccountCustomizationModalProvider as ua, WalletConnectButton as uc, resolveMediaTypeFromMimeType as ui, GasTokenType as ul, useUpgradeSmartAccount as un, getIpfsImage as uo, useBuildClauses as ur, getCurrentAllocationsRoundIdQueryKey as us, BridgeContent as ut, GasFeeSummary as v, SwapTokenModalProvider as va, LoginWithGoogleButton as vc, regexPattern as vi, ENSRecords as vl, getSmartAccount as vn, useXAppsShares as vo, useGetNodeUrl as vr, useTokenBalances as vs, ProfileContentProps as vt, ModalFAQButton as w, WalletModalProvider as wa, MoreOptionsContent as wc, humanNumber as wi, PrivyLoginMethod as wl, getIsDeployedQueryKey as wn, StoredWallet as wo, getCallClauseQueryKeyWithArgs as wr, useGetAvatarOfAddress as ws, ChooseNameSummaryContent as wt, TransactionButtonAndStatusProps as x, useSendTokenModal as xa, VeChainLoginButton as xc, getPicassoImage as xi, ExecuteWithAuthorizationSignData as xl, useRefreshSmartAccountQueries as xn, useXAppMetadata as xo, useCurrentLanguage as xr, getAvatarLegacyQueryKey as xs, AccountCustomizationContentProps as xt, ModalNotificationButton as y, useSwapTokenModal as ya, PrivyButton as yc, randomTransactionUser as yi, EnhancedClause as yl, getSmartAccountQueryKey as yn, XAppMetadata as yo, useFeatureAnnouncement as yr, useUnsetDomain as ys, CustomizationSummaryContent as yt, BalanceSection as z, useBetterSwapLpPositions as za, LegalDocument as zc, getENV as zi, useAccountImplementationAddress as zn, useGetVot3Balance as zo, MultipleClausesCallReturnType as zr, getIsDomainProtectedQueryKey as zs, useDAppKitWalletModal as zt };
4803
+ //# sourceMappingURL=index-C4fIl4KD.d.cts.map