@vechain/vechain-kit 2.2.2 → 2.2.3
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-CWCXsRcP.d.cts → index-BAtr2iQI.d.cts} +141 -143
- package/dist/index-BAtr2iQI.d.cts.map +1 -0
- package/dist/{index-u3CPquCV.d.cts → index-Bs6t5GxR.d.mts} +1 -1
- package/dist/{index-u3CPquCV.d.cts.map → index-Bs6t5GxR.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-w9zDQB56.d.mts → index-DpCZuqUP.d.mts} +95 -97
- package/dist/index-DpCZuqUP.d.mts.map +1 -0
- package/dist/index.cjs +12 -19
- 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 +12 -19
- 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
- package/dist/index-CWCXsRcP.d.cts.map +0 -1
- package/dist/index-w9zDQB56.d.mts.map +0 -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 { Account } from "viem/accounts";
|
|
6
6
|
import * as _vechain_sdk_core0 from "@vechain/sdk-core";
|
|
7
7
|
import { Address, Certificate, CertificateData, Clause, Transaction, TransactionClause } from "@vechain/sdk-core";
|
|
@@ -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
|
|
@@ -407,7 +407,6 @@ interface ThemeTokens {
|
|
|
407
407
|
};
|
|
408
408
|
modal: {
|
|
409
409
|
rounded?: string | number;
|
|
410
|
-
zIndex?: number;
|
|
411
410
|
};
|
|
412
411
|
}
|
|
413
412
|
/**
|
|
@@ -427,7 +426,6 @@ interface VechainKitThemeConfig {
|
|
|
427
426
|
backdropFilter?: string;
|
|
428
427
|
borderRadius?: string;
|
|
429
428
|
rounded?: string | number;
|
|
430
|
-
zIndex?: number;
|
|
431
429
|
};
|
|
432
430
|
buttons?: {
|
|
433
431
|
secondaryButton?: {
|
|
@@ -625,7 +623,7 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
|
|
|
625
623
|
* ```
|
|
626
624
|
*/
|
|
627
625
|
declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
628
|
-
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) =>
|
|
626
|
+
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime1.JSX.Element;
|
|
629
627
|
//#endregion
|
|
630
628
|
//#region src/providers/PrivyWalletProvider.d.ts
|
|
631
629
|
interface PrivyWalletProviderContextType {
|
|
@@ -668,7 +666,7 @@ declare const PrivyWalletProvider: ({
|
|
|
668
666
|
delegatorUrl?: string;
|
|
669
667
|
delegateAllTransactions: boolean;
|
|
670
668
|
genericDelegator?: boolean;
|
|
671
|
-
}) =>
|
|
669
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
672
670
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
673
671
|
//#endregion
|
|
674
672
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
@@ -685,12 +683,12 @@ declare const ColorModeSync: ({
|
|
|
685
683
|
darkMode
|
|
686
684
|
}: {
|
|
687
685
|
darkMode: boolean;
|
|
688
|
-
}) =>
|
|
686
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
689
687
|
declare const VechainKitThemeProvider: ({
|
|
690
688
|
children,
|
|
691
689
|
darkMode,
|
|
692
690
|
theme: customTheme
|
|
693
|
-
}: Props$32) =>
|
|
691
|
+
}: Props$32) => react_jsx_runtime1.JSX.Element;
|
|
694
692
|
//#endregion
|
|
695
693
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
696
694
|
type Props$31 = {
|
|
@@ -706,7 +704,7 @@ type LegalDocumentsContextType = {
|
|
|
706
704
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
707
705
|
declare const LegalDocumentsProvider: ({
|
|
708
706
|
children
|
|
709
|
-
}: Props$31) =>
|
|
707
|
+
}: Props$31) => react_jsx_runtime1.JSX.Element;
|
|
710
708
|
//#endregion
|
|
711
709
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
712
710
|
type Props$30 = {
|
|
@@ -717,7 +715,7 @@ type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
|
|
|
717
715
|
declare const ConnectModal: ({
|
|
718
716
|
isOpen,
|
|
719
717
|
onClose
|
|
720
|
-
}: Props$30) =>
|
|
718
|
+
}: Props$30) => react_jsx_runtime1.JSX.Element;
|
|
721
719
|
//#endregion
|
|
722
720
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
723
721
|
type Props$29 = {
|
|
@@ -727,7 +725,7 @@ type Props$29 = {
|
|
|
727
725
|
declare const MainContent: ({
|
|
728
726
|
setCurrentContent,
|
|
729
727
|
onClose
|
|
730
|
-
}: Props$29) =>
|
|
728
|
+
}: Props$29) => react_jsx_runtime1.JSX.Element;
|
|
731
729
|
//#endregion
|
|
732
730
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
733
731
|
interface ConnectionButtonProps {
|
|
@@ -750,10 +748,10 @@ declare const ConnectionButton: ({
|
|
|
750
748
|
style,
|
|
751
749
|
variant,
|
|
752
750
|
iconWidth
|
|
753
|
-
}: ConnectionButtonProps) =>
|
|
751
|
+
}: ConnectionButtonProps) => react_jsx_runtime1.JSX.Element | null;
|
|
754
752
|
//#endregion
|
|
755
753
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
756
|
-
declare const EmailLoginButton: () =>
|
|
754
|
+
declare const EmailLoginButton: () => react_jsx_runtime1.JSX.Element;
|
|
757
755
|
//#endregion
|
|
758
756
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
759
757
|
type Props$28 = {
|
|
@@ -763,7 +761,7 @@ type Props$28 = {
|
|
|
763
761
|
declare const VeChainLoginButton: ({
|
|
764
762
|
isDark,
|
|
765
763
|
gridColumn
|
|
766
|
-
}: Props$28) =>
|
|
764
|
+
}: Props$28) => react_jsx_runtime1.JSX.Element;
|
|
767
765
|
//#endregion
|
|
768
766
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
769
767
|
type Props$27 = {
|
|
@@ -775,7 +773,7 @@ type Props$27 = {
|
|
|
775
773
|
declare const EcosystemButton: ({
|
|
776
774
|
appsInfo,
|
|
777
775
|
isLoading
|
|
778
|
-
}: Props$27) =>
|
|
776
|
+
}: Props$27) => react_jsx_runtime1.JSX.Element;
|
|
779
777
|
//#endregion
|
|
780
778
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
781
779
|
type Props$26 = {
|
|
@@ -787,7 +785,7 @@ declare const PrivyButton: ({
|
|
|
787
785
|
isDark,
|
|
788
786
|
onViewMoreLogin,
|
|
789
787
|
gridColumn
|
|
790
|
-
}: Props$26) =>
|
|
788
|
+
}: Props$26) => react_jsx_runtime1.JSX.Element;
|
|
791
789
|
//#endregion
|
|
792
790
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
793
791
|
type Props$25 = {
|
|
@@ -797,7 +795,7 @@ type Props$25 = {
|
|
|
797
795
|
declare const LoginWithGoogleButton: ({
|
|
798
796
|
isDark,
|
|
799
797
|
gridColumn
|
|
800
|
-
}: Props$25) =>
|
|
798
|
+
}: Props$25) => react_jsx_runtime1.JSX.Element;
|
|
801
799
|
//#endregion
|
|
802
800
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
803
801
|
type Props$24 = {
|
|
@@ -807,7 +805,7 @@ type Props$24 = {
|
|
|
807
805
|
declare const PasskeyLoginButton: ({
|
|
808
806
|
isDark,
|
|
809
807
|
gridColumn
|
|
810
|
-
}: Props$24) =>
|
|
808
|
+
}: Props$24) => react_jsx_runtime1.JSX.Element;
|
|
811
809
|
//#endregion
|
|
812
810
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
813
811
|
type Props$23 = {
|
|
@@ -817,7 +815,7 @@ type Props$23 = {
|
|
|
817
815
|
declare const DappKitButton: ({
|
|
818
816
|
isDark,
|
|
819
817
|
gridColumn
|
|
820
|
-
}: Props$23) =>
|
|
818
|
+
}: Props$23) => react_jsx_runtime1.JSX.Element;
|
|
821
819
|
//#endregion
|
|
822
820
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
823
821
|
type Props$22 = {
|
|
@@ -827,7 +825,7 @@ type Props$22 = {
|
|
|
827
825
|
declare const VeChainWithPrivyLoginButton: ({
|
|
828
826
|
isDark,
|
|
829
827
|
gridColumn
|
|
830
|
-
}: Props$22) =>
|
|
828
|
+
}: Props$22) => react_jsx_runtime1.JSX.Element;
|
|
831
829
|
//#endregion
|
|
832
830
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
833
831
|
type Props$21 = {
|
|
@@ -837,7 +835,7 @@ type Props$21 = {
|
|
|
837
835
|
declare const LoginWithGithubButton: ({
|
|
838
836
|
isDark,
|
|
839
837
|
gridColumn
|
|
840
|
-
}: Props$21) =>
|
|
838
|
+
}: Props$21) => react_jsx_runtime1.JSX.Element;
|
|
841
839
|
//#endregion
|
|
842
840
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
843
841
|
type ConnectPopoverProps = {
|
|
@@ -847,7 +845,7 @@ type ConnectPopoverProps = {
|
|
|
847
845
|
declare const ConnectPopover: ({
|
|
848
846
|
isLoading,
|
|
849
847
|
buttonStyle
|
|
850
|
-
}: ConnectPopoverProps) =>
|
|
848
|
+
}: ConnectPopoverProps) => react_jsx_runtime1.JSX.Element;
|
|
851
849
|
//#endregion
|
|
852
850
|
//#region src/components/WalletButton/types.d.ts
|
|
853
851
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
@@ -864,10 +862,10 @@ declare const WalletButton: ({
|
|
|
864
862
|
desktopVariant,
|
|
865
863
|
buttonStyle,
|
|
866
864
|
connectionVariant
|
|
867
|
-
}: WalletButtonProps) =>
|
|
865
|
+
}: WalletButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
868
866
|
//#endregion
|
|
869
867
|
//#region src/components/WalletButton/SocialIcons.d.ts
|
|
870
|
-
declare const SocialIcons: () =>
|
|
868
|
+
declare const SocialIcons: () => react_jsx_runtime1.JSX.Element;
|
|
871
869
|
//#endregion
|
|
872
870
|
//#region src/components/TransactionModal/TransactionModal.d.ts
|
|
873
871
|
type TransactionModalProps = {
|
|
@@ -897,7 +895,7 @@ declare const TransactionModal: ({
|
|
|
897
895
|
txReceipt,
|
|
898
896
|
txError,
|
|
899
897
|
onTryAgain
|
|
900
|
-
}: TransactionModalProps) =>
|
|
898
|
+
}: TransactionModalProps) => react_jsx_runtime1.JSX.Element;
|
|
901
899
|
//#endregion
|
|
902
900
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
903
901
|
type Props$20 = {
|
|
@@ -907,7 +905,7 @@ type Props$20 = {
|
|
|
907
905
|
};
|
|
908
906
|
declare const ShareButtons: ({
|
|
909
907
|
descriptionEncoded
|
|
910
|
-
}: Props$20) =>
|
|
908
|
+
}: Props$20) => react_jsx_runtime1.JSX.Element;
|
|
911
909
|
//#endregion
|
|
912
910
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
913
911
|
declare const TransactionModalContent: ({
|
|
@@ -917,7 +915,7 @@ declare const TransactionModalContent: ({
|
|
|
917
915
|
txReceipt,
|
|
918
916
|
txError,
|
|
919
917
|
onClose
|
|
920
|
-
}: Omit<TransactionModalProps, "isOpen">) =>
|
|
918
|
+
}: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime1.JSX.Element;
|
|
921
919
|
//#endregion
|
|
922
920
|
//#region src/components/TransactionToast/TransactionToast.d.ts
|
|
923
921
|
type TransactionToastProps = {
|
|
@@ -937,7 +935,7 @@ declare const TransactionToast: ({
|
|
|
937
935
|
txError,
|
|
938
936
|
onTryAgain,
|
|
939
937
|
description
|
|
940
|
-
}: TransactionToastProps) =>
|
|
938
|
+
}: TransactionToastProps) => react_jsx_runtime1.JSX.Element | null;
|
|
941
939
|
//#endregion
|
|
942
940
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
943
941
|
type Props$19 = {
|
|
@@ -949,7 +947,7 @@ declare const AccountMainContent: ({
|
|
|
949
947
|
setCurrentContent,
|
|
950
948
|
wallet,
|
|
951
949
|
onClose
|
|
952
|
-
}: Props$19) =>
|
|
950
|
+
}: Props$19) => react_jsx_runtime1.JSX.Element;
|
|
953
951
|
//#endregion
|
|
954
952
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
955
953
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
@@ -1771,7 +1769,7 @@ declare const ConnectModalProvider: ({
|
|
|
1771
1769
|
children
|
|
1772
1770
|
}: {
|
|
1773
1771
|
children: ReactNode;
|
|
1774
|
-
}) =>
|
|
1772
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1775
1773
|
//#endregion
|
|
1776
1774
|
//#region src/hooks/modals/useAccountModal.d.ts
|
|
1777
1775
|
declare const useAccountModal: () => {
|
|
@@ -1783,7 +1781,7 @@ declare const AccountModalProvider: ({
|
|
|
1783
1781
|
children
|
|
1784
1782
|
}: {
|
|
1785
1783
|
children: ReactNode;
|
|
1786
|
-
}) =>
|
|
1784
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1787
1785
|
//#endregion
|
|
1788
1786
|
//#region src/hooks/modals/useTransactionModal.d.ts
|
|
1789
1787
|
declare const useTransactionModal: () => {
|
|
@@ -1795,7 +1793,7 @@ declare const TransactionModalProvider: ({
|
|
|
1795
1793
|
children
|
|
1796
1794
|
}: {
|
|
1797
1795
|
children: ReactNode;
|
|
1798
|
-
}) =>
|
|
1796
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1799
1797
|
//#endregion
|
|
1800
1798
|
//#region src/hooks/modals/useTransactionToast.d.ts
|
|
1801
1799
|
declare const useTransactionToast: () => {
|
|
@@ -1807,7 +1805,7 @@ declare const TransactionToastProvider: ({
|
|
|
1807
1805
|
children
|
|
1808
1806
|
}: {
|
|
1809
1807
|
children: ReactNode;
|
|
1810
|
-
}) =>
|
|
1808
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1811
1809
|
//#endregion
|
|
1812
1810
|
//#region src/hooks/modals/useWalletModal.d.ts
|
|
1813
1811
|
declare const useWalletModal: () => {
|
|
@@ -1819,7 +1817,7 @@ declare const WalletModalProvider: ({
|
|
|
1819
1817
|
children
|
|
1820
1818
|
}: {
|
|
1821
1819
|
children: ReactNode;
|
|
1822
|
-
}) =>
|
|
1820
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1823
1821
|
//#endregion
|
|
1824
1822
|
//#region src/hooks/modals/useChooseNameModal.d.ts
|
|
1825
1823
|
declare const useChooseNameModal: () => {
|
|
@@ -1831,7 +1829,7 @@ declare const ChooseNameModalProvider: ({
|
|
|
1831
1829
|
children
|
|
1832
1830
|
}: {
|
|
1833
1831
|
children: ReactNode;
|
|
1834
|
-
}) =>
|
|
1832
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1835
1833
|
//#endregion
|
|
1836
1834
|
//#region src/hooks/modals/useSendTokenModal.d.ts
|
|
1837
1835
|
declare const useSendTokenModal: () => {
|
|
@@ -1843,7 +1841,7 @@ declare const SendTokenModalProvider: ({
|
|
|
1843
1841
|
children
|
|
1844
1842
|
}: {
|
|
1845
1843
|
children: ReactNode;
|
|
1846
|
-
}) =>
|
|
1844
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1847
1845
|
//#endregion
|
|
1848
1846
|
//#region src/hooks/modals/useSwapTokenModal.d.ts
|
|
1849
1847
|
type SwapTokenModalOptions = {
|
|
@@ -1860,7 +1858,7 @@ declare const SwapTokenModalProvider: ({
|
|
|
1860
1858
|
children
|
|
1861
1859
|
}: {
|
|
1862
1860
|
children: ReactNode;
|
|
1863
|
-
}) =>
|
|
1861
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1864
1862
|
//#endregion
|
|
1865
1863
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
1866
1864
|
declare const useExploreEcosystemModal: () => {
|
|
@@ -1872,7 +1870,7 @@ declare const ExploreEcosystemModalProvider: ({
|
|
|
1872
1870
|
children
|
|
1873
1871
|
}: {
|
|
1874
1872
|
children: ReactNode;
|
|
1875
|
-
}) =>
|
|
1873
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1876
1874
|
//#endregion
|
|
1877
1875
|
//#region src/hooks/modals/useNotificationsModal.d.ts
|
|
1878
1876
|
declare const useNotificationsModal: () => {
|
|
@@ -1884,7 +1882,7 @@ declare const NotificationsModalProvider: ({
|
|
|
1884
1882
|
children
|
|
1885
1883
|
}: {
|
|
1886
1884
|
children: ReactNode;
|
|
1887
|
-
}) =>
|
|
1885
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1888
1886
|
//#endregion
|
|
1889
1887
|
//#region src/hooks/modals/useFAQModal.d.ts
|
|
1890
1888
|
declare const useFAQModal: () => {
|
|
@@ -1896,7 +1894,7 @@ declare const FAQModalProvider: ({
|
|
|
1896
1894
|
children
|
|
1897
1895
|
}: {
|
|
1898
1896
|
children: ReactNode;
|
|
1899
|
-
}) =>
|
|
1897
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1900
1898
|
//#endregion
|
|
1901
1899
|
//#region src/hooks/modals/useAccountCustomizationModal.d.ts
|
|
1902
1900
|
declare const useAccountCustomizationModal: () => {
|
|
@@ -1908,7 +1906,7 @@ declare const AccountCustomizationModalProvider: ({
|
|
|
1908
1906
|
children
|
|
1909
1907
|
}: {
|
|
1910
1908
|
children: ReactNode;
|
|
1911
|
-
}) =>
|
|
1909
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1912
1910
|
//#endregion
|
|
1913
1911
|
//#region src/hooks/modals/useReceiveModal.d.ts
|
|
1914
1912
|
declare const useReceiveModal: () => {
|
|
@@ -1920,7 +1918,7 @@ declare const ReceiveModalProvider: ({
|
|
|
1920
1918
|
children
|
|
1921
1919
|
}: {
|
|
1922
1920
|
children: ReactNode;
|
|
1923
|
-
}) =>
|
|
1921
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1924
1922
|
//#endregion
|
|
1925
1923
|
//#region src/hooks/modals/useLoginModalContent.d.ts
|
|
1926
1924
|
type LoginModalContentConfig = {
|
|
@@ -1946,7 +1944,7 @@ declare const UpgradeSmartAccountModalProvider: ({
|
|
|
1946
1944
|
children
|
|
1947
1945
|
}: {
|
|
1948
1946
|
children: ReactNode;
|
|
1949
|
-
}) =>
|
|
1947
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1950
1948
|
//#endregion
|
|
1951
1949
|
//#region src/hooks/modals/useProfileModal.d.ts
|
|
1952
1950
|
declare const useProfileModal: () => {
|
|
@@ -1958,7 +1956,7 @@ declare const ProfileModalProvider: ({
|
|
|
1958
1956
|
children
|
|
1959
1957
|
}: {
|
|
1960
1958
|
children: ReactNode;
|
|
1961
|
-
}) =>
|
|
1959
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1962
1960
|
//#endregion
|
|
1963
1961
|
//#region src/hooks/modals/useAccountModalOptions.d.ts
|
|
1964
1962
|
declare const useAccountModalOptions: () => {
|
|
@@ -3186,7 +3184,7 @@ declare const SendTokenContent: ({
|
|
|
3186
3184
|
initialAmount,
|
|
3187
3185
|
initialToAddressOrDomain,
|
|
3188
3186
|
onBack: parentOnBack
|
|
3189
|
-
}: SendTokenContentProps) =>
|
|
3187
|
+
}: SendTokenContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3190
3188
|
//#endregion
|
|
3191
3189
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
|
|
3192
3190
|
type SendTokenSummaryContentProps = {
|
|
@@ -3206,7 +3204,7 @@ declare const SendTokenSummaryContent: ({
|
|
|
3206
3204
|
amount,
|
|
3207
3205
|
selectedToken,
|
|
3208
3206
|
formattedTotalAmount
|
|
3209
|
-
}: SendTokenSummaryContentProps) =>
|
|
3207
|
+
}: SendTokenSummaryContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3210
3208
|
//#endregion
|
|
3211
3209
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
3212
3210
|
type Props$16 = {
|
|
@@ -3222,7 +3220,7 @@ declare const SelectTokenContent: ({
|
|
|
3222
3220
|
onSelectToken,
|
|
3223
3221
|
onBack,
|
|
3224
3222
|
showAllTokens
|
|
3225
|
-
}: Props$16) =>
|
|
3223
|
+
}: Props$16) => react_jsx_runtime1.JSX.Element;
|
|
3226
3224
|
//#endregion
|
|
3227
3225
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
3228
3226
|
type Props$15 = {
|
|
@@ -3230,7 +3228,7 @@ type Props$15 = {
|
|
|
3230
3228
|
};
|
|
3231
3229
|
declare const ReceiveTokenContent: ({
|
|
3232
3230
|
setCurrentContent
|
|
3233
|
-
}: Props$15) =>
|
|
3231
|
+
}: Props$15) => react_jsx_runtime1.JSX.Element;
|
|
3234
3232
|
//#endregion
|
|
3235
3233
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
3236
3234
|
type Props$14 = {
|
|
@@ -3242,7 +3240,7 @@ declare const SwapTokenContent: ({
|
|
|
3242
3240
|
setCurrentContent,
|
|
3243
3241
|
fromTokenAddress,
|
|
3244
3242
|
toTokenAddress
|
|
3245
|
-
}: Props$14) =>
|
|
3243
|
+
}: Props$14) => react_jsx_runtime1.JSX.Element;
|
|
3246
3244
|
//#endregion
|
|
3247
3245
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
3248
3246
|
type ChooseNameContentProps = {
|
|
@@ -3254,7 +3252,7 @@ declare const ChooseNameContent: ({
|
|
|
3254
3252
|
setCurrentContent,
|
|
3255
3253
|
onBack,
|
|
3256
3254
|
initialContentSource
|
|
3257
|
-
}: ChooseNameContentProps) =>
|
|
3255
|
+
}: ChooseNameContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3258
3256
|
//#endregion
|
|
3259
3257
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
|
|
3260
3258
|
type ChooseNameSearchContentProps = {
|
|
@@ -3266,7 +3264,7 @@ declare const ChooseNameSearchContent: ({
|
|
|
3266
3264
|
name: initialName,
|
|
3267
3265
|
setCurrentContent,
|
|
3268
3266
|
initialContentSource
|
|
3269
|
-
}: ChooseNameSearchContentProps) =>
|
|
3267
|
+
}: ChooseNameSearchContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3270
3268
|
//#endregion
|
|
3271
3269
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
|
|
3272
3270
|
type ChooseNameSummaryContentProps = {
|
|
@@ -3284,7 +3282,7 @@ declare const ChooseNameSummaryContent: ({
|
|
|
3284
3282
|
isOwnDomain,
|
|
3285
3283
|
isUnsetting,
|
|
3286
3284
|
initialContentSource
|
|
3287
|
-
}: ChooseNameSummaryContentProps) =>
|
|
3285
|
+
}: ChooseNameSummaryContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3288
3286
|
//#endregion
|
|
3289
3287
|
//#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
|
|
3290
3288
|
type FAQContentProps = {
|
|
@@ -3294,7 +3292,7 @@ type FAQContentProps = {
|
|
|
3294
3292
|
declare const FAQContent: ({
|
|
3295
3293
|
onGoBack,
|
|
3296
3294
|
showLanguageSelector
|
|
3297
|
-
}: FAQContentProps) =>
|
|
3295
|
+
}: FAQContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3298
3296
|
//#endregion
|
|
3299
3297
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
|
|
3300
3298
|
type AccountCustomizationContentProps = {
|
|
@@ -3304,7 +3302,7 @@ type AccountCustomizationContentProps = {
|
|
|
3304
3302
|
declare const CustomizationContent: ({
|
|
3305
3303
|
setCurrentContent,
|
|
3306
3304
|
initialContentSource
|
|
3307
|
-
}: AccountCustomizationContentProps) =>
|
|
3305
|
+
}: AccountCustomizationContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3308
3306
|
//#endregion
|
|
3309
3307
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
|
|
3310
3308
|
type CustomizationSummaryContentProps = {
|
|
@@ -3323,7 +3321,7 @@ declare const CustomizationSummaryContent: ({
|
|
|
3323
3321
|
setCurrentContent,
|
|
3324
3322
|
changes,
|
|
3325
3323
|
onDoneRedirectContent
|
|
3326
|
-
}: CustomizationSummaryContentProps) =>
|
|
3324
|
+
}: CustomizationSummaryContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3327
3325
|
//#endregion
|
|
3328
3326
|
//#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
|
|
3329
3327
|
type ProfileContentProps = {
|
|
@@ -3333,7 +3331,7 @@ type ProfileContentProps = {
|
|
|
3333
3331
|
declare const ProfileContent: ({
|
|
3334
3332
|
setCurrentContent,
|
|
3335
3333
|
onLogoutSuccess
|
|
3336
|
-
}: ProfileContentProps) =>
|
|
3334
|
+
}: ProfileContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3337
3335
|
//#endregion
|
|
3338
3336
|
//#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
|
|
3339
3337
|
type UpgradeSmartAccountContentProps = {
|
|
@@ -3345,7 +3343,7 @@ declare const UpgradeSmartAccountContent: ({
|
|
|
3345
3343
|
setCurrentContent,
|
|
3346
3344
|
handleClose,
|
|
3347
3345
|
initialContent
|
|
3348
|
-
}: UpgradeSmartAccountContentProps) =>
|
|
3346
|
+
}: UpgradeSmartAccountContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3349
3347
|
//#endregion
|
|
3350
3348
|
//#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
|
|
3351
3349
|
type AssetsContentProps = {
|
|
@@ -3353,7 +3351,7 @@ type AssetsContentProps = {
|
|
|
3353
3351
|
};
|
|
3354
3352
|
declare const AssetsContent: ({
|
|
3355
3353
|
setCurrentContent
|
|
3356
|
-
}: AssetsContentProps) =>
|
|
3354
|
+
}: AssetsContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3357
3355
|
//#endregion
|
|
3358
3356
|
//#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
|
|
3359
3357
|
type ManageCustomTokenContentProps = {
|
|
@@ -3361,7 +3359,7 @@ type ManageCustomTokenContentProps = {
|
|
|
3361
3359
|
};
|
|
3362
3360
|
declare const ManageCustomTokenContent: ({
|
|
3363
3361
|
setCurrentContent
|
|
3364
|
-
}: ManageCustomTokenContentProps) =>
|
|
3362
|
+
}: ManageCustomTokenContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3365
3363
|
//#endregion
|
|
3366
3364
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
3367
3365
|
type Props$13 = {
|
|
@@ -3369,7 +3367,7 @@ type Props$13 = {
|
|
|
3369
3367
|
};
|
|
3370
3368
|
declare const BridgeContent: ({
|
|
3371
3369
|
setCurrentContent
|
|
3372
|
-
}: Props$13) =>
|
|
3370
|
+
}: Props$13) => react_jsx_runtime1.JSX.Element;
|
|
3373
3371
|
//#endregion
|
|
3374
3372
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
3375
3373
|
type ChangeCurrencyContentProps = {
|
|
@@ -3377,7 +3375,7 @@ type ChangeCurrencyContentProps = {
|
|
|
3377
3375
|
};
|
|
3378
3376
|
declare const ChangeCurrencyContent: ({
|
|
3379
3377
|
setCurrentContent
|
|
3380
|
-
}: ChangeCurrencyContentProps) =>
|
|
3378
|
+
}: ChangeCurrencyContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3381
3379
|
//#endregion
|
|
3382
3380
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
3383
3381
|
type Props$12 = {
|
|
@@ -3385,7 +3383,7 @@ type Props$12 = {
|
|
|
3385
3383
|
};
|
|
3386
3384
|
declare const LanguageSettingsContent: ({
|
|
3387
3385
|
setCurrentContent
|
|
3388
|
-
}: Props$12) =>
|
|
3386
|
+
}: Props$12) => react_jsx_runtime1.JSX.Element;
|
|
3389
3387
|
//#endregion
|
|
3390
3388
|
//#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
|
|
3391
3389
|
type Props$11 = {
|
|
@@ -3393,7 +3391,7 @@ type Props$11 = {
|
|
|
3393
3391
|
};
|
|
3394
3392
|
declare const GasTokenSettingsContent: ({
|
|
3395
3393
|
setCurrentContent
|
|
3396
|
-
}: Props$11) =>
|
|
3394
|
+
}: Props$11) => react_jsx_runtime1.JSX.Element;
|
|
3397
3395
|
//#endregion
|
|
3398
3396
|
//#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
|
|
3399
3397
|
type SettingsContentProps = {
|
|
@@ -3403,7 +3401,7 @@ type SettingsContentProps = {
|
|
|
3403
3401
|
declare const SettingsContent: ({
|
|
3404
3402
|
setCurrentContent,
|
|
3405
3403
|
onLogoutSuccess
|
|
3406
|
-
}: SettingsContentProps) =>
|
|
3404
|
+
}: SettingsContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3407
3405
|
//#endregion
|
|
3408
3406
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
3409
3407
|
type TermsAndPrivacyContentProps = {
|
|
@@ -3411,7 +3409,7 @@ type TermsAndPrivacyContentProps = {
|
|
|
3411
3409
|
};
|
|
3412
3410
|
declare const TermsAndPrivacyContent: ({
|
|
3413
3411
|
onGoBack
|
|
3414
|
-
}: TermsAndPrivacyContentProps) =>
|
|
3412
|
+
}: TermsAndPrivacyContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3415
3413
|
//#endregion
|
|
3416
3414
|
//#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
|
|
3417
3415
|
type DisconnectConfirmContentProps = {
|
|
@@ -3427,7 +3425,7 @@ declare const DisconnectConfirmContent: ({
|
|
|
3427
3425
|
onClose,
|
|
3428
3426
|
showCloseButton,
|
|
3429
3427
|
text
|
|
3430
|
-
}: DisconnectConfirmContentProps) =>
|
|
3428
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3431
3429
|
//#endregion
|
|
3432
3430
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
3433
3431
|
type CategoryFilter = string | null;
|
|
@@ -3531,7 +3529,7 @@ declare const AccountModal: ({
|
|
|
3531
3529
|
isOpen,
|
|
3532
3530
|
onClose,
|
|
3533
3531
|
initialContent
|
|
3534
|
-
}: Props$10) =>
|
|
3532
|
+
}: Props$10) => react_jsx_runtime1.JSX.Element;
|
|
3535
3533
|
//#endregion
|
|
3536
3534
|
//#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
|
|
3537
3535
|
interface AccountDetailsButtonProps {
|
|
@@ -3553,7 +3551,7 @@ declare const AccountDetailsButton: ({
|
|
|
3553
3551
|
onClick,
|
|
3554
3552
|
leftImage,
|
|
3555
3553
|
isActive
|
|
3556
|
-
}: AccountDetailsButtonProps) =>
|
|
3554
|
+
}: AccountDetailsButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3557
3555
|
//#endregion
|
|
3558
3556
|
//#region src/components/AccountModal/Components/ActionButton.d.ts
|
|
3559
3557
|
type ActionButtonProps = {
|
|
@@ -3595,7 +3593,7 @@ declare const ActionButton: ({
|
|
|
3595
3593
|
extraContent,
|
|
3596
3594
|
dataTestId,
|
|
3597
3595
|
variant
|
|
3598
|
-
}: ActionButtonProps) =>
|
|
3596
|
+
}: ActionButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3599
3597
|
//#endregion
|
|
3600
3598
|
//#region src/components/AccountModal/Components/AccountSelector.d.ts
|
|
3601
3599
|
type Props$9 = {
|
|
@@ -3615,7 +3613,7 @@ declare const AccountSelector: ({
|
|
|
3615
3613
|
onClose,
|
|
3616
3614
|
mt,
|
|
3617
3615
|
style
|
|
3618
|
-
}: Props$9) =>
|
|
3616
|
+
}: Props$9) => react_jsx_runtime1.JSX.Element;
|
|
3619
3617
|
//#endregion
|
|
3620
3618
|
//#region src/components/AccountModal/Components/BalanceSection.d.ts
|
|
3621
3619
|
declare const BalanceSection: ({
|
|
@@ -3626,7 +3624,7 @@ declare const BalanceSection: ({
|
|
|
3626
3624
|
mb?: number;
|
|
3627
3625
|
mt?: number;
|
|
3628
3626
|
onAssetsClick?: () => void;
|
|
3629
|
-
}) =>
|
|
3627
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
3630
3628
|
//#endregion
|
|
3631
3629
|
//#region src/components/AccountModal/Components/QuickActionsSection.d.ts
|
|
3632
3630
|
type Props$8 = {
|
|
@@ -3636,7 +3634,7 @@ type Props$8 = {
|
|
|
3636
3634
|
declare const QuickActionsSection: ({
|
|
3637
3635
|
mt,
|
|
3638
3636
|
setCurrentContent
|
|
3639
|
-
}: Props$8) =>
|
|
3637
|
+
}: Props$8) => react_jsx_runtime1.JSX.Element;
|
|
3640
3638
|
//#endregion
|
|
3641
3639
|
//#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
|
|
3642
3640
|
type FeatureAnnouncementCardProps = {
|
|
@@ -3644,16 +3642,16 @@ type FeatureAnnouncementCardProps = {
|
|
|
3644
3642
|
};
|
|
3645
3643
|
declare const FeatureAnnouncementCard: ({
|
|
3646
3644
|
setCurrentContent
|
|
3647
|
-
}: FeatureAnnouncementCardProps) =>
|
|
3645
|
+
}: FeatureAnnouncementCardProps) => react_jsx_runtime1.JSX.Element | null;
|
|
3648
3646
|
//#endregion
|
|
3649
3647
|
//#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
|
|
3650
|
-
declare const ExchangeWarningAlert: () =>
|
|
3648
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime1.JSX.Element;
|
|
3651
3649
|
//#endregion
|
|
3652
3650
|
//#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
|
|
3653
|
-
declare const DomainRequiredAlert: () =>
|
|
3651
|
+
declare const DomainRequiredAlert: () => react_jsx_runtime1.JSX.Element;
|
|
3654
3652
|
//#endregion
|
|
3655
3653
|
//#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
|
|
3656
|
-
declare const CrossAppConnectionSecurityCard: () =>
|
|
3654
|
+
declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime1.JSX.Element;
|
|
3657
3655
|
//#endregion
|
|
3658
3656
|
//#region src/components/common/ModalBackButton.d.ts
|
|
3659
3657
|
type BackButtonProps = {
|
|
@@ -3662,7 +3660,7 @@ type BackButtonProps = {
|
|
|
3662
3660
|
declare const ModalBackButton: ({
|
|
3663
3661
|
onClick,
|
|
3664
3662
|
...props
|
|
3665
|
-
}: BackButtonProps) =>
|
|
3663
|
+
}: BackButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3666
3664
|
//#endregion
|
|
3667
3665
|
//#region src/components/common/AddressDisplay.d.ts
|
|
3668
3666
|
type Props$7 = {
|
|
@@ -3676,13 +3674,13 @@ declare const AddressDisplay: ({
|
|
|
3676
3674
|
label,
|
|
3677
3675
|
style,
|
|
3678
3676
|
showHumanAddress
|
|
3679
|
-
}: Props$7) =>
|
|
3677
|
+
}: Props$7) => react_jsx_runtime1.JSX.Element;
|
|
3680
3678
|
//#endregion
|
|
3681
3679
|
//#region src/components/common/VersionFooter.d.ts
|
|
3682
3680
|
type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
3683
3681
|
declare const VersionFooter: ({
|
|
3684
3682
|
...props
|
|
3685
|
-
}: Props$6) =>
|
|
3683
|
+
}: Props$6) => react_jsx_runtime1.JSX.Element;
|
|
3686
3684
|
//#endregion
|
|
3687
3685
|
//#region src/components/common/StickyHeaderContainer.d.ts
|
|
3688
3686
|
type Props$5 = {
|
|
@@ -3690,7 +3688,7 @@ type Props$5 = {
|
|
|
3690
3688
|
};
|
|
3691
3689
|
declare const StickyHeaderContainer: ({
|
|
3692
3690
|
children
|
|
3693
|
-
}: Props$5) =>
|
|
3691
|
+
}: Props$5) => react_jsx_runtime1.JSX.Element;
|
|
3694
3692
|
//#endregion
|
|
3695
3693
|
//#region src/components/common/StickyFooterContainer.d.ts
|
|
3696
3694
|
type Props$4 = {
|
|
@@ -3698,7 +3696,7 @@ type Props$4 = {
|
|
|
3698
3696
|
};
|
|
3699
3697
|
declare const StickyFooterContainer: ({
|
|
3700
3698
|
children
|
|
3701
|
-
}: Props$4) =>
|
|
3699
|
+
}: Props$4) => react_jsx_runtime1.JSX.Element;
|
|
3702
3700
|
//#endregion
|
|
3703
3701
|
//#region src/components/common/BaseModal.d.ts
|
|
3704
3702
|
type BaseModalProps = {
|
|
@@ -3729,7 +3727,7 @@ declare const BaseModal: ({
|
|
|
3729
3727
|
allowExternalFocus,
|
|
3730
3728
|
backdropFilter,
|
|
3731
3729
|
isCloseable
|
|
3732
|
-
}: BaseModalProps) =>
|
|
3730
|
+
}: BaseModalProps) => react_jsx_runtime1.JSX.Element;
|
|
3733
3731
|
//#endregion
|
|
3734
3732
|
//#region src/components/common/AssetButton.d.ts
|
|
3735
3733
|
type AssetButtonProps = ButtonProps & {
|
|
@@ -3748,7 +3746,7 @@ declare const AssetButton: ({
|
|
|
3748
3746
|
isDisabled,
|
|
3749
3747
|
onClick,
|
|
3750
3748
|
...buttonProps
|
|
3751
|
-
}: AssetButtonProps) =>
|
|
3749
|
+
}: AssetButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3752
3750
|
//#endregion
|
|
3753
3751
|
//#region src/components/common/AddressDisplayCard.d.ts
|
|
3754
3752
|
type AddressDisplayCardProps = {
|
|
@@ -3770,7 +3768,7 @@ declare const AddressDisplayCard: ({
|
|
|
3770
3768
|
hideAddress,
|
|
3771
3769
|
balance,
|
|
3772
3770
|
tokenAddress
|
|
3773
|
-
}: AddressDisplayCardProps) =>
|
|
3771
|
+
}: AddressDisplayCardProps) => react_jsx_runtime1.JSX.Element;
|
|
3774
3772
|
//#endregion
|
|
3775
3773
|
//#region src/components/common/ModalFAQButton.d.ts
|
|
3776
3774
|
type FAQButtonProps = {
|
|
@@ -3779,13 +3777,13 @@ type FAQButtonProps = {
|
|
|
3779
3777
|
declare const ModalFAQButton: ({
|
|
3780
3778
|
onClick,
|
|
3781
3779
|
...props
|
|
3782
|
-
}: FAQButtonProps) =>
|
|
3780
|
+
}: FAQButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3783
3781
|
//#endregion
|
|
3784
3782
|
//#region src/components/common/ScrollToTopWrapper.d.ts
|
|
3785
3783
|
declare const ScrollToTopWrapper: ({
|
|
3786
3784
|
children,
|
|
3787
3785
|
...props
|
|
3788
|
-
}: StackProps) =>
|
|
3786
|
+
}: StackProps) => react_jsx_runtime1.JSX.Element;
|
|
3789
3787
|
//#endregion
|
|
3790
3788
|
//#region src/components/common/AccountAvatar.d.ts
|
|
3791
3789
|
type AccountAvatarProps = {
|
|
@@ -3795,7 +3793,7 @@ type AccountAvatarProps = {
|
|
|
3795
3793
|
declare const AccountAvatar: ({
|
|
3796
3794
|
wallet,
|
|
3797
3795
|
props
|
|
3798
|
-
}: AccountAvatarProps) =>
|
|
3796
|
+
}: AccountAvatarProps) => react_jsx_runtime1.JSX.Element;
|
|
3799
3797
|
//#endregion
|
|
3800
3798
|
//#region src/components/common/TransactionButtonAndStatus.d.ts
|
|
3801
3799
|
type TransactionButtonAndStatusProps = {
|
|
@@ -3837,7 +3835,7 @@ declare const TransactionButtonAndStatus: ({
|
|
|
3837
3835
|
isLoadingGasEstimation,
|
|
3838
3836
|
showGasEstimationError,
|
|
3839
3837
|
context
|
|
3840
|
-
}: TransactionButtonAndStatusProps) =>
|
|
3838
|
+
}: TransactionButtonAndStatusProps) => react_jsx_runtime1.JSX.Element;
|
|
3841
3839
|
//#endregion
|
|
3842
3840
|
//#region src/components/common/ModalNotificationButton.d.ts
|
|
3843
3841
|
type NotificationButtonProps = {
|
|
@@ -3848,7 +3846,7 @@ declare const ModalNotificationButton: ({
|
|
|
3848
3846
|
onClick,
|
|
3849
3847
|
hasUnreadNotifications,
|
|
3850
3848
|
...props
|
|
3851
|
-
}: NotificationButtonProps) =>
|
|
3849
|
+
}: NotificationButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3852
3850
|
//#endregion
|
|
3853
3851
|
//#region src/components/common/GasFeeSummary.d.ts
|
|
3854
3852
|
interface GasFeeSummaryProps {
|
|
@@ -3884,7 +3882,7 @@ declare const GasFeeTokenSelector: ({
|
|
|
3884
3882
|
availableTokens,
|
|
3885
3883
|
tokenEstimations,
|
|
3886
3884
|
walletAddress
|
|
3887
|
-
}: GasFeeTokenSelectorProps) =>
|
|
3885
|
+
}: GasFeeTokenSelectorProps) => react_jsx_runtime1.JSX.Element;
|
|
3888
3886
|
//#endregion
|
|
3889
3887
|
//#region src/components/LoginLoadingModal/LoginLoadingModal.d.ts
|
|
3890
3888
|
type LoginLoadingModalProps = {
|
|
@@ -3902,7 +3900,7 @@ declare const LoginLoadingModal: ({
|
|
|
3902
3900
|
title,
|
|
3903
3901
|
loadingText,
|
|
3904
3902
|
onTryAgain
|
|
3905
|
-
}: LoginLoadingModalProps) =>
|
|
3903
|
+
}: LoginLoadingModalProps) => react_jsx_runtime1.JSX.Element;
|
|
3906
3904
|
//#endregion
|
|
3907
3905
|
//#region src/components/EcosystemModal/EcosystemModal.d.ts
|
|
3908
3906
|
type Props$3 = {
|
|
@@ -3916,7 +3914,7 @@ declare const EcosystemModal: ({
|
|
|
3916
3914
|
onClose,
|
|
3917
3915
|
appsInfo,
|
|
3918
3916
|
isLoading
|
|
3919
|
-
}: Props$3) =>
|
|
3917
|
+
}: Props$3) => react_jsx_runtime1.JSX.Element;
|
|
3920
3918
|
//#endregion
|
|
3921
3919
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
3922
3920
|
type SuccessfulOperationContentProps = {
|
|
@@ -3946,7 +3944,7 @@ declare const UpgradeSmartAccountModal: ({
|
|
|
3946
3944
|
isOpen,
|
|
3947
3945
|
onClose,
|
|
3948
3946
|
style
|
|
3949
|
-
}: Props$2) =>
|
|
3947
|
+
}: Props$2) => react_jsx_runtime1.JSX.Element;
|
|
3950
3948
|
//#endregion
|
|
3951
3949
|
//#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
|
|
3952
3950
|
type Props$1 = {
|
|
@@ -3961,7 +3959,7 @@ declare const LegalDocumentsModal: ({
|
|
|
3961
3959
|
onAgree,
|
|
3962
3960
|
handleLogout,
|
|
3963
3961
|
onlyOptionalDocuments
|
|
3964
|
-
}: Props$1) =>
|
|
3962
|
+
}: Props$1) => react_jsx_runtime1.JSX.Element;
|
|
3965
3963
|
//#endregion
|
|
3966
3964
|
//#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
|
|
3967
3965
|
type Props = {
|
|
@@ -3973,7 +3971,7 @@ declare const LegalDocumentItem: ({
|
|
|
3973
3971
|
document,
|
|
3974
3972
|
register,
|
|
3975
3973
|
isText
|
|
3976
|
-
}: Props) =>
|
|
3974
|
+
}: Props) => react_jsx_runtime1.JSX.Element;
|
|
3977
3975
|
//#endregion
|
|
3978
3976
|
//#region src/providers/ModalProvider.d.ts
|
|
3979
3977
|
type AccountModalOptions = {
|
|
@@ -4004,7 +4002,7 @@ declare const ModalProvider: ({
|
|
|
4004
4002
|
children
|
|
4005
4003
|
}: {
|
|
4006
4004
|
children: ReactNode;
|
|
4007
|
-
}) =>
|
|
4005
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
4008
4006
|
//#endregion
|
|
4009
4007
|
//#region src/config/index.d.ts
|
|
4010
4008
|
type AppConfig = {
|
|
@@ -4050,4 +4048,4 @@ type AppConfig = {
|
|
|
4050
4048
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4051
4049
|
//#endregion
|
|
4052
4050
|
export { ManageCustomTokenContentProps as $, getErc20BalanceQueryKey as $a, useSendTokenModal as $i, useScrollToTop as $n, AccountMainContent as $o, leftPadWithZeros as $r, GasTokenPreferences as $s, useUpgradeRequired as $t, ModalBackButton as A, useXAppsShares as Aa, useSignTypedData as Ai, useGasTokenSelection as An, getTextRecordsQueryKey as Ao, isInvalid as Ar, usePrivyWalletProvider as As, useTxReceipt as At, AccountModal as B, useRefreshBalances as Ba, ReceiveModalProvider as Bi, useEcosystemShortcuts as Bn, useIsDomainProtected as Bo, XNodeStrengthLevelToName as Br, LegalDocumentSource as Bs, getAllEventLogs as Bt, AddressDisplayCard as C, getIpfsImageQueryKey as Ca, AppHubApp as Ci, getAccountBalance as Cn, getAvatarOfAddressQueryKey as Co, ViewFunctionResult as Cr, LegalDocumentsProvider as Cs, useDAppKitWallet as Ct, StickyHeaderContainer as D, getIpfsMetadataQueryKey as Da, useLoginWithVeChain as Di, useEstimateAllTokens as Dn, buildClauses as Do, isValidUrl as Dr, useVechainKitThemeConfig as Ds, useSetWalletRecovery as Dt, StickyFooterContainer as E, getIpfsMetadata as Ea, useAppHubApps as Ei, UseEstimateAllTokensParams as En, useGetResolverAddress as Eo, executeMultipleClausesCall as Er, VechainKitThemeProvider as Es, usePrivy$1 as Et, QuickActionsSection as F, UseWalletReturnType as Fa, ProfileModalProvider as Fi, getDepositAccount as Fn, DomainsResponse as Fo, isRejectionError as Fr, VeChainKitProvider as Fs, buildERC20Clauses as Ft, SettingsContent as G, useIsPerson as Ga, useFAQModal as Gi, buildBatchAuthorizationTypedData as Gn, useEnsRecordExists as Go, convertUriToUrl as Gr, EstimationResponse as Gs, currentBlockQueryKey as Gt, DisconnectConfirmContent as H, XApp as Ha, AccountCustomizationModalProvider as Hi, LocalStorageKey as Hn, useClaimVetDomain as Ho, buildQueryString as Hr, CostLevel as Hs, getChainId as Ht, BalanceSection as I, useWallet$1 as Ia, useProfileModal as Ii, signVip191Transaction as In, getDomainsOfAddress as Io, TIME as Ir, VechainKitProviderProps as Is, useTransferERC20 as It, LanguageSettingsContent as J, PRICE_FEED_IDS as Ja, ExploreEcosystemModalProvider as Ji, GetEventsKeyParams as Jn, fetchPrivyStatus as Jo, uploadBlobToIPFS as Jr, VthoPerGasAtSpeed as Js, getUpgradeRequiredForAccount as Jt, SettingsContentProps as K, getVot3BalanceQueryKey as Ka, NotificationsModalProvider as Ki, buildSingleAuthorizationTypedData as Kn, getVechainDomainQueryKey as Ko, resolveMediaTypeFromMimeType as Kr, Rate as Ks, useCurrentBlock as Kt, AccountSelector as L, getRoundXAppsQueryKey as La, UpgradeSmartAccountModalProvider as Li, useGenericDelegator as Ln, getDomainsOfAddressQueryKey as Lo, EconomicNodeStrengthLevelToName as Lr, useVeChainKitConfig as Ls, UseSendTransactionReturnValue as Lt, DomainRequiredAlert as M, getXAppMetadata as Ma, useNotificationAlerts as Mi, delegateAuthorized as Mn, getAvatarQueryKey as Mo, normalize as Mr, LegalDocumentOptions as Ms, useBuildTransaction as Mt, ExchangeWarningAlert as N, useXAppMetadata as Na, useNotifications as Ni, estimateAndBuildTxBody as Nn, useGetAvatar as No, removePrefix as Nr, VeChainKitConfig as Ns, buildVETClauses as Nt, VersionFooter as O, useIpfsMetadata as Oa, useLoginWithOAuth$1 as Oi, useGenericDelegatorFeeEstimation as On, useUpdateTextRecord as Oo, addPrefix as Or, PrivyWalletProvider as Os, useThor$1 as Ot, FeatureAnnouncementCard as P, useWalletMetadata as Pa, useAccountModalOptions as Pi, estimateGas as Pn, Domain as Po, validate as Pr, VeChainKitContext as Ps, useTransferVET as Pt, ManageCustomTokenContent as Q, useGetTokenUsdPrice as Qa, SendTokenModalProvider as Qi, useEvents as Qn, useFetchAppInfo as Qo, isValidAddress as Qr, GasTokenInfo as Qs, getUpgradeRequiredQueryKey as Qt, ActionButton as R, useRoundXApps as Ra, useUpgradeSmartAccountModal as Ri, useCrossAppConnectionCache as Rn, useGetDomainsOfAddress as Ro, MinXNodeLevel as Rr, EnrichedLegalDocument as Rs, useSendTransaction as Rt, ModalFAQButton as S, getIpfsImage as Sa, notFoundImage as Si, useAccountImplementationAddress as Sn, useGetAvatarLegacy as So, MultipleClausesCallReturnType as Sr, ConnectModalContentsTypes as Ss, ThorClient$1 as St, BaseModal as T, useIpfsImageList as Ta, getAppHubAppsQueryKey as Ti, useAccountBalance as Tn, getResolverAddressQueryKey as To, executeCallClause as Tr, ColorModeSync as Ts, useMfaEnrollment as Tt, DisconnectConfirmContentProps as U, useMostVotedAppsInRound as Ua, useAccountCustomizationModal as Ui, useLocalStorage as Un, useClaimVeWorldSubdomain as Uo, gmNfts as Ur, DepositAccount as Us, getChainIdQueryKey as Ut, AccountModalContentTypes as V, MostVotedAppsInRoundReturnType as Va, useReceiveModal as Vi, useSyncableLocalStorage as Vn, buildVetDomainClauses as Vo, allNodeStrengthLevelToName as Vr, LegalDocumentType as Vs, getEventLogs as Vt, TermsAndPrivacyContent as W, getIsPersonQueryKey as Wa, FAQModalProvider as Wi, BuildClausesParams as Wn, getEnsRecordExistsQueryKey as Wo, xNodeToGMstartingLevel as Wr, EstimatedGas as Ws, useGetChainId as Wt, ChangeCurrencyContentProps as X, getTokenUsdPrice as Xa, SwapTokenModalProvider as Xi, decodeEventLog$1 as Xn, fetchPrivyAppInfo as Xo, compareAddresses as Xr, formatGasCost as Xs, useUpgradeRequiredForAccount as Xt, ChangeCurrencyContent as Y, SupportedToken as Ya, useExploreEcosystemModal as Yi, UseEventsParams as Yn, useFetchPrivyStatus as Yo, validateIpfsUri as Yr, calculateTotalCost as Ys, getUpgradeRequiredForAccountQueryKey as Yt, BridgeContent as Z, getTokenUsdPriceQueryKey as Za, useSwapTokenModal as Zi, getEventsKey as Zn, getPrivyAppInfoQueryKey as Zo, compareListOfAddresses as Zr, GasTokenEstimate as Zs, getUpgradeRequired as Zt, ModalNotificationButton as _, imageCompressionOptions as _a, TokenBalance as _c, VECHAIN_KIT_STORAGE_KEYS as _i, getCurrentAccountImplementationVersion as _n, WalletTokenBalance as _o, removeLocalStorageItem as _r, VeChainLoginButton as _s, SwapTokenContent as _t, useModal as a, useTransactionToast as aa, CURRENCY as ac, humanDomain as ai, useRefreshFactoryQueries as an, getCustomTokenBalanceQueryKey as ao, useCurrency as ar, SocialIcons as as, ProfileContentProps as at, AccountAvatar as b, IpfsImage as ba, VePassportUserStatus as bc, getENV as bi, getAccountImplementationAddress as bn, getAvatarLegacy as bo, setLocalStorageItem as br, MainContent as bs, SendTokenSummaryContent as bt, LegalDocumentsModal as c, AccountModalProvider as ca, CrossAppConnectionCache as cc, DEFAULT_GAS_TOKEN_PREFERENCES as ci, useIsSmartAccountDeployed as cn, useGetB3trBalance as co, useCallClause as cr, WalletDisplayVariant as cs, AccountCustomizationContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useConnectModal as da, ExecuteBatchWithAuthorizationSignData as dc, PrivyEcosystemApp as di, useHasV1SmartAccount as dn, useCurrentAllocationsRoundId as do, getDocumentTitle as dr, VeChainWithPrivyLoginButton as ds, ChooseNameSummaryContent as dt, ChooseNameModalProvider as ea, GasTokenSelection as ec, regexPattern as ei, SmartAccountReturnType as en, useGetErc20Balance as eo, useIsPWA as er, TransactionToast as es, AssetsContent as et, UpgradeSmartAccountModalStyle as f, useSwapQuotes as fa, ExecuteWithAuthorizationSignData as fc, SUPPORTED_GAS_TOKENS as fi, getAccountVersionQueryKey as fn, useTotalBalance as fo, getLocalStorageItem as fr, DappKitButton as fs, ChooseNameSummaryContentProps as ft, GasFeeSummary as g, compressImages as ga, SmartAccount as gc, VECHAIN_KIT_COOKIES_CONFIG as gi, useGetAccountAddress as gn, useTokenPrices as go, isOnline as gr, EcosystemButton as gs, ChooseNameContentProps as gt, GasFeeTokenSelector as h, UploadedImage as ha, PrivyLoginMethod as hc, TogglePassportCheck as hi, getAccountAddressQueryKey as hn, ExchangeRates as ho, isBrowser as hr, PrivyButton as hs, ChooseNameContent as ht, ModalProvider as i, TransactionToastProvider as ia, TextRecords as ic, humanAddress as ii, useRefreshSmartAccountQueries as in, TokenWithBalance as io, useCurrentLanguage as ir, TransactionModalProps as is, ProfileContent as it, CrossAppConnectionSecurityCard as j, XAppMetadata as ja, useSignMessage as ji, decodeRawTx as jn, useGetTextRecords as jo, isValid as jr, LegalDocument as js, BuildTransactionProps as jt, AddressDisplay as k, getXAppsSharesQueryKey as ka, useLoginWithPasskey$1 as ki, useGenericDelegatorFeeEstimationParams as kn, getTextRecords as ko, compare as kr, PrivyWalletProviderContextType as ks, txReceiptQueryKey as kt, LegalDocumentsModalContentsTypes as l, useAccountModal as la, ENSRecords as lc, DEFAULT_PRIVY_ECOSYSTEM_APPS as li, getHasV1SmartAccount as ln, useCustomTokens as lo, useMultipleClausesCall as lr, ConnectPopover as ls, CustomizationContent as lt, LoginLoadingModal as m, useSingleImageUpload as ma, PrivyAppInfo as mc, TOKEN_LOGO_COMPONENTS as mi, getAccountAddress as mn, useTokensWithValues as mo, hasNavigator as mr, LoginWithGoogleButton as ms, ChooseNameSearchContentProps as mt, getConfig as n, WalletModalProvider as na, TransactionSpeed as nc, formatTokenBalance as ni, getSmartAccountQueryKey as nn, getTokenInfo$1 as no, useFeatureAnnouncement as nr, ShareButtons as ns, UpgradeSmartAccountContent as nt, DAppKitWalletButton as o, TransactionModalProvider as oa, CURRENCY_SYMBOLS as oc, humanNumber as oi, getIsDeployed as on, useGetCustomTokenBalances as oo, getCallClauseQueryKey as or, WalletButton as os, CustomizationSummaryContent as ot, EcosystemModal as p, useSwapTransaction as pa, NFTMediaType as pc, TOKEN_LOGOS as pi, useGetAccountVersion as pn, TokenWithValue as po, getWindowOrigin as pr, PasskeyLoginButton as ps, ChooseNameSearchContent as pt, GasTokenSettingsContent as q, useGetVot3Balance as qa, useNotificationsModal as qi, useBuildClauses as qn, useVechainDomain as qo, toIPFSURL as qr, TransactionCost as qs, useUpgradeSmartAccount as qt, AccountModalOptions as r, useWalletModal as ra, ENS_TEXT_RECORDS as rc, getPicassoImage as ri, useSmartAccount as rn, useGetCustomTokenInfo as ro, useCurrentCurrency as rr, TransactionModal as rs, UpgradeSmartAccountContentProps as rt, LegalDocumentItem as s, useTransactionModal as sa, ConnectionSource as sc, isZero as si, getIsDeployedQueryKey as sn, getB3trBalanceQueryKey as so, getCallClauseQueryKeyWithArgs as sr, WalletButtonProps as ss, CustomizationSummaryContentProps as st, AppConfig as t, useChooseNameModal as ta, GasTokenType as tc, randomTransactionUser as ti, getSmartAccount as tn, getCustomTokenInfoQueryKey as to, useGetNodeUrl as tr, TransactionModalContent as ts, AssetsContentProps as tt, UpgradeSmartAccountModal as u, ConnectModalProvider as ua, EnhancedClause as uc, ENV as ui, getHasV1SmartAccountQueryKey as un, getCurrentAllocationsRoundIdQueryKey as uo, copyToClipboard as ur, LoginWithGithubButton as us, FAQContent as ut, TransactionButtonAndStatus as v, useUploadImages as va, TransactionStatus as vc, VECHAIN_KIT_TERMS_CONFIG as vi, getCurrentAccountImplementationVersionQueryKey as vn, useTokenBalances as vo, safeQuerySelector as vr, EmailLoginButton as vs, ReceiveTokenContent as vt, AssetButton as w, useIpfsImage as wa, fetchAppHubApps as wi, getAccountBalanceQueryKey as wn, useGetAvatarOfAddress as wo, buildCallClauses as wr, useLegalDocuments as ws, useDAppKitWalletModal as wt, ScrollToTopWrapper as x, MAX_IMAGE_SIZE as xa, Wallet as xc, getGenericDelegatorUrl as xi, getAccountImplementationAddressQueryKey as xn, getAvatarLegacyQueryKey as xo, MultipleClausesCallParameters as xr, ConnectModal as xs, SendTokenContent as xt, TransactionButtonAndStatusProps as y, useIpfsMetadatas as ya, TransactionStatusErrorType as yc, VECHAIN_PRIVY_APP_ID as yi, useCurrentAccountImplementationVersion as yn, useUnsetDomain as yo, safeWindowOpen as yr, ConnectionButton as ys, SelectTokenContent as yt, AccountDetailsButton as z, useRefreshMetadata as za, useLoginModalContent as zi, EcosystemShortcut as zn, getIsDomainProtectedQueryKey as zo, NodeStrengthLevelToImage as zr, LegalDocumentAgreement as zs, GetEventsProps as zt };
|
|
4053
|
-
//# sourceMappingURL=index-
|
|
4051
|
+
//# sourceMappingURL=index-DpCZuqUP.d.mts.map
|