@vechain/vechain-kit 2.6.3 → 2.6.5
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.
- package/dist/assets/index.d.cts +1 -1
- package/dist/assets/index.d.mts +1 -1
- package/dist/{index-Cf1aBaTL.d.cts → index-BN8V0jxo.d.mts} +4 -4
- package/dist/{index-Cf1aBaTL.d.cts.map → index-BN8V0jxo.d.mts.map} +1 -1
- package/dist/{index-3EuDo9II.d.mts → index-C13QSjNa.d.mts} +150 -154
- package/dist/{index-3EuDo9II.d.mts.map → index-C13QSjNa.d.mts.map} +1 -1
- package/dist/{index--hSO7Xv4.d.mts → index-DSMUkHcK.d.cts} +1 -1
- package/dist/{index--hSO7Xv4.d.mts.map → index-DSMUkHcK.d.cts.map} +1 -1
- package/dist/{index-o92cc2nW.d.cts → index-DadZUdez.d.cts} +104 -108
- package/dist/{index-o92cc2nW.d.cts.map → index-DadZUdez.d.cts.map} +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.cts +2 -2
- package/dist/utils/index.d.mts +2 -2
- package/package.json +1 -1
|
@@ -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
|
|
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,7 +53,7 @@ declare const genesises: {
|
|
|
53
53
|
readonly main: CompressedBlockDetail;
|
|
54
54
|
readonly test: CompressedBlockDetail;
|
|
55
55
|
readonly solo: CompressedBlockDetail;
|
|
56
|
-
which(gid: string): "
|
|
56
|
+
which(gid: string): "main" | "test" | "solo" | undefined;
|
|
57
57
|
};
|
|
58
58
|
//#endregion
|
|
59
59
|
//#region src/types/types.d.ts
|
|
@@ -638,7 +638,7 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
|
|
|
638
638
|
* ```
|
|
639
639
|
*/
|
|
640
640
|
declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
641
|
-
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) =>
|
|
641
|
+
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime1.JSX.Element;
|
|
642
642
|
//#endregion
|
|
643
643
|
//#region src/providers/PrivyWalletProvider.d.ts
|
|
644
644
|
interface PrivyWalletProviderContextType {
|
|
@@ -681,7 +681,7 @@ declare const PrivyWalletProvider: ({
|
|
|
681
681
|
delegatorUrl?: string;
|
|
682
682
|
delegateAllTransactions: boolean;
|
|
683
683
|
genericDelegator?: boolean;
|
|
684
|
-
}) =>
|
|
684
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
685
685
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
686
686
|
//#endregion
|
|
687
687
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
@@ -699,12 +699,12 @@ declare const ColorModeSync: ({
|
|
|
699
699
|
darkMode
|
|
700
700
|
}: {
|
|
701
701
|
darkMode: boolean;
|
|
702
|
-
}) =>
|
|
702
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
703
703
|
declare const VechainKitThemeProvider: ({
|
|
704
704
|
children,
|
|
705
705
|
darkMode,
|
|
706
706
|
theme: customTheme
|
|
707
|
-
}: Props$35) =>
|
|
707
|
+
}: Props$35) => react_jsx_runtime1.JSX.Element;
|
|
708
708
|
//#endregion
|
|
709
709
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
710
710
|
type Props$34 = {
|
|
@@ -720,7 +720,7 @@ type LegalDocumentsContextType = {
|
|
|
720
720
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
721
721
|
declare const LegalDocumentsProvider: ({
|
|
722
722
|
children
|
|
723
|
-
}: Props$34) =>
|
|
723
|
+
}: Props$34) => react_jsx_runtime1.JSX.Element;
|
|
724
724
|
//#endregion
|
|
725
725
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
726
726
|
type Props$33 = {
|
|
@@ -756,19 +756,15 @@ declare const ConnectModal: ({
|
|
|
756
756
|
onClose,
|
|
757
757
|
initialContent,
|
|
758
758
|
preventAutoClose
|
|
759
|
-
}: Props$33) =>
|
|
759
|
+
}: Props$33) => react_jsx_runtime1.JSX.Element;
|
|
760
760
|
//#endregion
|
|
761
761
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
762
762
|
type Props$32 = {
|
|
763
763
|
setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
|
|
764
|
-
onClose: () => void;
|
|
765
|
-
preventAutoClose?: boolean;
|
|
766
764
|
};
|
|
767
765
|
declare const MainContent: ({
|
|
768
|
-
setCurrentContent
|
|
769
|
-
|
|
770
|
-
preventAutoClose
|
|
771
|
-
}: Props$32) => react_jsx_runtime3.JSX.Element;
|
|
766
|
+
setCurrentContent
|
|
767
|
+
}: Props$32) => react_jsx_runtime1.JSX.Element;
|
|
772
768
|
//#endregion
|
|
773
769
|
//#region src/components/ConnectModal/Contents/LoadingContent.d.ts
|
|
774
770
|
type LoadingContentProps = {
|
|
@@ -786,7 +782,7 @@ declare const LoadingContent: ({
|
|
|
786
782
|
onClose,
|
|
787
783
|
onGoBack,
|
|
788
784
|
showBackButton
|
|
789
|
-
}: LoadingContentProps) =>
|
|
785
|
+
}: LoadingContentProps) => react_jsx_runtime1.JSX.Element;
|
|
790
786
|
//#endregion
|
|
791
787
|
//#region src/components/ConnectModal/Contents/ErrorContent.d.ts
|
|
792
788
|
type ErrorContentProps = {
|
|
@@ -800,7 +796,7 @@ declare const ErrorContent: ({
|
|
|
800
796
|
onClose,
|
|
801
797
|
onTryAgain,
|
|
802
798
|
onGoBack
|
|
803
|
-
}: ErrorContentProps) =>
|
|
799
|
+
}: ErrorContentProps) => react_jsx_runtime1.JSX.Element;
|
|
804
800
|
//#endregion
|
|
805
801
|
//#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
|
|
806
802
|
type Props$31 = {
|
|
@@ -816,7 +812,7 @@ declare const EcosystemContent: ({
|
|
|
816
812
|
isLoading,
|
|
817
813
|
setCurrentContent,
|
|
818
814
|
showBackButton
|
|
819
|
-
}: Props$31) =>
|
|
815
|
+
}: Props$31) => react_jsx_runtime1.JSX.Element;
|
|
820
816
|
//#endregion
|
|
821
817
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
822
818
|
interface ConnectionButtonProps {
|
|
@@ -839,10 +835,10 @@ declare const ConnectionButton: ({
|
|
|
839
835
|
style,
|
|
840
836
|
variant,
|
|
841
837
|
iconWidth
|
|
842
|
-
}: ConnectionButtonProps) =>
|
|
838
|
+
}: ConnectionButtonProps) => react_jsx_runtime1.JSX.Element | null;
|
|
843
839
|
//#endregion
|
|
844
840
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
845
|
-
declare const EmailLoginButton: () =>
|
|
841
|
+
declare const EmailLoginButton: () => react_jsx_runtime1.JSX.Element;
|
|
846
842
|
//#endregion
|
|
847
843
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
848
844
|
type Props$30 = {
|
|
@@ -854,7 +850,7 @@ declare const VeChainLoginButton: ({
|
|
|
854
850
|
isDark,
|
|
855
851
|
gridColumn,
|
|
856
852
|
setCurrentContent
|
|
857
|
-
}: Props$30) =>
|
|
853
|
+
}: Props$30) => react_jsx_runtime1.JSX.Element;
|
|
858
854
|
//#endregion
|
|
859
855
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
860
856
|
type Props$29 = {
|
|
@@ -868,7 +864,7 @@ declare const EcosystemButton: ({
|
|
|
868
864
|
appsInfo,
|
|
869
865
|
isLoading,
|
|
870
866
|
setCurrentContent
|
|
871
|
-
}: Props$29) =>
|
|
867
|
+
}: Props$29) => react_jsx_runtime1.JSX.Element;
|
|
872
868
|
//#endregion
|
|
873
869
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
874
870
|
type Props$28 = {
|
|
@@ -880,7 +876,7 @@ declare const PrivyButton: ({
|
|
|
880
876
|
isDark,
|
|
881
877
|
onViewMoreLogin,
|
|
882
878
|
gridColumn
|
|
883
|
-
}: Props$28) =>
|
|
879
|
+
}: Props$28) => react_jsx_runtime1.JSX.Element;
|
|
884
880
|
//#endregion
|
|
885
881
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
886
882
|
type Props$27 = {
|
|
@@ -890,7 +886,7 @@ type Props$27 = {
|
|
|
890
886
|
declare const LoginWithGoogleButton: ({
|
|
891
887
|
isDark,
|
|
892
888
|
gridColumn
|
|
893
|
-
}: Props$27) =>
|
|
889
|
+
}: Props$27) => react_jsx_runtime1.JSX.Element;
|
|
894
890
|
//#endregion
|
|
895
891
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
896
892
|
type Props$26 = {
|
|
@@ -902,7 +898,7 @@ declare const PasskeyLoginButton: ({
|
|
|
902
898
|
isDark,
|
|
903
899
|
gridColumn,
|
|
904
900
|
setCurrentContent
|
|
905
|
-
}: Props$26) =>
|
|
901
|
+
}: Props$26) => react_jsx_runtime1.JSX.Element;
|
|
906
902
|
//#endregion
|
|
907
903
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
908
904
|
type Props$25 = {
|
|
@@ -912,7 +908,7 @@ type Props$25 = {
|
|
|
912
908
|
declare const DappKitButton: ({
|
|
913
909
|
isDark,
|
|
914
910
|
gridColumn
|
|
915
|
-
}: Props$25) =>
|
|
911
|
+
}: Props$25) => react_jsx_runtime1.JSX.Element;
|
|
916
912
|
//#endregion
|
|
917
913
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
918
914
|
type Props$24 = {
|
|
@@ -922,7 +918,7 @@ type Props$24 = {
|
|
|
922
918
|
declare const VeChainWithPrivyLoginButton: ({
|
|
923
919
|
isDark,
|
|
924
920
|
gridColumn
|
|
925
|
-
}: Props$24) =>
|
|
921
|
+
}: Props$24) => react_jsx_runtime1.JSX.Element;
|
|
926
922
|
//#endregion
|
|
927
923
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
928
924
|
type Props$23 = {
|
|
@@ -932,7 +928,7 @@ type Props$23 = {
|
|
|
932
928
|
declare const LoginWithGithubButton: ({
|
|
933
929
|
isDark,
|
|
934
930
|
gridColumn
|
|
935
|
-
}: Props$23) =>
|
|
931
|
+
}: Props$23) => react_jsx_runtime1.JSX.Element;
|
|
936
932
|
//#endregion
|
|
937
933
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
938
934
|
type ConnectPopoverProps = {
|
|
@@ -942,7 +938,7 @@ type ConnectPopoverProps = {
|
|
|
942
938
|
declare const ConnectPopover: ({
|
|
943
939
|
isLoading,
|
|
944
940
|
buttonStyle
|
|
945
|
-
}: ConnectPopoverProps) =>
|
|
941
|
+
}: ConnectPopoverProps) => react_jsx_runtime1.JSX.Element;
|
|
946
942
|
//#endregion
|
|
947
943
|
//#region src/components/WalletButton/types.d.ts
|
|
948
944
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
@@ -961,10 +957,10 @@ declare const WalletButton: ({
|
|
|
961
957
|
buttonStyle,
|
|
962
958
|
connectionVariant,
|
|
963
959
|
label
|
|
964
|
-
}: WalletButtonProps) =>
|
|
960
|
+
}: WalletButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
965
961
|
//#endregion
|
|
966
962
|
//#region src/components/WalletButton/SocialIcons.d.ts
|
|
967
|
-
declare const SocialIcons: () =>
|
|
963
|
+
declare const SocialIcons: () => react_jsx_runtime1.JSX.Element;
|
|
968
964
|
//#endregion
|
|
969
965
|
//#region src/components/TransactionModal/TransactionModal.d.ts
|
|
970
966
|
type TransactionModalProps = {
|
|
@@ -994,7 +990,7 @@ declare const TransactionModal: ({
|
|
|
994
990
|
txReceipt,
|
|
995
991
|
txError,
|
|
996
992
|
onTryAgain
|
|
997
|
-
}: TransactionModalProps) =>
|
|
993
|
+
}: TransactionModalProps) => react_jsx_runtime1.JSX.Element | null;
|
|
998
994
|
//#endregion
|
|
999
995
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
1000
996
|
type Props$22 = {
|
|
@@ -1004,7 +1000,7 @@ type Props$22 = {
|
|
|
1004
1000
|
};
|
|
1005
1001
|
declare const ShareButtons: ({
|
|
1006
1002
|
description
|
|
1007
|
-
}: Props$22) =>
|
|
1003
|
+
}: Props$22) => react_jsx_runtime1.JSX.Element;
|
|
1008
1004
|
//#endregion
|
|
1009
1005
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
1010
1006
|
declare const TransactionModalContent: ({
|
|
@@ -1014,7 +1010,7 @@ declare const TransactionModalContent: ({
|
|
|
1014
1010
|
txReceipt,
|
|
1015
1011
|
txError,
|
|
1016
1012
|
onClose
|
|
1017
|
-
}: Omit<TransactionModalProps, "isOpen">) =>
|
|
1013
|
+
}: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime1.JSX.Element;
|
|
1018
1014
|
//#endregion
|
|
1019
1015
|
//#region src/components/TransactionToast/TransactionToast.d.ts
|
|
1020
1016
|
type TransactionToastProps = {
|
|
@@ -1034,7 +1030,7 @@ declare const TransactionToast: ({
|
|
|
1034
1030
|
txError,
|
|
1035
1031
|
onTryAgain,
|
|
1036
1032
|
description
|
|
1037
|
-
}: TransactionToastProps) =>
|
|
1033
|
+
}: TransactionToastProps) => react_jsx_runtime1.JSX.Element | null;
|
|
1038
1034
|
//#endregion
|
|
1039
1035
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
1040
1036
|
type Props$21 = {
|
|
@@ -1050,7 +1046,7 @@ declare const AccountMainContent: ({
|
|
|
1050
1046
|
wallet,
|
|
1051
1047
|
onClose,
|
|
1052
1048
|
switchFeedback
|
|
1053
|
-
}: Props$21) =>
|
|
1049
|
+
}: Props$21) => react_jsx_runtime1.JSX.Element;
|
|
1054
1050
|
//#endregion
|
|
1055
1051
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
1056
1052
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
@@ -1906,7 +1902,7 @@ declare const ConnectModalProvider: ({
|
|
|
1906
1902
|
children
|
|
1907
1903
|
}: {
|
|
1908
1904
|
children: ReactNode;
|
|
1909
|
-
}) =>
|
|
1905
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1910
1906
|
//#endregion
|
|
1911
1907
|
//#region src/hooks/modals/useAccountModal.d.ts
|
|
1912
1908
|
declare const useAccountModal: () => {
|
|
@@ -1918,7 +1914,7 @@ declare const AccountModalProvider: ({
|
|
|
1918
1914
|
children
|
|
1919
1915
|
}: {
|
|
1920
1916
|
children: ReactNode;
|
|
1921
|
-
}) =>
|
|
1917
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1922
1918
|
//#endregion
|
|
1923
1919
|
//#region src/hooks/modals/useTransactionModal.d.ts
|
|
1924
1920
|
declare const useTransactionModal: () => {
|
|
@@ -1930,7 +1926,7 @@ declare const TransactionModalProvider: ({
|
|
|
1930
1926
|
children
|
|
1931
1927
|
}: {
|
|
1932
1928
|
children: ReactNode;
|
|
1933
|
-
}) =>
|
|
1929
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1934
1930
|
//#endregion
|
|
1935
1931
|
//#region src/hooks/modals/useTransactionToast.d.ts
|
|
1936
1932
|
declare const useTransactionToast: () => {
|
|
@@ -1942,7 +1938,7 @@ declare const TransactionToastProvider: ({
|
|
|
1942
1938
|
children
|
|
1943
1939
|
}: {
|
|
1944
1940
|
children: ReactNode;
|
|
1945
|
-
}) =>
|
|
1941
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1946
1942
|
//#endregion
|
|
1947
1943
|
//#region src/hooks/modals/useWalletModal.d.ts
|
|
1948
1944
|
declare const useWalletModal: () => {
|
|
@@ -1954,7 +1950,7 @@ declare const WalletModalProvider: ({
|
|
|
1954
1950
|
children
|
|
1955
1951
|
}: {
|
|
1956
1952
|
children: ReactNode;
|
|
1957
|
-
}) =>
|
|
1953
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1958
1954
|
//#endregion
|
|
1959
1955
|
//#region src/hooks/modals/useChooseNameModal.d.ts
|
|
1960
1956
|
declare const useChooseNameModal: () => {
|
|
@@ -1966,7 +1962,7 @@ declare const ChooseNameModalProvider: ({
|
|
|
1966
1962
|
children
|
|
1967
1963
|
}: {
|
|
1968
1964
|
children: ReactNode;
|
|
1969
|
-
}) =>
|
|
1965
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1970
1966
|
//#endregion
|
|
1971
1967
|
//#region src/hooks/modals/useSendTokenModal.d.ts
|
|
1972
1968
|
declare const useSendTokenModal: () => {
|
|
@@ -1978,7 +1974,7 @@ declare const SendTokenModalProvider: ({
|
|
|
1978
1974
|
children
|
|
1979
1975
|
}: {
|
|
1980
1976
|
children: ReactNode;
|
|
1981
|
-
}) =>
|
|
1977
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1982
1978
|
//#endregion
|
|
1983
1979
|
//#region src/hooks/modals/useSwapTokenModal.d.ts
|
|
1984
1980
|
type SwapTokenModalOptions = {
|
|
@@ -1995,7 +1991,7 @@ declare const SwapTokenModalProvider: ({
|
|
|
1995
1991
|
children
|
|
1996
1992
|
}: {
|
|
1997
1993
|
children: ReactNode;
|
|
1998
|
-
}) =>
|
|
1994
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1999
1995
|
//#endregion
|
|
2000
1996
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
2001
1997
|
declare const useExploreEcosystemModal: () => {
|
|
@@ -2007,7 +2003,7 @@ declare const ExploreEcosystemModalProvider: ({
|
|
|
2007
2003
|
children
|
|
2008
2004
|
}: {
|
|
2009
2005
|
children: ReactNode;
|
|
2010
|
-
}) =>
|
|
2006
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
2011
2007
|
//#endregion
|
|
2012
2008
|
//#region src/hooks/modals/useNotificationsModal.d.ts
|
|
2013
2009
|
declare const useNotificationsModal: () => {
|
|
@@ -2019,7 +2015,7 @@ declare const NotificationsModalProvider: ({
|
|
|
2019
2015
|
children
|
|
2020
2016
|
}: {
|
|
2021
2017
|
children: ReactNode;
|
|
2022
|
-
}) =>
|
|
2018
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
2023
2019
|
//#endregion
|
|
2024
2020
|
//#region src/hooks/modals/useFAQModal.d.ts
|
|
2025
2021
|
declare const useFAQModal: () => {
|
|
@@ -2031,11 +2027,11 @@ declare const FAQModalProvider: ({
|
|
|
2031
2027
|
children
|
|
2032
2028
|
}: {
|
|
2033
2029
|
children: ReactNode;
|
|
2034
|
-
}) =>
|
|
2030
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
2035
2031
|
//#endregion
|
|
2036
2032
|
//#region src/hooks/modals/useAccountCustomizationModal.d.ts
|
|
2037
2033
|
declare const useAccountCustomizationModal: () => {
|
|
2038
|
-
open: () => void;
|
|
2034
|
+
open: (options?: AccountModalOptions) => void;
|
|
2039
2035
|
close: () => void;
|
|
2040
2036
|
isOpen: boolean;
|
|
2041
2037
|
};
|
|
@@ -2043,7 +2039,7 @@ declare const AccountCustomizationModalProvider: ({
|
|
|
2043
2039
|
children
|
|
2044
2040
|
}: {
|
|
2045
2041
|
children: ReactNode;
|
|
2046
|
-
}) =>
|
|
2042
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
2047
2043
|
//#endregion
|
|
2048
2044
|
//#region src/hooks/modals/useReceiveModal.d.ts
|
|
2049
2045
|
declare const useReceiveModal: () => {
|
|
@@ -2055,7 +2051,7 @@ declare const ReceiveModalProvider: ({
|
|
|
2055
2051
|
children
|
|
2056
2052
|
}: {
|
|
2057
2053
|
children: ReactNode;
|
|
2058
|
-
}) =>
|
|
2054
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
2059
2055
|
//#endregion
|
|
2060
2056
|
//#region src/hooks/modals/useLoginModalContent.d.ts
|
|
2061
2057
|
type LoginModalContentConfig = {
|
|
@@ -2081,7 +2077,7 @@ declare const UpgradeSmartAccountModalProvider: ({
|
|
|
2081
2077
|
children
|
|
2082
2078
|
}: {
|
|
2083
2079
|
children: ReactNode;
|
|
2084
|
-
}) =>
|
|
2080
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
2085
2081
|
//#endregion
|
|
2086
2082
|
//#region src/hooks/modals/useProfileModal.d.ts
|
|
2087
2083
|
declare const useProfileModal: () => {
|
|
@@ -2093,7 +2089,7 @@ declare const ProfileModalProvider: ({
|
|
|
2093
2089
|
children
|
|
2094
2090
|
}: {
|
|
2095
2091
|
children: ReactNode;
|
|
2096
|
-
}) =>
|
|
2092
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
2097
2093
|
//#endregion
|
|
2098
2094
|
//#region src/hooks/modals/useAccountModalOptions.d.ts
|
|
2099
2095
|
declare const useAccountModalOptions: () => {
|
|
@@ -2111,7 +2107,7 @@ declare const SettingsModalProvider: ({
|
|
|
2111
2107
|
children
|
|
2112
2108
|
}: {
|
|
2113
2109
|
children: ReactNode;
|
|
2114
|
-
}) =>
|
|
2110
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
2115
2111
|
//#endregion
|
|
2116
2112
|
//#region src/hooks/notifications/types.d.ts
|
|
2117
2113
|
type NotificationAction = {
|
|
@@ -3348,7 +3344,7 @@ declare const SendTokenContent: ({
|
|
|
3348
3344
|
initialAmount,
|
|
3349
3345
|
initialToAddressOrDomain,
|
|
3350
3346
|
onBack: parentOnBack
|
|
3351
|
-
}: SendTokenContentProps) =>
|
|
3347
|
+
}: SendTokenContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3352
3348
|
//#endregion
|
|
3353
3349
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
|
|
3354
3350
|
type SendTokenSummaryContentProps = {
|
|
@@ -3368,7 +3364,7 @@ declare const SendTokenSummaryContent: ({
|
|
|
3368
3364
|
amount,
|
|
3369
3365
|
selectedToken,
|
|
3370
3366
|
formattedTotalAmount
|
|
3371
|
-
}: SendTokenSummaryContentProps) =>
|
|
3367
|
+
}: SendTokenSummaryContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3372
3368
|
//#endregion
|
|
3373
3369
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
3374
3370
|
type Props$18 = {
|
|
@@ -3389,7 +3385,7 @@ declare const SelectTokenContent: ({
|
|
|
3389
3385
|
onBack,
|
|
3390
3386
|
showAllTokens,
|
|
3391
3387
|
excludedTokenSymbols
|
|
3392
|
-
}: Props$18) =>
|
|
3388
|
+
}: Props$18) => react_jsx_runtime1.JSX.Element;
|
|
3393
3389
|
//#endregion
|
|
3394
3390
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
3395
3391
|
type Props$17 = {
|
|
@@ -3397,7 +3393,7 @@ type Props$17 = {
|
|
|
3397
3393
|
};
|
|
3398
3394
|
declare const ReceiveTokenContent: ({
|
|
3399
3395
|
setCurrentContent
|
|
3400
|
-
}: Props$17) =>
|
|
3396
|
+
}: Props$17) => react_jsx_runtime1.JSX.Element;
|
|
3401
3397
|
//#endregion
|
|
3402
3398
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
3403
3399
|
type Props$16 = {
|
|
@@ -3409,7 +3405,7 @@ declare const SwapTokenContent: ({
|
|
|
3409
3405
|
setCurrentContent,
|
|
3410
3406
|
fromTokenAddress,
|
|
3411
3407
|
toTokenAddress
|
|
3412
|
-
}: Props$16) =>
|
|
3408
|
+
}: Props$16) => react_jsx_runtime1.JSX.Element;
|
|
3413
3409
|
//#endregion
|
|
3414
3410
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
3415
3411
|
type ChooseNameContentProps = {
|
|
@@ -3421,7 +3417,7 @@ declare const ChooseNameContent: ({
|
|
|
3421
3417
|
setCurrentContent,
|
|
3422
3418
|
onBack,
|
|
3423
3419
|
initialContentSource
|
|
3424
|
-
}: ChooseNameContentProps) =>
|
|
3420
|
+
}: ChooseNameContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3425
3421
|
//#endregion
|
|
3426
3422
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
|
|
3427
3423
|
type ChooseNameSearchContentProps = {
|
|
@@ -3433,7 +3429,7 @@ declare const ChooseNameSearchContent: ({
|
|
|
3433
3429
|
name: initialName,
|
|
3434
3430
|
setCurrentContent,
|
|
3435
3431
|
initialContentSource
|
|
3436
|
-
}: ChooseNameSearchContentProps) =>
|
|
3432
|
+
}: ChooseNameSearchContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3437
3433
|
//#endregion
|
|
3438
3434
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
|
|
3439
3435
|
type ChooseNameSummaryContentProps = {
|
|
@@ -3451,7 +3447,7 @@ declare const ChooseNameSummaryContent: ({
|
|
|
3451
3447
|
isOwnDomain,
|
|
3452
3448
|
isUnsetting,
|
|
3453
3449
|
initialContentSource
|
|
3454
|
-
}: ChooseNameSummaryContentProps) =>
|
|
3450
|
+
}: ChooseNameSummaryContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3455
3451
|
//#endregion
|
|
3456
3452
|
//#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
|
|
3457
3453
|
type FAQContentProps = {
|
|
@@ -3461,7 +3457,7 @@ type FAQContentProps = {
|
|
|
3461
3457
|
declare const FAQContent: ({
|
|
3462
3458
|
onGoBack,
|
|
3463
3459
|
showLanguageSelector
|
|
3464
|
-
}: FAQContentProps) =>
|
|
3460
|
+
}: FAQContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3465
3461
|
//#endregion
|
|
3466
3462
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
|
|
3467
3463
|
type AccountCustomizationContentProps = {
|
|
@@ -3471,7 +3467,7 @@ type AccountCustomizationContentProps = {
|
|
|
3471
3467
|
declare const CustomizationContent: ({
|
|
3472
3468
|
setCurrentContent,
|
|
3473
3469
|
initialContentSource
|
|
3474
|
-
}: AccountCustomizationContentProps) =>
|
|
3470
|
+
}: AccountCustomizationContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3475
3471
|
//#endregion
|
|
3476
3472
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
|
|
3477
3473
|
type CustomizationSummaryContentProps = {
|
|
@@ -3490,7 +3486,7 @@ declare const CustomizationSummaryContent: ({
|
|
|
3490
3486
|
setCurrentContent,
|
|
3491
3487
|
changes,
|
|
3492
3488
|
onDoneRedirectContent
|
|
3493
|
-
}: CustomizationSummaryContentProps) =>
|
|
3489
|
+
}: CustomizationSummaryContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3494
3490
|
//#endregion
|
|
3495
3491
|
//#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
|
|
3496
3492
|
type ProfileContentProps = {
|
|
@@ -3504,7 +3500,7 @@ declare const ProfileContent: ({
|
|
|
3504
3500
|
setCurrentContent,
|
|
3505
3501
|
onLogoutSuccess,
|
|
3506
3502
|
switchFeedback
|
|
3507
|
-
}: ProfileContentProps) =>
|
|
3503
|
+
}: ProfileContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3508
3504
|
//#endregion
|
|
3509
3505
|
//#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
|
|
3510
3506
|
type UpgradeSmartAccountContentProps = {
|
|
@@ -3516,7 +3512,7 @@ declare const UpgradeSmartAccountContent: ({
|
|
|
3516
3512
|
setCurrentContent,
|
|
3517
3513
|
handleClose,
|
|
3518
3514
|
initialContent
|
|
3519
|
-
}: UpgradeSmartAccountContentProps) =>
|
|
3515
|
+
}: UpgradeSmartAccountContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3520
3516
|
//#endregion
|
|
3521
3517
|
//#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
|
|
3522
3518
|
type AssetsContentProps = {
|
|
@@ -3524,7 +3520,7 @@ type AssetsContentProps = {
|
|
|
3524
3520
|
};
|
|
3525
3521
|
declare const AssetsContent: ({
|
|
3526
3522
|
setCurrentContent
|
|
3527
|
-
}: AssetsContentProps) =>
|
|
3523
|
+
}: AssetsContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3528
3524
|
//#endregion
|
|
3529
3525
|
//#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
|
|
3530
3526
|
type ManageCustomTokenContentProps = {
|
|
@@ -3532,7 +3528,7 @@ type ManageCustomTokenContentProps = {
|
|
|
3532
3528
|
};
|
|
3533
3529
|
declare const ManageCustomTokenContent: ({
|
|
3534
3530
|
setCurrentContent
|
|
3535
|
-
}: ManageCustomTokenContentProps) =>
|
|
3531
|
+
}: ManageCustomTokenContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3536
3532
|
//#endregion
|
|
3537
3533
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
3538
3534
|
type Props$15 = {
|
|
@@ -3540,7 +3536,7 @@ type Props$15 = {
|
|
|
3540
3536
|
};
|
|
3541
3537
|
declare const BridgeContent: ({
|
|
3542
3538
|
setCurrentContent
|
|
3543
|
-
}: Props$15) =>
|
|
3539
|
+
}: Props$15) => react_jsx_runtime1.JSX.Element;
|
|
3544
3540
|
//#endregion
|
|
3545
3541
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
3546
3542
|
type ChangeCurrencyContentProps = {
|
|
@@ -3548,7 +3544,7 @@ type ChangeCurrencyContentProps = {
|
|
|
3548
3544
|
};
|
|
3549
3545
|
declare const ChangeCurrencyContent: ({
|
|
3550
3546
|
setCurrentContent
|
|
3551
|
-
}: ChangeCurrencyContentProps) =>
|
|
3547
|
+
}: ChangeCurrencyContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3552
3548
|
//#endregion
|
|
3553
3549
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
3554
3550
|
type Props$14 = {
|
|
@@ -3556,7 +3552,7 @@ type Props$14 = {
|
|
|
3556
3552
|
};
|
|
3557
3553
|
declare const LanguageSettingsContent: ({
|
|
3558
3554
|
setCurrentContent
|
|
3559
|
-
}: Props$14) =>
|
|
3555
|
+
}: Props$14) => react_jsx_runtime1.JSX.Element;
|
|
3560
3556
|
//#endregion
|
|
3561
3557
|
//#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
|
|
3562
3558
|
type Props$13 = {
|
|
@@ -3564,7 +3560,7 @@ type Props$13 = {
|
|
|
3564
3560
|
};
|
|
3565
3561
|
declare const GasTokenSettingsContent: ({
|
|
3566
3562
|
setCurrentContent
|
|
3567
|
-
}: Props$13) =>
|
|
3563
|
+
}: Props$13) => react_jsx_runtime1.JSX.Element;
|
|
3568
3564
|
//#endregion
|
|
3569
3565
|
//#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
|
|
3570
3566
|
type SettingsContentProps = {
|
|
@@ -3574,7 +3570,7 @@ type SettingsContentProps = {
|
|
|
3574
3570
|
declare const SettingsContent: ({
|
|
3575
3571
|
setCurrentContent,
|
|
3576
3572
|
onLogoutSuccess
|
|
3577
|
-
}: SettingsContentProps) =>
|
|
3573
|
+
}: SettingsContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3578
3574
|
//#endregion
|
|
3579
3575
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
3580
3576
|
type TermsAndPrivacyContentProps = {
|
|
@@ -3582,7 +3578,7 @@ type TermsAndPrivacyContentProps = {
|
|
|
3582
3578
|
};
|
|
3583
3579
|
declare const TermsAndPrivacyContent: ({
|
|
3584
3580
|
onGoBack
|
|
3585
|
-
}: TermsAndPrivacyContentProps) =>
|
|
3581
|
+
}: TermsAndPrivacyContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3586
3582
|
//#endregion
|
|
3587
3583
|
//#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
|
|
3588
3584
|
type DisconnectConfirmContentProps = {
|
|
@@ -3598,7 +3594,7 @@ declare const DisconnectConfirmContent: ({
|
|
|
3598
3594
|
onClose,
|
|
3599
3595
|
showCloseButton,
|
|
3600
3596
|
text
|
|
3601
|
-
}: DisconnectConfirmContentProps) =>
|
|
3597
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3602
3598
|
//#endregion
|
|
3603
3599
|
//#region src/components/AccountModal/Contents/SelectWallet/SelectWalletContent.d.ts
|
|
3604
3600
|
type Props$12 = {
|
|
@@ -3611,7 +3607,7 @@ declare const SelectWalletContent: ({
|
|
|
3611
3607
|
setCurrentContent,
|
|
3612
3608
|
returnTo,
|
|
3613
3609
|
onLogoutSuccess: _onLogoutSuccess
|
|
3614
|
-
}: Props$12) =>
|
|
3610
|
+
}: Props$12) => react_jsx_runtime1.JSX.Element;
|
|
3615
3611
|
//#endregion
|
|
3616
3612
|
//#region src/components/AccountModal/Contents/SelectWallet/RemoveWalletConfirmContent.d.ts
|
|
3617
3613
|
type RemoveWalletConfirmContentProps = {
|
|
@@ -3627,7 +3623,7 @@ declare const RemoveWalletConfirmContent: ({
|
|
|
3627
3623
|
onConfirm,
|
|
3628
3624
|
onBack,
|
|
3629
3625
|
onClose
|
|
3630
|
-
}: RemoveWalletConfirmContentProps) =>
|
|
3626
|
+
}: RemoveWalletConfirmContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3631
3627
|
//#endregion
|
|
3632
3628
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
3633
3629
|
type CategoryFilter = string | null;
|
|
@@ -3677,7 +3673,7 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | {
|
|
|
3677
3673
|
props?: {
|
|
3678
3674
|
switchFeedback?: SwitchFeedback;
|
|
3679
3675
|
};
|
|
3680
|
-
} | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'change-currency' | 'change-language' | 'gas-token-settings' | {
|
|
3676
|
+
} | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'change-currency' | 'account-customization' | 'change-language' | 'gas-token-settings' | {
|
|
3681
3677
|
type: 'select-wallet';
|
|
3682
3678
|
props: {
|
|
3683
3679
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
@@ -3755,7 +3751,7 @@ declare const AccountModal: ({
|
|
|
3755
3751
|
isOpen,
|
|
3756
3752
|
onClose,
|
|
3757
3753
|
initialContent
|
|
3758
|
-
}: Props$11) =>
|
|
3754
|
+
}: Props$11) => react_jsx_runtime1.JSX.Element;
|
|
3759
3755
|
//#endregion
|
|
3760
3756
|
//#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
|
|
3761
3757
|
interface AccountDetailsButtonProps {
|
|
@@ -3777,7 +3773,7 @@ declare const AccountDetailsButton: ({
|
|
|
3777
3773
|
onClick,
|
|
3778
3774
|
leftImage,
|
|
3779
3775
|
isActive
|
|
3780
|
-
}: AccountDetailsButtonProps) =>
|
|
3776
|
+
}: AccountDetailsButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3781
3777
|
//#endregion
|
|
3782
3778
|
//#region src/components/AccountModal/Components/ActionButton.d.ts
|
|
3783
3779
|
type ActionButtonProps = {
|
|
@@ -3819,7 +3815,7 @@ declare const ActionButton: ({
|
|
|
3819
3815
|
extraContent,
|
|
3820
3816
|
dataTestId,
|
|
3821
3817
|
variant
|
|
3822
|
-
}: ActionButtonProps) =>
|
|
3818
|
+
}: ActionButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3823
3819
|
//#endregion
|
|
3824
3820
|
//#region src/components/AccountModal/Components/AccountSelector.d.ts
|
|
3825
3821
|
type Props$10 = {
|
|
@@ -3839,7 +3835,7 @@ declare const AccountSelector: ({
|
|
|
3839
3835
|
onClose,
|
|
3840
3836
|
mt,
|
|
3841
3837
|
style
|
|
3842
|
-
}: Props$10) =>
|
|
3838
|
+
}: Props$10) => react_jsx_runtime1.JSX.Element;
|
|
3843
3839
|
//#endregion
|
|
3844
3840
|
//#region src/components/AccountModal/Components/BalanceSection.d.ts
|
|
3845
3841
|
declare const BalanceSection: ({
|
|
@@ -3850,7 +3846,7 @@ declare const BalanceSection: ({
|
|
|
3850
3846
|
mb?: number;
|
|
3851
3847
|
mt?: number;
|
|
3852
3848
|
onAssetsClick?: () => void;
|
|
3853
|
-
}) =>
|
|
3849
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
3854
3850
|
//#endregion
|
|
3855
3851
|
//#region src/components/AccountModal/Components/QuickActionsSection.d.ts
|
|
3856
3852
|
type Props$9 = {
|
|
@@ -3860,7 +3856,7 @@ type Props$9 = {
|
|
|
3860
3856
|
declare const QuickActionsSection: ({
|
|
3861
3857
|
mt,
|
|
3862
3858
|
setCurrentContent
|
|
3863
|
-
}: Props$9) =>
|
|
3859
|
+
}: Props$9) => react_jsx_runtime1.JSX.Element;
|
|
3864
3860
|
//#endregion
|
|
3865
3861
|
//#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
|
|
3866
3862
|
type FeatureAnnouncementCardProps = {
|
|
@@ -3868,16 +3864,16 @@ type FeatureAnnouncementCardProps = {
|
|
|
3868
3864
|
};
|
|
3869
3865
|
declare const FeatureAnnouncementCard: ({
|
|
3870
3866
|
setCurrentContent
|
|
3871
|
-
}: FeatureAnnouncementCardProps) =>
|
|
3867
|
+
}: FeatureAnnouncementCardProps) => react_jsx_runtime1.JSX.Element;
|
|
3872
3868
|
//#endregion
|
|
3873
3869
|
//#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
|
|
3874
|
-
declare const ExchangeWarningAlert: () =>
|
|
3870
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime1.JSX.Element;
|
|
3875
3871
|
//#endregion
|
|
3876
3872
|
//#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
|
|
3877
|
-
declare const DomainRequiredAlert: () =>
|
|
3873
|
+
declare const DomainRequiredAlert: () => react_jsx_runtime1.JSX.Element;
|
|
3878
3874
|
//#endregion
|
|
3879
3875
|
//#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
|
|
3880
|
-
declare const CrossAppConnectionSecurityCard: () =>
|
|
3876
|
+
declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime1.JSX.Element;
|
|
3881
3877
|
//#endregion
|
|
3882
3878
|
//#region src/components/common/ModalBackButton.d.ts
|
|
3883
3879
|
type BackButtonProps = {
|
|
@@ -3886,7 +3882,7 @@ type BackButtonProps = {
|
|
|
3886
3882
|
declare const ModalBackButton: ({
|
|
3887
3883
|
onClick,
|
|
3888
3884
|
...props
|
|
3889
|
-
}: BackButtonProps) =>
|
|
3885
|
+
}: BackButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3890
3886
|
//#endregion
|
|
3891
3887
|
//#region src/components/common/AddressDisplay.d.ts
|
|
3892
3888
|
type Props$8 = {
|
|
@@ -3904,13 +3900,13 @@ declare const AddressDisplay: ({
|
|
|
3904
3900
|
showHumanAddress,
|
|
3905
3901
|
setCurrentContent,
|
|
3906
3902
|
onLogout
|
|
3907
|
-
}: Props$8) =>
|
|
3903
|
+
}: Props$8) => react_jsx_runtime1.JSX.Element;
|
|
3908
3904
|
//#endregion
|
|
3909
3905
|
//#region src/components/common/VersionFooter.d.ts
|
|
3910
3906
|
type Props$7 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
3911
3907
|
declare const VersionFooter: ({
|
|
3912
3908
|
...props
|
|
3913
|
-
}: Props$7) =>
|
|
3909
|
+
}: Props$7) => react_jsx_runtime1.JSX.Element;
|
|
3914
3910
|
//#endregion
|
|
3915
3911
|
//#region src/components/common/StickyHeaderContainer.d.ts
|
|
3916
3912
|
type Props$6 = {
|
|
@@ -3921,7 +3917,7 @@ declare const useStickyHeaderContext: () => {
|
|
|
3921
3917
|
};
|
|
3922
3918
|
declare const StickyHeaderContainer: ({
|
|
3923
3919
|
children
|
|
3924
|
-
}: Props$6) =>
|
|
3920
|
+
}: Props$6) => react_jsx_runtime1.JSX.Element;
|
|
3925
3921
|
//#endregion
|
|
3926
3922
|
//#region src/components/common/StickyFooterContainer.d.ts
|
|
3927
3923
|
type Props$5 = {
|
|
@@ -3929,7 +3925,7 @@ type Props$5 = {
|
|
|
3929
3925
|
};
|
|
3930
3926
|
declare const StickyFooterContainer: ({
|
|
3931
3927
|
children
|
|
3932
|
-
}: Props$5) =>
|
|
3928
|
+
}: Props$5) => react_jsx_runtime1.JSX.Element;
|
|
3933
3929
|
//#endregion
|
|
3934
3930
|
//#region src/components/common/BaseModal.d.ts
|
|
3935
3931
|
type BaseModalProps = {
|
|
@@ -3978,7 +3974,7 @@ declare const BaseModal: ({
|
|
|
3978
3974
|
mobileMaxHeight,
|
|
3979
3975
|
desktopMinHeight,
|
|
3980
3976
|
desktopMaxHeight
|
|
3981
|
-
}: BaseModalProps) =>
|
|
3977
|
+
}: BaseModalProps) => react_jsx_runtime1.JSX.Element;
|
|
3982
3978
|
//#endregion
|
|
3983
3979
|
//#region src/components/common/AssetButton.d.ts
|
|
3984
3980
|
type AssetButtonProps = ButtonProps & {
|
|
@@ -3997,7 +3993,7 @@ declare const AssetButton: ({
|
|
|
3997
3993
|
isDisabled,
|
|
3998
3994
|
onClick,
|
|
3999
3995
|
...buttonProps
|
|
4000
|
-
}: AssetButtonProps) =>
|
|
3996
|
+
}: AssetButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
4001
3997
|
//#endregion
|
|
4002
3998
|
//#region src/components/common/AddressDisplayCard.d.ts
|
|
4003
3999
|
type AddressDisplayCardProps = {
|
|
@@ -4017,7 +4013,7 @@ declare const AddressDisplayCard: ({
|
|
|
4017
4013
|
hideAddress,
|
|
4018
4014
|
balance,
|
|
4019
4015
|
tokenAddress
|
|
4020
|
-
}: AddressDisplayCardProps) =>
|
|
4016
|
+
}: AddressDisplayCardProps) => react_jsx_runtime1.JSX.Element;
|
|
4021
4017
|
//#endregion
|
|
4022
4018
|
//#region src/components/common/ModalFAQButton.d.ts
|
|
4023
4019
|
type FAQButtonProps = {
|
|
@@ -4026,13 +4022,13 @@ type FAQButtonProps = {
|
|
|
4026
4022
|
declare const ModalFAQButton: ({
|
|
4027
4023
|
onClick,
|
|
4028
4024
|
...props
|
|
4029
|
-
}: FAQButtonProps) =>
|
|
4025
|
+
}: FAQButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
4030
4026
|
//#endregion
|
|
4031
4027
|
//#region src/components/common/ScrollToTopWrapper.d.ts
|
|
4032
4028
|
declare const ScrollToTopWrapper: ({
|
|
4033
4029
|
children,
|
|
4034
4030
|
...props
|
|
4035
|
-
}: StackProps) =>
|
|
4031
|
+
}: StackProps) => react_jsx_runtime1.JSX.Element;
|
|
4036
4032
|
//#endregion
|
|
4037
4033
|
//#region src/components/common/AccountAvatar.d.ts
|
|
4038
4034
|
type AccountAvatarProps = {
|
|
@@ -4042,7 +4038,7 @@ type AccountAvatarProps = {
|
|
|
4042
4038
|
declare const AccountAvatar: ({
|
|
4043
4039
|
wallet,
|
|
4044
4040
|
props
|
|
4045
|
-
}: AccountAvatarProps) =>
|
|
4041
|
+
}: AccountAvatarProps) => react_jsx_runtime1.JSX.Element;
|
|
4046
4042
|
//#endregion
|
|
4047
4043
|
//#region src/components/common/TransactionButtonAndStatus.d.ts
|
|
4048
4044
|
type TransactionButtonAndStatusProps = {
|
|
@@ -4084,7 +4080,7 @@ declare const TransactionButtonAndStatus: ({
|
|
|
4084
4080
|
isLoadingGasEstimation,
|
|
4085
4081
|
showGasEstimationError,
|
|
4086
4082
|
context
|
|
4087
|
-
}: TransactionButtonAndStatusProps) =>
|
|
4083
|
+
}: TransactionButtonAndStatusProps) => react_jsx_runtime1.JSX.Element;
|
|
4088
4084
|
//#endregion
|
|
4089
4085
|
//#region src/components/common/ModalNotificationButton.d.ts
|
|
4090
4086
|
type NotificationButtonProps = {
|
|
@@ -4095,7 +4091,7 @@ declare const ModalNotificationButton: ({
|
|
|
4095
4091
|
onClick,
|
|
4096
4092
|
hasUnreadNotifications,
|
|
4097
4093
|
...props
|
|
4098
|
-
}: NotificationButtonProps) =>
|
|
4094
|
+
}: NotificationButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
4099
4095
|
//#endregion
|
|
4100
4096
|
//#region src/components/common/GasFeeSummary.d.ts
|
|
4101
4097
|
interface GasFeeSummaryProps {
|
|
@@ -4131,7 +4127,7 @@ declare const GasFeeTokenSelector: ({
|
|
|
4131
4127
|
availableTokens,
|
|
4132
4128
|
tokenEstimations,
|
|
4133
4129
|
walletAddress
|
|
4134
|
-
}: GasFeeTokenSelectorProps) =>
|
|
4130
|
+
}: GasFeeTokenSelectorProps) => react_jsx_runtime1.JSX.Element;
|
|
4135
4131
|
//#endregion
|
|
4136
4132
|
//#region src/components/common/InlineFeedback.d.ts
|
|
4137
4133
|
type Props$4 = {
|
|
@@ -4143,7 +4139,7 @@ declare const InlineFeedback: ({
|
|
|
4143
4139
|
message,
|
|
4144
4140
|
duration,
|
|
4145
4141
|
onClose
|
|
4146
|
-
}: Props$4) =>
|
|
4142
|
+
}: Props$4) => react_jsx_runtime1.JSX.Element;
|
|
4147
4143
|
//#endregion
|
|
4148
4144
|
//#region src/components/common/WalletSwitchFeedback.d.ts
|
|
4149
4145
|
type Props$3 = {
|
|
@@ -4160,7 +4156,7 @@ type Props$3 = {
|
|
|
4160
4156
|
*/
|
|
4161
4157
|
declare const WalletSwitchFeedback: ({
|
|
4162
4158
|
showFeedback
|
|
4163
|
-
}: Props$3) =>
|
|
4159
|
+
}: Props$3) => react_jsx_runtime1.JSX.Element | null;
|
|
4164
4160
|
//#endregion
|
|
4165
4161
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
4166
4162
|
type SuccessfulOperationContentProps = {
|
|
@@ -4190,7 +4186,7 @@ declare const UpgradeSmartAccountModal: ({
|
|
|
4190
4186
|
isOpen,
|
|
4191
4187
|
onClose,
|
|
4192
4188
|
style
|
|
4193
|
-
}: Props$2) =>
|
|
4189
|
+
}: Props$2) => react_jsx_runtime1.JSX.Element;
|
|
4194
4190
|
//#endregion
|
|
4195
4191
|
//#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
|
|
4196
4192
|
type Props$1 = {
|
|
@@ -4205,7 +4201,7 @@ declare const LegalDocumentsModal: ({
|
|
|
4205
4201
|
onAgree,
|
|
4206
4202
|
handleLogout,
|
|
4207
4203
|
onlyOptionalDocuments
|
|
4208
|
-
}: Props$1) =>
|
|
4204
|
+
}: Props$1) => react_jsx_runtime1.JSX.Element;
|
|
4209
4205
|
//#endregion
|
|
4210
4206
|
//#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
|
|
4211
4207
|
type Props = {
|
|
@@ -4217,7 +4213,7 @@ declare const LegalDocumentItem: ({
|
|
|
4217
4213
|
document,
|
|
4218
4214
|
register,
|
|
4219
4215
|
isText
|
|
4220
|
-
}: Props) =>
|
|
4216
|
+
}: Props) => react_jsx_runtime1.JSX.Element;
|
|
4221
4217
|
//#endregion
|
|
4222
4218
|
//#region src/providers/ModalProvider.d.ts
|
|
4223
4219
|
type AccountModalOptions = {
|
|
@@ -4252,7 +4248,7 @@ declare const ModalProvider: ({
|
|
|
4252
4248
|
children
|
|
4253
4249
|
}: {
|
|
4254
4250
|
children: ReactNode;
|
|
4255
|
-
}) =>
|
|
4251
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
4256
4252
|
//#endregion
|
|
4257
4253
|
//#region src/config/index.d.ts
|
|
4258
4254
|
type AppConfig = {
|
|
@@ -4298,4 +4294,4 @@ type AppConfig = {
|
|
|
4298
4294
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4299
4295
|
//#endregion
|
|
4300
4296
|
export { LanguageSettingsContent as $, useRefreshMetadata as $a, useAccountCustomizationModal as $i, useBuildClauses as $n, useGetDomainsOfAddress as $o, resolveMediaTypeFromMimeType as $r, VeChainKitProvider as $s, useUpgradeSmartAccount as $t, AddressDisplay as A, IpfsImage as Aa, ExecuteWithAuthorizationSignData as Ac, notFoundImage as Ai, getAccountBalanceQueryKey as An, ExchangeRates as Ao, buildCallClauses as Ar, PrivyButton as As, useMfaEnrollment as At, AccountDetailsButton as B, useXAppsShares as Ba, useNotificationAlerts as Bi, estimateGas as Bn, getResolverAddressQueryKey as Bo, validate as Br, ConnectModalContentsTypes as Bs, useTransferVET as Bt, AddressDisplayCard as C, useSwapTransaction as Ca, CURRENCY as Cc, TogglePassportCheck as Ci, getCurrentAccountImplementationVersion as Cn, useGetB3trBalance as Co, removeLocalStorageItem as Cr, WalletDisplayVariant as Cs, ReceiveTokenContent as Ct, StickyHeaderContainer as D, imageCompressionOptions as Da, ENSRecords as Dc, VECHAIN_PRIVY_APP_ID as Di, getAccountImplementationAddressQueryKey as Dn, useTotalBalance as Do, MultipleClausesCallParameters as Dr, DappKitButton as Ds, ThorClient$1 as Dt, StickyFooterContainer as E, compressImages as Ea, CrossAppConnectionCache as Ec, VECHAIN_KIT_TERMS_CONFIG as Ei, getAccountImplementationAddress as En, useCurrentAllocationsRoundId as Eo, setLocalStorageItem as Er, VeChainWithPrivyLoginButton as Es, SendTokenContent as Et, FeatureAnnouncementCard as F, useIpfsImageList as Fa, TokenBalance as Fc, useLoginWithVeChain as Fi, useGenericDelegatorFeeEstimationParams as Fn, getAvatarLegacy as Fo, compare as Fr, EcosystemContent as Fs, txReceiptQueryKey as Ft, RemoveWalletConfirmContentProps as G, useSwitchWallet as Ga, ProfileModalProvider as Gi, EcosystemShortcut as Gn, getTextRecordsQueryKey as Go, MinXNodeLevel as Gr, useVechainKitThemeConfig as Gs, GetEventsProps as Gt, AccountModalContentTypes as H, getXAppMetadata as Ha, SettingsModalProvider as Hi, signVip191Transaction as Hn, buildClauses as Ho, simpleHash as Hr, useLegalDocuments as Hs, useTransferERC20 as Ht, QuickActionsSection as I, getIpfsMetadata as Ia, TransactionStatus as Ic, useLoginWithOAuth as Ii, useGasTokenSelection as In, getAvatarLegacyQueryKey as Io, isInvalid as Ir, ErrorContent as Is, useTxReceipt as It, DisconnectConfirmContentProps as J, useWalletMetadata as Ja, useUpgradeSmartAccountModal as Ji, LocalStorageKey as Jn, useGetAvatar as Jo, allNodeStrengthLevelToName as Jr, usePrivyWalletProvider as Js, getChainId as Jt, SelectWalletContent as K, StoredWallet as Ka, useProfileModal as Ki, useEcosystemShortcuts as Kn, useGetTextRecords as Ko, NodeStrengthLevelToImage as Kr, PrivyWalletProvider as Ks, getAllEventLogs as Kt, BalanceSection as L, getIpfsMetadataQueryKey as La, TransactionStatusErrorType as Lc, useLoginWithPasskey as Li, decodeRawTx as Ln, useGetAvatarLegacy as Lo, isValid as Lr, LoadingContent as Ls, BuildTransactionProps as Lt, CrossAppConnectionSecurityCard as M, getIpfsImage as Ma, PrivyAppInfo as Mc, fetchAppHubApps as Mi, UseEstimateAllTokensParams as Mn, WalletTokenBalance as Mo, executeMultipleClausesCall as Mr, VeChainLoginButton as Ms, useSetWalletRecovery as Mt, DomainRequiredAlert as N, getIpfsImageQueryKey as Na, PrivyLoginMethod as Nc, getAppHubAppsQueryKey as Ni, useEstimateAllTokens as Nn, useTokenBalances as No, isValidUrl as Nr, EmailLoginButton as Ns, useThor as Nt, useStickyHeaderContext as O, useUploadImages as Oa, EnhancedClause as Oc, getENV as Oi, useAccountImplementationAddress as On, TokenWithValue as Oo, MultipleClausesCallReturnType as Or, PasskeyLoginButton as Os, useDAppKitWallet as Ot, ExchangeWarningAlert as P, useIpfsImage as Pa, SmartAccount as Pc, useAppHubApps as Pi, useGenericDelegatorFeeEstimation as Pn, useUnsetDomain as Po, addPrefix as Pr, ConnectionButton as Ps, useGasEstimate as Pt, GasTokenSettingsContent as Q, useRoundXApps as Qa, AccountCustomizationModalProvider as Qi, buildSingleAuthorizationTypedData as Qn, getDomainsOfAddressQueryKey as Qo, convertUriToUrl as Qr, VeChainKitContext as Qs, useCurrentBlock as Qt, AccountSelector as R, useIpfsMetadata as Ra, VePassportUserStatus as Rc, useSignTypedData as Ri, delegateAuthorized as Rn, getAvatarOfAddressQueryKey as Ro, normalize as Rr, MainContent as Rs, useBuildTransaction as Rt, ModalFAQButton as S, useSwapQuotes as Sa, TextRecords as Sc, TOKEN_LOGO_COMPONENTS as Si, useGetAccountAddress as Sn, getB3trBalanceQueryKey as So, isOnline as Sr, WalletButtonProps as Ss, SwapTokenContent as St, BaseModal as T, UploadedImage as Ta, ConnectionSource as Tc, VECHAIN_KIT_STORAGE_KEYS as Ti, useCurrentAccountImplementationVersion as Tn, getCurrentAllocationsRoundIdQueryKey as To, safeWindowOpen as Tr, LoginWithGithubButton as Ts, SendTokenSummaryContent as Tt, SwitchFeedback as U, useXAppMetadata as Ua, useSettingsModal as Ui, useGenericDelegator as Un, useUpdateTextRecord as Uo, TIME as Ur, ColorModeSync as Us, UseSendTransactionReturnValue as Ut, AccountModal as V, XAppMetadata as Va, useNotifications as Vi, getDepositAccount as Vn, useGetResolverAddress as Vo, isRejectionError as Vr, LegalDocumentsProvider as Vs, buildERC20Clauses as Vt, RemoveWalletConfirmContent as W, UseSwitchWalletReturnType as Wa, useAccountModalOptions as Wi, useCrossAppConnectionCache as Wn, getTextRecords as Wo, EconomicNodeStrengthLevelToName as Wr, VechainKitThemeProvider as Ws, useSendTransaction as Wt, SettingsContent as X, useWallet as Xa, ReceiveModalProvider as Xi, BuildClausesParams as Xn, DomainsResponse as Xo, gmNfts as Xr, LegalDocumentOptions as Xs, useGetChainId as Xt, TermsAndPrivacyContent as Y, UseWalletReturnType as Ya, useLoginModalContent as Yi, useLocalStorage as Yn, Domain as Yo, buildQueryString as Yr, LegalDocument as Ys, getChainIdQueryKey as Yt, SettingsContentProps as Z, getRoundXAppsQueryKey as Za, useReceiveModal as Zi, buildBatchAuthorizationTypedData as Zn, getDomainsOfAddress as Zo, xNodeToGMstartingLevel as Zr, VeChainKitConfig as Zs, currentBlockQueryKey as Zt, ModalNotificationButton as _, useTransactionModal as _a, GasTokenPreferences as _c, ENV as _i, useHasV1SmartAccount as _n, getTokenInfo as _o, getDocumentTitle as _r, ShareButtons as _s, ChooseNameSummaryContentProps as _t, useModal as a, useExploreEcosystemModal as aa, LegalDocumentType as ac, isValidAddress as ai, useUpgradeRequired as an, useIsPerson as ao, useScrollToTop as ar, getEnsRecordExistsQueryKey as as, AssetsContent as at, AccountAvatar as b, ConnectModalProvider as ba, TransactionSpeed as bc, SUPPORTED_GAS_TOKENS as bi, getAccountAddress as bn, getCustomTokenBalanceQueryKey as bo, hasNavigator as br, SocialIcons as bs, ChooseNameContent as bt, LegalDocumentsModal as c, SendTokenModalProvider as ca, EstimatedGas as cc, randomTransactionUser as ci, getSmartAccountQueryKey as cn, PRICE_FEED_IDS as co, useFeatureAnnouncement as cr, useVechainDomain as cs, UpgradeSmartAccountContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useChooseNameModal as da, TransactionCost as dc, humanAddress as di, useRefreshFactoryQueries as dn, getTokenUsdPriceQueryKey as do, useCurrency as dr, fetchPrivyAppInfo as ds, CustomizationSummaryContent as dt, FAQModalProvider as ea, VechainKitProviderProps as ec, toIPFSURL as ei, getUpgradeRequiredForAccount as en, useRefreshBalances as eo, GetEventsKeyParams as er, getIsDomainProtectedQueryKey as es, ChangeCurrencyContent as et, UpgradeSmartAccountModalStyle as f, WalletModalProvider as fa, VthoPerGasAtSpeed as fc, humanDomain as fi, getIsDeployed as fn, useGetTokenUsdPrice as fo, getCallClauseQueryKey as fr, getPrivyAppInfoQueryKey as fs, CustomizationSummaryContentProps as ft, GasFeeSummary as g, TransactionModalProvider as ga, GasTokenInfo as gc, DEFAULT_PRIVY_ECOSYSTEM_APPS as gi, getHasV1SmartAccountQueryKey as gn, getCustomTokenInfoQueryKey as go, copyToClipboard as gr, TransactionModalContent as gs, ChooseNameSummaryContent as gt, GasFeeTokenSelector as h, useTransactionToast as ha, GasTokenEstimate as hc, DEFAULT_GAS_TOKEN_PREFERENCES as hi, getHasV1SmartAccount as hn, useGetErc20Balance as ho, useMultipleClausesCall as hr, TransactionToast as hs, FAQContent as ht, ModalProvider as i, ExploreEcosystemModalProvider as ia, LegalDocumentSource as ic, compareListOfAddresses as ii, getUpgradeRequiredQueryKey as in, getIsPersonQueryKey as io, useEvents as ir, useClaimVeWorldSubdomain as is, ManageCustomTokenContentProps as it, ModalBackButton as j, MAX_IMAGE_SIZE as ja, NFTMediaType as jc, AppHubApp as ji, useAccountBalance as jn, useTokenPrices as jo, executeCallClause as jr, EcosystemButton as js, usePrivy as jt, VersionFooter as k, useIpfsMetadatas as ka, ExecuteBatchWithAuthorizationSignData as kc, getGenericDelegatorUrl as ki, getAccountBalance as kn, useTokensWithValues as ko, ViewFunctionResult as kr, LoginWithGoogleButton as ks, useDAppKitWalletModal as kt, LegalDocumentsModalContentsTypes as l, useSendTokenModal as la, EstimationResponse as lc, formatTokenBalance as li, useSmartAccount as ln, SupportedToken as lo, useCurrentCurrency as lr, fetchPrivyStatus as ls, ProfileContent as lt, InlineFeedback as m, TransactionToastProvider as ma, formatGasCost as mc, isZero as mi, useIsSmartAccountDeployed as mn, getErc20BalanceQueryKey as mo, useCallClause as mr, AccountMainContent as ms, CustomizationContent as mt, getConfig as n, NotificationsModalProvider as na, EnrichedLegalDocument as nc, validateIpfsUri as ni, useUpgradeRequiredForAccount as nn, XApp as no, decodeEventLog$1 as nr, buildVetDomainClauses as ns, BridgeContent as nt, DAppKitWalletButton as o, SwapTokenModalProvider as oa, CostLevel as oc, leftPadWithZeros as oi, SmartAccountReturnType as on, getVot3BalanceQueryKey as oo, useIsPWA as or, useEnsRecordExists as os, AssetsContentProps as ot, WalletSwitchFeedback as p, useWalletModal as pa, calculateTotalCost as pc, humanNumber as pi, getIsDeployedQueryKey as pn, UseGetErc20BalanceOptions as po, getCallClauseQueryKeyWithArgs as pr, useFetchAppInfo as ps, AccountCustomizationContentProps as pt, DisconnectConfirmContent as q, useWalletStorage as qa, UpgradeSmartAccountModalProvider as qi, useSyncableLocalStorage as qn, getAvatarQueryKey as qo, XNodeStrengthLevelToName as qr, PrivyWalletProviderContextType as qs, getEventLogs as qt, AccountModalOptions as r, useNotificationsModal as ra, LegalDocumentAgreement as rc, compareAddresses as ri, getUpgradeRequired as rn, useMostVotedAppsInRound as ro, getEventsKey as rr, useClaimVetDomain as rs, ManageCustomTokenContent as rt, LegalDocumentItem as s, useSwapTokenModal as sa, DepositAccount as sc, regexPattern as si, getSmartAccount as sn, useGetVot3Balance as so, useGetNodeUrl as sr, getVechainDomainQueryKey as ss, UpgradeSmartAccountContent as st, AppConfig as t, useFAQModal as ta, useVeChainKitConfig as tc, uploadBlobToIPFS as ti, getUpgradeRequiredForAccountQueryKey as tn, MostVotedAppsInRoundReturnType as to, UseEventsParams as tr, useIsDomainProtected as ts, ChangeCurrencyContentProps as tt, UpgradeSmartAccountModal as u, ChooseNameModalProvider as ua, Rate as uc, getPicassoImage as ui, useRefreshSmartAccountQueries as un, getTokenUsdPrice as uo, useCurrentLanguage as ur, useFetchPrivyStatus as us, ProfileContentProps as ut, TransactionButtonAndStatus as v, AccountModalProvider as va, GasTokenSelection as vc, NON_TRANSFERABLE_TOKEN_SYMBOLS as vi, getAccountVersionQueryKey as vn, useGetCustomTokenInfo as vo, getLocalStorageItem as vr, TransactionModal as vs, ChooseNameSearchContent as vt, AssetButton as w, useSingleImageUpload as wa, CURRENCY_SYMBOLS as wc, VECHAIN_KIT_COOKIES_CONFIG as wi, getCurrentAccountImplementationVersionQueryKey as wn, useCustomTokens as wo, safeQuerySelector as wr, ConnectPopover as ws, SelectTokenContent as wt, ScrollToTopWrapper as x, useConnectModal as xa, ENS_TEXT_RECORDS as xc, TOKEN_LOGOS as xi, getAccountAddressQueryKey as xn, useGetCustomTokenBalances as xo, isBrowser as xr, WalletButton as xs, ChooseNameContentProps as xt, TransactionButtonAndStatusProps as y, useAccountModal as ya, GasTokenType as yc, PrivyEcosystemApp as yi, useGetAccountVersion as yn, TokenWithBalance as yo, getWindowOrigin as yr, TransactionModalProps as ys, ChooseNameSearchContentProps as yt, ActionButton as z, getXAppsSharesQueryKey as za, Wallet as zc, useSignMessage as zi, estimateAndBuildTxBody as zn, useGetAvatarOfAddress as zo, removePrefix as zr, ConnectModal as zs, buildVETClauses as zt };
|
|
4301
|
-
//# sourceMappingURL=index-
|
|
4297
|
+
//# sourceMappingURL=index-DadZUdez.d.cts.map
|