@vechain/vechain-kit 2.2.3 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/index.d.cts +1 -1
- package/dist/assets/index.d.mts +1 -1
- package/dist/{index-DpCZuqUP.d.mts → index-5_zBNaxA.d.cts} +251 -179
- package/dist/index-5_zBNaxA.d.cts.map +1 -0
- package/dist/{index-DSMUkHcK.d.cts → index-7c9VJYh1.d.cts} +4 -4
- package/dist/{index-Bs6t5GxR.d.mts.map → index-7c9VJYh1.d.cts.map} +1 -1
- package/dist/{index-BAtr2iQI.d.cts → index-BlCAiOq5.d.mts} +297 -225
- package/dist/index-BlCAiOq5.d.mts.map +1 -0
- package/dist/{index-Bs6t5GxR.d.mts → index-Da5GOsB_.d.mts} +4 -4
- package/dist/{index-DSMUkHcK.d.cts.map → index-Da5GOsB_.d.mts.map} +1 -1
- package/dist/index.cjs +14 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +14 -6
- 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 +4 -3
- package/dist/index-BAtr2iQI.d.cts.map +0 -1
- package/dist/index-DpCZuqUP.d.mts.map +0 -1
|
@@ -1,26 +1,26 @@
|
|
|
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
|
|
5
|
-
import
|
|
4
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
|
+
import * as _vechain_sdk_network0 from "@vechain/sdk-network";
|
|
6
|
+
import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
|
|
7
|
+
import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy, useSetWalletRecovery } from "@privy-io/react-auth";
|
|
6
8
|
import * as _vechain_sdk_core0 from "@vechain/sdk-core";
|
|
7
9
|
import { Address, Certificate, CertificateData, Clause, Transaction, TransactionClause } from "@vechain/sdk-core";
|
|
8
|
-
import {
|
|
9
|
-
import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor
|
|
10
|
+
import { LogLevel, WalletSource } from "@vechain/dapp-kit";
|
|
11
|
+
import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
|
|
12
|
+
import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
|
|
13
|
+
import { IconType } from "react-icons";
|
|
10
14
|
import * as _tanstack_react_query8 from "@tanstack/react-query";
|
|
11
15
|
import { UseQueryOptions } from "@tanstack/react-query";
|
|
12
|
-
import { CustomTokenInfo } from "@vechain/contract-getters";
|
|
13
|
-
import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
|
|
14
16
|
import { z } from "zod";
|
|
17
|
+
import { CustomTokenInfo } from "@vechain/contract-getters";
|
|
15
18
|
import { Options } from "browser-image-compression";
|
|
16
|
-
import {
|
|
17
|
-
import * as _vechain_sdk_network0 from "@vechain/sdk-network";
|
|
18
|
-
import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
|
|
19
|
-
import { LogLevel, WalletSource } from "@vechain/dapp-kit";
|
|
20
|
-
import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
|
|
21
|
-
import { IconType } from "react-icons";
|
|
19
|
+
import { Account } from "viem/accounts";
|
|
22
20
|
import * as abitype0 from "abitype";
|
|
23
21
|
import { AbiParametersToPrimitiveTypes, ExtractAbiFunction, ExtractAbiFunctionNames } from "abitype";
|
|
22
|
+
import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
|
|
23
|
+
import { UseFormRegister } from "react-hook-form";
|
|
24
24
|
|
|
25
25
|
//#region src/config/network.d.ts
|
|
26
26
|
/**
|
|
@@ -426,6 +426,12 @@ interface VechainKitThemeConfig {
|
|
|
426
426
|
backdropFilter?: string;
|
|
427
427
|
borderRadius?: string;
|
|
428
428
|
rounded?: string | number;
|
|
429
|
+
/**
|
|
430
|
+
* Whether to use bottom sheet on mobile devices.
|
|
431
|
+
* When false (default), uses regular modal on all screen sizes.
|
|
432
|
+
* When true, uses bottom sheet on mobile (< 768px) and regular modal on desktop.
|
|
433
|
+
*/
|
|
434
|
+
useBottomSheetOnMobile?: boolean;
|
|
429
435
|
};
|
|
430
436
|
buttons?: {
|
|
431
437
|
secondaryButton?: {
|
|
@@ -623,7 +629,7 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
|
|
|
623
629
|
* ```
|
|
624
630
|
*/
|
|
625
631
|
declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
626
|
-
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) =>
|
|
632
|
+
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime0.JSX.Element;
|
|
627
633
|
//#endregion
|
|
628
634
|
//#region src/providers/PrivyWalletProvider.d.ts
|
|
629
635
|
interface PrivyWalletProviderContextType {
|
|
@@ -666,7 +672,7 @@ declare const PrivyWalletProvider: ({
|
|
|
666
672
|
delegatorUrl?: string;
|
|
667
673
|
delegateAllTransactions: boolean;
|
|
668
674
|
genericDelegator?: boolean;
|
|
669
|
-
}) =>
|
|
675
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
670
676
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
671
677
|
//#endregion
|
|
672
678
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
@@ -678,17 +684,18 @@ type Props$32 = {
|
|
|
678
684
|
declare const useVechainKitThemeConfig: () => {
|
|
679
685
|
portalRootRef?: React.RefObject<HTMLDivElement | null>;
|
|
680
686
|
tokens?: ThemeTokens;
|
|
687
|
+
themeConfig?: VechainKitThemeConfig;
|
|
681
688
|
};
|
|
682
689
|
declare const ColorModeSync: ({
|
|
683
690
|
darkMode
|
|
684
691
|
}: {
|
|
685
692
|
darkMode: boolean;
|
|
686
|
-
}) =>
|
|
693
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
687
694
|
declare const VechainKitThemeProvider: ({
|
|
688
695
|
children,
|
|
689
696
|
darkMode,
|
|
690
697
|
theme: customTheme
|
|
691
|
-
}: Props$32) =>
|
|
698
|
+
}: Props$32) => react_jsx_runtime0.JSX.Element;
|
|
692
699
|
//#endregion
|
|
693
700
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
694
701
|
type Props$31 = {
|
|
@@ -704,18 +711,41 @@ type LegalDocumentsContextType = {
|
|
|
704
711
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
705
712
|
declare const LegalDocumentsProvider: ({
|
|
706
713
|
children
|
|
707
|
-
}: Props$31) =>
|
|
714
|
+
}: Props$31) => react_jsx_runtime0.JSX.Element;
|
|
708
715
|
//#endregion
|
|
709
716
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
710
717
|
type Props$30 = {
|
|
711
718
|
isOpen: boolean;
|
|
712
719
|
onClose: () => void;
|
|
720
|
+
initialContent?: ConnectModalContentsTypes;
|
|
721
|
+
};
|
|
722
|
+
type ConnectModalContentsTypes = 'main' | 'faq' | {
|
|
723
|
+
type: 'ecosystem';
|
|
724
|
+
props: {
|
|
725
|
+
appsInfo: PrivyAppInfo[];
|
|
726
|
+
isLoading: boolean;
|
|
727
|
+
showBackButton?: boolean;
|
|
728
|
+
};
|
|
729
|
+
} | {
|
|
730
|
+
type: 'loading';
|
|
731
|
+
props: {
|
|
732
|
+
title?: string;
|
|
733
|
+
loadingText?: string;
|
|
734
|
+
onTryAgain?: () => void;
|
|
735
|
+
showBackButton?: boolean;
|
|
736
|
+
};
|
|
737
|
+
} | {
|
|
738
|
+
type: 'error';
|
|
739
|
+
props: {
|
|
740
|
+
error: string;
|
|
741
|
+
onTryAgain: () => void;
|
|
742
|
+
};
|
|
713
743
|
};
|
|
714
|
-
type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
|
|
715
744
|
declare const ConnectModal: ({
|
|
716
745
|
isOpen,
|
|
717
|
-
onClose
|
|
718
|
-
|
|
746
|
+
onClose,
|
|
747
|
+
initialContent
|
|
748
|
+
}: Props$30) => react_jsx_runtime0.JSX.Element;
|
|
719
749
|
//#endregion
|
|
720
750
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
721
751
|
type Props$29 = {
|
|
@@ -723,9 +753,56 @@ type Props$29 = {
|
|
|
723
753
|
onClose: () => void;
|
|
724
754
|
};
|
|
725
755
|
declare const MainContent: ({
|
|
756
|
+
setCurrentContent
|
|
757
|
+
}: Props$29) => react_jsx_runtime0.JSX.Element;
|
|
758
|
+
//#endregion
|
|
759
|
+
//#region src/components/ConnectModal/Contents/LoadingContent.d.ts
|
|
760
|
+
type LoadingContentProps = {
|
|
761
|
+
loadingText?: string;
|
|
762
|
+
title?: string;
|
|
763
|
+
onTryAgain?: () => void;
|
|
764
|
+
onClose: () => void;
|
|
765
|
+
onGoBack: () => void;
|
|
766
|
+
showBackButton?: boolean;
|
|
767
|
+
};
|
|
768
|
+
declare const LoadingContent: ({
|
|
769
|
+
loadingText,
|
|
770
|
+
title,
|
|
771
|
+
onTryAgain,
|
|
772
|
+
onClose,
|
|
773
|
+
onGoBack,
|
|
774
|
+
showBackButton
|
|
775
|
+
}: LoadingContentProps) => react_jsx_runtime0.JSX.Element;
|
|
776
|
+
//#endregion
|
|
777
|
+
//#region src/components/ConnectModal/Contents/ErrorContent.d.ts
|
|
778
|
+
type ErrorContentProps = {
|
|
779
|
+
error: string;
|
|
780
|
+
onClose: () => void;
|
|
781
|
+
onTryAgain: () => void;
|
|
782
|
+
onGoBack: () => void;
|
|
783
|
+
};
|
|
784
|
+
declare const ErrorContent: ({
|
|
785
|
+
error,
|
|
786
|
+
onClose,
|
|
787
|
+
onTryAgain,
|
|
788
|
+
onGoBack
|
|
789
|
+
}: ErrorContentProps) => react_jsx_runtime0.JSX.Element;
|
|
790
|
+
//#endregion
|
|
791
|
+
//#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
|
|
792
|
+
type Props$28 = {
|
|
793
|
+
onClose: () => void;
|
|
794
|
+
appsInfo: PrivyAppInfo[];
|
|
795
|
+
isLoading: boolean;
|
|
796
|
+
setCurrentContent: React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
|
|
797
|
+
showBackButton?: boolean;
|
|
798
|
+
};
|
|
799
|
+
declare const EcosystemContent: ({
|
|
800
|
+
onClose,
|
|
801
|
+
appsInfo,
|
|
802
|
+
isLoading,
|
|
726
803
|
setCurrentContent,
|
|
727
|
-
|
|
728
|
-
}: Props$
|
|
804
|
+
showBackButton
|
|
805
|
+
}: Props$28) => react_jsx_runtime0.JSX.Element;
|
|
729
806
|
//#endregion
|
|
730
807
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
731
808
|
interface ConnectionButtonProps {
|
|
@@ -748,35 +825,39 @@ declare const ConnectionButton: ({
|
|
|
748
825
|
style,
|
|
749
826
|
variant,
|
|
750
827
|
iconWidth
|
|
751
|
-
}: ConnectionButtonProps) =>
|
|
828
|
+
}: ConnectionButtonProps) => react_jsx_runtime0.JSX.Element | null;
|
|
752
829
|
//#endregion
|
|
753
830
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
754
|
-
declare const EmailLoginButton: () =>
|
|
831
|
+
declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
|
|
755
832
|
//#endregion
|
|
756
833
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
757
|
-
type Props$
|
|
834
|
+
type Props$27 = {
|
|
758
835
|
isDark: boolean;
|
|
759
836
|
gridColumn?: number;
|
|
837
|
+
setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
|
|
760
838
|
};
|
|
761
839
|
declare const VeChainLoginButton: ({
|
|
762
840
|
isDark,
|
|
763
|
-
gridColumn
|
|
764
|
-
|
|
841
|
+
gridColumn,
|
|
842
|
+
setCurrentContent
|
|
843
|
+
}: Props$27) => react_jsx_runtime0.JSX.Element;
|
|
765
844
|
//#endregion
|
|
766
845
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
767
|
-
type Props$
|
|
846
|
+
type Props$26 = {
|
|
768
847
|
isDark: boolean;
|
|
769
848
|
appsInfo: PrivyAppInfo[];
|
|
770
849
|
isLoading: boolean;
|
|
771
850
|
gridColumn?: number;
|
|
851
|
+
setCurrentContent: React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
|
|
772
852
|
};
|
|
773
853
|
declare const EcosystemButton: ({
|
|
774
854
|
appsInfo,
|
|
775
|
-
isLoading
|
|
776
|
-
|
|
855
|
+
isLoading,
|
|
856
|
+
setCurrentContent
|
|
857
|
+
}: Props$26) => react_jsx_runtime0.JSX.Element;
|
|
777
858
|
//#endregion
|
|
778
859
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
779
|
-
type Props$
|
|
860
|
+
type Props$25 = {
|
|
780
861
|
isDark: boolean;
|
|
781
862
|
onViewMoreLogin: () => void;
|
|
782
863
|
gridColumn?: number;
|
|
@@ -785,57 +866,59 @@ declare const PrivyButton: ({
|
|
|
785
866
|
isDark,
|
|
786
867
|
onViewMoreLogin,
|
|
787
868
|
gridColumn
|
|
788
|
-
}: Props$
|
|
869
|
+
}: Props$25) => react_jsx_runtime0.JSX.Element;
|
|
789
870
|
//#endregion
|
|
790
871
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
791
|
-
type Props$
|
|
872
|
+
type Props$24 = {
|
|
792
873
|
isDark: boolean;
|
|
793
874
|
gridColumn?: number;
|
|
794
875
|
};
|
|
795
876
|
declare const LoginWithGoogleButton: ({
|
|
796
877
|
isDark,
|
|
797
878
|
gridColumn
|
|
798
|
-
}: Props$
|
|
879
|
+
}: Props$24) => react_jsx_runtime0.JSX.Element;
|
|
799
880
|
//#endregion
|
|
800
881
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
801
|
-
type Props$
|
|
882
|
+
type Props$23 = {
|
|
802
883
|
isDark: boolean;
|
|
803
884
|
gridColumn?: number;
|
|
885
|
+
setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
|
|
804
886
|
};
|
|
805
887
|
declare const PasskeyLoginButton: ({
|
|
806
888
|
isDark,
|
|
807
|
-
gridColumn
|
|
808
|
-
|
|
889
|
+
gridColumn,
|
|
890
|
+
setCurrentContent
|
|
891
|
+
}: Props$23) => react_jsx_runtime0.JSX.Element;
|
|
809
892
|
//#endregion
|
|
810
893
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
811
|
-
type Props$
|
|
894
|
+
type Props$22 = {
|
|
812
895
|
isDark: boolean;
|
|
813
896
|
gridColumn?: number;
|
|
814
897
|
};
|
|
815
898
|
declare const DappKitButton: ({
|
|
816
899
|
isDark,
|
|
817
900
|
gridColumn
|
|
818
|
-
}: Props$
|
|
901
|
+
}: Props$22) => react_jsx_runtime0.JSX.Element;
|
|
819
902
|
//#endregion
|
|
820
903
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
821
|
-
type Props$
|
|
904
|
+
type Props$21 = {
|
|
822
905
|
isDark: boolean;
|
|
823
906
|
gridColumn?: number;
|
|
824
907
|
};
|
|
825
908
|
declare const VeChainWithPrivyLoginButton: ({
|
|
826
909
|
isDark,
|
|
827
910
|
gridColumn
|
|
828
|
-
}: Props$
|
|
911
|
+
}: Props$21) => react_jsx_runtime0.JSX.Element;
|
|
829
912
|
//#endregion
|
|
830
913
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
831
|
-
type Props$
|
|
914
|
+
type Props$20 = {
|
|
832
915
|
isDark: boolean;
|
|
833
916
|
gridColumn?: number;
|
|
834
917
|
};
|
|
835
918
|
declare const LoginWithGithubButton: ({
|
|
836
919
|
isDark,
|
|
837
920
|
gridColumn
|
|
838
|
-
}: Props$
|
|
921
|
+
}: Props$20) => react_jsx_runtime0.JSX.Element;
|
|
839
922
|
//#endregion
|
|
840
923
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
841
924
|
type ConnectPopoverProps = {
|
|
@@ -845,7 +928,7 @@ type ConnectPopoverProps = {
|
|
|
845
928
|
declare const ConnectPopover: ({
|
|
846
929
|
isLoading,
|
|
847
930
|
buttonStyle
|
|
848
|
-
}: ConnectPopoverProps) =>
|
|
931
|
+
}: ConnectPopoverProps) => react_jsx_runtime0.JSX.Element;
|
|
849
932
|
//#endregion
|
|
850
933
|
//#region src/components/WalletButton/types.d.ts
|
|
851
934
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
@@ -862,10 +945,10 @@ declare const WalletButton: ({
|
|
|
862
945
|
desktopVariant,
|
|
863
946
|
buttonStyle,
|
|
864
947
|
connectionVariant
|
|
865
|
-
}: WalletButtonProps) =>
|
|
948
|
+
}: WalletButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
866
949
|
//#endregion
|
|
867
950
|
//#region src/components/WalletButton/SocialIcons.d.ts
|
|
868
|
-
declare const SocialIcons: () =>
|
|
951
|
+
declare const SocialIcons: () => react_jsx_runtime0.JSX.Element;
|
|
869
952
|
//#endregion
|
|
870
953
|
//#region src/components/TransactionModal/TransactionModal.d.ts
|
|
871
954
|
type TransactionModalProps = {
|
|
@@ -895,17 +978,17 @@ declare const TransactionModal: ({
|
|
|
895
978
|
txReceipt,
|
|
896
979
|
txError,
|
|
897
980
|
onTryAgain
|
|
898
|
-
}: TransactionModalProps) =>
|
|
981
|
+
}: TransactionModalProps) => react_jsx_runtime0.JSX.Element | null;
|
|
899
982
|
//#endregion
|
|
900
983
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
901
|
-
type Props$
|
|
984
|
+
type Props$19 = {
|
|
902
985
|
descriptionEncoded: string;
|
|
903
986
|
url?: string;
|
|
904
987
|
facebookHashtag?: string;
|
|
905
988
|
};
|
|
906
989
|
declare const ShareButtons: ({
|
|
907
990
|
descriptionEncoded
|
|
908
|
-
}: Props$
|
|
991
|
+
}: Props$19) => react_jsx_runtime0.JSX.Element;
|
|
909
992
|
//#endregion
|
|
910
993
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
911
994
|
declare const TransactionModalContent: ({
|
|
@@ -915,7 +998,7 @@ declare const TransactionModalContent: ({
|
|
|
915
998
|
txReceipt,
|
|
916
999
|
txError,
|
|
917
1000
|
onClose
|
|
918
|
-
}: Omit<TransactionModalProps, "isOpen">) =>
|
|
1001
|
+
}: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime0.JSX.Element;
|
|
919
1002
|
//#endregion
|
|
920
1003
|
//#region src/components/TransactionToast/TransactionToast.d.ts
|
|
921
1004
|
type TransactionToastProps = {
|
|
@@ -935,10 +1018,10 @@ declare const TransactionToast: ({
|
|
|
935
1018
|
txError,
|
|
936
1019
|
onTryAgain,
|
|
937
1020
|
description
|
|
938
|
-
}: TransactionToastProps) =>
|
|
1021
|
+
}: TransactionToastProps) => react_jsx_runtime0.JSX.Element | null;
|
|
939
1022
|
//#endregion
|
|
940
1023
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
941
|
-
type Props$
|
|
1024
|
+
type Props$18 = {
|
|
942
1025
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
943
1026
|
onClose: () => void;
|
|
944
1027
|
wallet: Wallet;
|
|
@@ -947,7 +1030,7 @@ declare const AccountMainContent: ({
|
|
|
947
1030
|
setCurrentContent,
|
|
948
1031
|
wallet,
|
|
949
1032
|
onClose
|
|
950
|
-
}: Props$
|
|
1033
|
+
}: Props$18) => react_jsx_runtime0.JSX.Element;
|
|
951
1034
|
//#endregion
|
|
952
1035
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
953
1036
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
@@ -1304,7 +1387,7 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1304
1387
|
}, Error>[];
|
|
1305
1388
|
//#endregion
|
|
1306
1389
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1307
|
-
declare const getTokenInfo
|
|
1390
|
+
declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1308
1391
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1309
1392
|
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
|
|
1310
1393
|
//#endregion
|
|
@@ -1419,7 +1502,7 @@ type UseWalletReturnType = {
|
|
|
1419
1502
|
};
|
|
1420
1503
|
disconnect: () => Promise<void>;
|
|
1421
1504
|
};
|
|
1422
|
-
declare const useWallet
|
|
1505
|
+
declare const useWallet: () => UseWalletReturnType;
|
|
1423
1506
|
//#endregion
|
|
1424
1507
|
//#region src/hooks/api/wallet/useWalletMetadata.d.ts
|
|
1425
1508
|
declare const useWalletMetadata: (address: string, networkType: NETWORK_TYPE) => {
|
|
@@ -1555,7 +1638,7 @@ declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =
|
|
|
1555
1638
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1556
1639
|
declare const imageCompressionOptions: Options;
|
|
1557
1640
|
declare const compressImages: (images: UploadedImage[]) => Promise<File[]>;
|
|
1558
|
-
type Props$
|
|
1641
|
+
type Props$17 = {
|
|
1559
1642
|
compressImages?: boolean;
|
|
1560
1643
|
defaultImages?: UploadedImage[];
|
|
1561
1644
|
};
|
|
@@ -1571,7 +1654,7 @@ type UploadedImage = {
|
|
|
1571
1654
|
declare const useUploadImages: ({
|
|
1572
1655
|
compressImages,
|
|
1573
1656
|
defaultImages
|
|
1574
|
-
}: Props$
|
|
1657
|
+
}: Props$17) => {
|
|
1575
1658
|
uploadedImages: UploadedImage[];
|
|
1576
1659
|
setUploadedImages: react0.Dispatch<react0.SetStateAction<UploadedImage[]>>;
|
|
1577
1660
|
onUpload: (acceptedFiles: File[], keepCurrent?: boolean) => Promise<void>;
|
|
@@ -1580,7 +1663,7 @@ declare const useUploadImages: ({
|
|
|
1580
1663
|
};
|
|
1581
1664
|
//#endregion
|
|
1582
1665
|
//#region src/hooks/api/ipfs/useSingleImageUpload.d.ts
|
|
1583
|
-
type Props$
|
|
1666
|
+
type Props$16 = {
|
|
1584
1667
|
compressImage?: boolean;
|
|
1585
1668
|
defaultImage?: UploadedImage;
|
|
1586
1669
|
};
|
|
@@ -1593,7 +1676,7 @@ type Props$17 = {
|
|
|
1593
1676
|
declare const useSingleImageUpload: ({
|
|
1594
1677
|
compressImage,
|
|
1595
1678
|
defaultImage
|
|
1596
|
-
}: Props$
|
|
1679
|
+
}: Props$16) => {
|
|
1597
1680
|
uploadedImage: UploadedImage | undefined;
|
|
1598
1681
|
setUploadedImage: react0.Dispatch<react0.SetStateAction<UploadedImage | undefined>>;
|
|
1599
1682
|
onUpload: (acceptedFile: File) => Promise<UploadedImage>;
|
|
@@ -1761,7 +1844,7 @@ declare const useSwapQuotes: (fromToken: TokenWithValue | null, toToken: TokenWi
|
|
|
1761
1844
|
//#endregion
|
|
1762
1845
|
//#region src/hooks/modals/useConnectModal.d.ts
|
|
1763
1846
|
declare const useConnectModal: () => {
|
|
1764
|
-
open: () => void;
|
|
1847
|
+
open: (initialContent?: ConnectModalContentsTypes) => void;
|
|
1765
1848
|
close: () => void;
|
|
1766
1849
|
isOpen: boolean;
|
|
1767
1850
|
};
|
|
@@ -1769,7 +1852,7 @@ declare const ConnectModalProvider: ({
|
|
|
1769
1852
|
children
|
|
1770
1853
|
}: {
|
|
1771
1854
|
children: ReactNode;
|
|
1772
|
-
}) =>
|
|
1855
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1773
1856
|
//#endregion
|
|
1774
1857
|
//#region src/hooks/modals/useAccountModal.d.ts
|
|
1775
1858
|
declare const useAccountModal: () => {
|
|
@@ -1781,7 +1864,7 @@ declare const AccountModalProvider: ({
|
|
|
1781
1864
|
children
|
|
1782
1865
|
}: {
|
|
1783
1866
|
children: ReactNode;
|
|
1784
|
-
}) =>
|
|
1867
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1785
1868
|
//#endregion
|
|
1786
1869
|
//#region src/hooks/modals/useTransactionModal.d.ts
|
|
1787
1870
|
declare const useTransactionModal: () => {
|
|
@@ -1793,7 +1876,7 @@ declare const TransactionModalProvider: ({
|
|
|
1793
1876
|
children
|
|
1794
1877
|
}: {
|
|
1795
1878
|
children: ReactNode;
|
|
1796
|
-
}) =>
|
|
1879
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1797
1880
|
//#endregion
|
|
1798
1881
|
//#region src/hooks/modals/useTransactionToast.d.ts
|
|
1799
1882
|
declare const useTransactionToast: () => {
|
|
@@ -1805,7 +1888,7 @@ declare const TransactionToastProvider: ({
|
|
|
1805
1888
|
children
|
|
1806
1889
|
}: {
|
|
1807
1890
|
children: ReactNode;
|
|
1808
|
-
}) =>
|
|
1891
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1809
1892
|
//#endregion
|
|
1810
1893
|
//#region src/hooks/modals/useWalletModal.d.ts
|
|
1811
1894
|
declare const useWalletModal: () => {
|
|
@@ -1817,7 +1900,7 @@ declare const WalletModalProvider: ({
|
|
|
1817
1900
|
children
|
|
1818
1901
|
}: {
|
|
1819
1902
|
children: ReactNode;
|
|
1820
|
-
}) =>
|
|
1903
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1821
1904
|
//#endregion
|
|
1822
1905
|
//#region src/hooks/modals/useChooseNameModal.d.ts
|
|
1823
1906
|
declare const useChooseNameModal: () => {
|
|
@@ -1829,7 +1912,7 @@ declare const ChooseNameModalProvider: ({
|
|
|
1829
1912
|
children
|
|
1830
1913
|
}: {
|
|
1831
1914
|
children: ReactNode;
|
|
1832
|
-
}) =>
|
|
1915
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1833
1916
|
//#endregion
|
|
1834
1917
|
//#region src/hooks/modals/useSendTokenModal.d.ts
|
|
1835
1918
|
declare const useSendTokenModal: () => {
|
|
@@ -1841,7 +1924,7 @@ declare const SendTokenModalProvider: ({
|
|
|
1841
1924
|
children
|
|
1842
1925
|
}: {
|
|
1843
1926
|
children: ReactNode;
|
|
1844
|
-
}) =>
|
|
1927
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1845
1928
|
//#endregion
|
|
1846
1929
|
//#region src/hooks/modals/useSwapTokenModal.d.ts
|
|
1847
1930
|
type SwapTokenModalOptions = {
|
|
@@ -1858,7 +1941,7 @@ declare const SwapTokenModalProvider: ({
|
|
|
1858
1941
|
children
|
|
1859
1942
|
}: {
|
|
1860
1943
|
children: ReactNode;
|
|
1861
|
-
}) =>
|
|
1944
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1862
1945
|
//#endregion
|
|
1863
1946
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
1864
1947
|
declare const useExploreEcosystemModal: () => {
|
|
@@ -1870,7 +1953,7 @@ declare const ExploreEcosystemModalProvider: ({
|
|
|
1870
1953
|
children
|
|
1871
1954
|
}: {
|
|
1872
1955
|
children: ReactNode;
|
|
1873
|
-
}) =>
|
|
1956
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1874
1957
|
//#endregion
|
|
1875
1958
|
//#region src/hooks/modals/useNotificationsModal.d.ts
|
|
1876
1959
|
declare const useNotificationsModal: () => {
|
|
@@ -1882,7 +1965,7 @@ declare const NotificationsModalProvider: ({
|
|
|
1882
1965
|
children
|
|
1883
1966
|
}: {
|
|
1884
1967
|
children: ReactNode;
|
|
1885
|
-
}) =>
|
|
1968
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1886
1969
|
//#endregion
|
|
1887
1970
|
//#region src/hooks/modals/useFAQModal.d.ts
|
|
1888
1971
|
declare const useFAQModal: () => {
|
|
@@ -1894,7 +1977,7 @@ declare const FAQModalProvider: ({
|
|
|
1894
1977
|
children
|
|
1895
1978
|
}: {
|
|
1896
1979
|
children: ReactNode;
|
|
1897
|
-
}) =>
|
|
1980
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1898
1981
|
//#endregion
|
|
1899
1982
|
//#region src/hooks/modals/useAccountCustomizationModal.d.ts
|
|
1900
1983
|
declare const useAccountCustomizationModal: () => {
|
|
@@ -1906,7 +1989,7 @@ declare const AccountCustomizationModalProvider: ({
|
|
|
1906
1989
|
children
|
|
1907
1990
|
}: {
|
|
1908
1991
|
children: ReactNode;
|
|
1909
|
-
}) =>
|
|
1992
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1910
1993
|
//#endregion
|
|
1911
1994
|
//#region src/hooks/modals/useReceiveModal.d.ts
|
|
1912
1995
|
declare const useReceiveModal: () => {
|
|
@@ -1918,7 +2001,7 @@ declare const ReceiveModalProvider: ({
|
|
|
1918
2001
|
children
|
|
1919
2002
|
}: {
|
|
1920
2003
|
children: ReactNode;
|
|
1921
|
-
}) =>
|
|
2004
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1922
2005
|
//#endregion
|
|
1923
2006
|
//#region src/hooks/modals/useLoginModalContent.d.ts
|
|
1924
2007
|
type LoginModalContentConfig = {
|
|
@@ -1944,7 +2027,7 @@ declare const UpgradeSmartAccountModalProvider: ({
|
|
|
1944
2027
|
children
|
|
1945
2028
|
}: {
|
|
1946
2029
|
children: ReactNode;
|
|
1947
|
-
}) =>
|
|
2030
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1948
2031
|
//#endregion
|
|
1949
2032
|
//#region src/hooks/modals/useProfileModal.d.ts
|
|
1950
2033
|
declare const useProfileModal: () => {
|
|
@@ -1956,7 +2039,7 @@ declare const ProfileModalProvider: ({
|
|
|
1956
2039
|
children
|
|
1957
2040
|
}: {
|
|
1958
2041
|
children: ReactNode;
|
|
1959
|
-
}) =>
|
|
2042
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1960
2043
|
//#endregion
|
|
1961
2044
|
//#region src/hooks/modals/useAccountModalOptions.d.ts
|
|
1962
2045
|
declare const useAccountModalOptions: () => {
|
|
@@ -2027,7 +2110,7 @@ type UseSignTypedDataReturnValue = {
|
|
|
2027
2110
|
declare const useSignTypedData: () => UseSignTypedDataReturnValue;
|
|
2028
2111
|
//#endregion
|
|
2029
2112
|
//#region src/hooks/login/useLoginWithPasskey.d.ts
|
|
2030
|
-
declare const useLoginWithPasskey
|
|
2113
|
+
declare const useLoginWithPasskey: () => {
|
|
2031
2114
|
loginWithPasskey: () => Promise<void>;
|
|
2032
2115
|
};
|
|
2033
2116
|
//#endregion
|
|
@@ -2035,7 +2118,7 @@ declare const useLoginWithPasskey$1: () => {
|
|
|
2035
2118
|
interface OAuthOptions {
|
|
2036
2119
|
provider: OAuthProviderType;
|
|
2037
2120
|
}
|
|
2038
|
-
declare const useLoginWithOAuth
|
|
2121
|
+
declare const useLoginWithOAuth: () => {
|
|
2039
2122
|
initOAuth: ({
|
|
2040
2123
|
provider
|
|
2041
2124
|
}: OAuthOptions) => Promise<void>;
|
|
@@ -3184,7 +3267,7 @@ declare const SendTokenContent: ({
|
|
|
3184
3267
|
initialAmount,
|
|
3185
3268
|
initialToAddressOrDomain,
|
|
3186
3269
|
onBack: parentOnBack
|
|
3187
|
-
}: SendTokenContentProps) =>
|
|
3270
|
+
}: SendTokenContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3188
3271
|
//#endregion
|
|
3189
3272
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
|
|
3190
3273
|
type SendTokenSummaryContentProps = {
|
|
@@ -3204,10 +3287,10 @@ declare const SendTokenSummaryContent: ({
|
|
|
3204
3287
|
amount,
|
|
3205
3288
|
selectedToken,
|
|
3206
3289
|
formattedTotalAmount
|
|
3207
|
-
}: SendTokenSummaryContentProps) =>
|
|
3290
|
+
}: SendTokenSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3208
3291
|
//#endregion
|
|
3209
3292
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
3210
|
-
type Props$
|
|
3293
|
+
type Props$15 = {
|
|
3211
3294
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3212
3295
|
onSelectToken: (token: TokenWithValue) => void;
|
|
3213
3296
|
onBack: () => void;
|
|
@@ -3220,18 +3303,18 @@ declare const SelectTokenContent: ({
|
|
|
3220
3303
|
onSelectToken,
|
|
3221
3304
|
onBack,
|
|
3222
3305
|
showAllTokens
|
|
3223
|
-
}: Props$
|
|
3306
|
+
}: Props$15) => react_jsx_runtime0.JSX.Element;
|
|
3224
3307
|
//#endregion
|
|
3225
3308
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
3226
|
-
type Props$
|
|
3309
|
+
type Props$14 = {
|
|
3227
3310
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3228
3311
|
};
|
|
3229
3312
|
declare const ReceiveTokenContent: ({
|
|
3230
3313
|
setCurrentContent
|
|
3231
|
-
}: Props$
|
|
3314
|
+
}: Props$14) => react_jsx_runtime0.JSX.Element;
|
|
3232
3315
|
//#endregion
|
|
3233
3316
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
3234
|
-
type Props$
|
|
3317
|
+
type Props$13 = {
|
|
3235
3318
|
setCurrentContent: React$1.Dispatch<React$1.SetStateAction<AccountModalContentTypes>>;
|
|
3236
3319
|
fromTokenAddress?: string;
|
|
3237
3320
|
toTokenAddress?: string;
|
|
@@ -3240,7 +3323,7 @@ declare const SwapTokenContent: ({
|
|
|
3240
3323
|
setCurrentContent,
|
|
3241
3324
|
fromTokenAddress,
|
|
3242
3325
|
toTokenAddress
|
|
3243
|
-
}: Props$
|
|
3326
|
+
}: Props$13) => react_jsx_runtime0.JSX.Element;
|
|
3244
3327
|
//#endregion
|
|
3245
3328
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
3246
3329
|
type ChooseNameContentProps = {
|
|
@@ -3252,7 +3335,7 @@ declare const ChooseNameContent: ({
|
|
|
3252
3335
|
setCurrentContent,
|
|
3253
3336
|
onBack,
|
|
3254
3337
|
initialContentSource
|
|
3255
|
-
}: ChooseNameContentProps) =>
|
|
3338
|
+
}: ChooseNameContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3256
3339
|
//#endregion
|
|
3257
3340
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
|
|
3258
3341
|
type ChooseNameSearchContentProps = {
|
|
@@ -3264,7 +3347,7 @@ declare const ChooseNameSearchContent: ({
|
|
|
3264
3347
|
name: initialName,
|
|
3265
3348
|
setCurrentContent,
|
|
3266
3349
|
initialContentSource
|
|
3267
|
-
}: ChooseNameSearchContentProps) =>
|
|
3350
|
+
}: ChooseNameSearchContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3268
3351
|
//#endregion
|
|
3269
3352
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
|
|
3270
3353
|
type ChooseNameSummaryContentProps = {
|
|
@@ -3282,7 +3365,7 @@ declare const ChooseNameSummaryContent: ({
|
|
|
3282
3365
|
isOwnDomain,
|
|
3283
3366
|
isUnsetting,
|
|
3284
3367
|
initialContentSource
|
|
3285
|
-
}: ChooseNameSummaryContentProps) =>
|
|
3368
|
+
}: ChooseNameSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3286
3369
|
//#endregion
|
|
3287
3370
|
//#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
|
|
3288
3371
|
type FAQContentProps = {
|
|
@@ -3292,7 +3375,7 @@ type FAQContentProps = {
|
|
|
3292
3375
|
declare const FAQContent: ({
|
|
3293
3376
|
onGoBack,
|
|
3294
3377
|
showLanguageSelector
|
|
3295
|
-
}: FAQContentProps) =>
|
|
3378
|
+
}: FAQContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3296
3379
|
//#endregion
|
|
3297
3380
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
|
|
3298
3381
|
type AccountCustomizationContentProps = {
|
|
@@ -3302,7 +3385,7 @@ type AccountCustomizationContentProps = {
|
|
|
3302
3385
|
declare const CustomizationContent: ({
|
|
3303
3386
|
setCurrentContent,
|
|
3304
3387
|
initialContentSource
|
|
3305
|
-
}: AccountCustomizationContentProps) =>
|
|
3388
|
+
}: AccountCustomizationContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3306
3389
|
//#endregion
|
|
3307
3390
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
|
|
3308
3391
|
type CustomizationSummaryContentProps = {
|
|
@@ -3321,7 +3404,7 @@ declare const CustomizationSummaryContent: ({
|
|
|
3321
3404
|
setCurrentContent,
|
|
3322
3405
|
changes,
|
|
3323
3406
|
onDoneRedirectContent
|
|
3324
|
-
}: CustomizationSummaryContentProps) =>
|
|
3407
|
+
}: CustomizationSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3325
3408
|
//#endregion
|
|
3326
3409
|
//#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
|
|
3327
3410
|
type ProfileContentProps = {
|
|
@@ -3331,7 +3414,7 @@ type ProfileContentProps = {
|
|
|
3331
3414
|
declare const ProfileContent: ({
|
|
3332
3415
|
setCurrentContent,
|
|
3333
3416
|
onLogoutSuccess
|
|
3334
|
-
}: ProfileContentProps) =>
|
|
3417
|
+
}: ProfileContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3335
3418
|
//#endregion
|
|
3336
3419
|
//#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
|
|
3337
3420
|
type UpgradeSmartAccountContentProps = {
|
|
@@ -3343,7 +3426,7 @@ declare const UpgradeSmartAccountContent: ({
|
|
|
3343
3426
|
setCurrentContent,
|
|
3344
3427
|
handleClose,
|
|
3345
3428
|
initialContent
|
|
3346
|
-
}: UpgradeSmartAccountContentProps) =>
|
|
3429
|
+
}: UpgradeSmartAccountContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3347
3430
|
//#endregion
|
|
3348
3431
|
//#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
|
|
3349
3432
|
type AssetsContentProps = {
|
|
@@ -3351,7 +3434,7 @@ type AssetsContentProps = {
|
|
|
3351
3434
|
};
|
|
3352
3435
|
declare const AssetsContent: ({
|
|
3353
3436
|
setCurrentContent
|
|
3354
|
-
}: AssetsContentProps) =>
|
|
3437
|
+
}: AssetsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3355
3438
|
//#endregion
|
|
3356
3439
|
//#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
|
|
3357
3440
|
type ManageCustomTokenContentProps = {
|
|
@@ -3359,15 +3442,15 @@ type ManageCustomTokenContentProps = {
|
|
|
3359
3442
|
};
|
|
3360
3443
|
declare const ManageCustomTokenContent: ({
|
|
3361
3444
|
setCurrentContent
|
|
3362
|
-
}: ManageCustomTokenContentProps) =>
|
|
3445
|
+
}: ManageCustomTokenContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3363
3446
|
//#endregion
|
|
3364
3447
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
3365
|
-
type Props$
|
|
3448
|
+
type Props$12 = {
|
|
3366
3449
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3367
3450
|
};
|
|
3368
3451
|
declare const BridgeContent: ({
|
|
3369
3452
|
setCurrentContent
|
|
3370
|
-
}: Props$
|
|
3453
|
+
}: Props$12) => react_jsx_runtime0.JSX.Element;
|
|
3371
3454
|
//#endregion
|
|
3372
3455
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
3373
3456
|
type ChangeCurrencyContentProps = {
|
|
@@ -3375,23 +3458,23 @@ type ChangeCurrencyContentProps = {
|
|
|
3375
3458
|
};
|
|
3376
3459
|
declare const ChangeCurrencyContent: ({
|
|
3377
3460
|
setCurrentContent
|
|
3378
|
-
}: ChangeCurrencyContentProps) =>
|
|
3461
|
+
}: ChangeCurrencyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3379
3462
|
//#endregion
|
|
3380
3463
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
3381
|
-
type Props$
|
|
3464
|
+
type Props$11 = {
|
|
3382
3465
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3383
3466
|
};
|
|
3384
3467
|
declare const LanguageSettingsContent: ({
|
|
3385
3468
|
setCurrentContent
|
|
3386
|
-
}: Props$
|
|
3469
|
+
}: Props$11) => react_jsx_runtime0.JSX.Element;
|
|
3387
3470
|
//#endregion
|
|
3388
3471
|
//#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
|
|
3389
|
-
type Props$
|
|
3472
|
+
type Props$10 = {
|
|
3390
3473
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3391
3474
|
};
|
|
3392
3475
|
declare const GasTokenSettingsContent: ({
|
|
3393
3476
|
setCurrentContent
|
|
3394
|
-
}: Props$
|
|
3477
|
+
}: Props$10) => react_jsx_runtime0.JSX.Element;
|
|
3395
3478
|
//#endregion
|
|
3396
3479
|
//#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
|
|
3397
3480
|
type SettingsContentProps = {
|
|
@@ -3401,7 +3484,7 @@ type SettingsContentProps = {
|
|
|
3401
3484
|
declare const SettingsContent: ({
|
|
3402
3485
|
setCurrentContent,
|
|
3403
3486
|
onLogoutSuccess
|
|
3404
|
-
}: SettingsContentProps) =>
|
|
3487
|
+
}: SettingsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3405
3488
|
//#endregion
|
|
3406
3489
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
3407
3490
|
type TermsAndPrivacyContentProps = {
|
|
@@ -3409,7 +3492,7 @@ type TermsAndPrivacyContentProps = {
|
|
|
3409
3492
|
};
|
|
3410
3493
|
declare const TermsAndPrivacyContent: ({
|
|
3411
3494
|
onGoBack
|
|
3412
|
-
}: TermsAndPrivacyContentProps) =>
|
|
3495
|
+
}: TermsAndPrivacyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3413
3496
|
//#endregion
|
|
3414
3497
|
//#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
|
|
3415
3498
|
type DisconnectConfirmContentProps = {
|
|
@@ -3425,7 +3508,7 @@ declare const DisconnectConfirmContent: ({
|
|
|
3425
3508
|
onClose,
|
|
3426
3509
|
showCloseButton,
|
|
3427
3510
|
text
|
|
3428
|
-
}: DisconnectConfirmContentProps) =>
|
|
3511
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3429
3512
|
//#endregion
|
|
3430
3513
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
3431
3514
|
type CategoryFilter = string | null;
|
|
@@ -3462,7 +3545,7 @@ type FailedOperationContentProps = {
|
|
|
3462
3545
|
};
|
|
3463
3546
|
//#endregion
|
|
3464
3547
|
//#region src/components/AccountModal/Types/Types.d.ts
|
|
3465
|
-
type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | '
|
|
3548
|
+
type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'change-currency' | 'change-language' | 'gas-token-settings' | {
|
|
3466
3549
|
type: 'swap-token';
|
|
3467
3550
|
props: {
|
|
3468
3551
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
@@ -3520,7 +3603,7 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' |
|
|
|
3520
3603
|
};
|
|
3521
3604
|
//#endregion
|
|
3522
3605
|
//#region src/components/AccountModal/AccountModal.d.ts
|
|
3523
|
-
type Props$
|
|
3606
|
+
type Props$9 = {
|
|
3524
3607
|
isOpen: boolean;
|
|
3525
3608
|
onClose: () => void;
|
|
3526
3609
|
initialContent?: AccountModalContentTypes;
|
|
@@ -3529,7 +3612,7 @@ declare const AccountModal: ({
|
|
|
3529
3612
|
isOpen,
|
|
3530
3613
|
onClose,
|
|
3531
3614
|
initialContent
|
|
3532
|
-
}: Props$
|
|
3615
|
+
}: Props$9) => react_jsx_runtime0.JSX.Element;
|
|
3533
3616
|
//#endregion
|
|
3534
3617
|
//#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
|
|
3535
3618
|
interface AccountDetailsButtonProps {
|
|
@@ -3551,7 +3634,7 @@ declare const AccountDetailsButton: ({
|
|
|
3551
3634
|
onClick,
|
|
3552
3635
|
leftImage,
|
|
3553
3636
|
isActive
|
|
3554
|
-
}: AccountDetailsButtonProps) =>
|
|
3637
|
+
}: AccountDetailsButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3555
3638
|
//#endregion
|
|
3556
3639
|
//#region src/components/AccountModal/Components/ActionButton.d.ts
|
|
3557
3640
|
type ActionButtonProps = {
|
|
@@ -3593,10 +3676,10 @@ declare const ActionButton: ({
|
|
|
3593
3676
|
extraContent,
|
|
3594
3677
|
dataTestId,
|
|
3595
3678
|
variant
|
|
3596
|
-
}: ActionButtonProps) =>
|
|
3679
|
+
}: ActionButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3597
3680
|
//#endregion
|
|
3598
3681
|
//#region src/components/AccountModal/Components/AccountSelector.d.ts
|
|
3599
|
-
type Props$
|
|
3682
|
+
type Props$8 = {
|
|
3600
3683
|
wallet: Wallet;
|
|
3601
3684
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3602
3685
|
size?: string;
|
|
@@ -3613,7 +3696,7 @@ declare const AccountSelector: ({
|
|
|
3613
3696
|
onClose,
|
|
3614
3697
|
mt,
|
|
3615
3698
|
style
|
|
3616
|
-
}: Props$
|
|
3699
|
+
}: Props$8) => react_jsx_runtime0.JSX.Element;
|
|
3617
3700
|
//#endregion
|
|
3618
3701
|
//#region src/components/AccountModal/Components/BalanceSection.d.ts
|
|
3619
3702
|
declare const BalanceSection: ({
|
|
@@ -3624,17 +3707,17 @@ declare const BalanceSection: ({
|
|
|
3624
3707
|
mb?: number;
|
|
3625
3708
|
mt?: number;
|
|
3626
3709
|
onAssetsClick?: () => void;
|
|
3627
|
-
}) =>
|
|
3710
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
3628
3711
|
//#endregion
|
|
3629
3712
|
//#region src/components/AccountModal/Components/QuickActionsSection.d.ts
|
|
3630
|
-
type Props$
|
|
3713
|
+
type Props$7 = {
|
|
3631
3714
|
mt?: number;
|
|
3632
3715
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3633
3716
|
};
|
|
3634
3717
|
declare const QuickActionsSection: ({
|
|
3635
3718
|
mt,
|
|
3636
3719
|
setCurrentContent
|
|
3637
|
-
}: Props$
|
|
3720
|
+
}: Props$7) => react_jsx_runtime0.JSX.Element;
|
|
3638
3721
|
//#endregion
|
|
3639
3722
|
//#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
|
|
3640
3723
|
type FeatureAnnouncementCardProps = {
|
|
@@ -3642,16 +3725,16 @@ type FeatureAnnouncementCardProps = {
|
|
|
3642
3725
|
};
|
|
3643
3726
|
declare const FeatureAnnouncementCard: ({
|
|
3644
3727
|
setCurrentContent
|
|
3645
|
-
}: FeatureAnnouncementCardProps) =>
|
|
3728
|
+
}: FeatureAnnouncementCardProps) => react_jsx_runtime0.JSX.Element | null;
|
|
3646
3729
|
//#endregion
|
|
3647
3730
|
//#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
|
|
3648
|
-
declare const ExchangeWarningAlert: () =>
|
|
3731
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime0.JSX.Element;
|
|
3649
3732
|
//#endregion
|
|
3650
3733
|
//#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
|
|
3651
|
-
declare const DomainRequiredAlert: () =>
|
|
3734
|
+
declare const DomainRequiredAlert: () => react_jsx_runtime0.JSX.Element;
|
|
3652
3735
|
//#endregion
|
|
3653
3736
|
//#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
|
|
3654
|
-
declare const CrossAppConnectionSecurityCard: () =>
|
|
3737
|
+
declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime0.JSX.Element;
|
|
3655
3738
|
//#endregion
|
|
3656
3739
|
//#region src/components/common/ModalBackButton.d.ts
|
|
3657
3740
|
type BackButtonProps = {
|
|
@@ -3660,10 +3743,10 @@ type BackButtonProps = {
|
|
|
3660
3743
|
declare const ModalBackButton: ({
|
|
3661
3744
|
onClick,
|
|
3662
3745
|
...props
|
|
3663
|
-
}: BackButtonProps) =>
|
|
3746
|
+
}: BackButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3664
3747
|
//#endregion
|
|
3665
3748
|
//#region src/components/common/AddressDisplay.d.ts
|
|
3666
|
-
type Props$
|
|
3749
|
+
type Props$6 = {
|
|
3667
3750
|
wallet: Wallet;
|
|
3668
3751
|
label?: string;
|
|
3669
3752
|
style?: PropsOf<typeof VStack>;
|
|
@@ -3674,29 +3757,32 @@ declare const AddressDisplay: ({
|
|
|
3674
3757
|
label,
|
|
3675
3758
|
style,
|
|
3676
3759
|
showHumanAddress
|
|
3677
|
-
}: Props$
|
|
3760
|
+
}: Props$6) => react_jsx_runtime0.JSX.Element;
|
|
3678
3761
|
//#endregion
|
|
3679
3762
|
//#region src/components/common/VersionFooter.d.ts
|
|
3680
|
-
type Props$
|
|
3763
|
+
type Props$5 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
3681
3764
|
declare const VersionFooter: ({
|
|
3682
3765
|
...props
|
|
3683
|
-
}: Props$
|
|
3766
|
+
}: Props$5) => react_jsx_runtime0.JSX.Element;
|
|
3684
3767
|
//#endregion
|
|
3685
3768
|
//#region src/components/common/StickyHeaderContainer.d.ts
|
|
3686
|
-
type Props$
|
|
3769
|
+
type Props$4 = {
|
|
3687
3770
|
children: React.ReactNode;
|
|
3688
3771
|
};
|
|
3772
|
+
declare const useStickyHeaderContext: () => {
|
|
3773
|
+
hasContentBelow: boolean;
|
|
3774
|
+
};
|
|
3689
3775
|
declare const StickyHeaderContainer: ({
|
|
3690
3776
|
children
|
|
3691
|
-
}: Props$
|
|
3777
|
+
}: Props$4) => react_jsx_runtime0.JSX.Element;
|
|
3692
3778
|
//#endregion
|
|
3693
3779
|
//#region src/components/common/StickyFooterContainer.d.ts
|
|
3694
|
-
type Props$
|
|
3780
|
+
type Props$3 = {
|
|
3695
3781
|
children: React.ReactNode;
|
|
3696
3782
|
};
|
|
3697
3783
|
declare const StickyFooterContainer: ({
|
|
3698
3784
|
children
|
|
3699
|
-
}: Props$
|
|
3785
|
+
}: Props$3) => react_jsx_runtime0.JSX.Element;
|
|
3700
3786
|
//#endregion
|
|
3701
3787
|
//#region src/components/common/BaseModal.d.ts
|
|
3702
3788
|
type BaseModalProps = {
|
|
@@ -3714,6 +3800,19 @@ type BaseModalProps = {
|
|
|
3714
3800
|
allowExternalFocus?: boolean;
|
|
3715
3801
|
backdropFilter?: string;
|
|
3716
3802
|
isCloseable?: boolean;
|
|
3803
|
+
/**
|
|
3804
|
+
* Whether to use bottom sheet on mobile devices.
|
|
3805
|
+
* When false (default), uses regular modal on all screen sizes.
|
|
3806
|
+
* When true, uses bottom sheet on mobile (< 768px) and regular modal on desktop.
|
|
3807
|
+
*/
|
|
3808
|
+
useBottomSheetOnMobile?: boolean;
|
|
3809
|
+
/**
|
|
3810
|
+
* Minimum and maximum height for the modal on mobile devices.
|
|
3811
|
+
*/
|
|
3812
|
+
mobileMinHeight?: string;
|
|
3813
|
+
mobileMaxHeight?: string;
|
|
3814
|
+
desktopMinHeight?: string;
|
|
3815
|
+
desktopMaxHeight?: string;
|
|
3717
3816
|
};
|
|
3718
3817
|
declare const BaseModal: ({
|
|
3719
3818
|
isOpen,
|
|
@@ -3726,8 +3825,13 @@ declare const BaseModal: ({
|
|
|
3726
3825
|
blockScrollOnMount,
|
|
3727
3826
|
allowExternalFocus,
|
|
3728
3827
|
backdropFilter,
|
|
3729
|
-
isCloseable
|
|
3730
|
-
|
|
3828
|
+
isCloseable,
|
|
3829
|
+
useBottomSheetOnMobile,
|
|
3830
|
+
mobileMinHeight,
|
|
3831
|
+
mobileMaxHeight,
|
|
3832
|
+
desktopMinHeight,
|
|
3833
|
+
desktopMaxHeight
|
|
3834
|
+
}: BaseModalProps) => react_jsx_runtime0.JSX.Element;
|
|
3731
3835
|
//#endregion
|
|
3732
3836
|
//#region src/components/common/AssetButton.d.ts
|
|
3733
3837
|
type AssetButtonProps = ButtonProps & {
|
|
@@ -3746,11 +3850,10 @@ declare const AssetButton: ({
|
|
|
3746
3850
|
isDisabled,
|
|
3747
3851
|
onClick,
|
|
3748
3852
|
...buttonProps
|
|
3749
|
-
}: AssetButtonProps) =>
|
|
3853
|
+
}: AssetButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3750
3854
|
//#endregion
|
|
3751
3855
|
//#region src/components/common/AddressDisplayCard.d.ts
|
|
3752
3856
|
type AddressDisplayCardProps = {
|
|
3753
|
-
label: string;
|
|
3754
3857
|
address: string;
|
|
3755
3858
|
domain?: string;
|
|
3756
3859
|
imageSrc: string;
|
|
@@ -3760,7 +3863,6 @@ type AddressDisplayCardProps = {
|
|
|
3760
3863
|
tokenAddress?: string;
|
|
3761
3864
|
};
|
|
3762
3865
|
declare const AddressDisplayCard: ({
|
|
3763
|
-
label,
|
|
3764
3866
|
address,
|
|
3765
3867
|
domain,
|
|
3766
3868
|
imageSrc,
|
|
@@ -3768,7 +3870,7 @@ declare const AddressDisplayCard: ({
|
|
|
3768
3870
|
hideAddress,
|
|
3769
3871
|
balance,
|
|
3770
3872
|
tokenAddress
|
|
3771
|
-
}: AddressDisplayCardProps) =>
|
|
3873
|
+
}: AddressDisplayCardProps) => react_jsx_runtime0.JSX.Element;
|
|
3772
3874
|
//#endregion
|
|
3773
3875
|
//#region src/components/common/ModalFAQButton.d.ts
|
|
3774
3876
|
type FAQButtonProps = {
|
|
@@ -3777,13 +3879,13 @@ type FAQButtonProps = {
|
|
|
3777
3879
|
declare const ModalFAQButton: ({
|
|
3778
3880
|
onClick,
|
|
3779
3881
|
...props
|
|
3780
|
-
}: FAQButtonProps) =>
|
|
3882
|
+
}: FAQButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3781
3883
|
//#endregion
|
|
3782
3884
|
//#region src/components/common/ScrollToTopWrapper.d.ts
|
|
3783
3885
|
declare const ScrollToTopWrapper: ({
|
|
3784
3886
|
children,
|
|
3785
3887
|
...props
|
|
3786
|
-
}: StackProps) =>
|
|
3888
|
+
}: StackProps) => react_jsx_runtime0.JSX.Element;
|
|
3787
3889
|
//#endregion
|
|
3788
3890
|
//#region src/components/common/AccountAvatar.d.ts
|
|
3789
3891
|
type AccountAvatarProps = {
|
|
@@ -3793,7 +3895,7 @@ type AccountAvatarProps = {
|
|
|
3793
3895
|
declare const AccountAvatar: ({
|
|
3794
3896
|
wallet,
|
|
3795
3897
|
props
|
|
3796
|
-
}: AccountAvatarProps) =>
|
|
3898
|
+
}: AccountAvatarProps) => react_jsx_runtime0.JSX.Element;
|
|
3797
3899
|
//#endregion
|
|
3798
3900
|
//#region src/components/common/TransactionButtonAndStatus.d.ts
|
|
3799
3901
|
type TransactionButtonAndStatusProps = {
|
|
@@ -3835,7 +3937,7 @@ declare const TransactionButtonAndStatus: ({
|
|
|
3835
3937
|
isLoadingGasEstimation,
|
|
3836
3938
|
showGasEstimationError,
|
|
3837
3939
|
context
|
|
3838
|
-
}: TransactionButtonAndStatusProps) =>
|
|
3940
|
+
}: TransactionButtonAndStatusProps) => react_jsx_runtime0.JSX.Element;
|
|
3839
3941
|
//#endregion
|
|
3840
3942
|
//#region src/components/common/ModalNotificationButton.d.ts
|
|
3841
3943
|
type NotificationButtonProps = {
|
|
@@ -3846,7 +3948,7 @@ declare const ModalNotificationButton: ({
|
|
|
3846
3948
|
onClick,
|
|
3847
3949
|
hasUnreadNotifications,
|
|
3848
3950
|
...props
|
|
3849
|
-
}: NotificationButtonProps) =>
|
|
3951
|
+
}: NotificationButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3850
3952
|
//#endregion
|
|
3851
3953
|
//#region src/components/common/GasFeeSummary.d.ts
|
|
3852
3954
|
interface GasFeeSummaryProps {
|
|
@@ -3882,39 +3984,7 @@ declare const GasFeeTokenSelector: ({
|
|
|
3882
3984
|
availableTokens,
|
|
3883
3985
|
tokenEstimations,
|
|
3884
3986
|
walletAddress
|
|
3885
|
-
}: GasFeeTokenSelectorProps) =>
|
|
3886
|
-
//#endregion
|
|
3887
|
-
//#region src/components/LoginLoadingModal/LoginLoadingModal.d.ts
|
|
3888
|
-
type LoginLoadingModalProps = {
|
|
3889
|
-
isOpen: boolean;
|
|
3890
|
-
onClose: () => void;
|
|
3891
|
-
error?: string;
|
|
3892
|
-
title?: string;
|
|
3893
|
-
loadingText?: string;
|
|
3894
|
-
onTryAgain?: () => void;
|
|
3895
|
-
};
|
|
3896
|
-
declare const LoginLoadingModal: ({
|
|
3897
|
-
isOpen,
|
|
3898
|
-
onClose,
|
|
3899
|
-
error,
|
|
3900
|
-
title,
|
|
3901
|
-
loadingText,
|
|
3902
|
-
onTryAgain
|
|
3903
|
-
}: LoginLoadingModalProps) => react_jsx_runtime1.JSX.Element;
|
|
3904
|
-
//#endregion
|
|
3905
|
-
//#region src/components/EcosystemModal/EcosystemModal.d.ts
|
|
3906
|
-
type Props$3 = {
|
|
3907
|
-
isOpen: boolean;
|
|
3908
|
-
onClose: () => void;
|
|
3909
|
-
appsInfo: PrivyAppInfo[];
|
|
3910
|
-
isLoading: boolean;
|
|
3911
|
-
};
|
|
3912
|
-
declare const EcosystemModal: ({
|
|
3913
|
-
isOpen,
|
|
3914
|
-
onClose,
|
|
3915
|
-
appsInfo,
|
|
3916
|
-
isLoading
|
|
3917
|
-
}: Props$3) => react_jsx_runtime1.JSX.Element;
|
|
3987
|
+
}: GasFeeTokenSelectorProps) => react_jsx_runtime0.JSX.Element;
|
|
3918
3988
|
//#endregion
|
|
3919
3989
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
3920
3990
|
type SuccessfulOperationContentProps = {
|
|
@@ -3944,7 +4014,7 @@ declare const UpgradeSmartAccountModal: ({
|
|
|
3944
4014
|
isOpen,
|
|
3945
4015
|
onClose,
|
|
3946
4016
|
style
|
|
3947
|
-
}: Props$2) =>
|
|
4017
|
+
}: Props$2) => react_jsx_runtime0.JSX.Element;
|
|
3948
4018
|
//#endregion
|
|
3949
4019
|
//#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
|
|
3950
4020
|
type Props$1 = {
|
|
@@ -3959,7 +4029,7 @@ declare const LegalDocumentsModal: ({
|
|
|
3959
4029
|
onAgree,
|
|
3960
4030
|
handleLogout,
|
|
3961
4031
|
onlyOptionalDocuments
|
|
3962
|
-
}: Props$1) =>
|
|
4032
|
+
}: Props$1) => react_jsx_runtime0.JSX.Element;
|
|
3963
4033
|
//#endregion
|
|
3964
4034
|
//#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
|
|
3965
4035
|
type Props = {
|
|
@@ -3971,16 +4041,18 @@ declare const LegalDocumentItem: ({
|
|
|
3971
4041
|
document,
|
|
3972
4042
|
register,
|
|
3973
4043
|
isText
|
|
3974
|
-
}: Props) =>
|
|
4044
|
+
}: Props) => react_jsx_runtime0.JSX.Element;
|
|
3975
4045
|
//#endregion
|
|
3976
4046
|
//#region src/providers/ModalProvider.d.ts
|
|
3977
4047
|
type AccountModalOptions = {
|
|
3978
4048
|
isolatedView?: boolean;
|
|
3979
4049
|
};
|
|
3980
4050
|
type ModalContextType = {
|
|
3981
|
-
openConnectModal: () => void;
|
|
4051
|
+
openConnectModal: (initialContent?: ConnectModalContentsTypes) => void;
|
|
3982
4052
|
closeConnectModal: () => void;
|
|
3983
4053
|
isConnectModalOpen: boolean;
|
|
4054
|
+
connectModalContent: ConnectModalContentsTypes;
|
|
4055
|
+
setConnectModalContent: React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
|
|
3984
4056
|
openAccountModal: (content?: AccountModalContentTypes, options?: AccountModalOptions) => void;
|
|
3985
4057
|
closeAccountModal: () => void;
|
|
3986
4058
|
isAccountModalOpen: boolean;
|
|
@@ -4002,7 +4074,7 @@ declare const ModalProvider: ({
|
|
|
4002
4074
|
children
|
|
4003
4075
|
}: {
|
|
4004
4076
|
children: ReactNode;
|
|
4005
|
-
}) =>
|
|
4077
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
4006
4078
|
//#endregion
|
|
4007
4079
|
//#region src/config/index.d.ts
|
|
4008
4080
|
type AppConfig = {
|
|
@@ -4047,5 +4119,5 @@ type AppConfig = {
|
|
|
4047
4119
|
};
|
|
4048
4120
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4049
4121
|
//#endregion
|
|
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 };
|
|
4051
|
-
//# sourceMappingURL=index-
|
|
4122
|
+
export { AssetsContent as $, useGetErc20Balance as $a, ChooseNameModalProvider as $i, useIsPWA as $n, TransactionToast as $o, regexPattern as $r, GasTokenEstimate as $s, SmartAccountReturnType as $t, CrossAppConnectionSecurityCard as A, XAppMetadata as Aa, useSignMessage as Ai, decodeRawTx as An, useGetTextRecords as Ao, isValid as Ar, PrivyWalletProvider as As, BuildTransactionProps as At, AccountModalContentTypes as B, MostVotedAppsInRoundReturnType as Ba, useReceiveModal as Bi, useSyncableLocalStorage as Bn, buildVetDomainClauses as Bo, allNodeStrengthLevelToName as Br, EnrichedLegalDocument as Bs, getEventLogs as Bt, BaseModal as C, useIpfsImage as Ca, Wallet as Cc, fetchAppHubApps as Ci, getAccountBalanceQueryKey as Cn, useGetAvatarOfAddress as Co, buildCallClauses as Cr, ConnectModal as Cs, useDAppKitWalletModal as Ct, VersionFooter as D, useIpfsMetadata as Da, useLoginWithOAuth as Di, useGenericDelegatorFeeEstimation as Dn, useUpdateTextRecord as Do, addPrefix as Dr, ColorModeSync as Ds, useThor as Dt, useStickyHeaderContext as E, getIpfsMetadataQueryKey as Ea, useLoginWithVeChain as Ei, useEstimateAllTokens as En, buildClauses as Eo, isValidUrl as Er, useLegalDocuments as Es, useSetWalletRecovery as Et, BalanceSection as F, useWallet as Fa, useProfileModal as Fi, signVip191Transaction as Fn, getDomainsOfAddress as Fo, TIME as Fr, VeChainKitConfig as Fs, useTransferERC20 as Ft, SettingsContentProps as G, getVot3BalanceQueryKey as Ga, NotificationsModalProvider as Gi, buildSingleAuthorizationTypedData as Gn, getVechainDomainQueryKey as Go, resolveMediaTypeFromMimeType as Gr, DepositAccount as Gs, useCurrentBlock as Gt, DisconnectConfirmContentProps as H, useMostVotedAppsInRound as Ha, useAccountCustomizationModal as Hi, useLocalStorage as Hn, useClaimVeWorldSubdomain as Ho, gmNfts as Hr, LegalDocumentSource as Hs, getChainIdQueryKey as Ht, AccountSelector as I, getRoundXAppsQueryKey as Ia, UpgradeSmartAccountModalProvider as Ii, useGenericDelegator as In, getDomainsOfAddressQueryKey as Io, EconomicNodeStrengthLevelToName as Ir, VeChainKitContext as Is, UseSendTransactionReturnValue as It, ChangeCurrencyContent as J, SupportedToken as Ja, useExploreEcosystemModal as Ji, UseEventsParams as Jn, useFetchPrivyStatus as Jo, validateIpfsUri as Jr, Rate as Js, getUpgradeRequiredForAccountQueryKey as Jt, GasTokenSettingsContent as K, useGetVot3Balance as Ka, useNotificationsModal as Ki, useBuildClauses as Kn, useVechainDomain as Ko, toIPFSURL as Kr, EstimatedGas as Ks, useUpgradeSmartAccount as Kt, ActionButton as L, useRoundXApps as La, useUpgradeSmartAccountModal as Li, useCrossAppConnectionCache as Ln, useGetDomainsOfAddress as Lo, MinXNodeLevel as Lr, VeChainKitProvider as Ls, useSendTransaction as Lt, ExchangeWarningAlert as M, useXAppMetadata as Ma, useNotifications as Mi, estimateAndBuildTxBody as Mn, useGetAvatar as Mo, removePrefix as Mr, usePrivyWalletProvider as Ms, buildVETClauses as Mt, FeatureAnnouncementCard as N, useWalletMetadata as Na, useAccountModalOptions as Ni, estimateGas as Nn, Domain as No, validate as Nr, LegalDocument as Ns, useTransferVET as Nt, AddressDisplay as O, getXAppsSharesQueryKey as Oa, useLoginWithPasskey as Oi, useGenericDelegatorFeeEstimationParams as On, getTextRecords as Oo, compare as Or, VechainKitThemeProvider as Os, txReceiptQueryKey as Ot, QuickActionsSection as P, UseWalletReturnType as Pa, ProfileModalProvider as Pi, getDepositAccount as Pn, DomainsResponse as Po, isRejectionError as Pr, LegalDocumentOptions as Ps, buildERC20Clauses as Pt, ManageCustomTokenContentProps as Q, getErc20BalanceQueryKey as Qa, useSendTokenModal as Qi, useScrollToTop as Qn, AccountMainContent as Qo, leftPadWithZeros as Qr, formatGasCost as Qs, useUpgradeRequired as Qt, AccountDetailsButton as R, useRefreshMetadata as Ra, useLoginModalContent as Ri, EcosystemShortcut as Rn, getIsDomainProtectedQueryKey as Ro, NodeStrengthLevelToImage as Rr, VechainKitProviderProps as Rs, GetEventsProps as Rt, AssetButton as S, getIpfsImageQueryKey as Sa, VePassportUserStatus as Sc, AppHubApp as Si, getAccountBalance as Sn, getAvatarOfAddressQueryKey as So, ViewFunctionResult as Sr, MainContent as Ss, useDAppKitWallet as St, StickyHeaderContainer as T, getIpfsMetadata as Ta, useAppHubApps as Ti, UseEstimateAllTokensParams as Tn, useGetResolverAddress as To, executeMultipleClausesCall as Tr, LegalDocumentsProvider as Ts, usePrivy as Tt, TermsAndPrivacyContent as U, getIsPersonQueryKey as Ua, FAQModalProvider as Ui, BuildClausesParams as Un, getEnsRecordExistsQueryKey as Uo, xNodeToGMstartingLevel as Ur, LegalDocumentType as Us, useGetChainId as Ut, DisconnectConfirmContent as V, XApp as Va, AccountCustomizationModalProvider as Vi, LocalStorageKey as Vn, useClaimVetDomain as Vo, buildQueryString as Vr, LegalDocumentAgreement as Vs, getChainId as Vt, SettingsContent as W, useIsPerson as Wa, useFAQModal as Wi, buildBatchAuthorizationTypedData as Wn, useEnsRecordExists as Wo, convertUriToUrl as Wr, CostLevel as Ws, currentBlockQueryKey as Wt, BridgeContent as X, getTokenUsdPriceQueryKey as Xa, useSwapTokenModal as Xi, getEventsKey as Xn, getPrivyAppInfoQueryKey as Xo, compareListOfAddresses as Xr, VthoPerGasAtSpeed as Xs, getUpgradeRequired as Xt, ChangeCurrencyContentProps as Y, getTokenUsdPrice as Ya, SwapTokenModalProvider as Yi, decodeEventLog$1 as Yn, fetchPrivyAppInfo as Yo, compareAddresses as Yr, TransactionCost as Ys, useUpgradeRequiredForAccount as Yt, ManageCustomTokenContent as Z, useGetTokenUsdPrice as Za, SendTokenModalProvider as Zi, useEvents as Zn, useFetchAppInfo as Zo, isValidAddress as Zr, calculateTotalCost as Zs, getUpgradeRequiredQueryKey as Zt, TransactionButtonAndStatusProps as _, useUploadImages as _a, PrivyLoginMethod as _c, VECHAIN_KIT_TERMS_CONFIG as _i, getCurrentAccountImplementationVersionQueryKey as _n, useTokenBalances as _o, safeQuerySelector as _r, EmailLoginButton as _s, ReceiveTokenContent as _t, useModal as a, TransactionModalProvider as aa, ENS_TEXT_RECORDS as ac, humanNumber as ai, getIsDeployed as an, useGetCustomTokenBalances as ao, getCallClauseQueryKey as ar, WalletButton as as, CustomizationSummaryContent as at, ModalFAQButton as b, MAX_IMAGE_SIZE as ba, TransactionStatus as bc, getGenericDelegatorUrl as bi, getAccountImplementationAddressQueryKey as bn, getAvatarLegacyQueryKey as bo, MultipleClausesCallParameters as br, ErrorContent as bs, SendTokenContent as bt, LegalDocumentsModal as c, useAccountModal as ca, CURRENCY_SYMBOLS as cc, DEFAULT_PRIVY_ECOSYSTEM_APPS as ci, getHasV1SmartAccount as cn, useCustomTokens as co, useMultipleClausesCall as cr, ConnectPopover as cs, CustomizationContent as ct, UpgradeSmartAccountModalContentsTypes as d, useSwapQuotes as da, ENSRecords as dc, SUPPORTED_GAS_TOKENS as di, getAccountVersionQueryKey as dn, useTotalBalance as do, getLocalStorageItem as dr, DappKitButton as ds, ChooseNameSummaryContentProps as dt, useChooseNameModal as ea, GasTokenInfo as ec, randomTransactionUser as ei, getSmartAccount as en, getCustomTokenInfoQueryKey as eo, useGetNodeUrl as er, TransactionModalContent as es, AssetsContentProps as et, UpgradeSmartAccountModalStyle as f, useSwapTransaction as fa, EnhancedClause as fc, TOKEN_LOGOS as fi, useGetAccountVersion as fn, TokenWithValue as fo, getWindowOrigin as fr, PasskeyLoginButton as fs, ChooseNameSearchContent as ft, TransactionButtonAndStatus as g, imageCompressionOptions as ga, PrivyAppInfo as gc, VECHAIN_KIT_STORAGE_KEYS as gi, getCurrentAccountImplementationVersion as gn, WalletTokenBalance as go, removeLocalStorageItem as gr, VeChainLoginButton as gs, SwapTokenContent as gt, ModalNotificationButton as h, compressImages as ha, NFTMediaType as hc, VECHAIN_KIT_COOKIES_CONFIG as hi, useGetAccountAddress as hn, useTokenPrices as ho, isOnline as hr, EcosystemButton as hs, ChooseNameContentProps as ht, ModalProvider as i, useTransactionToast as ia, TransactionSpeed as ic, humanDomain as ii, useRefreshFactoryQueries as in, getCustomTokenBalanceQueryKey as io, useCurrency as ir, SocialIcons as is, ProfileContentProps as it, DomainRequiredAlert as j, getXAppMetadata as ja, useNotificationAlerts as ji, delegateAuthorized as jn, getAvatarQueryKey as jo, normalize as jr, PrivyWalletProviderContextType as js, useBuildTransaction as jt, ModalBackButton as k, useXAppsShares as ka, useSignTypedData as ki, useGasTokenSelection as kn, getTextRecordsQueryKey as ko, isInvalid as kr, useVechainKitThemeConfig as ks, useTxReceipt as kt, LegalDocumentsModalContentsTypes as l, ConnectModalProvider as la, ConnectionSource as lc, ENV as li, getHasV1SmartAccountQueryKey as ln, getCurrentAllocationsRoundIdQueryKey as lo, copyToClipboard as lr, LoginWithGithubButton as ls, FAQContent as lt, GasFeeSummary as m, UploadedImage as ma, ExecuteWithAuthorizationSignData as mc, TogglePassportCheck as mi, getAccountAddressQueryKey as mn, ExchangeRates as mo, isBrowser as mr, PrivyButton as ms, ChooseNameContent as mt, getConfig as n, useWalletModal as na, GasTokenSelection as nc, getPicassoImage as ni, useSmartAccount as nn, useGetCustomTokenInfo as no, useCurrentCurrency as nr, TransactionModal as ns, UpgradeSmartAccountContentProps as nt, DAppKitWalletButton as o, useTransactionModal as oa, TextRecords as oc, isZero as oi, getIsDeployedQueryKey as on, getB3trBalanceQueryKey as oo, getCallClauseQueryKeyWithArgs as or, WalletButtonProps as os, CustomizationSummaryContentProps as ot, GasFeeTokenSelector as p, useSingleImageUpload as pa, ExecuteBatchWithAuthorizationSignData as pc, TOKEN_LOGO_COMPONENTS as pi, getAccountAddress as pn, useTokensWithValues as po, hasNavigator as pr, LoginWithGoogleButton as ps, ChooseNameSearchContentProps as pt, LanguageSettingsContent as q, PRICE_FEED_IDS as qa, ExploreEcosystemModalProvider as qi, GetEventsKeyParams as qn, fetchPrivyStatus as qo, uploadBlobToIPFS as qr, EstimationResponse as qs, getUpgradeRequiredForAccount as qt, AccountModalOptions as r, TransactionToastProvider as ra, GasTokenType as rc, humanAddress as ri, useRefreshSmartAccountQueries as rn, TokenWithBalance as ro, useCurrentLanguage as rr, TransactionModalProps as rs, ProfileContent as rt, LegalDocumentItem as s, AccountModalProvider as sa, CURRENCY as sc, DEFAULT_GAS_TOKEN_PREFERENCES as si, useIsSmartAccountDeployed as sn, useGetB3trBalance as so, useCallClause as sr, WalletDisplayVariant as ss, AccountCustomizationContentProps as st, AppConfig as t, WalletModalProvider as ta, GasTokenPreferences as tc, formatTokenBalance as ti, getSmartAccountQueryKey as tn, getTokenInfo as to, useFeatureAnnouncement as tr, ShareButtons as ts, UpgradeSmartAccountContent as tt, UpgradeSmartAccountModal as u, useConnectModal as ua, CrossAppConnectionCache as uc, PrivyEcosystemApp as ui, useHasV1SmartAccount as un, useCurrentAllocationsRoundId as uo, getDocumentTitle as ur, VeChainWithPrivyLoginButton as us, ChooseNameSummaryContent as ut, AccountAvatar as v, useIpfsMetadatas as va, SmartAccount as vc, VECHAIN_PRIVY_APP_ID as vi, useCurrentAccountImplementationVersion as vn, useUnsetDomain as vo, safeWindowOpen as vr, ConnectionButton as vs, SelectTokenContent as vt, StickyFooterContainer as w, useIpfsImageList as wa, getAppHubAppsQueryKey as wi, useAccountBalance as wn, getResolverAddressQueryKey as wo, executeCallClause as wr, ConnectModalContentsTypes as ws, useMfaEnrollment as wt, AddressDisplayCard as x, getIpfsImage as xa, TransactionStatusErrorType as xc, notFoundImage as xi, useAccountImplementationAddress as xn, useGetAvatarLegacy as xo, MultipleClausesCallReturnType as xr, LoadingContent as xs, ThorClient$1 as xt, ScrollToTopWrapper as y, IpfsImage as ya, TokenBalance as yc, getENV as yi, getAccountImplementationAddress as yn, getAvatarLegacy as yo, setLocalStorageItem as yr, EcosystemContent as ys, SendTokenSummaryContent as yt, AccountModal as z, useRefreshBalances as za, ReceiveModalProvider as zi, useEcosystemShortcuts as zn, useIsDomainProtected as zo, XNodeStrengthLevelToName as zr, useVeChainKitConfig as zs, getAllEventLogs as zt };
|
|
4123
|
+
//# sourceMappingURL=index-5_zBNaxA.d.cts.map
|