@vechain/vechain-kit 2.6.8 → 2.7.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,7 +1,7 @@
1
1
  import { ButtonProps, IconButtonProps, ImageProps, PropsOf, StackProps, ThemeTypings, VStack } from "@chakra-ui/react";
2
2
  import * as react0 from "react";
3
3
  import React$1, { ElementType, ReactElement, ReactNode } from "react";
4
- import * as react_jsx_runtime0 from "react/jsx-runtime";
4
+ import * as react_jsx_runtime1 from "react/jsx-runtime";
5
5
  import * as _vechain_sdk_network0 from "@vechain/sdk-network";
6
6
  import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
7
7
  import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy, useSetWalletRecovery } from "@privy-io/react-auth";
@@ -53,9 +53,52 @@ declare const genesises: {
53
53
  readonly main: CompressedBlockDetail;
54
54
  readonly test: CompressedBlockDetail;
55
55
  readonly solo: CompressedBlockDetail;
56
- which(gid: string): "test" | "main" | "solo" | undefined;
56
+ which(gid: string): "main" | "test" | "solo" | undefined;
57
57
  };
58
58
  //#endregion
59
+ //#region src/config/index.d.ts
60
+ type AppConfig = {
61
+ ipfsFetchingService: string;
62
+ ipfsPinningService: string;
63
+ vthoContractAddress: string;
64
+ b3trContractAddress: string;
65
+ vot3ContractAddress: string;
66
+ b3trGovernorAddress: string;
67
+ timelockContractAddress: string;
68
+ xAllocationPoolContractAddress: string;
69
+ xAllocationVotingContractAddress: string;
70
+ emissionsContractAddress: string;
71
+ voterRewardsContractAddress: string;
72
+ galaxyMemberContractAddress: string;
73
+ treasuryContractAddress: string;
74
+ x2EarnAppsContractAddress: string;
75
+ x2EarnCreatorContractAddress: string;
76
+ x2EarnRewardsPoolContractAddress: string;
77
+ nodeManagementContractAddress: string;
78
+ veBetterPassportContractAddress: string;
79
+ veDelegate: string;
80
+ veDelegateVotes: string;
81
+ veDelegateTokenContractAddress: string;
82
+ oracleContractAddress: string;
83
+ accountFactoryAddress: string;
84
+ cleanifyCampaignsContractAddress: string;
85
+ cleanifyChallengesContractAddress: string;
86
+ veWorldSubdomainClaimerContractAddress: string;
87
+ vetDomainsContractAddress: string;
88
+ vetDomainsPublicResolverAddress: string;
89
+ vetDomainsReverseRegistrarAddress: string;
90
+ vnsResolverAddress: string;
91
+ sassContractAddress: string;
92
+ vetDomainAvatarUrl: string;
93
+ nodeUrl: string;
94
+ indexerUrl: string;
95
+ b3trIndexerUrl: string;
96
+ graphQlIndexerUrl: string;
97
+ network: Network;
98
+ explorerUrl: string;
99
+ };
100
+ declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
101
+ //#endregion
59
102
  //#region src/types/types.d.ts
