@vechain/vechain-kit 2.2.0 → 2.2.2
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-DSMUkHcK.d.cts → index--hSO7Xv4.d.mts} +1 -1
- package/dist/{index-DSMUkHcK.d.cts.map → index--hSO7Xv4.d.mts.map} +1 -1
- package/dist/{index-BSgtiDLw.d.cts → index-CWCXsRcP.d.cts} +146 -144
- package/dist/index-CWCXsRcP.d.cts.map +1 -0
- package/dist/{index-BB3iebWm.d.mts → index-u3CPquCV.d.cts} +4 -4
- package/dist/{index-BB3iebWm.d.mts.map → index-u3CPquCV.d.cts.map} +1 -1
- package/dist/{index-CX-PoQpp.d.mts → index-w9zDQB56.d.mts} +100 -98
- package/dist/index-w9zDQB56.d.mts.map +1 -0
- package/dist/index.cjs +19 -12
- 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 +19 -12
- 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-BSgtiDLw.d.cts.map +0 -1
- package/dist/index-CX-PoQpp.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_runtime0 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): "test" | "main" | "solo" | undefined;
|
|
57
57
|
};
|
|
58
58
|
//#endregion
|
|
59
59
|
//#region src/types/types.d.ts
|
|
@@ -407,6 +407,7 @@ interface ThemeTokens {
|
|
|
407
407
|
};
|
|
408
408
|
modal: {
|
|
409
409
|
rounded?: string | number;
|
|
410
|
+
zIndex?: number;
|
|
410
411
|
};
|
|
411
412
|
}
|
|
412
413
|
/**
|
|
@@ -426,6 +427,7 @@ interface VechainKitThemeConfig {
|
|
|
426
427
|
backdropFilter?: string;
|
|
427
428
|
borderRadius?: string;
|
|
428
429
|
rounded?: string | number;
|
|
430
|
+
zIndex?: number;
|
|
429
431
|
};
|
|
430
432
|
buttons?: {
|
|
431
433
|
secondaryButton?: {
|
|
@@ -623,7 +625,7 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
|
|
|
623
625
|
* ```
|
|
624
626
|
*/
|
|
625
627
|
declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
626
|
-
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) =>
|
|
628
|
+
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime0.JSX.Element;
|
|
627
629
|
//#endregion
|
|
628
630
|
//#region src/providers/PrivyWalletProvider.d.ts
|
|
629
631
|
interface PrivyWalletProviderContextType {
|
|
@@ -666,7 +668,7 @@ declare const PrivyWalletProvider: ({
|
|
|
666
668
|
delegatorUrl?: string;
|
|
667
669
|
delegateAllTransactions: boolean;
|
|
668
670
|
genericDelegator?: boolean;
|
|
669
|
-
}) =>
|
|
671
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
670
672
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
671
673
|
//#endregion
|
|
672
674
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
@@ -683,12 +685,12 @@ declare const ColorModeSync: ({
|
|
|
683
685
|
darkMode
|
|
684
686
|
}: {
|
|
685
687
|
darkMode: boolean;
|
|
686
|
-
}) =>
|
|
688
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
687
689
|
declare const VechainKitThemeProvider: ({
|
|
688
690
|
children,
|
|
689
691
|
darkMode,
|
|
690
692
|
theme: customTheme
|
|
691
|
-
}: Props$32) =>
|
|
693
|
+
}: Props$32) => react_jsx_runtime0.JSX.Element;
|
|
692
694
|
//#endregion
|
|
693
695
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
694
696
|
type Props$31 = {
|
|
@@ -704,7 +706,7 @@ type LegalDocumentsContextType = {
|
|
|
704
706
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
705
707
|
declare const LegalDocumentsProvider: ({
|
|
706
708
|
children
|
|
707
|
-
}: Props$31) =>
|
|
709
|
+
}: Props$31) => react_jsx_runtime0.JSX.Element;
|
|
708
710
|
//#endregion
|
|
709
711
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
710
712
|
type Props$30 = {
|
|
@@ -715,7 +717,7 @@ type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
|
|
|
715
717
|
declare const ConnectModal: ({
|
|
716
718
|
isOpen,
|
|
717
719
|
onClose
|
|
718
|
-
}: Props$30) =>
|
|
720
|
+
}: Props$30) => react_jsx_runtime0.JSX.Element;
|
|
719
721
|
//#endregion
|
|
720
722
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
721
723
|
type Props$29 = {
|
|
@@ -725,7 +727,7 @@ type Props$29 = {
|
|
|
725
727
|
declare const MainContent: ({
|
|
726
728
|
setCurrentContent,
|
|
727
729
|
onClose
|
|
728
|
-
}: Props$29) =>
|
|
730
|
+
}: Props$29) => react_jsx_runtime0.JSX.Element;
|
|
729
731
|
//#endregion
|
|
730
732
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
731
733
|
interface ConnectionButtonProps {
|
|
@@ -748,10 +750,10 @@ declare const ConnectionButton: ({
|
|
|
748
750
|
style,
|
|
749
751
|
variant,
|
|
750
752
|
iconWidth
|
|
751
|
-
}: ConnectionButtonProps) =>
|
|
753
|
+
}: ConnectionButtonProps) => react_jsx_runtime0.JSX.Element | null;
|
|
752
754
|
//#endregion
|
|
753
755
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
754
|
-
declare const EmailLoginButton: () =>
|
|
756
|
+
declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
|
|
755
757
|
//#endregion
|
|
756
758
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
757
759
|
type Props$28 = {
|
|
@@ -761,7 +763,7 @@ type Props$28 = {
|
|
|
761
763
|
declare const VeChainLoginButton: ({
|
|
762
764
|
isDark,
|
|
763
765
|
gridColumn
|
|
764
|
-
}: Props$28) =>
|
|
766
|
+
}: Props$28) => react_jsx_runtime0.JSX.Element;
|
|
765
767
|
//#endregion
|
|
766
768
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
767
769
|
type Props$27 = {
|
|
@@ -773,7 +775,7 @@ type Props$27 = {
|
|
|
773
775
|
declare const EcosystemButton: ({
|
|
774
776
|
appsInfo,
|
|
775
777
|
isLoading
|
|
776
|
-
}: Props$27) =>
|
|
778
|
+
}: Props$27) => react_jsx_runtime0.JSX.Element;
|
|
777
779
|
//#endregion
|
|
778
780
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
779
781
|
type Props$26 = {
|
|
@@ -785,7 +787,7 @@ declare const PrivyButton: ({
|
|
|
785
787
|
isDark,
|
|
786
788
|
onViewMoreLogin,
|
|
787
789
|
gridColumn
|
|
788
|
-
}: Props$26) =>
|
|
790
|
+
}: Props$26) => react_jsx_runtime0.JSX.Element;
|
|
789
791
|
//#endregion
|
|
790
792
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
791
793
|
type Props$25 = {
|
|
@@ -795,7 +797,7 @@ type Props$25 = {
|
|
|
795
797
|
declare const LoginWithGoogleButton: ({
|
|
796
798
|
isDark,
|
|
797
799
|
gridColumn
|
|
798
|
-
}: Props$25) =>
|
|
800
|
+
}: Props$25) => react_jsx_runtime0.JSX.Element;
|
|
799
801
|
//#endregion
|
|
800
802
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
801
803
|
type Props$24 = {
|
|
@@ -805,7 +807,7 @@ type Props$24 = {
|
|
|
805
807
|
declare const PasskeyLoginButton: ({
|
|
806
808
|
isDark,
|
|
807
809
|
gridColumn
|
|
808
|
-
}: Props$24) =>
|
|
810
|
+
}: Props$24) => react_jsx_runtime0.JSX.Element;
|
|
809
811
|
//#endregion
|
|
810
812
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
811
813
|
type Props$23 = {
|
|
@@ -815,7 +817,7 @@ type Props$23 = {
|
|
|
815
817
|
declare const DappKitButton: ({
|
|
816
818
|
isDark,
|
|
817
819
|
gridColumn
|
|
818
|
-
}: Props$23) =>
|
|
820
|
+
}: Props$23) => react_jsx_runtime0.JSX.Element;
|
|
819
821
|
//#endregion
|
|
820
822
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
821
823
|
type Props$22 = {
|
|
@@ -825,7 +827,7 @@ type Props$22 = {
|
|
|
825
827
|
declare const VeChainWithPrivyLoginButton: ({
|
|
826
828
|
isDark,
|
|
827
829
|
gridColumn
|
|
828
|
-
}: Props$22) =>
|
|
830
|
+
}: Props$22) => react_jsx_runtime0.JSX.Element;
|
|
829
831
|
//#endregion
|
|
830
832
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
831
833
|
type Props$21 = {
|
|
@@ -835,7 +837,7 @@ type Props$21 = {
|
|
|
835
837
|
declare const LoginWithGithubButton: ({
|
|
836
838
|
isDark,
|
|
837
839
|
gridColumn
|
|
838
|
-
}: Props$21) =>
|
|
840
|
+
}: Props$21) => react_jsx_runtime0.JSX.Element;
|
|
839
841
|
//#endregion
|
|
840
842
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
841
843
|
type ConnectPopoverProps = {
|
|
@@ -845,7 +847,7 @@ type ConnectPopoverProps = {
|
|
|
845
847
|
declare const ConnectPopover: ({
|
|
846
848
|
isLoading,
|
|
847
849
|
buttonStyle
|
|
848
|
-
}: ConnectPopoverProps) =>
|
|
850
|
+
}: ConnectPopoverProps) => react_jsx_runtime0.JSX.Element;
|
|
849
851
|
//#endregion
|
|
850
852
|
//#region src/components/WalletButton/types.d.ts
|
|
851
853
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
@@ -862,10 +864,10 @@ declare const WalletButton: ({
|
|
|
862
864
|
desktopVariant,
|
|
863
865
|
buttonStyle,
|
|
864
866
|
connectionVariant
|
|
865
|
-
}: WalletButtonProps) =>
|
|
867
|
+
}: WalletButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
866
868
|
//#endregion
|
|
867
869
|
//#region src/components/WalletButton/SocialIcons.d.ts
|
|
868
|
-
declare const SocialIcons: () =>
|
|
870
|
+
declare const SocialIcons: () => react_jsx_runtime0.JSX.Element;
|
|
869
871
|
//#endregion
|
|
870
872
|
//#region src/components/TransactionModal/TransactionModal.d.ts
|
|
871
873
|
type TransactionModalProps = {
|
|
@@ -895,7 +897,7 @@ declare const TransactionModal: ({
|
|
|
895
897
|
txReceipt,
|
|
896
898
|
txError,
|
|
897
899
|
onTryAgain
|
|
898
|
-
}: TransactionModalProps) =>
|
|
900
|
+
}: TransactionModalProps) => react_jsx_runtime0.JSX.Element;
|
|
899
901
|
//#endregion
|
|
900
902
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
901
903
|
type Props$20 = {
|
|
@@ -905,7 +907,7 @@ type Props$20 = {
|
|
|
905
907
|
};
|
|
906
908
|
declare const ShareButtons: ({
|
|
907
909
|
descriptionEncoded
|
|
908
|
-
}: Props$20) =>
|
|
910
|
+
}: Props$20) => react_jsx_runtime0.JSX.Element;
|
|
909
911
|
//#endregion
|
|
910
912
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
911
913
|
declare const TransactionModalContent: ({
|
|
@@ -915,7 +917,7 @@ declare const TransactionModalContent: ({
|
|
|
915
917
|
txReceipt,
|
|
916
918
|
txError,
|
|
917
919
|
onClose
|
|
918
|
-
}: Omit<TransactionModalProps, "isOpen">) =>
|
|
920
|
+
}: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime0.JSX.Element;
|
|
919
921
|
//#endregion
|
|
920
922
|
//#region src/components/TransactionToast/TransactionToast.d.ts
|
|
921
923
|
type TransactionToastProps = {
|
|
@@ -935,7 +937,7 @@ declare const TransactionToast: ({
|
|
|
935
937
|
txError,
|
|
936
938
|
onTryAgain,
|
|
937
939
|
description
|
|
938
|
-
}: TransactionToastProps) =>
|
|
940
|
+
}: TransactionToastProps) => react_jsx_runtime0.JSX.Element | null;
|
|
939
941
|
//#endregion
|
|
940
942
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
941
943
|
type Props$19 = {
|
|
@@ -947,7 +949,7 @@ declare const AccountMainContent: ({
|
|
|
947
949
|
setCurrentContent,
|
|
948
950
|
wallet,
|
|
949
951
|
onClose
|
|
950
|
-
}: Props$19) =>
|
|
952
|
+
}: Props$19) => react_jsx_runtime0.JSX.Element;
|
|
951
953
|
//#endregion
|
|
952
954
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
953
955
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
@@ -1387,7 +1389,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1387
1389
|
};
|
|
1388
1390
|
//#endregion
|
|
1389
1391
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1390
|
-
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) =>
|
|
1392
|
+
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
|
|
1391
1393
|
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1392
1394
|
id: string;
|
|
1393
1395
|
teamWalletAddress: `0x${string}`;
|
|
@@ -1769,7 +1771,7 @@ declare const ConnectModalProvider: ({
|
|
|
1769
1771
|
children
|
|
1770
1772
|
}: {
|
|
1771
1773
|
children: ReactNode;
|
|
1772
|
-
}) =>
|
|
1774
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1773
1775
|
//#endregion
|
|
1774
1776
|
//#region src/hooks/modals/useAccountModal.d.ts
|
|
1775
1777
|
declare const useAccountModal: () => {
|
|
@@ -1781,7 +1783,7 @@ declare const AccountModalProvider: ({
|
|
|
1781
1783
|
children
|
|
1782
1784
|
}: {
|
|
1783
1785
|
children: ReactNode;
|
|
1784
|
-
}) =>
|
|
1786
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1785
1787
|
//#endregion
|
|
1786
1788
|
//#region src/hooks/modals/useTransactionModal.d.ts
|
|
1787
1789
|
declare const useTransactionModal: () => {
|
|
@@ -1793,7 +1795,7 @@ declare const TransactionModalProvider: ({
|
|
|
1793
1795
|
children
|
|
1794
1796
|
}: {
|
|
1795
1797
|
children: ReactNode;
|
|
1796
|
-
}) =>
|
|
1798
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1797
1799
|
//#endregion
|
|
1798
1800
|
//#region src/hooks/modals/useTransactionToast.d.ts
|
|
1799
1801
|
declare const useTransactionToast: () => {
|
|
@@ -1805,7 +1807,7 @@ declare const TransactionToastProvider: ({
|
|
|
1805
1807
|
children
|
|
1806
1808
|
}: {
|
|
1807
1809
|
children: ReactNode;
|
|
1808
|
-
}) =>
|
|
1810
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1809
1811
|
//#endregion
|
|
1810
1812
|
//#region src/hooks/modals/useWalletModal.d.ts
|
|
1811
1813
|
declare const useWalletModal: () => {
|
|
@@ -1817,7 +1819,7 @@ declare const WalletModalProvider: ({
|
|
|
1817
1819
|
children
|
|
1818
1820
|
}: {
|
|
1819
1821
|
children: ReactNode;
|
|
1820
|
-
}) =>
|
|
1822
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1821
1823
|
//#endregion
|
|
1822
1824
|
//#region src/hooks/modals/useChooseNameModal.d.ts
|
|
1823
1825
|
declare const useChooseNameModal: () => {
|
|
@@ -1829,7 +1831,7 @@ declare const ChooseNameModalProvider: ({
|
|
|
1829
1831
|
children
|
|
1830
1832
|
}: {
|
|
1831
1833
|
children: ReactNode;
|
|
1832
|
-
}) =>
|
|
1834
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1833
1835
|
//#endregion
|
|
1834
1836
|
//#region src/hooks/modals/useSendTokenModal.d.ts
|
|
1835
1837
|
declare const useSendTokenModal: () => {
|
|
@@ -1841,7 +1843,7 @@ declare const SendTokenModalProvider: ({
|
|
|
1841
1843
|
children
|
|
1842
1844
|
}: {
|
|
1843
1845
|
children: ReactNode;
|
|
1844
|
-
}) =>
|
|
1846
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1845
1847
|
//#endregion
|
|
1846
1848
|
//#region src/hooks/modals/useSwapTokenModal.d.ts
|
|
1847
1849
|
type SwapTokenModalOptions = {
|
|
@@ -1858,7 +1860,7 @@ declare const SwapTokenModalProvider: ({
|
|
|
1858
1860
|
children
|
|
1859
1861
|
}: {
|
|
1860
1862
|
children: ReactNode;
|
|
1861
|
-
}) =>
|
|
1863
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1862
1864
|
//#endregion
|
|
1863
1865
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
1864
1866
|
declare const useExploreEcosystemModal: () => {
|
|
@@ -1870,7 +1872,7 @@ declare const ExploreEcosystemModalProvider: ({
|
|
|
1870
1872
|
children
|
|
1871
1873
|
}: {
|
|
1872
1874
|
children: ReactNode;
|
|
1873
|
-
}) =>
|
|
1875
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1874
1876
|
//#endregion
|
|
1875
1877
|
//#region src/hooks/modals/useNotificationsModal.d.ts
|
|
1876
1878
|
declare const useNotificationsModal: () => {
|
|
@@ -1882,7 +1884,7 @@ declare const NotificationsModalProvider: ({
|
|
|
1882
1884
|
children
|
|
1883
1885
|
}: {
|
|
1884
1886
|
children: ReactNode;
|
|
1885
|
-
}) =>
|
|
1887
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1886
1888
|
//#endregion
|
|
1887
1889
|
//#region src/hooks/modals/useFAQModal.d.ts
|
|
1888
1890
|
declare const useFAQModal: () => {
|
|
@@ -1894,7 +1896,7 @@ declare const FAQModalProvider: ({
|
|
|
1894
1896
|
children
|
|
1895
1897
|
}: {
|
|
1896
1898
|
children: ReactNode;
|
|
1897
|
-
}) =>
|
|
1899
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1898
1900
|
//#endregion
|
|
1899
1901
|
//#region src/hooks/modals/useAccountCustomizationModal.d.ts
|
|
1900
1902
|
declare const useAccountCustomizationModal: () => {
|
|
@@ -1906,7 +1908,7 @@ declare const AccountCustomizationModalProvider: ({
|
|
|
1906
1908
|
children
|
|
1907
1909
|
}: {
|
|
1908
1910
|
children: ReactNode;
|
|
1909
|
-
}) =>
|
|
1911
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1910
1912
|
//#endregion
|
|
1911
1913
|
//#region src/hooks/modals/useReceiveModal.d.ts
|
|
1912
1914
|
declare const useReceiveModal: () => {
|
|
@@ -1918,7 +1920,7 @@ declare const ReceiveModalProvider: ({
|
|
|
1918
1920
|
children
|
|
1919
1921
|
}: {
|
|
1920
1922
|
children: ReactNode;
|
|
1921
|
-
}) =>
|
|
1923
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1922
1924
|
//#endregion
|
|
1923
1925
|
//#region src/hooks/modals/useLoginModalContent.d.ts
|
|
1924
1926
|
type LoginModalContentConfig = {
|
|
@@ -1944,7 +1946,7 @@ declare const UpgradeSmartAccountModalProvider: ({
|
|
|
1944
1946
|
children
|
|
1945
1947
|
}: {
|
|
1946
1948
|
children: ReactNode;
|
|
1947
|
-
}) =>
|
|
1949
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1948
1950
|
//#endregion
|
|
1949
1951
|
//#region src/hooks/modals/useProfileModal.d.ts
|
|
1950
1952
|
declare const useProfileModal: () => {
|
|
@@ -1956,7 +1958,7 @@ declare const ProfileModalProvider: ({
|
|
|
1956
1958
|
children
|
|
1957
1959
|
}: {
|
|
1958
1960
|
children: ReactNode;
|
|
1959
|
-
}) =>
|
|
1961
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1960
1962
|
//#endregion
|
|
1961
1963
|
//#region src/hooks/modals/useAccountModalOptions.d.ts
|
|
1962
1964
|
declare const useAccountModalOptions: () => {
|
|
@@ -2426,7 +2428,7 @@ declare const getCallClauseQueryKeyWithArgs: <TAbi extends Abi, TMethod extends
|
|
|
2426
2428
|
address: string;
|
|
2427
2429
|
method: TMethod;
|
|
2428
2430
|
args?: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2429
|
-
}) =>
|
|
2431
|
+
}) => unknown[];
|
|
2430
2432
|
declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFunctionNames<TAbi, "pure" | "view">, TData = ViewFunctionResult<TAbi, TMethod>>({
|
|
2431
2433
|
address,
|
|
2432
2434
|
abi,
|
|
@@ -2791,7 +2793,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
2791
2793
|
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2792
2794
|
//#endregion
|
|
2793
2795
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
2794
|
-
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) =>
|
|
2796
|
+
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
|
|
2795
2797
|
/**
|
|
2796
2798
|
* Check if a smart account has a v1 smart account
|
|
2797
2799
|
* @param accountAddress - The address of the smart account
|
|
@@ -3184,7 +3186,7 @@ declare const SendTokenContent: ({
|
|
|
3184
3186
|
initialAmount,
|
|
3185
3187
|
initialToAddressOrDomain,
|
|
3186
3188
|
onBack: parentOnBack
|
|
3187
|
-
}: SendTokenContentProps) =>
|
|
3189
|
+
}: SendTokenContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3188
3190
|
//#endregion
|
|
3189
3191
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
|
|
3190
3192
|
type SendTokenSummaryContentProps = {
|
|
@@ -3204,7 +3206,7 @@ declare const SendTokenSummaryContent: ({
|
|
|
3204
3206
|
amount,
|
|
3205
3207
|
selectedToken,
|
|
3206
3208
|
formattedTotalAmount
|
|
3207
|
-
}: SendTokenSummaryContentProps) =>
|
|
3209
|
+
}: SendTokenSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3208
3210
|
//#endregion
|
|
3209
3211
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
3210
3212
|
type Props$16 = {
|
|
@@ -3220,7 +3222,7 @@ declare const SelectTokenContent: ({
|
|
|
3220
3222
|
onSelectToken,
|
|
3221
3223
|
onBack,
|
|
3222
3224
|
showAllTokens
|
|
3223
|
-
}: Props$16) =>
|
|
3225
|
+
}: Props$16) => react_jsx_runtime0.JSX.Element;
|
|
3224
3226
|
//#endregion
|
|
3225
3227
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
3226
3228
|
type Props$15 = {
|
|
@@ -3228,7 +3230,7 @@ type Props$15 = {
|
|
|
3228
3230
|
};
|
|
3229
3231
|
declare const ReceiveTokenContent: ({
|
|
3230
3232
|
setCurrentContent
|
|
3231
|
-
}: Props$15) =>
|
|
3233
|
+
}: Props$15) => react_jsx_runtime0.JSX.Element;
|
|
3232
3234
|
//#endregion
|
|
3233
3235
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
3234
3236
|
type Props$14 = {
|
|
@@ -3240,7 +3242,7 @@ declare const SwapTokenContent: ({
|
|
|
3240
3242
|
setCurrentContent,
|
|
3241
3243
|
fromTokenAddress,
|
|
3242
3244
|
toTokenAddress
|
|
3243
|
-
}: Props$14) =>
|
|
3245
|
+
}: Props$14) => react_jsx_runtime0.JSX.Element;
|
|
3244
3246
|
//#endregion
|
|
3245
3247
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
3246
3248
|
type ChooseNameContentProps = {
|
|
@@ -3252,7 +3254,7 @@ declare const ChooseNameContent: ({
|
|
|
3252
3254
|
setCurrentContent,
|
|
3253
3255
|
onBack,
|
|
3254
3256
|
initialContentSource
|
|
3255
|
-
}: ChooseNameContentProps) =>
|
|
3257
|
+
}: ChooseNameContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3256
3258
|
//#endregion
|
|
3257
3259
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
|
|
3258
3260
|
type ChooseNameSearchContentProps = {
|
|
@@ -3264,7 +3266,7 @@ declare const ChooseNameSearchContent: ({
|
|
|
3264
3266
|
name: initialName,
|
|
3265
3267
|
setCurrentContent,
|
|
3266
3268
|
initialContentSource
|
|
3267
|
-
}: ChooseNameSearchContentProps) =>
|
|
3269
|
+
}: ChooseNameSearchContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3268
3270
|
//#endregion
|
|
3269
3271
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
|
|
3270
3272
|
type ChooseNameSummaryContentProps = {
|
|
@@ -3282,7 +3284,7 @@ declare const ChooseNameSummaryContent: ({
|
|
|
3282
3284
|
isOwnDomain,
|
|
3283
3285
|
isUnsetting,
|
|
3284
3286
|
initialContentSource
|
|
3285
|
-
}: ChooseNameSummaryContentProps) =>
|
|
3287
|
+
}: ChooseNameSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3286
3288
|
//#endregion
|
|
3287
3289
|
//#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
|
|
3288
3290
|
type FAQContentProps = {
|
|
@@ -3292,7 +3294,7 @@ type FAQContentProps = {
|
|
|
3292
3294
|
declare const FAQContent: ({
|
|
3293
3295
|
onGoBack,
|
|
3294
3296
|
showLanguageSelector
|
|
3295
|
-
}: FAQContentProps) =>
|
|
3297
|
+
}: FAQContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3296
3298
|
//#endregion
|
|
3297
3299
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
|
|
3298
3300
|
type AccountCustomizationContentProps = {
|
|
@@ -3302,7 +3304,7 @@ type AccountCustomizationContentProps = {
|
|
|
3302
3304
|
declare const CustomizationContent: ({
|
|
3303
3305
|
setCurrentContent,
|
|
3304
3306
|
initialContentSource
|
|
3305
|
-
}: AccountCustomizationContentProps) =>
|
|
3307
|
+
}: AccountCustomizationContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3306
3308
|
//#endregion
|
|
3307
3309
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
|
|
3308
3310
|
type CustomizationSummaryContentProps = {
|
|
@@ -3321,7 +3323,7 @@ declare const CustomizationSummaryContent: ({
|
|
|
3321
3323
|
setCurrentContent,
|
|
3322
3324
|
changes,
|
|
3323
3325
|
onDoneRedirectContent
|
|
3324
|
-
}: CustomizationSummaryContentProps) =>
|
|
3326
|
+
}: CustomizationSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3325
3327
|
//#endregion
|
|
3326
3328
|
//#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
|
|
3327
3329
|
type ProfileContentProps = {
|
|
@@ -3331,7 +3333,7 @@ type ProfileContentProps = {
|
|
|
3331
3333
|
declare const ProfileContent: ({
|
|
3332
3334
|
setCurrentContent,
|
|
3333
3335
|
onLogoutSuccess
|
|
3334
|
-
}: ProfileContentProps) =>
|
|
3336
|
+
}: ProfileContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3335
3337
|
//#endregion
|
|
3336
3338
|
//#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
|
|
3337
3339
|
type UpgradeSmartAccountContentProps = {
|
|
@@ -3343,7 +3345,7 @@ declare const UpgradeSmartAccountContent: ({
|
|
|
3343
3345
|
setCurrentContent,
|
|
3344
3346
|
handleClose,
|
|
3345
3347
|
initialContent
|
|
3346
|
-
}: UpgradeSmartAccountContentProps) =>
|
|
3348
|
+
}: UpgradeSmartAccountContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3347
3349
|
//#endregion
|
|
3348
3350
|
//#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
|
|
3349
3351
|
type AssetsContentProps = {
|
|
@@ -3351,7 +3353,7 @@ type AssetsContentProps = {
|
|
|
3351
3353
|
};
|
|
3352
3354
|
declare const AssetsContent: ({
|
|
3353
3355
|
setCurrentContent
|
|
3354
|
-
}: AssetsContentProps) =>
|
|
3356
|
+
}: AssetsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3355
3357
|
//#endregion
|
|
3356
3358
|
//#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
|
|
3357
3359
|
type ManageCustomTokenContentProps = {
|
|
@@ -3359,7 +3361,7 @@ type ManageCustomTokenContentProps = {
|
|
|
3359
3361
|
};
|
|
3360
3362
|
declare const ManageCustomTokenContent: ({
|
|
3361
3363
|
setCurrentContent
|
|
3362
|
-
}: ManageCustomTokenContentProps) =>
|
|
3364
|
+
}: ManageCustomTokenContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3363
3365
|
//#endregion
|
|
3364
3366
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
3365
3367
|
type Props$13 = {
|
|
@@ -3367,7 +3369,7 @@ type Props$13 = {
|
|
|
3367
3369
|
};
|
|
3368
3370
|
declare const BridgeContent: ({
|
|
3369
3371
|
setCurrentContent
|
|
3370
|
-
}: Props$13) =>
|
|
3372
|
+
}: Props$13) => react_jsx_runtime0.JSX.Element;
|
|
3371
3373
|
//#endregion
|
|
3372
3374
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
3373
3375
|
type ChangeCurrencyContentProps = {
|
|
@@ -3375,7 +3377,7 @@ type ChangeCurrencyContentProps = {
|
|
|
3375
3377
|
};
|
|
3376
3378
|
declare const ChangeCurrencyContent: ({
|
|
3377
3379
|
setCurrentContent
|
|
3378
|
-
}: ChangeCurrencyContentProps) =>
|
|
3380
|
+
}: ChangeCurrencyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3379
3381
|
//#endregion
|
|
3380
3382
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
3381
3383
|
type Props$12 = {
|
|
@@ -3383,7 +3385,7 @@ type Props$12 = {
|
|
|
3383
3385
|
};
|
|
3384
3386
|
declare const LanguageSettingsContent: ({
|
|
3385
3387
|
setCurrentContent
|
|
3386
|
-
}: Props$12) =>
|
|
3388
|
+
}: Props$12) => react_jsx_runtime0.JSX.Element;
|
|
3387
3389
|
//#endregion
|
|
3388
3390
|
//#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
|
|
3389
3391
|
type Props$11 = {
|
|
@@ -3391,7 +3393,7 @@ type Props$11 = {
|
|
|
3391
3393
|
};
|
|
3392
3394
|
declare const GasTokenSettingsContent: ({
|
|
3393
3395
|
setCurrentContent
|
|
3394
|
-
}: Props$11) =>
|
|
3396
|
+
}: Props$11) => react_jsx_runtime0.JSX.Element;
|
|
3395
3397
|
//#endregion
|
|
3396
3398
|
//#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
|
|
3397
3399
|
type SettingsContentProps = {
|
|
@@ -3401,7 +3403,7 @@ type SettingsContentProps = {
|
|
|
3401
3403
|
declare const SettingsContent: ({
|
|
3402
3404
|
setCurrentContent,
|
|
3403
3405
|
onLogoutSuccess
|
|
3404
|
-
}: SettingsContentProps) =>
|
|
3406
|
+
}: SettingsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3405
3407
|
//#endregion
|
|
3406
3408
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
3407
3409
|
type TermsAndPrivacyContentProps = {
|
|
@@ -3409,7 +3411,7 @@ type TermsAndPrivacyContentProps = {
|
|
|
3409
3411
|
};
|
|
3410
3412
|
declare const TermsAndPrivacyContent: ({
|
|
3411
3413
|
onGoBack
|
|
3412
|
-
}: TermsAndPrivacyContentProps) =>
|
|
3414
|
+
}: TermsAndPrivacyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3413
3415
|
//#endregion
|
|
3414
3416
|
//#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
|
|
3415
3417
|
type DisconnectConfirmContentProps = {
|
|
@@ -3425,7 +3427,7 @@ declare const DisconnectConfirmContent: ({
|
|
|
3425
3427
|
onClose,
|
|
3426
3428
|
showCloseButton,
|
|
3427
3429
|
text
|
|
3428
|
-
}: DisconnectConfirmContentProps) =>
|
|
3430
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3429
3431
|
//#endregion
|
|
3430
3432
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
3431
3433
|
type CategoryFilter = string | null;
|
|
@@ -3529,7 +3531,7 @@ declare const AccountModal: ({
|
|
|
3529
3531
|
isOpen,
|
|
3530
3532
|
onClose,
|
|
3531
3533
|
initialContent
|
|
3532
|
-
}: Props$10) =>
|
|
3534
|
+
}: Props$10) => react_jsx_runtime0.JSX.Element;
|
|
3533
3535
|
//#endregion
|
|
3534
3536
|
//#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
|
|
3535
3537
|
interface AccountDetailsButtonProps {
|
|
@@ -3551,7 +3553,7 @@ declare const AccountDetailsButton: ({
|
|
|
3551
3553
|
onClick,
|
|
3552
3554
|
leftImage,
|
|
3553
3555
|
isActive
|
|
3554
|
-
}: AccountDetailsButtonProps) =>
|
|
3556
|
+
}: AccountDetailsButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3555
3557
|
//#endregion
|
|
3556
3558
|
//#region src/components/AccountModal/Components/ActionButton.d.ts
|
|
3557
3559
|
type ActionButtonProps = {
|
|
@@ -3593,7 +3595,7 @@ declare const ActionButton: ({
|
|
|
3593
3595
|
extraContent,
|
|
3594
3596
|
dataTestId,
|
|
3595
3597
|
variant
|
|
3596
|
-
}: ActionButtonProps) =>
|
|
3598
|
+
}: ActionButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3597
3599
|
//#endregion
|
|
3598
3600
|
//#region src/components/AccountModal/Components/AccountSelector.d.ts
|
|
3599
3601
|
type Props$9 = {
|
|
@@ -3613,7 +3615,7 @@ declare const AccountSelector: ({
|
|
|
3613
3615
|
onClose,
|
|
3614
3616
|
mt,
|
|
3615
3617
|
style
|
|
3616
|
-
}: Props$9) =>
|
|
3618
|
+
}: Props$9) => react_jsx_runtime0.JSX.Element;
|
|
3617
3619
|
//#endregion
|
|
3618
3620
|
//#region src/components/AccountModal/Components/BalanceSection.d.ts
|
|
3619
3621
|
declare const BalanceSection: ({
|
|
@@ -3624,7 +3626,7 @@ declare const BalanceSection: ({
|
|
|
3624
3626
|
mb?: number;
|
|
3625
3627
|
mt?: number;
|
|
3626
3628
|
onAssetsClick?: () => void;
|
|
3627
|
-
}) =>
|
|
3629
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
3628
3630
|
//#endregion
|
|
3629
3631
|
//#region src/components/AccountModal/Components/QuickActionsSection.d.ts
|
|
3630
3632
|
type Props$8 = {
|
|
@@ -3634,7 +3636,7 @@ type Props$8 = {
|
|
|
3634
3636
|
declare const QuickActionsSection: ({
|
|
3635
3637
|
mt,
|
|
3636
3638
|
setCurrentContent
|
|
3637
|
-
}: Props$8) =>
|
|
3639
|
+
}: Props$8) => react_jsx_runtime0.JSX.Element;
|
|
3638
3640
|
//#endregion
|
|
3639
3641
|
//#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
|
|
3640
3642
|
type FeatureAnnouncementCardProps = {
|
|
@@ -3642,16 +3644,16 @@ type FeatureAnnouncementCardProps = {
|
|
|
3642
3644
|
};
|
|
3643
3645
|
declare const FeatureAnnouncementCard: ({
|
|
3644
3646
|
setCurrentContent
|
|
3645
|
-
}: FeatureAnnouncementCardProps) =>
|
|
3647
|
+
}: FeatureAnnouncementCardProps) => react_jsx_runtime0.JSX.Element | null;
|
|
3646
3648
|
//#endregion
|
|
3647
3649
|
//#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
|
|
3648
|
-
declare const ExchangeWarningAlert: () =>
|
|
3650
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime0.JSX.Element;
|
|
3649
3651
|
//#endregion
|
|
3650
3652
|
//#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
|
|
3651
|
-
declare const DomainRequiredAlert: () =>
|
|
3653
|
+
declare const DomainRequiredAlert: () => react_jsx_runtime0.JSX.Element;
|
|
3652
3654
|
//#endregion
|
|
3653
3655
|
//#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
|
|
3654
|
-
declare const CrossAppConnectionSecurityCard: () =>
|
|
3656
|
+
declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime0.JSX.Element;
|
|
3655
3657
|
//#endregion
|
|
3656
3658
|
//#region src/components/common/ModalBackButton.d.ts
|
|
3657
3659
|
type BackButtonProps = {
|
|
@@ -3660,7 +3662,7 @@ type BackButtonProps = {
|
|
|
3660
3662
|
declare const ModalBackButton: ({
|
|
3661
3663
|
onClick,
|
|
3662
3664
|
...props
|
|
3663
|
-
}: BackButtonProps) =>
|
|
3665
|
+
}: BackButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3664
3666
|
//#endregion
|
|
3665
3667
|
//#region src/components/common/AddressDisplay.d.ts
|
|
3666
3668
|
type Props$7 = {
|
|
@@ -3674,13 +3676,13 @@ declare const AddressDisplay: ({
|
|
|
3674
3676
|
label,
|
|
3675
3677
|
style,
|
|
3676
3678
|
showHumanAddress
|
|
3677
|
-
}: Props$7) =>
|
|
3679
|
+
}: Props$7) => react_jsx_runtime0.JSX.Element;
|
|
3678
3680
|
//#endregion
|
|
3679
3681
|
//#region src/components/common/VersionFooter.d.ts
|
|
3680
3682
|
type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
3681
3683
|
declare const VersionFooter: ({
|
|
3682
3684
|
...props
|
|
3683
|
-
}: Props$6) =>
|
|
3685
|
+
}: Props$6) => react_jsx_runtime0.JSX.Element;
|
|
3684
3686
|
//#endregion
|
|
3685
3687
|
//#region src/components/common/StickyHeaderContainer.d.ts
|
|
3686
3688
|
type Props$5 = {
|
|
@@ -3688,7 +3690,7 @@ type Props$5 = {
|
|
|
3688
3690
|
};
|
|
3689
3691
|
declare const StickyHeaderContainer: ({
|
|
3690
3692
|
children
|
|
3691
|
-
}: Props$5) =>
|
|
3693
|
+
}: Props$5) => react_jsx_runtime0.JSX.Element;
|
|
3692
3694
|
//#endregion
|
|
3693
3695
|
//#region src/components/common/StickyFooterContainer.d.ts
|
|
3694
3696
|
type Props$4 = {
|
|
@@ -3696,7 +3698,7 @@ type Props$4 = {
|
|
|
3696
3698
|
};
|
|
3697
3699
|
declare const StickyFooterContainer: ({
|
|
3698
3700
|
children
|
|
3699
|
-
}: Props$4) =>
|
|
3701
|
+
}: Props$4) => react_jsx_runtime0.JSX.Element;
|
|
3700
3702
|
//#endregion
|
|
3701
3703
|
//#region src/components/common/BaseModal.d.ts
|
|
3702
3704
|
type BaseModalProps = {
|
|
@@ -3727,7 +3729,7 @@ declare const BaseModal: ({
|
|
|
3727
3729
|
allowExternalFocus,
|
|
3728
3730
|
backdropFilter,
|
|
3729
3731
|
isCloseable
|
|
3730
|
-
}: BaseModalProps) =>
|
|
3732
|
+
}: BaseModalProps) => react_jsx_runtime0.JSX.Element;
|
|
3731
3733
|
//#endregion
|
|
3732
3734
|
//#region src/components/common/AssetButton.d.ts
|
|
3733
3735
|
type AssetButtonProps = ButtonProps & {
|
|
@@ -3746,7 +3748,7 @@ declare const AssetButton: ({
|
|
|
3746
3748
|
isDisabled,
|
|
3747
3749
|
onClick,
|
|
3748
3750
|
...buttonProps
|
|
3749
|
-
}: AssetButtonProps) =>
|
|
3751
|
+
}: AssetButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3750
3752
|
//#endregion
|
|
3751
3753
|
//#region src/components/common/AddressDisplayCard.d.ts
|
|
3752
3754
|
type AddressDisplayCardProps = {
|
|
@@ -3768,7 +3770,7 @@ declare const AddressDisplayCard: ({
|
|
|
3768
3770
|
hideAddress,
|
|
3769
3771
|
balance,
|
|
3770
3772
|
tokenAddress
|
|
3771
|
-
}: AddressDisplayCardProps) =>
|
|
3773
|
+
}: AddressDisplayCardProps) => react_jsx_runtime0.JSX.Element;
|
|
3772
3774
|
//#endregion
|
|
3773
3775
|
//#region src/components/common/ModalFAQButton.d.ts
|
|
3774
3776
|
type FAQButtonProps = {
|
|
@@ -3777,13 +3779,13 @@ type FAQButtonProps = {
|
|
|
3777
3779
|
declare const ModalFAQButton: ({
|
|
3778
3780
|
onClick,
|
|
3779
3781
|
...props
|
|
3780
|
-
}: FAQButtonProps) =>
|
|
3782
|
+
}: FAQButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3781
3783
|
//#endregion
|
|
3782
3784
|
//#region src/components/common/ScrollToTopWrapper.d.ts
|
|
3783
3785
|
declare const ScrollToTopWrapper: ({
|
|
3784
3786
|
children,
|
|
3785
3787
|
...props
|
|
3786
|
-
}: StackProps) =>
|
|
3788
|
+
}: StackProps) => react_jsx_runtime0.JSX.Element;
|
|
3787
3789
|
//#endregion
|
|
3788
3790
|
//#region src/components/common/AccountAvatar.d.ts
|
|
3789
3791
|
type AccountAvatarProps = {
|
|
@@ -3793,7 +3795,7 @@ type AccountAvatarProps = {
|
|
|
3793
3795
|
declare const AccountAvatar: ({
|
|
3794
3796
|
wallet,
|
|
3795
3797
|
props
|
|
3796
|
-
}: AccountAvatarProps) =>
|
|
3798
|
+
}: AccountAvatarProps) => react_jsx_runtime0.JSX.Element;
|
|
3797
3799
|
//#endregion
|
|
3798
3800
|
//#region src/components/common/TransactionButtonAndStatus.d.ts
|
|
3799
3801
|
type TransactionButtonAndStatusProps = {
|
|
@@ -3835,7 +3837,7 @@ declare const TransactionButtonAndStatus: ({
|
|
|
3835
3837
|
isLoadingGasEstimation,
|
|
3836
3838
|
showGasEstimationError,
|
|
3837
3839
|
context
|
|
3838
|
-
}: TransactionButtonAndStatusProps) =>
|
|
3840
|
+
}: TransactionButtonAndStatusProps) => react_jsx_runtime0.JSX.Element;
|
|
3839
3841
|
//#endregion
|
|
3840
3842
|
//#region src/components/common/ModalNotificationButton.d.ts
|
|
3841
3843
|
type NotificationButtonProps = {
|
|
@@ -3846,7 +3848,7 @@ declare const ModalNotificationButton: ({
|
|
|
3846
3848
|
onClick,
|
|
3847
3849
|
hasUnreadNotifications,
|
|
3848
3850
|
...props
|
|
3849
|
-
}: NotificationButtonProps) =>
|
|
3851
|
+
}: NotificationButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3850
3852
|
//#endregion
|
|
3851
3853
|
//#region src/components/common/GasFeeSummary.d.ts
|
|
3852
3854
|
interface GasFeeSummaryProps {
|
|
@@ -3882,7 +3884,7 @@ declare const GasFeeTokenSelector: ({
|
|
|
3882
3884
|
availableTokens,
|
|
3883
3885
|
tokenEstimations,
|
|
3884
3886
|
walletAddress
|
|
3885
|
-
}: GasFeeTokenSelectorProps) =>
|
|
3887
|
+
}: GasFeeTokenSelectorProps) => react_jsx_runtime0.JSX.Element;
|
|
3886
3888
|
//#endregion
|
|
3887
3889
|
//#region src/components/LoginLoadingModal/LoginLoadingModal.d.ts
|
|
3888
3890
|
type LoginLoadingModalProps = {
|
|
@@ -3900,7 +3902,7 @@ declare const LoginLoadingModal: ({
|
|
|
3900
3902
|
title,
|
|
3901
3903
|
loadingText,
|
|
3902
3904
|
onTryAgain
|
|
3903
|
-
}: LoginLoadingModalProps) =>
|
|
3905
|
+
}: LoginLoadingModalProps) => react_jsx_runtime0.JSX.Element;
|
|
3904
3906
|
//#endregion
|
|
3905
3907
|
//#region src/components/EcosystemModal/EcosystemModal.d.ts
|
|
3906
3908
|
type Props$3 = {
|
|
@@ -3914,7 +3916,7 @@ declare const EcosystemModal: ({
|
|
|
3914
3916
|
onClose,
|
|
3915
3917
|
appsInfo,
|
|
3916
3918
|
isLoading
|
|
3917
|
-
}: Props$3) =>
|
|
3919
|
+
}: Props$3) => react_jsx_runtime0.JSX.Element;
|
|
3918
3920
|
//#endregion
|
|
3919
3921
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
3920
3922
|
type SuccessfulOperationContentProps = {
|
|
@@ -3944,7 +3946,7 @@ declare const UpgradeSmartAccountModal: ({
|
|
|
3944
3946
|
isOpen,
|
|
3945
3947
|
onClose,
|
|
3946
3948
|
style
|
|
3947
|
-
}: Props$2) =>
|
|
3949
|
+
}: Props$2) => react_jsx_runtime0.JSX.Element;
|
|
3948
3950
|
//#endregion
|
|
3949
3951
|
//#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
|
|
3950
3952
|
type Props$1 = {
|
|
@@ -3959,7 +3961,7 @@ declare const LegalDocumentsModal: ({
|
|
|
3959
3961
|
onAgree,
|
|
3960
3962
|
handleLogout,
|
|
3961
3963
|
onlyOptionalDocuments
|
|
3962
|
-
}: Props$1) =>
|
|
3964
|
+
}: Props$1) => react_jsx_runtime0.JSX.Element;
|
|
3963
3965
|
//#endregion
|
|
3964
3966
|
//#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
|
|
3965
3967
|
type Props = {
|
|
@@ -3971,7 +3973,7 @@ declare const LegalDocumentItem: ({
|
|
|
3971
3973
|
document,
|
|
3972
3974
|
register,
|
|
3973
3975
|
isText
|
|
3974
|
-
}: Props) =>
|
|
3976
|
+
}: Props) => react_jsx_runtime0.JSX.Element;
|
|
3975
3977
|
//#endregion
|
|
3976
3978
|
//#region src/providers/ModalProvider.d.ts
|
|
3977
3979
|
type AccountModalOptions = {
|
|
@@ -4002,7 +4004,7 @@ declare const ModalProvider: ({
|
|
|
4002
4004
|
children
|
|
4003
4005
|
}: {
|
|
4004
4006
|
children: ReactNode;
|
|
4005
|
-
}) =>
|
|
4007
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
4006
4008
|
//#endregion
|
|
4007
4009
|
//#region src/config/index.d.ts
|
|
4008
4010
|
type AppConfig = {
|
|
@@ -4048,4 +4050,4 @@ type AppConfig = {
|
|
|
4048
4050
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4049
4051
|
//#endregion
|
|
4050
4052
|
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 };
|
|
4051
|
-
//# sourceMappingURL=index-
|
|
4053
|
+
//# sourceMappingURL=index-w9zDQB56.d.mts.map
|