60
103
  type TokenBalance = {
61
104
  original: string;
@@ -576,6 +619,23 @@ type VechainKitProviderProps = {
576
619
  allowCustomTokens?: boolean;
577
620
  /** When true, community tokens (e.g. SASS) are included in token lists and balances. */
578
621
  allowCommunityTokens?: boolean;
622
+ /**
623
+ * Override default contract addresses for the selected network.
624
+ * Useful when deploying custom contract instances (e.g., on solo or testnet).
625
+ * Only the provided fields are overridden; the rest use the network defaults.
626
+ *
627
+ * @example
628
+ * ```tsx
629
+ * <VeChainKitProvider
630
+ * network={{ type: 'solo' }}
631
+ * contractAddresses={{
632
+ * b3trContractAddress: '0x...',
633
+ * vot3ContractAddress: '0x...',
634
+ * }}
635
+ * >
636
+ * ```
637
+ */
638
+ contractAddresses?: Partial<AppConfig>;
579
639
  legalDocuments?: LegalDocumentOptions;
580
640
  hiddenQuickActions?: AccountQuickAction[];
581
641
  defaultCurrency?: CURRENCY;
@@ -595,6 +655,8 @@ type VeChainKitConfig = {
595
655
  loginMethods?: VechainKitProviderProps['loginMethods'];
596
656
  darkMode: boolean;
597
657
  i18n?: VechainKitProviderProps['i18n'];
658
+ /** The full app config for the current network, with any contractAddresses overrides applied. */
659
+ appConfig: AppConfig;
598
660
  network: {
599
661
  type: NETWORK_TYPE;
600
662
  nodeUrl: string;
@@ -641,7 +703,18 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
641
703
  * ```
642
704
  */
643
705
  declare const useVeChainKitConfig: () => VeChainKitConfig;
644
- declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime0.JSX.Element;
706
+ /**
707
+ * Hook to get the merged app config for the current network.
708
+ * Returns the base network config with any contractAddresses overrides applied.
709
+ *
710
+ * @example
711
+ * ```tsx
712
+ * const config = useAppConfig();
713
+ * const b3trAddress = config.b3trContractAddress;
714
+ * ```
715
+ */
716
+ declare const useAppConfig: () => AppConfig;
717
+ declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime1.JSX.Element;
645
718
  //#endregion
646
719
  //#region src/providers/PrivyWalletProvider.d.ts
647
720
  interface PrivyWalletProviderContextType {
@@ -684,7 +757,7 @@ declare const PrivyWalletProvider: ({
684
757
  delegatorUrl?: string;
685
758
  delegateAllTransactions: boolean;
686
759
  genericDelegator?: boolean;
687
- }) => react_jsx_runtime0.JSX.Element;
760
+ }) => react_jsx_runtime1.JSX.Element;
688
761
  declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
689
762
  //#endregion
690
763
  //#region src/providers/VechainKitThemeProvider.d.ts
@@ -702,12 +775,12 @@ declare const ColorModeSync: ({
702
775
  darkMode
703
776
  }: {
704
777
  darkMode: boolean;
705
- }) => react_jsx_runtime0.JSX.Element;
778
+ }) => react_jsx_runtime1.JSX.Element;
706
779
  declare const VechainKitThemeProvider: ({
707
780
  children,
708
781
  darkMode,
709
782
  theme: customTheme
710
- }: Props$35) => react_jsx_runtime0.JSX.Element;
783
+ }: Props$35) => react_jsx_runtime1.JSX.Element;
711
784
  //#endregion
712
785
  //#region src/providers/LegalDocumentsProvider.d.ts
713
786
  type Props$34 = {
@@ -723,7 +796,7 @@ type LegalDocumentsContextType = {
723
796
  declare const useLegalDocuments: () => LegalDocumentsContextType;
724
797
  declare const LegalDocumentsProvider: ({
725
798
  children
726
- }: Props$34) => react_jsx_runtime0.JSX.Element;
799
+ }: Props$34) => react_jsx_runtime1.JSX.Element;
727
800
  //#endregion
728
801
  //#region src/components/ConnectModal/ConnectModal.d.ts
729
802
  type Props$33 = {
@@ -759,7 +832,7 @@ declare const ConnectModal: ({
759
832
  onClose,
760
833
  initialContent,
761
834
  preventAutoClose
762
- }: Props$33) => react_jsx_runtime0.JSX.Element;
835
+ }: Props$33) => react_jsx_runtime1.JSX.Element;
763
836
  //#endregion
764
837
  //#region src/components/ConnectModal/Contents/MainContent.d.ts
765
838
  type Props$32 = {
@@ -767,7 +840,7 @@ type Props$32 = {
767
840
  };
768
841
  declare const MainContent: ({
769
842
  setCurrentContent
770
- }: Props$32) => react_jsx_runtime0.JSX.Element;
843
+ }: Props$32) => react_jsx_runtime1.JSX.Element;
771
844
  //#endregion
772
845
  //#region src/components/ConnectModal/Contents/LoadingContent.d.ts
773
846
  type LoadingContentProps = {
@@ -785,7 +858,7 @@ declare const LoadingContent: ({
785
858
  onClose,
786
859
  onGoBack,
787
860
  showBackButton
788
- }: LoadingContentProps) => react_jsx_runtime0.JSX.Element;
861
+ }: LoadingContentProps) => react_jsx_runtime1.JSX.Element;
789
862
  //#endregion
790
863
  //#region src/components/ConnectModal/Contents/ErrorContent.d.ts
791
864
  type ErrorContentProps = {
@@ -799,7 +872,7 @@ declare const ErrorContent: ({
799
872
  onClose,
800
873
  onTryAgain,
801
874
  onGoBack
802
- }: ErrorContentProps) => react_jsx_runtime0.JSX.Element;
875
+ }: ErrorContentProps) => react_jsx_runtime1.JSX.Element;
803
876
  //#endregion
804
877
  //#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
805
878
  type Props$31 = {
@@ -815,7 +888,7 @@ declare const EcosystemContent: ({
815
888
  isLoading,
816
889
  setCurrentContent,
817
890
  showBackButton
818
- }: Props$31) => react_jsx_runtime0.JSX.Element;
891
+ }: Props$31) => react_jsx_runtime1.JSX.Element;
819
892
  //#endregion
820
893
  //#region src/components/ConnectModal/Components/ConnectionButton.d.ts
821
894
  interface ConnectionButtonProps {
@@ -838,10 +911,10 @@ declare const ConnectionButton: ({
838
911
  style,
839
912
  variant,
840
913
  iconWidth
841
- }: ConnectionButtonProps) => react_jsx_runtime0.JSX.Element | null;
914
+ }: ConnectionButtonProps) => react_jsx_runtime1.JSX.Element | null;
842
915
  //#endregion
843
916
  //#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
844
- declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
917
+ declare const EmailLoginButton: () => react_jsx_runtime1.JSX.Element;
845
918
  //#endregion
846
919
  //#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
847
920
  type Props$30 = {
@@ -853,7 +926,7 @@ declare const VeChainLoginButton: ({
853
926
  isDark,
854
927
  gridColumn,
855
928
  setCurrentContent
856
- }: Props$30) => react_jsx_runtime0.JSX.Element;
929
+ }: Props$30) => react_jsx_runtime1.JSX.Element;
857
930
  //#endregion
858
931
  //#region src/components/ConnectModal/Components/EcosystemButton.d.ts
859
932
  type Props$29 = {
@@ -867,7 +940,7 @@ declare const EcosystemButton: ({
867
940
  appsInfo,
868
941
  isLoading,
869
942
  setCurrentContent
870
- }: Props$29) => react_jsx_runtime0.JSX.Element;
943
+ }: Props$29) => react_jsx_runtime1.JSX.Element;
871
944
  //#endregion
872
945
  //#region src/components/ConnectModal/Components/PrivyButton.d.ts
873
946
  type Props$28 = {
@@ -879,7 +952,7 @@ declare const PrivyButton: ({
879
952
  isDark,
880
953
  onViewMoreLogin,
881
954
  gridColumn
882
- }: Props$28) => react_jsx_runtime0.JSX.Element;
955
+ }: Props$28) => react_jsx_runtime1.JSX.Element;
883
956
  //#endregion
884
957
  //#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
885
958
  type Props$27 = {
@@ -889,7 +962,7 @@ type Props$27 = {
889
962
  declare const LoginWithGoogleButton: ({
890
963
  isDark,
891
964
  gridColumn
892
- }: Props$27) => react_jsx_runtime0.JSX.Element;
965
+ }: Props$27) => react_jsx_runtime1.JSX.Element;
893
966
  //#endregion
894
967
  //#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
895
968
  type Props$26 = {
@@ -901,7 +974,7 @@ declare const PasskeyLoginButton: ({
901
974
  isDark,
902
975
  gridColumn,
903
976
  setCurrentContent
904
- }: Props$26) => react_jsx_runtime0.JSX.Element;
977
+ }: Props$26) => react_jsx_runtime1.JSX.Element;
905
978
  //#endregion
906
979
  //#region src/components/ConnectModal/Components/DappKitButton.d.ts
907
980
  type Props$25 = {
@@ -911,7 +984,7 @@ type Props$25 = {
911
984
  declare const DappKitButton: ({
912
985
  isDark,
913
986
  gridColumn
914
- }: Props$25) => react_jsx_runtime0.JSX.Element;
987
+ }: Props$25) => react_jsx_runtime1.JSX.Element;
915
988
  //#endregion
916
989
  //#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
917
990
  type Props$24 = {
@@ -921,7 +994,7 @@ type Props$24 = {
921
994
  declare const VeChainWithPrivyLoginButton: ({
922
995
  isDark,
923
996
  gridColumn
924
- }: Props$24) => react_jsx_runtime0.JSX.Element;
997
+ }: Props$24) => react_jsx_runtime1.JSX.Element;
925
998
  //#endregion
926
999
  //#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
927
1000
  type Props$23 = {
@@ -931,7 +1004,7 @@ type Props$23 = {
931
1004
  declare const LoginWithGithubButton: ({
932
1005
  isDark,
933
1006
  gridColumn
934
- }: Props$23) => react_jsx_runtime0.JSX.Element;
1007
+ }: Props$23) => react_jsx_runtime1.JSX.Element;
935
1008
  //#endregion
936
1009
  //#region src/components/ConnectModal/ConnectPopover.d.ts
937
1010
  type ConnectPopoverProps = {
@@ -941,7 +1014,7 @@ type ConnectPopoverProps = {
941
1014
  declare const ConnectPopover: ({
942
1015
  isLoading,
943
1016
  buttonStyle
944
- }: ConnectPopoverProps) => react_jsx_runtime0.JSX.Element;
1017
+ }: ConnectPopoverProps) => react_jsx_runtime1.JSX.Element;
945
1018
  //#endregion
946
1019
  //#region src/components/WalletButton/types.d.ts
947
1020
  type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
@@ -960,10 +1033,10 @@ declare const WalletButton: ({
960
1033
  buttonStyle,
961
1034
  connectionVariant,
962
1035
  label
963
- }: WalletButtonProps) => react_jsx_runtime0.JSX.Element;
1036
+ }: WalletButtonProps) => react_jsx_runtime1.JSX.Element;
964
1037
  //#endregion
965
1038
  //#region src/components/WalletButton/SocialIcons.d.ts
966
- declare const SocialIcons: () => react_jsx_runtime0.JSX.Element;
1039
+ declare const SocialIcons: () => react_jsx_runtime1.JSX.Element;
967
1040
  //#endregion
968
1041
  //#region src/components/TransactionModal/TransactionModal.d.ts
969
1042
  type TransactionModalProps = {
@@ -993,7 +1066,7 @@ declare const TransactionModal: ({
993
1066
  txReceipt,
994
1067
  txError,
995
1068
  onTryAgain
996
- }: TransactionModalProps) => react_jsx_runtime0.JSX.Element | null;
1069
+ }: TransactionModalProps) => react_jsx_runtime1.JSX.Element | null;
997
1070
  //#endregion
998
1071
  //#region src/components/TransactionModal/Components/ShareButtons.d.ts
999
1072
  type Props$22 = {
@@ -1003,7 +1076,7 @@ type Props$22 = {
1003
1076
  };
1004
1077
  declare const ShareButtons: ({
1005
1078
  description
1006
- }: Props$22) => react_jsx_runtime0.JSX.Element;
1079
+ }: Props$22) => react_jsx_runtime1.JSX.Element;
1007
1080
  //#endregion
1008
1081
  //#region src/components/TransactionModal/TransactionModalContent.d.ts
1009
1082
  declare const TransactionModalContent: ({
@@ -1013,7 +1086,7 @@ declare const TransactionModalContent: ({
1013
1086
  txReceipt,
1014
1087
  txError,
1015
1088
  onClose
1016
- }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime0.JSX.Element;
1089
+ }: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime1.JSX.Element;
1017
1090
  //#endregion
1018
1091
  //#region src/components/TransactionToast/TransactionToast.d.ts
1019
1092
  type TransactionToastProps = {
@@ -1033,7 +1106,7 @@ declare const TransactionToast: ({
1033
1106
  txError,
1034
1107
  onTryAgain,
1035
1108
  description
1036
- }: TransactionToastProps) => react_jsx_runtime0.JSX.Element | null;
1109
+ }: TransactionToastProps) => react_jsx_runtime1.JSX.Element | null;
1037
1110
  //#endregion
1038
1111
  //#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
1039
1112
  type Props$21 = {
@@ -1049,7 +1122,7 @@ declare const AccountMainContent: ({
1049
1122
  wallet,
1050
1123
  onClose,
1051
1124
  switchFeedback
1052
- }: Props$21) => react_jsx_runtime0.JSX.Element;
1125
+ }: Props$21) => react_jsx_runtime1.JSX.Element;
1053
1126
  //#endregion
1054
1127
  //#region src/hooks/api/privy/useFetchAppInfo.d.ts
1055
1128
  declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
@@ -1905,7 +1978,7 @@ declare const ConnectModalProvider: ({
1905
1978
  children
1906
1979
  }: {
1907
1980
  children: ReactNode;
1908
- }) => react_jsx_runtime0.JSX.Element;
1981
+ }) => react_jsx_runtime1.JSX.Element;
1909
1982
  //#endregion
1910
1983
  //#region src/hooks/modals/useAccountModal.d.ts
1911
1984
  declare const useAccountModal: () => {
@@ -1917,7 +1990,7 @@ declare const AccountModalProvider: ({
1917
1990
  children
1918
1991
  }: {
1919
1992
  children: ReactNode;
1920
- }) => react_jsx_runtime0.JSX.Element;
1993
+ }) => react_jsx_runtime1.JSX.Element;
1921
1994
  //#endregion
1922
1995
  //#region src/hooks/modals/useTransactionModal.d.ts
1923
1996
  declare const useTransactionModal: () => {
@@ -1929,7 +2002,7 @@ declare const TransactionModalProvider: ({
1929
2002
  children
1930
2003
  }: {
1931
2004
  children: ReactNode;
1932
- }) => react_jsx_runtime0.JSX.Element;
2005
+ }) => react_jsx_runtime1.JSX.Element;
1933
2006
  //#endregion
1934
2007
  //#region src/hooks/modals/useTransactionToast.d.ts
1935
2008
  declare const useTransactionToast: () => {
@@ -1941,7 +2014,7 @@ declare const TransactionToastProvider: ({
1941
2014
  children
1942
2015
  }: {
1943
2016
  children: ReactNode;
1944
- }) => react_jsx_runtime0.JSX.Element;
2017
+ }) => react_jsx_runtime1.JSX.Element;
1945
2018
  //#endregion
1946
2019
  //#region src/hooks/modals/useWalletModal.d.ts
1947
2020
  declare const useWalletModal: () => {
@@ -1953,7 +2026,7 @@ declare const WalletModalProvider: ({
1953
2026
  children
1954
2027
  }: {
1955
2028
  children: ReactNode;
1956
- }) => react_jsx_runtime0.JSX.Element;
2029
+ }) => react_jsx_runtime1.JSX.Element;
1957
2030
  //#endregion
1958
2031
  //#region src/hooks/modals/useChooseNameModal.d.ts
1959
2032
  declare const useChooseNameModal: () => {
@@ -1965,7 +2038,7 @@ declare const ChooseNameModalProvider: ({
1965
2038
  children
1966
2039
  }: {
1967
2040
  children: ReactNode;
1968
- }) => react_jsx_runtime0.JSX.Element;
2041
+ }) => react_jsx_runtime1.JSX.Element;
1969
2042
  //#endregion
1970
2043
  //#region src/hooks/modals/useSendTokenModal.d.ts
1971
2044
  declare const useSendTokenModal: () => {
@@ -1977,7 +2050,7 @@ declare const SendTokenModalProvider: ({
1977
2050
  children
1978
2051
  }: {
1979
2052
  children: ReactNode;
1980
- }) => react_jsx_runtime0.JSX.Element;
2053
+ }) => react_jsx_runtime1.JSX.Element;
1981
2054
  //#endregion
1982
2055
  //#region src/hooks/modals/useSwapTokenModal.d.ts
1983
2056
  type SwapTokenModalOptions = {
@@ -1994,7 +2067,7 @@ declare const SwapTokenModalProvider: ({
1994
2067
  children
1995
2068
  }: {
1996
2069
  children: ReactNode;
1997
- }) => react_jsx_runtime0.JSX.Element;
2070
+ }) => react_jsx_runtime1.JSX.Element;
1998
2071
  //#endregion
1999
2072
  //#region src/hooks/modals/useExploreEcosystemModal.d.ts
2000
2073
  declare const useExploreEcosystemModal: () => {
@@ -2006,7 +2079,7 @@ declare const ExploreEcosystemModalProvider: ({
2006
2079
  children
2007
2080
  }: {
2008
2081
  children: ReactNode;
2009
- }) => react_jsx_runtime0.JSX.Element;
2082
+ }) => react_jsx_runtime1.JSX.Element;
2010
2083
  //#endregion
2011
2084
  //#region src/hooks/modals/useNotificationsModal.d.ts
2012
2085
  declare const useNotificationsModal: () => {
@@ -2018,7 +2091,7 @@ declare const NotificationsModalProvider: ({
2018
2091
  children
2019
2092
  }: {
2020
2093
  children: ReactNode;
2021
- }) => react_jsx_runtime0.JSX.Element;
2094
+ }) => react_jsx_runtime1.JSX.Element;
2022
2095
  //#endregion
2023
2096
  //#region src/hooks/modals/useFAQModal.d.ts
2024
2097
  declare const useFAQModal: () => {
@@ -2030,7 +2103,7 @@ declare const FAQModalProvider: ({
2030
2103
  children
2031
2104
  }: {
2032
2105
  children: ReactNode;
2033
- }) => react_jsx_runtime0.JSX.Element;
2106
+ }) => react_jsx_runtime1.JSX.Element;
2034
2107
  //#endregion
2035
2108
  //#region src/hooks/modals/useAccountCustomizationModal.d.ts
2036
2109
  declare const useAccountCustomizationModal: () => {
@@ -2042,7 +2115,7 @@ declare const AccountCustomizationModalProvider: ({
2042
2115
  children
2043
2116
  }: {
2044
2117
  children: ReactNode;
2045
- }) => react_jsx_runtime0.JSX.Element;
2118
+ }) => react_jsx_runtime1.JSX.Element;
2046
2119
  //#endregion
2047
2120
  //#region src/hooks/modals/useReceiveModal.d.ts
2048
2121
  declare const useReceiveModal: () => {
@@ -2054,7 +2127,7 @@ declare const ReceiveModalProvider: ({
2054
2127
  children
2055
2128
  }: {
2056
2129
  children: ReactNode;
2057
- }) => react_jsx_runtime0.JSX.Element;
2130
+ }) => react_jsx_runtime1.JSX.Element;
2058
2131
  //#endregion
2059
2132
  //#region src/hooks/modals/useLoginModalContent.d.ts
2060
2133
  type LoginModalContentConfig = {
@@ -2080,7 +2153,7 @@ declare const UpgradeSmartAccountModalProvider: ({
2080
2153
  children
2081
2154
  }: {
2082
2155
  children: ReactNode;
2083
- }) => react_jsx_runtime0.JSX.Element;
2156
+ }) => react_jsx_runtime1.JSX.Element;
2084
2157
  //#endregion
2085
2158
  //#region src/hooks/modals/useProfileModal.d.ts
2086
2159
  declare const useProfileModal: () => {
@@ -2092,7 +2165,7 @@ declare const ProfileModalProvider: ({
2092
2165
  children
2093
2166
  }: {
2094
2167
  children: ReactNode;
2095
- }) => react_jsx_runtime0.JSX.Element;
2168
+ }) => react_jsx_runtime1.JSX.Element;
2096
2169
  //#endregion
2097
2170
  //#region src/hooks/modals/useAccountModalOptions.d.ts
2098
2171
  declare const useAccountModalOptions: () => {
@@ -2110,7 +2183,7 @@ declare const SettingsModalProvider: ({
2110
2183
  children
2111
2184
  }: {
2112
2185
  children: ReactNode;
2113
- }) => react_jsx_runtime0.JSX.Element;
2186
+ }) => react_jsx_runtime1.JSX.Element;
2114
2187
  //#endregion
2115
2188
  //#region src/hooks/notifications/types.d.ts
2116
2189
  type NotificationAction = {
@@ -3366,7 +3439,7 @@ declare const SendTokenContent: ({
3366
3439
  initialAmount,
3367
3440
  initialToAddressOrDomain,
3368
3441
  onBack: parentOnBack
3369
- }: SendTokenContentProps) => react_jsx_runtime0.JSX.Element;
3442
+ }: SendTokenContentProps) => react_jsx_runtime1.JSX.Element;
3370
3443
  //#endregion
3371
3444
  //#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
3372
3445
  type SendTokenSummaryContentProps = {
@@ -3386,7 +3459,7 @@ declare const SendTokenSummaryContent: ({
3386
3459
  amount,
3387
3460
  selectedToken,
3388
3461
  formattedTotalAmount
3389
- }: SendTokenSummaryContentProps) => react_jsx_runtime0.JSX.Element;
3462
+ }: SendTokenSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3390
3463
  //#endregion
3391
3464
  //#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
3392
3465
  type Props$18 = {
@@ -3407,7 +3480,7 @@ declare const SelectTokenContent: ({
3407
3480
  onBack,
3408
3481
  showAllTokens,
3409
3482
  excludedTokenSymbols
3410
- }: Props$18) => react_jsx_runtime0.JSX.Element;
3483
+ }: Props$18) => react_jsx_runtime1.JSX.Element;
3411
3484
  //#endregion
3412
3485
  //#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
3413
3486
  type Props$17 = {
@@ -3415,7 +3488,7 @@ type Props$17 = {
3415
3488
  };
3416
3489
  declare const ReceiveTokenContent: ({
3417
3490
  setCurrentContent
3418
- }: Props$17) => react_jsx_runtime0.JSX.Element;
3491
+ }: Props$17) => react_jsx_runtime1.JSX.Element;
3419
3492
  //#endregion
3420
3493
  //#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
3421
3494
  type Props$16 = {
@@ -3427,7 +3500,7 @@ declare const SwapTokenContent: ({
3427
3500
  setCurrentContent,
3428
3501
  fromTokenAddress,
3429
3502
  toTokenAddress
3430
- }: Props$16) => react_jsx_runtime0.JSX.Element;
3503
+ }: Props$16) => react_jsx_runtime1.JSX.Element;
3431
3504
  //#endregion
3432
3505
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
3433
3506
  type ChooseNameContentProps = {
@@ -3439,7 +3512,7 @@ declare const ChooseNameContent: ({
3439
3512
  setCurrentContent,
3440
3513
  onBack,
3441
3514
  initialContentSource
3442
- }: ChooseNameContentProps) => react_jsx_runtime0.JSX.Element;
3515
+ }: ChooseNameContentProps) => react_jsx_runtime1.JSX.Element;
3443
3516
  //#endregion
3444
3517
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
3445
3518
  type ChooseNameSearchContentProps = {
@@ -3451,7 +3524,7 @@ declare const ChooseNameSearchContent: ({
3451
3524
  name: initialName,
3452
3525
  setCurrentContent,
3453
3526
  initialContentSource
3454
- }: ChooseNameSearchContentProps) => react_jsx_runtime0.JSX.Element;
3527
+ }: ChooseNameSearchContentProps) => react_jsx_runtime1.JSX.Element;
3455
3528
  //#endregion
3456
3529
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
3457
3530
  type ChooseNameSummaryContentProps = {
@@ -3469,7 +3542,7 @@ declare const ChooseNameSummaryContent: ({
3469
3542
  isOwnDomain,
3470
3543
  isUnsetting,
3471
3544
  initialContentSource
3472
- }: ChooseNameSummaryContentProps) => react_jsx_runtime0.JSX.Element;
3545
+ }: ChooseNameSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3473
3546
  //#endregion
3474
3547
  //#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
3475
3548
  type FAQContentProps = {
@@ -3479,7 +3552,7 @@ type FAQContentProps = {
3479
3552
  declare const FAQContent: ({
3480
3553
  onGoBack,
3481
3554
  showLanguageSelector
3482
- }: FAQContentProps) => react_jsx_runtime0.JSX.Element;
3555
+ }: FAQContentProps) => react_jsx_runtime1.JSX.Element;
3483
3556
  //#endregion
3484
3557
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
3485
3558
  type AccountCustomizationContentProps = {
@@ -3489,7 +3562,7 @@ type AccountCustomizationContentProps = {
3489
3562
  declare const CustomizationContent: ({
3490
3563
  setCurrentContent,
3491
3564
  initialContentSource
3492
- }: AccountCustomizationContentProps) => react_jsx_runtime0.JSX.Element;
3565
+ }: AccountCustomizationContentProps) => react_jsx_runtime1.JSX.Element;
3493
3566
  //#endregion
3494
3567
  //#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
3495
3568
  type CustomizationSummaryContentProps = {
@@ -3508,7 +3581,7 @@ declare const CustomizationSummaryContent: ({
3508
3581
  setCurrentContent,
3509
3582
  changes,
3510
3583
  onDoneRedirectContent
3511
- }: CustomizationSummaryContentProps) => react_jsx_runtime0.JSX.Element;
3584
+ }: CustomizationSummaryContentProps) => react_jsx_runtime1.JSX.Element;
3512
3585
  //#endregion
3513
3586
  //#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
3514
3587
  type ProfileContentProps = {
@@ -3522,7 +3595,7 @@ declare const ProfileContent: ({
3522
3595
  setCurrentContent,
3523
3596
  onLogoutSuccess,
3524
3597
  switchFeedback
3525
- }: ProfileContentProps) => react_jsx_runtime0.JSX.Element;
3598
+ }: ProfileContentProps) => react_jsx_runtime1.JSX.Element;
3526
3599
  //#endregion
3527
3600
  //#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
3528
3601
  type UpgradeSmartAccountContentProps = {
@@ -3534,7 +3607,7 @@ declare const UpgradeSmartAccountContent: ({
3534
3607
  setCurrentContent,
3535
3608
  handleClose,
3536
3609
  initialContent
3537
- }: UpgradeSmartAccountContentProps) => react_jsx_runtime0.JSX.Element;
3610
+ }: UpgradeSmartAccountContentProps) => react_jsx_runtime1.JSX.Element;
3538
3611
  //#endregion
3539
3612
  //#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
3540
3613
  type AssetsContentProps = {
@@ -3542,7 +3615,7 @@ type AssetsContentProps = {
3542
3615
  };
3543
3616
  declare const AssetsContent: ({
3544
3617
  setCurrentContent
3545
- }: AssetsContentProps) => react_jsx_runtime0.JSX.Element;
3618
+ }: AssetsContentProps) => react_jsx_runtime1.JSX.Element;
3546
3619
  //#endregion
3547
3620
  //#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
3548
3621
  type ManageCustomTokenContentProps = {
@@ -3550,7 +3623,7 @@ type ManageCustomTokenContentProps = {
3550
3623
  };
3551
3624
  declare const ManageCustomTokenContent: ({
3552
3625
  setCurrentContent
3553
- }: ManageCustomTokenContentProps) => react_jsx_runtime0.JSX.Element;
3626
+ }: ManageCustomTokenContentProps) => react_jsx_runtime1.JSX.Element;
3554
3627
  //#endregion
3555
3628
  //#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
3556
3629
  type Props$15 = {
@@ -3558,7 +3631,7 @@ type Props$15 = {
3558
3631
  };
3559
3632
  declare const BridgeContent: ({
3560
3633
  setCurrentContent
3561
- }: Props$15) => react_jsx_runtime0.JSX.Element;
3634
+ }: Props$15) => react_jsx_runtime1.JSX.Element;
3562
3635
  //#endregion
3563
3636
  //#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
3564
3637
  type ChangeCurrencyContentProps = {
@@ -3566,7 +3639,7 @@ type ChangeCurrencyContentProps = {
3566
3639
  };
3567
3640
  declare const ChangeCurrencyContent: ({
3568
3641
  setCurrentContent
3569
- }: ChangeCurrencyContentProps) => react_jsx_runtime0.JSX.Element;
3642
+ }: ChangeCurrencyContentProps) => react_jsx_runtime1.JSX.Element;
3570
3643
  //#endregion
3571
3644
  //#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
3572
3645
  type Props$14 = {
@@ -3574,7 +3647,7 @@ type Props$14 = {
3574
3647
  };
3575
3648
  declare const LanguageSettingsContent: ({
3576
3649
  setCurrentContent
3577
- }: Props$14) => react_jsx_runtime0.JSX.Element;
3650
+ }: Props$14) => react_jsx_runtime1.JSX.Element;
3578
3651
  //#endregion
3579
3652
  //#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
3580
3653
  type Props$13 = {
@@ -3582,7 +3655,7 @@ type Props$13 = {
3582
3655
  };
3583
3656
  declare const GasTokenSettingsContent: ({
3584
3657
  setCurrentContent
3585
- }: Props$13) => react_jsx_runtime0.JSX.Element;
3658
+ }: Props$13) => react_jsx_runtime1.JSX.Element;
3586
3659
  //#endregion
3587
3660
  //#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
3588
3661
  type SettingsContentProps = {
@@ -3592,7 +3665,7 @@ type SettingsContentProps = {
3592
3665
  declare const SettingsContent: ({
3593
3666
  setCurrentContent,
3594
3667
  onLogoutSuccess
3595
- }: SettingsContentProps) => react_jsx_runtime0.JSX.Element;
3668
+ }: SettingsContentProps) => react_jsx_runtime1.JSX.Element;
3596
3669
  //#endregion
3597
3670
  //#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
3598
3671
  type TermsAndPrivacyContentProps = {
@@ -3600,7 +3673,7 @@ type TermsAndPrivacyContentProps = {
3600
3673
  };
3601
3674
  declare const TermsAndPrivacyContent: ({
3602
3675
  onGoBack
3603
- }: TermsAndPrivacyContentProps) => react_jsx_runtime0.JSX.Element;
3676
+ }: TermsAndPrivacyContentProps) => react_jsx_runtime1.JSX.Element;
3604
3677
  //#endregion
3605
3678
  //#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
3606
3679
  type DisconnectConfirmContentProps = {
@@ -3616,7 +3689,7 @@ declare const DisconnectConfirmContent: ({
3616
3689
  onClose,
3617
3690
  showCloseButton,
3618
3691
  text
3619
- }: DisconnectConfirmContentProps) => react_jsx_runtime0.JSX.Element;
3692
+ }: DisconnectConfirmContentProps) => react_jsx_runtime1.JSX.Element;
3620
3693
  //#endregion
3621
3694
  //#region src/components/AccountModal/Contents/SelectWallet/SelectWalletContent.d.ts
3622
3695
  type Props$12 = {
@@ -3629,7 +3702,7 @@ declare const SelectWalletContent: ({
3629
3702
  setCurrentContent,
3630
3703
  returnTo,
3631
3704
  onLogoutSuccess: _onLogoutSuccess
3632
- }: Props$12) => react_jsx_runtime0.JSX.Element;
3705
+ }: Props$12) => react_jsx_runtime1.JSX.Element;
3633
3706
  //#endregion
3634
3707
  //#region src/components/AccountModal/Contents/SelectWallet/RemoveWalletConfirmContent.d.ts
3635
3708
  type RemoveWalletConfirmContentProps = {
@@ -3645,7 +3718,7 @@ declare const RemoveWalletConfirmContent: ({
3645
3718
  onConfirm,
3646
3719
  onBack,
3647
3720
  onClose
3648
- }: RemoveWalletConfirmContentProps) => react_jsx_runtime0.JSX.Element;
3721
+ }: RemoveWalletConfirmContentProps) => react_jsx_runtime1.JSX.Element;
3649
3722
  //#endregion
3650
3723
  //#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
3651
3724
  type CategoryFilter = string | null;
@@ -3773,7 +3846,7 @@ declare const AccountModal: ({
3773
3846
  isOpen,
3774
3847
  onClose,
3775
3848
  initialContent
3776
- }: Props$11) => react_jsx_runtime0.JSX.Element;
3849
+ }: Props$11) => react_jsx_runtime1.JSX.Element;
3777
3850
  //#endregion
3778
3851
  //#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
3779
3852
  interface AccountDetailsButtonProps {
@@ -3795,7 +3868,7 @@ declare const AccountDetailsButton: ({
3795
3868
  onClick,
3796
3869
  leftImage,
3797
3870
  isActive
3798
- }: AccountDetailsButtonProps) => react_jsx_runtime0.JSX.Element;
3871
+ }: AccountDetailsButtonProps) => react_jsx_runtime1.JSX.Element;
3799
3872
  //#endregion
3800
3873
  //#region src/components/AccountModal/Components/ActionButton.d.ts
3801
3874
  type ActionButtonProps = {
@@ -3837,7 +3910,7 @@ declare const ActionButton: ({
3837
3910
  extraContent,
3838
3911
  dataTestId,
3839
3912
  variant
3840
- }: ActionButtonProps) => react_jsx_runtime0.JSX.Element;
3913
+ }: ActionButtonProps) => react_jsx_runtime1.JSX.Element;
3841
3914
  //#endregion
3842
3915
  //#region src/components/AccountModal/Components/AccountSelector.d.ts
3843
3916
  type Props$10 = {
@@ -3857,7 +3930,7 @@ declare const AccountSelector: ({
3857
3930
  onClose,
3858
3931
  mt,
3859
3932
  style
3860
- }: Props$10) => react_jsx_runtime0.JSX.Element;
3933
+ }: Props$10) => react_jsx_runtime1.JSX.Element;
3861
3934
  //#endregion
3862
3935
  //#region src/components/AccountModal/Components/BalanceSection.d.ts
3863
3936
  declare const BalanceSection: ({
@@ -3868,7 +3941,7 @@ declare const BalanceSection: ({
3868
3941
  mb?: number;
3869
3942
  mt?: number;
3870
3943
  onAssetsClick?: () => void;
3871
- }) => react_jsx_runtime0.JSX.Element;
3944
+ }) => react_jsx_runtime1.JSX.Element;
3872
3945
  //#endregion
3873
3946
  //#region src/components/AccountModal/Components/QuickActionsSection.d.ts
3874
3947
  type Props$9 = {
@@ -3878,7 +3951,7 @@ type Props$9 = {
3878
3951
  declare const QuickActionsSection: ({
3879
3952
  mt,
3880
3953
  setCurrentContent
3881
- }: Props$9) => react_jsx_runtime0.JSX.Element | null;
3954
+ }: Props$9) => react_jsx_runtime1.JSX.Element | null;
3882
3955
  //#endregion
3883
3956
  //#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
3884
3957
  type FeatureAnnouncementCardProps = {
@@ -3886,16 +3959,16 @@ type FeatureAnnouncementCardProps = {
3886
3959
  };
3887
3960
  declare const FeatureAnnouncementCard: ({
3888
3961
  setCurrentContent
3889
- }: FeatureAnnouncementCardProps) => react_jsx_runtime0.JSX.Element;
3962
+ }: FeatureAnnouncementCardProps) => react_jsx_runtime1.JSX.Element;
3890
3963
  //#endregion
3891
3964
  //#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
3892
- declare const ExchangeWarningAlert: () => react_jsx_runtime0.JSX.Element;
3965
+ declare const ExchangeWarningAlert: () => react_jsx_runtime1.JSX.Element;
3893
3966
  //#endregion
3894
3967
  //#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
3895
- declare const DomainRequiredAlert: () => react_jsx_runtime0.JSX.Element;
3968
+ declare const DomainRequiredAlert: () => react_jsx_runtime1.JSX.Element;
3896
3969
  //#endregion
3897
3970
  //#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
3898
- declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime0.JSX.Element;
3971
+ declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime1.JSX.Element;
3899
3972
  //#endregion
3900
3973
  //#region src/components/common/ModalBackButton.d.ts
3901
3974
  type BackButtonProps = {
@@ -3904,7 +3977,7 @@ type BackButtonProps = {
3904
3977
  declare const ModalBackButton: ({
3905
3978
  onClick,
3906
3979
  ...props
3907
- }: BackButtonProps) => react_jsx_runtime0.JSX.Element;
3980
+ }: BackButtonProps) => react_jsx_runtime1.JSX.Element;
3908
3981
  //#endregion
3909
3982
  //#region src/components/common/AddressDisplay.d.ts
3910
3983
  type Props$8 = {
@@ -3922,13 +3995,13 @@ declare const AddressDisplay: ({
3922
3995
  showHumanAddress,
3923
3996
  setCurrentContent,
3924
3997
  onLogout
3925
- }: Props$8) => react_jsx_runtime0.JSX.Element;
3998
+ }: Props$8) => react_jsx_runtime1.JSX.Element;
3926
3999
  //#endregion
3927
4000
  //#region src/components/common/VersionFooter.d.ts
3928
4001
  type Props$7 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3929
4002
  declare const VersionFooter: ({
3930
4003
  ...props
3931
- }: Props$7) => react_jsx_runtime0.JSX.Element;
4004
+ }: Props$7) => react_jsx_runtime1.JSX.Element;
3932
4005
  //#endregion
3933
4006
  //#region src/components/common/StickyHeaderContainer.d.ts
3934
4007
  type Props$6 = {
@@ -3939,7 +4012,7 @@ declare const useStickyHeaderContext: () => {
3939
4012
  };
3940
4013
  declare const StickyHeaderContainer: ({
3941
4014
  children
3942
- }: Props$6) => react_jsx_runtime0.JSX.Element;
4015
+ }: Props$6) => react_jsx_runtime1.JSX.Element;
3943
4016
  //#endregion
3944
4017
  //#region src/components/common/StickyFooterContainer.d.ts
3945
4018
  type Props$5 = {
@@ -3947,7 +4020,7 @@ type Props$5 = {
3947
4020
  };
3948
4021
  declare const StickyFooterContainer: ({
3949
4022
  children
3950
- }: Props$5) => react_jsx_runtime0.JSX.Element;
4023
+ }: Props$5) => react_jsx_runtime1.JSX.Element;
3951
4024
  //#endregion
3952
4025
  //#region src/components/common/BaseModal.d.ts
3953
4026
  type BaseModalProps = {
@@ -3996,7 +4069,7 @@ declare const BaseModal: ({
3996
4069
  mobileMaxHeight,
3997
4070
  desktopMinHeight,
3998
4071
  desktopMaxHeight
3999
- }: BaseModalProps) => react_jsx_runtime0.JSX.Element;
4072
+ }: BaseModalProps) => react_jsx_runtime1.JSX.Element;
4000
4073
  //#endregion
4001
4074
  //#region src/components/common/AssetButton.d.ts
4002
4075
  type AssetButtonProps = ButtonProps & {
@@ -4015,7 +4088,7 @@ declare const AssetButton: ({
4015
4088
  isDisabled,
4016
4089
  onClick,
4017
4090
  ...buttonProps
4018
- }: AssetButtonProps) => react_jsx_runtime0.JSX.Element;
4091
+ }: AssetButtonProps) => react_jsx_runtime1.JSX.Element;
4019
4092
  //#endregion
4020
4093
  //#region src/components/common/AddressDisplayCard.d.ts
4021
4094
  type AddressDisplayCardProps = {
@@ -4035,7 +4108,7 @@ declare const AddressDisplayCard: ({
4035
4108
  hideAddress,
4036
4109
  balance,
4037
4110
  tokenAddress
4038
- }: AddressDisplayCardProps) => react_jsx_runtime0.JSX.Element;
4111
+ }: AddressDisplayCardProps) => react_jsx_runtime1.JSX.Element;
4039
4112
  //#endregion
4040
4113
  //#region src/components/common/ModalFAQButton.d.ts
4041
4114
  type FAQButtonProps = {
@@ -4044,13 +4117,13 @@ type FAQButtonProps = {
4044
4117
  declare const ModalFAQButton: ({
4045
4118
  onClick,
4046
4119
  ...props
4047
- }: FAQButtonProps) => react_jsx_runtime0.JSX.Element;
4120
+ }: FAQButtonProps) => react_jsx_runtime1.JSX.Element;
4048
4121
  //#endregion
4049
4122
  //#region src/components/common/ScrollToTopWrapper.d.ts
4050
4123
  declare const ScrollToTopWrapper: ({
4051
4124
  children,
4052
4125
  ...props
4053
- }: StackProps) => react_jsx_runtime0.JSX.Element;
4126
+ }: StackProps) => react_jsx_runtime1.JSX.Element;
4054
4127
  //#endregion
4055
4128
  //#region src/components/common/AccountAvatar.d.ts
4056
4129
  type AccountAvatarProps = {
@@ -4060,7 +4133,7 @@ type AccountAvatarProps = {
4060
4133
  declare const AccountAvatar: ({
4061
4134
  wallet,
4062
4135
  props
4063
- }: AccountAvatarProps) => react_jsx_runtime0.JSX.Element;
4136
+ }: AccountAvatarProps) => react_jsx_runtime1.JSX.Element;
4064
4137
  //#endregion
4065
4138
  //#region src/components/common/TransactionButtonAndStatus.d.ts
4066
4139
  type TransactionButtonAndStatusProps = {
@@ -4102,7 +4175,7 @@ declare const TransactionButtonAndStatus: ({
4102
4175
  isLoadingGasEstimation,
4103
4176
  showGasEstimationError,
4104
4177
  context
4105
- }: TransactionButtonAndStatusProps) => react_jsx_runtime0.JSX.Element;
4178
+ }: TransactionButtonAndStatusProps) => react_jsx_runtime1.JSX.Element;
4106
4179
  //#endregion
4107
4180
  //#region src/components/common/ModalNotificationButton.d.ts
4108
4181
  type NotificationButtonProps = {
@@ -4113,7 +4186,7 @@ declare const ModalNotificationButton: ({
4113
4186
  onClick,
4114
4187
  hasUnreadNotifications,
4115
4188
  ...props
4116
- }: NotificationButtonProps) => react_jsx_runtime0.JSX.Element;
4189
+ }: NotificationButtonProps) => react_jsx_runtime1.JSX.Element;
4117
4190
  //#endregion
4118
4191
  //#region src/components/common/GasFeeSummary.d.ts
4119
4192
  interface GasFeeSummaryProps {
@@ -4149,7 +4222,7 @@ declare const GasFeeTokenSelector: ({
4149
4222
  availableTokens,
4150
4223
  tokenEstimations,
4151
4224
  walletAddress
4152
- }: GasFeeTokenSelectorProps) => react_jsx_runtime0.JSX.Element;
4225
+ }: GasFeeTokenSelectorProps) => react_jsx_runtime1.JSX.Element;
4153
4226
  //#endregion
4154
4227
  //#region src/components/common/InlineFeedback.d.ts
4155
4228
  type Props$4 = {
@@ -4161,7 +4234,7 @@ declare const InlineFeedback: ({
4161
4234
  message,
4162
4235
  duration,
4163
4236
  onClose
4164
- }: Props$4) => react_jsx_runtime0.JSX.Element;
4237
+ }: Props$4) => react_jsx_runtime1.JSX.Element;
4165
4238
  //#endregion
4166
4239
  //#region src/components/common/WalletSwitchFeedback.d.ts
4167
4240
  type Props$3 = {
@@ -4178,7 +4251,7 @@ type Props$3 = {
4178
4251
  */
4179
4252
  declare const WalletSwitchFeedback: ({
4180
4253
  showFeedback
4181
- }: Props$3) => react_jsx_runtime0.JSX.Element | null;
4254
+ }: Props$3) => react_jsx_runtime1.JSX.Element | null;
4182
4255
  //#endregion
4183
4256
  //#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
4184
4257
  type SuccessfulOperationContentProps = {
@@ -4208,7 +4281,7 @@ declare const UpgradeSmartAccountModal: ({
4208
4281
  isOpen,
4209
4282
  onClose,
4210
4283
  style
4211
- }: Props$2) => react_jsx_runtime0.JSX.Element;
4284
+ }: Props$2) => react_jsx_runtime1.JSX.Element;
4212
4285
  //#endregion
4213
4286
  //#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
4214
4287
  type Props$1 = {
@@ -4223,7 +4296,7 @@ declare const LegalDocumentsModal: ({
4223
4296
  onAgree,
4224
4297
  handleLogout,
4225
4298
  onlyOptionalDocuments
4226
- }: Props$1) => react_jsx_runtime0.JSX.Element;
4299
+ }: Props$1) => react_jsx_runtime1.JSX.Element;
4227
4300
  //#endregion
4228
4301
  //#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
4229
4302
  type Props = {
@@ -4235,7 +4308,7 @@ declare const LegalDocumentItem: ({
4235
4308
  document,
4236
4309
  register,
4237
4310
  isText
4238
- }: Props) => react_jsx_runtime0.JSX.Element;
4311
+ }: Props) => react_jsx_runtime1.JSX.Element;
4239
4312
  //#endregion
4240
4313
  //#region src/providers/ModalProvider.d.ts
4241
4314
  type AccountModalOptions = {
@@ -4270,50 +4343,7 @@ declare const ModalProvider: ({
4270
4343
  children
4271
4344
  }: {
4272
4345
  children: ReactNode;
4273
- }) => react_jsx_runtime0.JSX.Element;
4274
- //#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;
4346
+ }) => react_jsx_runtime1.JSX.Element;
4317
4347
  //#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-d7QJmcUK.d.cts.map
4348
+ export { ChangeCurrencyContentProps as $, useRefreshBalances as $a, FAQModalProvider as $i, GetEventsKeyParams as $n, getIsDomainProtectedQueryKey as $o, toIPFSURL as $r, VeChainKitProvider as $s, getUpgradeRequiredForAccount as $t, CrossAppConnectionSecurityCard as A, MAX_IMAGE_SIZE as Aa, ExecuteBatchWithAuthorizationSignData as Ac, AppHubApp as Ai, useAccountBalance as An, useTokenPrices as Ao, executeCallClause as Ar, EcosystemButton as As, useSetWalletRecovery as At, AccountModalContentTypes as B, XAppMetadata as Ba, Wallet as Bc, useNotifications as Bi, getDepositAccount as Bn, useGetResolverAddress as Bo, isRejectionError as Br, LegalDocumentsProvider as Bs, buildERC20Clauses as Bt, BaseModal as C, useSingleImageUpload as Ca, TextRecords as Cc, VECHAIN_KIT_COOKIES_CONFIG as Ci, getCurrentAccountImplementationVersionQueryKey as Cn, useCustomTokens as Co, safeQuerySelector as Cr, ConnectPopover as Cs, SendTokenSummaryContent as Ct, VersionFooter as D, useUploadImages as Da, CrossAppConnectionCache as Dc, getENV as Di, useAccountImplementationAddress as Dn, TokenWithValue as Do, MultipleClausesCallReturnType as Dr, PasskeyLoginButton as Ds, useDAppKitWalletModal as Dt, useStickyHeaderContext as E, imageCompressionOptions as Ea, ConnectionSource as Ec, VECHAIN_PRIVY_APP_ID as Ei, getAccountImplementationAddressQueryKey as En, useTotalBalance as Eo, MultipleClausesCallParameters as Er, DappKitButton as Es, useDAppKitWallet as Et, BalanceSection as F, getIpfsMetadata as Fa, SmartAccount as Fc, useLoginWithOAuth as Fi, useGasTokenSelection as Fn, getAvatarLegacyQueryKey as Fo, isInvalid as Fr, ErrorContent as Fs, useTxReceipt as Ft, DisconnectConfirmContent as G, StoredWallet as Ga, useProfileModal as Gi, useEcosystemShortcuts as Gn, useGetTextRecords as Go, NodeStrengthLevelToImage as Gr, PrivyWalletProvider as Gs, getAllEventLogs as Gt, RemoveWalletConfirmContent as H, useXAppMetadata as Ha, getConfig as Hc, useSettingsModal as Hi, useGenericDelegator as Hn, useUpdateTextRecord as Ho, TIME as Hr, ColorModeSync as Hs, UseSendTransactionReturnValue as Ht, AccountSelector as I, getIpfsMetadataQueryKey as Ia, TokenBalance as Ic, useLoginWithPasskey as Ii, decodeRawTx as In, useGetAvatarLegacy as Io, isValid as Ir, LoadingContent as Is, BuildTransactionProps as It, SettingsContent as J, UseWalletReturnType as Ja, useLoginModalContent as Ji, useLocalStorage as Jn, Domain as Jo, buildQueryString as Jr, AccountQuickAction as Js, getChainIdQueryKey as Jt, DisconnectConfirmContentProps as K, useWalletStorage as Ka, UpgradeSmartAccountModalProvider as Ki, useSyncableLocalStorage as Kn, getAvatarQueryKey as Ko, XNodeStrengthLevelToName as Kr, PrivyWalletProviderContextType as Ks, getEventLogs as Kt, ActionButton as L, useIpfsMetadata as La, TransactionStatus as Lc, useSignTypedData as Li, delegateAuthorized as Ln, getAvatarOfAddressQueryKey as Lo, normalize as Lr, MainContent as Ls, useBuildTransaction as Lt, ExchangeWarningAlert as M, getIpfsImageQueryKey as Ma, NFTMediaType as Mc, getAppHubAppsQueryKey as Mi, useEstimateAllTokens as Mn, useTokenBalances as Mo, isValidUrl as Mr, EmailLoginButton as Ms, VECHAIN_KIT_QUERY_KEYS as Mt, FeatureAnnouncementCard as N, useIpfsImage as Na, PrivyAppInfo as Nc, useAppHubApps as Ni, useGenericDelegatorFeeEstimation as Nn, useUnsetDomain as No, addPrefix as Nr, ConnectionButton as Ns, useGasEstimate as Nt, AddressDisplay as O, useIpfsMetadatas as Oa, ENSRecords as Oc, getGenericDelegatorUrl as Oi, getAccountBalance as On, useTokensWithValues as Oo, ViewFunctionResult as Or, LoginWithGoogleButton as Os, useMfaEnrollment as Ot, QuickActionsSection as P, useIpfsImageList as Pa, PrivyLoginMethod as Pc, useLoginWithVeChain as Pi, useGenericDelegatorFeeEstimationParams as Pn, getAvatarLegacy as Po, compare as Pr, EcosystemContent as Ps, txReceiptQueryKey as Pt, ChangeCurrencyContent as Q, useRefreshMetadata as Qa, useAccountCustomizationModal as Qi, useBuildClauses as Qn, useGetDomainsOfAddress as Qo, resolveMediaTypeFromMimeType as Qr, VeChainKitContext as Qs, useUpgradeSmartAccount as Qt, AccountDetailsButton as R, getXAppsSharesQueryKey as Ra, TransactionStatusErrorType as Rc, useSignMessage as Ri, estimateAndBuildTxBody as Rn, useGetAvatarOfAddress as Ro, removePrefix as Rr, ConnectModal as Rs, buildVETClauses as Rt, AssetButton as S, useSwapTransaction as Sa, ENS_TEXT_RECORDS as Sc, TogglePassportCheck as Si, getCurrentAccountImplementationVersion as Sn, useGetB3trBalance as So, removeLocalStorageItem as Sr, WalletDisplayVariant as Ss, SelectTokenContent as St, StickyHeaderContainer as T, compressImages as Ta, CURRENCY_SYMBOLS as Tc, VECHAIN_KIT_TERMS_CONFIG as Ti, getAccountImplementationAddress as Tn, useCurrentAllocationsRoundId as To, setLocalStorageItem as Tr, VeChainWithPrivyLoginButton as Ts, ThorClient$1 as Tt, RemoveWalletConfirmContentProps as U, UseSwitchWalletReturnType as Ua, useAccountModalOptions as Ui, useCrossAppConnectionCache as Un, getTextRecords as Uo, EconomicNodeStrengthLevelToName as Ur, VechainKitThemeProvider as Us, useSendTransaction as Ut, SwitchFeedback as V, getXAppMetadata as Va, AppConfig as Vc, SettingsModalProvider as Vi, signVip191Transaction as Vn, buildClauses as Vo, simpleHash as Vr, useLegalDocuments as Vs, useTransferERC20 as Vt, SelectWalletContent as W, useSwitchWallet as Wa, ProfileModalProvider as Wi, EcosystemShortcut as Wn, getTextRecordsQueryKey as Wo, MinXNodeLevel as Wr, useVechainKitThemeConfig as Ws, GetEventsProps as Wt, GasTokenSettingsContent as X, getRoundXAppsQueryKey as Xa, useReceiveModal as Xi, buildBatchAuthorizationTypedData as Xn, getDomainsOfAddress as Xo, xNodeToGMstartingLevel as Xr, LegalDocumentOptions as Xs, currentBlockQueryKey as Xt, SettingsContentProps as Y, useWallet as Ya, ReceiveModalProvider as Yi, BuildClausesParams as Yn, DomainsResponse as Yo, gmNfts as Yr, LegalDocument as Ys, useGetChainId as Yt, LanguageSettingsContent as Z, useRoundXApps as Za, AccountCustomizationModalProvider as Zi, buildSingleAuthorizationTypedData as Zn, getDomainsOfAddressQueryKey as Zo, convertUriToUrl as Zr, VeChainKitConfig as Zs, useCurrentBlock as Zt, TransactionButtonAndStatusProps as _, AccountModalProvider as _a, GasTokenInfo as _c, NON_TRANSFERABLE_TOKEN_SYMBOLS as _i, getAccountVersionQueryKey as _n, useGetCustomTokenInfo as _o, getLocalStorageItem as _r, TransactionModal as _s, ChooseNameSearchContentProps as _t, LegalDocumentItem as a, SwapTokenModalProvider as aa, LegalDocumentSource as ac, leftPadWithZeros as ai, SmartAccountReturnType as an, getVot3BalanceQueryKey as ao, useIsPWA as ar, useEnsRecordExists as as, UpgradeSmartAccountContent as at, ModalFAQButton as b, useConnectModal as ba, GasTokenType as bc, TOKEN_LOGOS as bi, getAccountAddressQueryKey as bn, useGetCustomTokenBalances as bo, isBrowser as br, WalletButton as bs, SwapTokenContent as bt, UpgradeSmartAccountModal as c, useSendTokenModal as ca, DepositAccount as cc, formatTokenBalance as ci, useSmartAccount as cn, SupportedToken as co, useCurrentCurrency as cr, fetchPrivyStatus as cs, ProfileContentProps as ct, WalletSwitchFeedback as d, WalletModalProvider as da, Rate as dc, humanDomain as di, getIsDeployed as dn, useGetTokenUsdPrice as do, getCallClauseQueryKey as dr, getPrivyAppInfoQueryKey as ds, AccountCustomizationContentProps as dt, useFAQModal as ea, VechainKitProviderProps as ec, uploadBlobToIPFS as ei, getUpgradeRequiredForAccountQueryKey as en, MostVotedAppsInRoundReturnType as eo, UseEventsParams as er, useIsDomainProtected as es, BridgeContent as et, InlineFeedback as f, useWalletModal as fa, TransactionCost as fc, humanNumber as fi, getIsDeployedQueryKey as fn, UseGetErc20BalanceOptions as fo, getCallClauseQueryKeyWithArgs as fr, useFetchAppInfo as fs, CustomizationContent as ft, TransactionButtonAndStatus as g, useTransactionModal as ga, GasTokenEstimate as gc, ENV as gi, useHasV1SmartAccount as gn, getTokenInfo as go, getDocumentTitle as gr, ShareButtons as gs, ChooseNameSearchContent as gt, ModalNotificationButton as h, TransactionModalProvider as ha, formatGasCost as hc, DEFAULT_PRIVY_ECOSYSTEM_APPS as hi, getHasV1SmartAccountQueryKey as hn, getCustomTokenInfoQueryKey as ho, copyToClipboard as hr, TransactionModalContent as hs, ChooseNameSummaryContentProps as ht, DAppKitWalletButton as i, useExploreEcosystemModal as ia, LegalDocumentAgreement as ic, isValidAddress as ii, useUpgradeRequired as in, useIsPerson as io, useScrollToTop as ir, getEnsRecordExistsQueryKey as is, AssetsContentProps as it, DomainRequiredAlert as j, getIpfsImage as ja, ExecuteWithAuthorizationSignData as jc, fetchAppHubApps as ji, UseEstimateAllTokensParams as jn, WalletTokenBalance as jo, executeMultipleClausesCall as jr, VeChainLoginButton as js, useThor as jt, ModalBackButton as k, IpfsImage as ka, EnhancedClause as kc, notFoundImage as ki, getAccountBalanceQueryKey as kn, ExchangeRates as ko, buildCallClauses as kr, PrivyButton as ks, usePrivy as kt, UpgradeSmartAccountModalContentsTypes as l, ChooseNameModalProvider as la, EstimatedGas as lc, getPicassoImage as li, useRefreshSmartAccountQueries as ln, getTokenUsdPrice as lo, useCurrentLanguage as lr, useFetchPrivyStatus as ls, CustomizationSummaryContent as lt, GasFeeSummary as m, useTransactionToast as ma, calculateTotalCost as mc, DEFAULT_GAS_TOKEN_PREFERENCES as mi, getHasV1SmartAccount as mn, useGetErc20Balance as mo, useMultipleClausesCall as mr, TransactionToast as ms, ChooseNameSummaryContent as mt, ModalProvider as n, useNotificationsModal as na, useVeChainKitConfig as nc, compareAddresses as ni, getUpgradeRequired as nn, useMostVotedAppsInRound as no, getEventsKey as nr, useClaimVetDomain as ns, ManageCustomTokenContentProps as nt, LegalDocumentsModal as o, useSwapTokenModal as oa, LegalDocumentType as oc, regexPattern as oi, getSmartAccount as on, useGetVot3Balance as oo, useGetNodeUrl as or, getVechainDomainQueryKey as os, UpgradeSmartAccountContentProps as ot, GasFeeTokenSelector as p, TransactionToastProvider as pa, VthoPerGasAtSpeed as pc, isZero as pi, useIsSmartAccountDeployed as pn, getErc20BalanceQueryKey as po, useCallClause as pr, AccountMainContent as ps, FAQContent as pt, TermsAndPrivacyContent as q, useWalletMetadata as qa, useUpgradeSmartAccountModal as qi, LocalStorageKey as qn, useGetAvatar as qo, allNodeStrengthLevelToName as qr, usePrivyWalletProvider as qs, getChainId as qt, useModal as r, ExploreEcosystemModalProvider as ra, EnrichedLegalDocument as rc, compareListOfAddresses as ri, getUpgradeRequiredQueryKey as rn, getIsPersonQueryKey as ro, useEvents as rr, useClaimVeWorldSubdomain as rs, AssetsContent as rt, LegalDocumentsModalContentsTypes as s, SendTokenModalProvider as sa, CostLevel as sc, randomTransactionUser as si, getSmartAccountQueryKey as sn, PRICE_FEED_IDS as so, useFeatureAnnouncement as sr, useVechainDomain as ss, ProfileContent as st, AccountModalOptions as t, NotificationsModalProvider as ta, useAppConfig as tc, validateIpfsUri as ti, useUpgradeRequiredForAccount as tn, XApp as to, decodeEventLog$1 as tr, buildVetDomainClauses as ts, ManageCustomTokenContent as tt, UpgradeSmartAccountModalStyle as u, useChooseNameModal as ua, EstimationResponse as uc, humanAddress as ui, useRefreshFactoryQueries as un, getTokenUsdPriceQueryKey as uo, useCurrency as ur, fetchPrivyAppInfo as us, CustomizationSummaryContentProps as ut, AccountAvatar as v, useAccountModal as va, GasTokenPreferences as vc, PrivyEcosystemApp as vi, useGetAccountVersion as vn, TokenWithBalance as vo, getWindowOrigin as vr, TransactionModalProps as vs, ChooseNameContent as vt, StickyFooterContainer as w, UploadedImage as wa, CURRENCY as wc, VECHAIN_KIT_STORAGE_KEYS as wi, useCurrentAccountImplementationVersion as wn, getCurrentAllocationsRoundIdQueryKey as wo, safeWindowOpen as wr, LoginWithGithubButton as ws, SendTokenContent as wt, AddressDisplayCard as x, useSwapQuotes as xa, TransactionSpeed as xc, TOKEN_LOGO_COMPONENTS as xi, useGetAccountAddress as xn, getB3trBalanceQueryKey as xo, isOnline as xr, WalletButtonProps as xs, ReceiveTokenContent as xt, ScrollToTopWrapper as y, ConnectModalProvider as ya, GasTokenSelection as yc, SUPPORTED_GAS_TOKENS as yi, getAccountAddress as yn, getCustomTokenBalanceQueryKey as yo, hasNavigator as yr, SocialIcons as ys, ChooseNameContentProps as yt, AccountModal as z, useXAppsShares as za, VePassportUserStatus as zc, useNotificationAlerts as zi, estimateGas as zn, getResolverAddressQueryKey as zo, validate as zr, ConnectModalContentsTypes as zs, useTransferVET as zt };
4349
+ //# sourceMappingURL=index-PnYdUmDr.d.cts.map