@vechain/vechain-kit 2.6.4 → 2.6.6
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/{index-D0SCAGbu.d.mts → index-DwvqIQlc.d.mts} +106 -103
- package/dist/index-DwvqIQlc.d.mts.map +1 -0
- package/dist/{index-I8fe7GR2.d.cts → index-Y0ktF0Lw.d.cts} +4 -4
- package/dist/{index-I8fe7GR2.d.cts.map → index-Y0ktF0Lw.d.cts.map} +1 -1
- package/dist/{index-DQiXM6hu.d.cts → index-hEPoYu2o.d.cts} +152 -149
- package/dist/index-hEPoYu2o.d.cts.map +1 -0
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.cts +2 -2
- package/dist/utils/index.d.mts +1 -1
- package/package.json +1 -1
- package/dist/index-D0SCAGbu.d.mts.map +0 -1
- package/dist/index-DQiXM6hu.d.cts.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 * as _vechain_sdk_network0 from "@vechain/sdk-network";
|
|
6
6
|
import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
|
|
7
7
|
import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy, useSetWalletRecovery } from "@privy-io/react-auth";
|
|
@@ -11,7 +11,7 @@ import { LogLevel, WalletSource } from "@vechain/dapp-kit";
|
|
|
11
11
|
import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
|
|
12
12
|
import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
|
|
13
13
|
import { IconType } from "react-icons";
|
|
14
|
-
import * as
|
|
14
|
+
import * as _tanstack_react_query8 from "@tanstack/react-query";
|
|
15
15
|
import { UseQueryOptions } from "@tanstack/react-query";
|
|
16
16
|
import { z } from "zod";
|
|
17
17
|
import { CustomTokenInfo } from "@vechain/contract-getters";
|
|
@@ -495,6 +495,7 @@ interface VechainKitThemeConfig {
|
|
|
495
495
|
//#region src/providers/VeChainKitProvider.d.ts
|
|
496
496
|
type AlwaysAvailableMethods = 'vechain' | 'dappkit' | 'ecosystem';
|
|
497
497
|
type PrivyDependentMethods = 'email' | 'google' | 'github' | 'passkey' | 'more';
|
|
498
|
+
type AccountQuickAction = 'send' | 'swap' | 'receive';
|
|
498
499
|
type LoginMethodOrder = {
|
|
499
500
|
method: AlwaysAvailableMethods | (VechainKitProviderProps['privy'] extends undefined ? never : PrivyDependentMethods);
|
|
500
501
|
gridColumn?: number;
|
|
@@ -576,6 +577,7 @@ type VechainKitProviderProps = {
|
|
|
576
577
|
/** When true, community tokens (e.g. SASS) are included in token lists and balances. */
|
|
577
578
|
allowCommunityTokens?: boolean;
|
|
578
579
|
legalDocuments?: LegalDocumentOptions;
|
|
580
|
+
hiddenQuickActions?: AccountQuickAction[];
|
|
579
581
|
defaultCurrency?: CURRENCY;
|
|
580
582
|
theme?: VechainKitThemeConfig;
|
|
581
583
|
onLanguageChange?: (language: string) => void;
|
|
@@ -607,6 +609,7 @@ type VeChainKitConfig = {
|
|
|
607
609
|
allowCustomTokens?: boolean;
|
|
608
610
|
allowCommunityTokens: boolean;
|
|
609
611
|
legalDocuments?: VechainKitProviderProps['legalDocuments'];
|
|
612
|
+
hiddenQuickActions?: AccountQuickAction[];
|
|
610
613
|
/** Current runtime currency value. Reflects the active currency in VeChainKit. */
|
|
611
614
|
currentCurrency: CURRENCY;
|
|
612
615
|
theme?: VechainKitThemeConfig;
|
|
@@ -638,7 +641,7 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
|
|
|
638
641
|
* ```
|
|
639
642
|
*/
|
|
640
643
|
declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
641
|
-
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) =>
|
|
644
|
+
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime0.JSX.Element;
|
|
642
645
|
//#endregion
|
|
643
646
|
//#region src/providers/PrivyWalletProvider.d.ts
|
|
644
647
|
interface PrivyWalletProviderContextType {
|
|
@@ -681,7 +684,7 @@ declare const PrivyWalletProvider: ({
|
|
|
681
684
|
delegatorUrl?: string;
|
|
682
685
|
delegateAllTransactions: boolean;
|
|
683
686
|
genericDelegator?: boolean;
|
|
684
|
-
}) =>
|
|
687
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
685
688
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
686
689
|
//#endregion
|
|
687
690
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
@@ -699,12 +702,12 @@ declare const ColorModeSync: ({
|
|
|
699
702
|
darkMode
|
|
700
703
|
}: {
|
|
701
704
|
darkMode: boolean;
|
|
702
|
-
}) =>
|
|
705
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
703
706
|
declare const VechainKitThemeProvider: ({
|
|
704
707
|
children,
|
|
705
708
|
darkMode,
|
|
706
709
|
theme: customTheme
|
|
707
|
-
}: Props$35) =>
|
|
710
|
+
}: Props$35) => react_jsx_runtime0.JSX.Element;
|
|
708
711
|
//#endregion
|
|
709
712
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
710
713
|
type Props$34 = {
|
|
@@ -720,7 +723,7 @@ type LegalDocumentsContextType = {
|
|
|
720
723
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
721
724
|
declare const LegalDocumentsProvider: ({
|
|
722
725
|
children
|
|
723
|
-
}: Props$34) =>
|
|
726
|
+
}: Props$34) => react_jsx_runtime0.JSX.Element;
|
|
724
727
|
//#endregion
|
|
725
728
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
726
729
|
type Props$33 = {
|
|
@@ -756,7 +759,7 @@ declare const ConnectModal: ({
|
|
|
756
759
|
onClose,
|
|
757
760
|
initialContent,
|
|
758
761
|
preventAutoClose
|
|
759
|
-
}: Props$33) =>
|
|
762
|
+
}: Props$33) => react_jsx_runtime0.JSX.Element;
|
|
760
763
|
//#endregion
|
|
761
764
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
762
765
|
type Props$32 = {
|
|
@@ -764,7 +767,7 @@ type Props$32 = {
|
|
|
764
767
|
};
|
|
765
768
|
declare const MainContent: ({
|
|
766
769
|
setCurrentContent
|
|
767
|
-
}: Props$32) =>
|
|
770
|
+
}: Props$32) => react_jsx_runtime0.JSX.Element;
|
|
768
771
|
//#endregion
|
|
769
772
|
//#region src/components/ConnectModal/Contents/LoadingContent.d.ts
|
|
770
773
|
type LoadingContentProps = {
|
|
@@ -782,7 +785,7 @@ declare const LoadingContent: ({
|
|
|
782
785
|
onClose,
|
|
783
786
|
onGoBack,
|
|
784
787
|
showBackButton
|
|
785
|
-
}: LoadingContentProps) =>
|
|
788
|
+
}: LoadingContentProps) => react_jsx_runtime0.JSX.Element;
|
|
786
789
|
//#endregion
|
|
787
790
|
//#region src/components/ConnectModal/Contents/ErrorContent.d.ts
|
|
788
791
|
type ErrorContentProps = {
|
|
@@ -796,7 +799,7 @@ declare const ErrorContent: ({
|
|
|
796
799
|
onClose,
|
|
797
800
|
onTryAgain,
|
|
798
801
|
onGoBack
|
|
799
|
-
}: ErrorContentProps) =>
|
|
802
|
+
}: ErrorContentProps) => react_jsx_runtime0.JSX.Element;
|
|
800
803
|
//#endregion
|
|
801
804
|
//#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
|
|
802
805
|
type Props$31 = {
|
|
@@ -812,7 +815,7 @@ declare const EcosystemContent: ({
|
|
|
812
815
|
isLoading,
|
|
813
816
|
setCurrentContent,
|
|
814
817
|
showBackButton
|
|
815
|
-
}: Props$31) =>
|
|
818
|
+
}: Props$31) => react_jsx_runtime0.JSX.Element;
|
|
816
819
|
//#endregion
|
|
817
820
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
818
821
|
interface ConnectionButtonProps {
|
|
@@ -835,10 +838,10 @@ declare const ConnectionButton: ({
|
|
|
835
838
|
style,
|
|
836
839
|
variant,
|
|
837
840
|
iconWidth
|
|
838
|
-
}: ConnectionButtonProps) =>
|
|
841
|
+
}: ConnectionButtonProps) => react_jsx_runtime0.JSX.Element | null;
|
|
839
842
|
//#endregion
|
|
840
843
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
841
|
-
declare const EmailLoginButton: () =>
|
|
844
|
+
declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
|
|
842
845
|
//#endregion
|
|
843
846
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
844
847
|
type Props$30 = {
|
|
@@ -850,7 +853,7 @@ declare const VeChainLoginButton: ({
|
|
|
850
853
|
isDark,
|
|
851
854
|
gridColumn,
|
|
852
855
|
setCurrentContent
|
|
853
|
-
}: Props$30) =>
|
|
856
|
+
}: Props$30) => react_jsx_runtime0.JSX.Element;
|
|
854
857
|
//#endregion
|
|
855
858
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
856
859
|
type Props$29 = {
|
|
@@ -864,7 +867,7 @@ declare const EcosystemButton: ({
|
|
|
864
867
|
appsInfo,
|
|
865
868
|
isLoading,
|
|
866
869
|
setCurrentContent
|
|
867
|
-
}: Props$29) =>
|
|
870
|
+
}: Props$29) => react_jsx_runtime0.JSX.Element;
|
|
868
871
|
//#endregion
|
|
869
872
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
870
873
|
type Props$28 = {
|
|
@@ -876,7 +879,7 @@ declare const PrivyButton: ({
|
|
|
876
879
|
isDark,
|
|
877
880
|
onViewMoreLogin,
|
|
878
881
|
gridColumn
|
|
879
|
-
}: Props$28) =>
|
|
882
|
+
}: Props$28) => react_jsx_runtime0.JSX.Element;
|
|
880
883
|
//#endregion
|
|
881
884
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
882
885
|
type Props$27 = {
|
|
@@ -886,7 +889,7 @@ type Props$27 = {
|
|
|
886
889
|
declare const LoginWithGoogleButton: ({
|
|
887
890
|
isDark,
|
|
888
891
|
gridColumn
|
|
889
|
-
}: Props$27) =>
|
|
892
|
+
}: Props$27) => react_jsx_runtime0.JSX.Element;
|
|
890
893
|
//#endregion
|
|
891
894
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
892
895
|
type Props$26 = {
|
|
@@ -898,7 +901,7 @@ declare const PasskeyLoginButton: ({
|
|
|
898
901
|
isDark,
|
|
899
902
|
gridColumn,
|
|
900
903
|
setCurrentContent
|
|
901
|
-
}: Props$26) =>
|
|
904
|
+
}: Props$26) => react_jsx_runtime0.JSX.Element;
|
|
902
905
|
//#endregion
|
|
903
906
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
904
907
|
type Props$25 = {
|
|
@@ -908,7 +911,7 @@ type Props$25 = {
|
|
|
908
911
|
declare const DappKitButton: ({
|
|
909
912
|
isDark,
|
|
910
913
|
gridColumn
|
|
911
|
-
}: Props$25) =>
|
|
914
|
+
}: Props$25) => react_jsx_runtime0.JSX.Element;
|
|
912
915
|
//#endregion
|
|
913
916
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
914
917
|
type Props$24 = {
|
|
@@ -918,7 +921,7 @@ type Props$24 = {
|
|
|
918
921
|
declare const VeChainWithPrivyLoginButton: ({
|
|
919
922
|
isDark,
|
|
920
923
|
gridColumn
|
|
921
|
-
}: Props$24) =>
|
|
924
|
+
}: Props$24) => react_jsx_runtime0.JSX.Element;
|
|
922
925
|
//#endregion
|
|
923
926
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
924
927
|
type Props$23 = {
|
|
@@ -928,7 +931,7 @@ type Props$23 = {
|
|
|
928
931
|
declare const LoginWithGithubButton: ({
|
|
929
932
|
isDark,
|
|
930
933
|
gridColumn
|
|
931
|
-
}: Props$23) =>
|
|
934
|
+
}: Props$23) => react_jsx_runtime0.JSX.Element;
|
|
932
935
|
//#endregion
|
|
933
936
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
934
937
|
type ConnectPopoverProps = {
|
|
@@ -938,7 +941,7 @@ type ConnectPopoverProps = {
|
|
|
938
941
|
declare const ConnectPopover: ({
|
|
939
942
|
isLoading,
|
|
940
943
|
buttonStyle
|
|
941
|
-
}: ConnectPopoverProps) =>
|
|
944
|
+
}: ConnectPopoverProps) => react_jsx_runtime0.JSX.Element;
|
|
942
945
|
//#endregion
|
|
943
946
|
//#region src/components/WalletButton/types.d.ts
|
|
944
947
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
@@ -957,10 +960,10 @@ declare const WalletButton: ({
|
|
|
957
960
|
buttonStyle,
|
|
958
961
|
connectionVariant,
|
|
959
962
|
label
|
|
960
|
-
}: WalletButtonProps) =>
|
|
963
|
+
}: WalletButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
961
964
|
//#endregion
|
|
962
965
|
//#region src/components/WalletButton/SocialIcons.d.ts
|
|
963
|
-
declare const SocialIcons: () =>
|
|
966
|
+
declare const SocialIcons: () => react_jsx_runtime0.JSX.Element;
|
|
964
967
|
//#endregion
|
|
965
968
|
//#region src/components/TransactionModal/TransactionModal.d.ts
|
|
966
969
|
type TransactionModalProps = {
|
|
@@ -990,7 +993,7 @@ declare const TransactionModal: ({
|
|
|
990
993
|
txReceipt,
|
|
991
994
|
txError,
|
|
992
995
|
onTryAgain
|
|
993
|
-
}: TransactionModalProps) =>
|
|
996
|
+
}: TransactionModalProps) => react_jsx_runtime0.JSX.Element | null;
|
|
994
997
|
//#endregion
|
|
995
998
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
996
999
|
type Props$22 = {
|
|
@@ -1000,7 +1003,7 @@ type Props$22 = {
|
|
|
1000
1003
|
};
|
|
1001
1004
|
declare const ShareButtons: ({
|
|
1002
1005
|
description
|
|
1003
|
-
}: Props$22) =>
|
|
1006
|
+
}: Props$22) => react_jsx_runtime0.JSX.Element;
|
|
1004
1007
|
//#endregion
|
|
1005
1008
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
1006
1009
|
declare const TransactionModalContent: ({
|
|
@@ -1010,7 +1013,7 @@ declare const TransactionModalContent: ({
|
|
|
1010
1013
|
txReceipt,
|
|
1011
1014
|
txError,
|
|
1012
1015
|
onClose
|
|
1013
|
-
}: Omit<TransactionModalProps, "isOpen">) =>
|
|
1016
|
+
}: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime0.JSX.Element;
|
|
1014
1017
|
//#endregion
|
|
1015
1018
|
//#region src/components/TransactionToast/TransactionToast.d.ts
|
|
1016
1019
|
type TransactionToastProps = {
|
|
@@ -1030,7 +1033,7 @@ declare const TransactionToast: ({
|
|
|
1030
1033
|
txError,
|
|
1031
1034
|
onTryAgain,
|
|
1032
1035
|
description
|
|
1033
|
-
}: TransactionToastProps) =>
|
|
1036
|
+
}: TransactionToastProps) => react_jsx_runtime0.JSX.Element | null;
|
|
1034
1037
|
//#endregion
|
|
1035
1038
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
1036
1039
|
type Props$21 = {
|
|
@@ -1046,12 +1049,12 @@ declare const AccountMainContent: ({
|
|
|
1046
1049
|
wallet,
|
|
1047
1050
|
onClose,
|
|
1048
1051
|
switchFeedback
|
|
1049
|
-
}: Props$21) =>
|
|
1052
|
+
}: Props$21) => react_jsx_runtime0.JSX.Element;
|
|
1050
1053
|
//#endregion
|
|
1051
1054
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
1052
1055
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
1053
1056
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
1054
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
1057
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
|
|
1055
1058
|
[k: string]: {
|
|
1056
1059
|
website: string | undefined;
|
|
1057
1060
|
id: string;
|
|
@@ -1072,7 +1075,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
1072
1075
|
//#endregion
|
|
1073
1076
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
1074
1077
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
1075
|
-
declare const useFetchPrivyStatus: () =>
|
|
1078
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1076
1079
|
//#endregion
|
|
1077
1080
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
1078
1081
|
interface VeChainDomainResult {
|
|
@@ -1082,11 +1085,11 @@ interface VeChainDomainResult {
|
|
|
1082
1085
|
isPrimaryDomain: boolean;
|
|
1083
1086
|
}
|
|
1084
1087
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
1085
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
1088
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
|
|
1086
1089
|
//#endregion
|
|
1087
1090
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
1088
1091
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
1089
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
1092
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1090
1093
|
//#endregion
|
|
1091
1094
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
1092
1095
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1148,7 +1151,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1148
1151
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1149
1152
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1150
1153
|
*/
|
|
1151
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1154
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1152
1155
|
//#endregion
|
|
1153
1156
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1154
1157
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1176,7 +1179,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1176
1179
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1177
1180
|
* @returns The domains owned by the address
|
|
1178
1181
|
*/
|
|
1179
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1182
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1180
1183
|
domains: {
|
|
1181
1184
|
name: string;
|
|
1182
1185
|
}[];
|
|
@@ -1189,7 +1192,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1189
1192
|
* @param name - The VET domain name
|
|
1190
1193
|
* @returns The resolved avatar URL
|
|
1191
1194
|
*/
|
|
1192
|
-
declare const useGetAvatar: (name: string) =>
|
|
1195
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1193
1196
|
//#endregion
|
|
1194
1197
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1195
1198
|
/**
|
|
@@ -1201,7 +1204,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query28.UseQueryRe
|
|
|
1201
1204
|
*/
|
|
1202
1205
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1203
1206
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1204
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1207
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
|
|
1205
1208
|
//#endregion
|
|
1206
1209
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1207
1210
|
type UpdateTextRecordVariables = {
|
|
@@ -1234,7 +1237,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1234
1237
|
* @param domain The domain to get resolver for
|
|
1235
1238
|
* @returns The resolver address for the domain
|
|
1236
1239
|
*/
|
|
1237
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1240
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
|
|
1238
1241
|
//#endregion
|
|
1239
1242
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1240
1243
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1244,7 +1247,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1244
1247
|
* @param address The owner's address
|
|
1245
1248
|
* @returns The avatar URL for the address's primary domain
|
|
1246
1249
|
*/
|
|
1247
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1250
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1248
1251
|
//#endregion
|
|
1249
1252
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1250
1253
|
/**
|
|
@@ -1261,7 +1264,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1261
1264
|
* @param name - The VET domain name
|
|
1262
1265
|
* @returns The resolved avatar URL
|
|
1263
1266
|
*/
|
|
1264
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1267
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1265
1268
|
//#endregion
|
|
1266
1269
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1267
1270
|
type useUnsetDomainProps = {
|
|
@@ -1370,7 +1373,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1370
1373
|
* Hook to get the current roundId of allocations voting
|
|
1371
1374
|
* @returns the current roundId of allocations voting
|
|
1372
1375
|
*/
|
|
1373
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1376
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
|
|
1374
1377
|
//#endregion
|
|
1375
1378
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1376
1379
|
declare const useCustomTokens: () => {
|
|
@@ -1383,7 +1386,7 @@ declare const useCustomTokens: () => {
|
|
|
1383
1386
|
//#endregion
|
|
1384
1387
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1385
1388
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1386
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1389
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1387
1390
|
original: string;
|
|
1388
1391
|
scaled: string;
|
|
1389
1392
|
formatted: string;
|
|
@@ -1392,7 +1395,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query28.U
|
|
|
1392
1395
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1393
1396
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1394
1397
|
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
|
|
1395
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1398
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1396
1399
|
original: string;
|
|
1397
1400
|
scaled: string;
|
|
1398
1401
|
formatted: string;
|
|
@@ -1405,14 +1408,14 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1405
1408
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1406
1409
|
declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1407
1410
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1408
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1411
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
|
|
1409
1412
|
//#endregion
|
|
1410
1413
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1411
1414
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1412
1415
|
type UseGetErc20BalanceOptions = {
|
|
1413
1416
|
enabled?: boolean;
|
|
1414
1417
|
};
|
|
1415
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) =>
|
|
1418
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query8.UseQueryResult<{
|
|
1416
1419
|
original: string;
|
|
1417
1420
|
scaled: string;
|
|
1418
1421
|
formatted: string;
|
|
@@ -1429,11 +1432,11 @@ declare const PRICE_FEED_IDS: {
|
|
|
1429
1432
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1430
1433
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1431
1434
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1432
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1435
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
1433
1436
|
//#endregion
|
|
1434
1437
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1435
1438
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1436
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1439
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1437
1440
|
original: string;
|
|
1438
1441
|
scaled: string;
|
|
1439
1442
|
formatted: string;
|
|
@@ -1452,7 +1455,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1452
1455
|
* @param user - The user address.
|
|
1453
1456
|
* @returns The isPerson status.
|
|
1454
1457
|
*/
|
|
1455
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1458
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1456
1459
|
//#endregion
|
|
1457
1460
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1458
1461
|
type XApp = {
|
|
@@ -1490,7 +1493,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1490
1493
|
//#endregion
|
|
1491
1494
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1492
1495
|
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
|
|
1493
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1496
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1494
1497
|
id: string;
|
|
1495
1498
|
teamWalletAddress: `0x${string}`;
|
|
1496
1499
|
name: string;
|
|
@@ -1604,7 +1607,7 @@ type XAppMetadata = {
|
|
|
1604
1607
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1605
1608
|
*/
|
|
1606
1609
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1607
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1610
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1608
1611
|
//#endregion
|
|
1609
1612
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1610
1613
|
/**
|
|
@@ -1619,7 +1622,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1619
1622
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1620
1623
|
*
|
|
1621
1624
|
*/
|
|
1622
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1625
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1623
1626
|
app: string;
|
|
1624
1627
|
share: number;
|
|
1625
1628
|
unallocatedShare: number;
|
|
@@ -1641,7 +1644,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1641
1644
|
* @param ipfsUri - The IPFS URI
|
|
1642
1645
|
* @returns The metadata from IPFS
|
|
1643
1646
|
*/
|
|
1644
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1647
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
|
|
1645
1648
|
//#endregion
|
|
1646
1649
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1647
1650
|
interface IpfsImage {
|
|
@@ -1668,14 +1671,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1668
1671
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1669
1672
|
* @returns The NFT media
|
|
1670
1673
|
*/
|
|
1671
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1674
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
|
|
1672
1675
|
/**
|
|
1673
1676
|
* Custom hook to fetch a list of IPFS images.
|
|
1674
1677
|
*
|
|
1675
1678
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1676
1679
|
* @returns An array of queries for each IPFS image URI.
|
|
1677
1680
|
*/
|
|
1678
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1681
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
|
|
1679
1682
|
//#endregion
|
|
1680
1683
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1681
1684
|
/**
|
|
@@ -1683,7 +1686,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1683
1686
|
* @param ipfsUris - The IPFS URIs
|
|
1684
1687
|
* @returns The metadata from IPFS for each URI
|
|
1685
1688
|
*/
|
|
1686
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1689
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
|
|
1687
1690
|
//#endregion
|
|
1688
1691
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1689
1692
|
declare const imageCompressionOptions: Options;
|
|
@@ -1902,7 +1905,7 @@ declare const ConnectModalProvider: ({
|
|
|
1902
1905
|
children
|
|
1903
1906
|
}: {
|
|
1904
1907
|
children: ReactNode;
|
|
1905
|
-
}) =>
|
|
1908
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1906
1909
|
//#endregion
|
|
1907
1910
|
//#region src/hooks/modals/useAccountModal.d.ts
|
|
1908
1911
|
declare const useAccountModal: () => {
|
|
@@ -1914,7 +1917,7 @@ declare const AccountModalProvider: ({
|
|
|
1914
1917
|
children
|
|
1915
1918
|
}: {
|
|
1916
1919
|
children: ReactNode;
|
|
1917
|
-
}) =>
|
|
1920
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1918
1921
|
//#endregion
|
|
1919
1922
|
//#region src/hooks/modals/useTransactionModal.d.ts
|
|
1920
1923
|
declare const useTransactionModal: () => {
|
|
@@ -1926,7 +1929,7 @@ declare const TransactionModalProvider: ({
|
|
|
1926
1929
|
children
|
|
1927
1930
|
}: {
|
|
1928
1931
|
children: ReactNode;
|
|
1929
|
-
}) =>
|
|
1932
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1930
1933
|
//#endregion
|
|
1931
1934
|
//#region src/hooks/modals/useTransactionToast.d.ts
|
|
1932
1935
|
declare const useTransactionToast: () => {
|
|
@@ -1938,7 +1941,7 @@ declare const TransactionToastProvider: ({
|
|
|
1938
1941
|
children
|
|
1939
1942
|
}: {
|
|
1940
1943
|
children: ReactNode;
|
|
1941
|
-
}) =>
|
|
1944
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1942
1945
|
//#endregion
|
|
1943
1946
|
//#region src/hooks/modals/useWalletModal.d.ts
|
|
1944
1947
|
declare const useWalletModal: () => {
|
|
@@ -1950,7 +1953,7 @@ declare const WalletModalProvider: ({
|
|
|
1950
1953
|
children
|
|
1951
1954
|
}: {
|
|
1952
1955
|
children: ReactNode;
|
|
1953
|
-
}) =>
|
|
1956
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1954
1957
|
//#endregion
|
|
1955
1958
|
//#region src/hooks/modals/useChooseNameModal.d.ts
|
|
1956
1959
|
declare const useChooseNameModal: () => {
|
|
@@ -1962,7 +1965,7 @@ declare const ChooseNameModalProvider: ({
|
|
|
1962
1965
|
children
|
|
1963
1966
|
}: {
|
|
1964
1967
|
children: ReactNode;
|
|
1965
|
-
}) =>
|
|
1968
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1966
1969
|
//#endregion
|
|
1967
1970
|
//#region src/hooks/modals/useSendTokenModal.d.ts
|
|
1968
1971
|
declare const useSendTokenModal: () => {
|
|
@@ -1974,7 +1977,7 @@ declare const SendTokenModalProvider: ({
|
|
|
1974
1977
|
children
|
|
1975
1978
|
}: {
|
|
1976
1979
|
children: ReactNode;
|
|
1977
|
-
}) =>
|
|
1980
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1978
1981
|
//#endregion
|
|
1979
1982
|
//#region src/hooks/modals/useSwapTokenModal.d.ts
|
|
1980
1983
|
type SwapTokenModalOptions = {
|
|
@@ -1991,7 +1994,7 @@ declare const SwapTokenModalProvider: ({
|
|
|
1991
1994
|
children
|
|
1992
1995
|
}: {
|
|
1993
1996
|
children: ReactNode;
|
|
1994
|
-
}) =>
|
|
1997
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1995
1998
|
//#endregion
|
|
1996
1999
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
1997
2000
|
declare const useExploreEcosystemModal: () => {
|
|
@@ -2003,7 +2006,7 @@ declare const ExploreEcosystemModalProvider: ({
|
|
|
2003
2006
|
children
|
|
2004
2007
|
}: {
|
|
2005
2008
|
children: ReactNode;
|
|
2006
|
-
}) =>
|
|
2009
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
2007
2010
|
//#endregion
|
|
2008
2011
|
//#region src/hooks/modals/useNotificationsModal.d.ts
|
|
2009
2012
|
declare const useNotificationsModal: () => {
|
|
@@ -2015,7 +2018,7 @@ declare const NotificationsModalProvider: ({
|
|
|
2015
2018
|
children
|
|
2016
2019
|
}: {
|
|
2017
2020
|
children: ReactNode;
|
|
2018
|
-
}) =>
|
|
2021
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
2019
2022
|
//#endregion
|
|
2020
2023
|
//#region src/hooks/modals/useFAQModal.d.ts
|
|
2021
2024
|
declare const useFAQModal: () => {
|
|
@@ -2027,11 +2030,11 @@ declare const FAQModalProvider: ({
|
|
|
2027
2030
|
children
|
|
2028
2031
|
}: {
|
|
2029
2032
|
children: ReactNode;
|
|
2030
|
-
}) =>
|
|
2033
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
2031
2034
|
//#endregion
|
|
2032
2035
|
//#region src/hooks/modals/useAccountCustomizationModal.d.ts
|
|
2033
2036
|
declare const useAccountCustomizationModal: () => {
|
|
2034
|
-
open: () => void;
|
|
2037
|
+
open: (options?: AccountModalOptions) => void;
|
|
2035
2038
|
close: () => void;
|
|
2036
2039
|
isOpen: boolean;
|
|
2037
2040
|
};
|
|
@@ -2039,7 +2042,7 @@ declare const AccountCustomizationModalProvider: ({
|
|
|
2039
2042
|
children
|
|
2040
2043
|
}: {
|
|
2041
2044
|
children: ReactNode;
|
|
2042
|
-
}) =>
|
|
2045
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
2043
2046
|
//#endregion
|
|
2044
2047
|
//#region src/hooks/modals/useReceiveModal.d.ts
|
|
2045
2048
|
declare const useReceiveModal: () => {
|
|
@@ -2051,7 +2054,7 @@ declare const ReceiveModalProvider: ({
|
|
|
2051
2054
|
children
|
|
2052
2055
|
}: {
|
|
2053
2056
|
children: ReactNode;
|
|
2054
|
-
}) =>
|
|
2057
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
2055
2058
|
//#endregion
|
|
2056
2059
|
//#region src/hooks/modals/useLoginModalContent.d.ts
|
|
2057
2060
|
type LoginModalContentConfig = {
|
|
@@ -2077,7 +2080,7 @@ declare const UpgradeSmartAccountModalProvider: ({
|
|
|
2077
2080
|
children
|
|
2078
2081
|
}: {
|
|
2079
2082
|
children: ReactNode;
|
|
2080
|
-
}) =>
|
|
2083
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
2081
2084
|
//#endregion
|
|
2082
2085
|
//#region src/hooks/modals/useProfileModal.d.ts
|
|
2083
2086
|
declare const useProfileModal: () => {
|
|
@@ -2089,7 +2092,7 @@ declare const ProfileModalProvider: ({
|
|
|
2089
2092
|
children
|
|
2090
2093
|
}: {
|
|
2091
2094
|
children: ReactNode;
|
|
2092
|
-
}) =>
|
|
2095
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
2093
2096
|
//#endregion
|
|
2094
2097
|
//#region src/hooks/modals/useAccountModalOptions.d.ts
|
|
2095
2098
|
declare const useAccountModalOptions: () => {
|
|
@@ -2107,7 +2110,7 @@ declare const SettingsModalProvider: ({
|
|
|
2107
2110
|
children
|
|
2108
2111
|
}: {
|
|
2109
2112
|
children: ReactNode;
|
|
2110
|
-
}) =>
|
|
2113
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
2111
2114
|
//#endregion
|
|
2112
2115
|
//#region src/hooks/notifications/types.d.ts
|
|
2113
2116
|
type NotificationAction = {
|
|
@@ -2237,7 +2240,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2237
2240
|
* );
|
|
2238
2241
|
* ```
|
|
2239
2242
|
*/
|
|
2240
|
-
declare const useAppHubApps: () =>
|
|
2243
|
+
declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
|
|
2241
2244
|
//#endregion
|
|
2242
2245
|
//#region src/utils/constants.d.ts
|
|
2243
2246
|
/** Tokens that cannot be swapped or transferred (e.g. governance voting tokens) */
|
|
@@ -2592,7 +2595,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
2592
2595
|
method: TMethod;
|
|
2593
2596
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2594
2597
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
2595
|
-
}) =>
|
|
2598
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
|
|
2596
2599
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
2597
2600
|
thor,
|
|
2598
2601
|
calls,
|
|
@@ -2603,7 +2606,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
2603
2606
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
2604
2607
|
queryKey: string[];
|
|
2605
2608
|
enabled?: boolean;
|
|
2606
|
-
}) =>
|
|
2609
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
2607
2610
|
//#endregion
|
|
2608
2611
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
2609
2612
|
/**
|
|
@@ -2727,7 +2730,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
2727
2730
|
filterParams,
|
|
2728
2731
|
mapResponse,
|
|
2729
2732
|
nodeUrl
|
|
2730
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
2733
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
|
|
2731
2734
|
//#endregion
|
|
2732
2735
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
2733
2736
|
interface BuildClausesParams {
|
|
@@ -2879,7 +2882,7 @@ declare const useGenericDelegatorFeeEstimation: ({
|
|
|
2879
2882
|
tokens,
|
|
2880
2883
|
sendingAmount,
|
|
2881
2884
|
sendingTokenSymbol
|
|
2882
|
-
}: useGenericDelegatorFeeEstimationParams) =>
|
|
2885
|
+
}: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
|
|
2883
2886
|
usedToken: string;
|
|
2884
2887
|
}, Error>;
|
|
2885
2888
|
//#endregion
|
|
@@ -2893,7 +2896,7 @@ declare const useEstimateAllTokens: ({
|
|
|
2893
2896
|
clauses,
|
|
2894
2897
|
tokens,
|
|
2895
2898
|
enabled
|
|
2896
|
-
}: UseEstimateAllTokensParams) =>
|
|
2899
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
|
|
2897
2900
|
cost: number;
|
|
2898
2901
|
loading: boolean;
|
|
2899
2902
|
error?: string;
|
|
@@ -2910,7 +2913,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
2910
2913
|
* @param address The address of the account to get the balance for
|
|
2911
2914
|
* @returns The account balance
|
|
2912
2915
|
*/
|
|
2913
|
-
declare const useAccountBalance: (address?: string) =>
|
|
2916
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
2914
2917
|
balance: string;
|
|
2915
2918
|
energy: string;
|
|
2916
2919
|
}, Error>;
|
|
@@ -2923,7 +2926,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
2923
2926
|
* @param version - The version of the smart account implementation
|
|
2924
2927
|
* @returns The address of the smart account implementation
|
|
2925
2928
|
*/
|
|
2926
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
2929
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2927
2930
|
//#endregion
|
|
2928
2931
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
2929
2932
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -2932,7 +2935,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
2932
2935
|
* Get the current account implementation version used by the smart account factory
|
|
2933
2936
|
* @returns The current account implementation version
|
|
2934
2937
|
*/
|
|
2935
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
2938
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
2936
2939
|
//#endregion
|
|
2937
2940
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
2938
2941
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -2942,7 +2945,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
2942
2945
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2943
2946
|
* @returns The address of the smart account
|
|
2944
2947
|
*/
|
|
2945
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
2948
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2946
2949
|
//#endregion
|
|
2947
2950
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
2948
2951
|
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
|
|
@@ -2952,7 +2955,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2952
2955
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2953
2956
|
* @returns The version of the smart account
|
|
2954
2957
|
*/
|
|
2955
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
2958
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
|
|
2956
2959
|
version: number;
|
|
2957
2960
|
isDeployed: boolean;
|
|
2958
2961
|
}, unknown>;
|
|
@@ -2965,7 +2968,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
2965
2968
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2966
2969
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
2967
2970
|
*/
|
|
2968
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
2971
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2969
2972
|
//#endregion
|
|
2970
2973
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
2971
2974
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -2974,7 +2977,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
2974
2977
|
* Check if a smart account is deployed
|
|
2975
2978
|
* @returns True if the smart account is deployed, false otherwise
|
|
2976
2979
|
*/
|
|
2977
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
2980
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2978
2981
|
//#endregion
|
|
2979
2982
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
2980
2983
|
/**
|
|
@@ -3007,7 +3010,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
3007
3010
|
isDeployed: boolean;
|
|
3008
3011
|
}>;
|
|
3009
3012
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
3010
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
3013
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
3011
3014
|
address: undefined;
|
|
3012
3015
|
isDeployed?: undefined;
|
|
3013
3016
|
} | {
|
|
@@ -3025,7 +3028,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
3025
3028
|
* @param targetVersion - The version of the smart account to check for
|
|
3026
3029
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3027
3030
|
*/
|
|
3028
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
3031
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3029
3032
|
//#endregion
|
|
3030
3033
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
3031
3034
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -3036,7 +3039,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
3036
3039
|
* @param targetVersion - The target version of the smart account
|
|
3037
3040
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3038
3041
|
*/
|
|
3039
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
3042
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3040
3043
|
//#endregion
|
|
3041
3044
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
3042
3045
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -3061,7 +3064,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
3061
3064
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
3062
3065
|
* @returns the current block
|
|
3063
3066
|
*/
|
|
3064
|
-
declare const useCurrentBlock: () =>
|
|
3067
|
+
declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
|
|
3065
3068
|
//#endregion
|
|
3066
3069
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
3067
3070
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -3070,7 +3073,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
3070
3073
|
* Get the chain id
|
|
3071
3074
|
* @returns The chain id
|
|
3072
3075
|
*/
|
|
3073
|
-
declare const useGetChainId: () =>
|
|
3076
|
+
declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
3074
3077
|
//#endregion
|
|
3075
3078
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
3076
3079
|
/**
|
|
@@ -3322,7 +3325,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
3322
3325
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
3323
3326
|
* @returns Query result containing the transaction receipt
|
|
3324
3327
|
*/
|
|
3325
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
3328
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
|
|
3326
3329
|
//#endregion
|
|
3327
3330
|
//#region src/hooks/thor/transactions/useGasEstimate.d.ts
|
|
3328
3331
|
declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
|
|
@@ -3344,7 +3347,7 @@ declare const SendTokenContent: ({
|
|
|
3344
3347
|
initialAmount,
|
|
3345
3348
|
initialToAddressOrDomain,
|
|
3346
3349
|
onBack: parentOnBack
|
|
3347
|
-
}: SendTokenContentProps) =>
|
|
3350
|
+
}: SendTokenContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3348
3351
|
//#endregion
|
|
3349
3352
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
|
|
3350
3353
|
type SendTokenSummaryContentProps = {
|
|
@@ -3364,7 +3367,7 @@ declare const SendTokenSummaryContent: ({
|
|
|
3364
3367
|
amount,
|
|
3365
3368
|
selectedToken,
|
|
3366
3369
|
formattedTotalAmount
|
|
3367
|
-
}: SendTokenSummaryContentProps) =>
|
|
3370
|
+
}: SendTokenSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3368
3371
|
//#endregion
|
|
3369
3372
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
3370
3373
|
type Props$18 = {
|
|
@@ -3385,7 +3388,7 @@ declare const SelectTokenContent: ({
|
|
|
3385
3388
|
onBack,
|
|
3386
3389
|
showAllTokens,
|
|
3387
3390
|
excludedTokenSymbols
|
|
3388
|
-
}: Props$18) =>
|
|
3391
|
+
}: Props$18) => react_jsx_runtime0.JSX.Element;
|
|
3389
3392
|
//#endregion
|
|
3390
3393
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
3391
3394
|
type Props$17 = {
|
|
@@ -3393,7 +3396,7 @@ type Props$17 = {
|
|
|
3393
3396
|
};
|
|
3394
3397
|
declare const ReceiveTokenContent: ({
|
|
3395
3398
|
setCurrentContent
|
|
3396
|
-
}: Props$17) =>
|
|
3399
|
+
}: Props$17) => react_jsx_runtime0.JSX.Element;
|
|
3397
3400
|
//#endregion
|
|
3398
3401
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
3399
3402
|
type Props$16 = {
|
|
@@ -3405,7 +3408,7 @@ declare const SwapTokenContent: ({
|
|
|
3405
3408
|
setCurrentContent,
|
|
3406
3409
|
fromTokenAddress,
|
|
3407
3410
|
toTokenAddress
|
|
3408
|
-
}: Props$16) =>
|
|
3411
|
+
}: Props$16) => react_jsx_runtime0.JSX.Element;
|
|
3409
3412
|
//#endregion
|
|
3410
3413
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
3411
3414
|
type ChooseNameContentProps = {
|
|
@@ -3417,7 +3420,7 @@ declare const ChooseNameContent: ({
|
|
|
3417
3420
|
setCurrentContent,
|
|
3418
3421
|
onBack,
|
|
3419
3422
|
initialContentSource
|
|
3420
|
-
}: ChooseNameContentProps) =>
|
|
3423
|
+
}: ChooseNameContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3421
3424
|
//#endregion
|
|
3422
3425
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
|
|
3423
3426
|
type ChooseNameSearchContentProps = {
|
|
@@ -3429,7 +3432,7 @@ declare const ChooseNameSearchContent: ({
|
|
|
3429
3432
|
name: initialName,
|
|
3430
3433
|
setCurrentContent,
|
|
3431
3434
|
initialContentSource
|
|
3432
|
-
}: ChooseNameSearchContentProps) =>
|
|
3435
|
+
}: ChooseNameSearchContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3433
3436
|
//#endregion
|
|
3434
3437
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
|
|
3435
3438
|
type ChooseNameSummaryContentProps = {
|
|
@@ -3447,7 +3450,7 @@ declare const ChooseNameSummaryContent: ({
|
|
|
3447
3450
|
isOwnDomain,
|
|
3448
3451
|
isUnsetting,
|
|
3449
3452
|
initialContentSource
|
|
3450
|
-
}: ChooseNameSummaryContentProps) =>
|
|
3453
|
+
}: ChooseNameSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3451
3454
|
//#endregion
|
|
3452
3455
|
//#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
|
|
3453
3456
|
type FAQContentProps = {
|
|
@@ -3457,7 +3460,7 @@ type FAQContentProps = {
|
|
|
3457
3460
|
declare const FAQContent: ({
|
|
3458
3461
|
onGoBack,
|
|
3459
3462
|
showLanguageSelector
|
|
3460
|
-
}: FAQContentProps) =>
|
|
3463
|
+
}: FAQContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3461
3464
|
//#endregion
|
|
3462
3465
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
|
|
3463
3466
|
type AccountCustomizationContentProps = {
|
|
@@ -3467,7 +3470,7 @@ type AccountCustomizationContentProps = {
|
|
|
3467
3470
|
declare const CustomizationContent: ({
|
|
3468
3471
|
setCurrentContent,
|
|
3469
3472
|
initialContentSource
|
|
3470
|
-
}: AccountCustomizationContentProps) =>
|
|
3473
|
+
}: AccountCustomizationContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3471
3474
|
//#endregion
|
|
3472
3475
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
|
|
3473
3476
|
type CustomizationSummaryContentProps = {
|
|
@@ -3486,7 +3489,7 @@ declare const CustomizationSummaryContent: ({
|
|
|
3486
3489
|
setCurrentContent,
|
|
3487
3490
|
changes,
|
|
3488
3491
|
onDoneRedirectContent
|
|
3489
|
-
}: CustomizationSummaryContentProps) =>
|
|
3492
|
+
}: CustomizationSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3490
3493
|
//#endregion
|
|
3491
3494
|
//#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
|
|
3492
3495
|
type ProfileContentProps = {
|
|
@@ -3500,7 +3503,7 @@ declare const ProfileContent: ({
|
|
|
3500
3503
|
setCurrentContent,
|
|
3501
3504
|
onLogoutSuccess,
|
|
3502
3505
|
switchFeedback
|
|
3503
|
-
}: ProfileContentProps) =>
|
|
3506
|
+
}: ProfileContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3504
3507
|
//#endregion
|
|
3505
3508
|
//#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
|
|
3506
3509
|
type UpgradeSmartAccountContentProps = {
|
|
@@ -3512,7 +3515,7 @@ declare const UpgradeSmartAccountContent: ({
|
|
|
3512
3515
|
setCurrentContent,
|
|
3513
3516
|
handleClose,
|
|
3514
3517
|
initialContent
|
|
3515
|
-
}: UpgradeSmartAccountContentProps) =>
|
|
3518
|
+
}: UpgradeSmartAccountContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3516
3519
|
//#endregion
|
|
3517
3520
|
//#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
|
|
3518
3521
|
type AssetsContentProps = {
|
|
@@ -3520,7 +3523,7 @@ type AssetsContentProps = {
|
|
|
3520
3523
|
};
|
|
3521
3524
|
declare const AssetsContent: ({
|
|
3522
3525
|
setCurrentContent
|
|
3523
|
-
}: AssetsContentProps) =>
|
|
3526
|
+
}: AssetsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3524
3527
|
//#endregion
|
|
3525
3528
|
//#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
|
|
3526
3529
|
type ManageCustomTokenContentProps = {
|
|
@@ -3528,7 +3531,7 @@ type ManageCustomTokenContentProps = {
|
|
|
3528
3531
|
};
|
|
3529
3532
|
declare const ManageCustomTokenContent: ({
|
|
3530
3533
|
setCurrentContent
|
|
3531
|
-
}: ManageCustomTokenContentProps) =>
|
|
3534
|
+
}: ManageCustomTokenContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3532
3535
|
//#endregion
|
|
3533
3536
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
3534
3537
|
type Props$15 = {
|
|
@@ -3536,7 +3539,7 @@ type Props$15 = {
|
|
|
3536
3539
|
};
|
|
3537
3540
|
declare const BridgeContent: ({
|
|
3538
3541
|
setCurrentContent
|
|
3539
|
-
}: Props$15) =>
|
|
3542
|
+
}: Props$15) => react_jsx_runtime0.JSX.Element;
|
|
3540
3543
|
//#endregion
|
|
3541
3544
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
3542
3545
|
type ChangeCurrencyContentProps = {
|
|
@@ -3544,7 +3547,7 @@ type ChangeCurrencyContentProps = {
|
|
|
3544
3547
|
};
|
|
3545
3548
|
declare const ChangeCurrencyContent: ({
|
|
3546
3549
|
setCurrentContent
|
|
3547
|
-
}: ChangeCurrencyContentProps) =>
|
|
3550
|
+
}: ChangeCurrencyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3548
3551
|
//#endregion
|
|
3549
3552
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
3550
3553
|
type Props$14 = {
|
|
@@ -3552,7 +3555,7 @@ type Props$14 = {
|
|
|
3552
3555
|
};
|
|
3553
3556
|
declare const LanguageSettingsContent: ({
|
|
3554
3557
|
setCurrentContent
|
|
3555
|
-
}: Props$14) =>
|
|
3558
|
+
}: Props$14) => react_jsx_runtime0.JSX.Element;
|
|
3556
3559
|
//#endregion
|
|
3557
3560
|
//#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
|
|
3558
3561
|
type Props$13 = {
|
|
@@ -3560,7 +3563,7 @@ type Props$13 = {
|
|
|
3560
3563
|
};
|
|
3561
3564
|
declare const GasTokenSettingsContent: ({
|
|
3562
3565
|
setCurrentContent
|
|
3563
|
-
}: Props$13) =>
|
|
3566
|
+
}: Props$13) => react_jsx_runtime0.JSX.Element;
|
|
3564
3567
|
//#endregion
|
|
3565
3568
|
//#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
|
|
3566
3569
|
type SettingsContentProps = {
|
|
@@ -3570,7 +3573,7 @@ type SettingsContentProps = {
|
|
|
3570
3573
|
declare const SettingsContent: ({
|
|
3571
3574
|
setCurrentContent,
|
|
3572
3575
|
onLogoutSuccess
|
|
3573
|
-
}: SettingsContentProps) =>
|
|
3576
|
+
}: SettingsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3574
3577
|
//#endregion
|
|
3575
3578
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
3576
3579
|
type TermsAndPrivacyContentProps = {
|
|
@@ -3578,7 +3581,7 @@ type TermsAndPrivacyContentProps = {
|
|
|
3578
3581
|
};
|
|
3579
3582
|
declare const TermsAndPrivacyContent: ({
|
|
3580
3583
|
onGoBack
|
|
3581
|
-
}: TermsAndPrivacyContentProps) =>
|
|
3584
|
+
}: TermsAndPrivacyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3582
3585
|
//#endregion
|
|
3583
3586
|
//#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
|
|
3584
3587
|
type DisconnectConfirmContentProps = {
|
|
@@ -3594,7 +3597,7 @@ declare const DisconnectConfirmContent: ({
|
|
|
3594
3597
|
onClose,
|
|
3595
3598
|
showCloseButton,
|
|
3596
3599
|
text
|
|
3597
|
-
}: DisconnectConfirmContentProps) =>
|
|
3600
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3598
3601
|
//#endregion
|
|
3599
3602
|
//#region src/components/AccountModal/Contents/SelectWallet/SelectWalletContent.d.ts
|
|
3600
3603
|
type Props$12 = {
|
|
@@ -3607,7 +3610,7 @@ declare const SelectWalletContent: ({
|
|
|
3607
3610
|
setCurrentContent,
|
|
3608
3611
|
returnTo,
|
|
3609
3612
|
onLogoutSuccess: _onLogoutSuccess
|
|
3610
|
-
}: Props$12) =>
|
|
3613
|
+
}: Props$12) => react_jsx_runtime0.JSX.Element;
|
|
3611
3614
|
//#endregion
|
|
3612
3615
|
//#region src/components/AccountModal/Contents/SelectWallet/RemoveWalletConfirmContent.d.ts
|
|
3613
3616
|
type RemoveWalletConfirmContentProps = {
|
|
@@ -3623,7 +3626,7 @@ declare const RemoveWalletConfirmContent: ({
|
|
|
3623
3626
|
onConfirm,
|
|
3624
3627
|
onBack,
|
|
3625
3628
|
onClose
|
|
3626
|
-
}: RemoveWalletConfirmContentProps) =>
|
|
3629
|
+
}: RemoveWalletConfirmContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3627
3630
|
//#endregion
|
|
3628
3631
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
3629
3632
|
type CategoryFilter = string | null;
|
|
@@ -3673,7 +3676,7 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | {
|
|
|
3673
3676
|
props?: {
|
|
3674
3677
|
switchFeedback?: SwitchFeedback;
|
|
3675
3678
|
};
|
|
3676
|
-
} | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'change-currency' | 'change-language' | 'gas-token-settings' | {
|
|
3679
|
+
} | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'change-currency' | 'account-customization' | 'change-language' | 'gas-token-settings' | {
|
|
3677
3680
|
type: 'select-wallet';
|
|
3678
3681
|
props: {
|
|
3679
3682
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
@@ -3751,7 +3754,7 @@ declare const AccountModal: ({
|
|
|
3751
3754
|
isOpen,
|
|
3752
3755
|
onClose,
|
|
3753
3756
|
initialContent
|
|
3754
|
-
}: Props$11) =>
|
|
3757
|
+
}: Props$11) => react_jsx_runtime0.JSX.Element;
|
|
3755
3758
|
//#endregion
|
|
3756
3759
|
//#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
|
|
3757
3760
|
interface AccountDetailsButtonProps {
|
|
@@ -3773,7 +3776,7 @@ declare const AccountDetailsButton: ({
|
|
|
3773
3776
|
onClick,
|
|
3774
3777
|
leftImage,
|
|
3775
3778
|
isActive
|
|
3776
|
-
}: AccountDetailsButtonProps) =>
|
|
3779
|
+
}: AccountDetailsButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3777
3780
|
//#endregion
|
|
3778
3781
|
//#region src/components/AccountModal/Components/ActionButton.d.ts
|
|
3779
3782
|
type ActionButtonProps = {
|
|
@@ -3815,7 +3818,7 @@ declare const ActionButton: ({
|
|
|
3815
3818
|
extraContent,
|
|
3816
3819
|
dataTestId,
|
|
3817
3820
|
variant
|
|
3818
|
-
}: ActionButtonProps) =>
|
|
3821
|
+
}: ActionButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3819
3822
|
//#endregion
|
|
3820
3823
|
//#region src/components/AccountModal/Components/AccountSelector.d.ts
|
|
3821
3824
|
type Props$10 = {
|
|
@@ -3835,7 +3838,7 @@ declare const AccountSelector: ({
|
|
|
3835
3838
|
onClose,
|
|
3836
3839
|
mt,
|
|
3837
3840
|
style
|
|
3838
|
-
}: Props$10) =>
|
|
3841
|
+
}: Props$10) => react_jsx_runtime0.JSX.Element;
|
|
3839
3842
|
//#endregion
|
|
3840
3843
|
//#region src/components/AccountModal/Components/BalanceSection.d.ts
|
|
3841
3844
|
declare const BalanceSection: ({
|
|
@@ -3846,7 +3849,7 @@ declare const BalanceSection: ({
|
|
|
3846
3849
|
mb?: number;
|
|
3847
3850
|
mt?: number;
|
|
3848
3851
|
onAssetsClick?: () => void;
|
|
3849
|
-
}) =>
|
|
3852
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
3850
3853
|
//#endregion
|
|
3851
3854
|
//#region src/components/AccountModal/Components/QuickActionsSection.d.ts
|
|
3852
3855
|
type Props$9 = {
|
|
@@ -3856,7 +3859,7 @@ type Props$9 = {
|
|
|
3856
3859
|
declare const QuickActionsSection: ({
|
|
3857
3860
|
mt,
|
|
3858
3861
|
setCurrentContent
|
|
3859
|
-
}: Props$9) =>
|
|
3862
|
+
}: Props$9) => react_jsx_runtime0.JSX.Element | null;
|
|
3860
3863
|
//#endregion
|
|
3861
3864
|
//#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
|
|
3862
3865
|
type FeatureAnnouncementCardProps = {
|
|
@@ -3864,16 +3867,16 @@ type FeatureAnnouncementCardProps = {
|
|
|
3864
3867
|
};
|
|
3865
3868
|
declare const FeatureAnnouncementCard: ({
|
|
3866
3869
|
setCurrentContent
|
|
3867
|
-
}: FeatureAnnouncementCardProps) =>
|
|
3870
|
+
}: FeatureAnnouncementCardProps) => react_jsx_runtime0.JSX.Element;
|
|
3868
3871
|
//#endregion
|
|
3869
3872
|
//#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
|
|
3870
|
-
declare const ExchangeWarningAlert: () =>
|
|
3873
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime0.JSX.Element;
|
|
3871
3874
|
//#endregion
|
|
3872
3875
|
//#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
|
|
3873
|
-
declare const DomainRequiredAlert: () =>
|
|
3876
|
+
declare const DomainRequiredAlert: () => react_jsx_runtime0.JSX.Element;
|
|
3874
3877
|
//#endregion
|
|
3875
3878
|
//#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
|
|
3876
|
-
declare const CrossAppConnectionSecurityCard: () =>
|
|
3879
|
+
declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime0.JSX.Element;
|
|
3877
3880
|
//#endregion
|
|
3878
3881
|
//#region src/components/common/ModalBackButton.d.ts
|
|
3879
3882
|
type BackButtonProps = {
|
|
@@ -3882,7 +3885,7 @@ type BackButtonProps = {
|
|
|
3882
3885
|
declare const ModalBackButton: ({
|
|
3883
3886
|
onClick,
|
|
3884
3887
|
...props
|
|
3885
|
-
}: BackButtonProps) =>
|
|
3888
|
+
}: BackButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3886
3889
|
//#endregion
|
|
3887
3890
|
//#region src/components/common/AddressDisplay.d.ts
|
|
3888
3891
|
type Props$8 = {
|
|
@@ -3900,13 +3903,13 @@ declare const AddressDisplay: ({
|
|
|
3900
3903
|
showHumanAddress,
|
|
3901
3904
|
setCurrentContent,
|
|
3902
3905
|
onLogout
|
|
3903
|
-
}: Props$8) =>
|
|
3906
|
+
}: Props$8) => react_jsx_runtime0.JSX.Element;
|
|
3904
3907
|
//#endregion
|
|
3905
3908
|
//#region src/components/common/VersionFooter.d.ts
|
|
3906
3909
|
type Props$7 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
3907
3910
|
declare const VersionFooter: ({
|
|
3908
3911
|
...props
|
|
3909
|
-
}: Props$7) =>
|
|
3912
|
+
}: Props$7) => react_jsx_runtime0.JSX.Element;
|
|
3910
3913
|
//#endregion
|
|
3911
3914
|
//#region src/components/common/StickyHeaderContainer.d.ts
|
|
3912
3915
|
type Props$6 = {
|
|
@@ -3917,7 +3920,7 @@ declare const useStickyHeaderContext: () => {
|
|
|
3917
3920
|
};
|
|
3918
3921
|
declare const StickyHeaderContainer: ({
|
|
3919
3922
|
children
|
|
3920
|
-
}: Props$6) =>
|
|
3923
|
+
}: Props$6) => react_jsx_runtime0.JSX.Element;
|
|
3921
3924
|
//#endregion
|
|
3922
3925
|
//#region src/components/common/StickyFooterContainer.d.ts
|
|
3923
3926
|
type Props$5 = {
|
|
@@ -3925,7 +3928,7 @@ type Props$5 = {
|
|
|
3925
3928
|
};
|
|
3926
3929
|
declare const StickyFooterContainer: ({
|
|
3927
3930
|
children
|
|
3928
|
-
}: Props$5) =>
|
|
3931
|
+
}: Props$5) => react_jsx_runtime0.JSX.Element;
|
|
3929
3932
|
//#endregion
|
|
3930
3933
|
//#region src/components/common/BaseModal.d.ts
|
|
3931
3934
|
type BaseModalProps = {
|
|
@@ -3974,7 +3977,7 @@ declare const BaseModal: ({
|
|
|
3974
3977
|
mobileMaxHeight,
|
|
3975
3978
|
desktopMinHeight,
|
|
3976
3979
|
desktopMaxHeight
|
|
3977
|
-
}: BaseModalProps) =>
|
|
3980
|
+
}: BaseModalProps) => react_jsx_runtime0.JSX.Element;
|
|
3978
3981
|
//#endregion
|
|
3979
3982
|
//#region src/components/common/AssetButton.d.ts
|
|
3980
3983
|
type AssetButtonProps = ButtonProps & {
|
|
@@ -3993,7 +3996,7 @@ declare const AssetButton: ({
|
|
|
3993
3996
|
isDisabled,
|
|
3994
3997
|
onClick,
|
|
3995
3998
|
...buttonProps
|
|
3996
|
-
}: AssetButtonProps) =>
|
|
3999
|
+
}: AssetButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3997
4000
|
//#endregion
|
|
3998
4001
|
//#region src/components/common/AddressDisplayCard.d.ts
|
|
3999
4002
|
type AddressDisplayCardProps = {
|
|
@@ -4013,7 +4016,7 @@ declare const AddressDisplayCard: ({
|
|
|
4013
4016
|
hideAddress,
|
|
4014
4017
|
balance,
|
|
4015
4018
|
tokenAddress
|
|
4016
|
-
}: AddressDisplayCardProps) =>
|
|
4019
|
+
}: AddressDisplayCardProps) => react_jsx_runtime0.JSX.Element;
|
|
4017
4020
|
//#endregion
|
|
4018
4021
|
//#region src/components/common/ModalFAQButton.d.ts
|
|
4019
4022
|
type FAQButtonProps = {
|
|
@@ -4022,13 +4025,13 @@ type FAQButtonProps = {
|
|
|
4022
4025
|
declare const ModalFAQButton: ({
|
|
4023
4026
|
onClick,
|
|
4024
4027
|
...props
|
|
4025
|
-
}: FAQButtonProps) =>
|
|
4028
|
+
}: FAQButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
4026
4029
|
//#endregion
|
|
4027
4030
|
//#region src/components/common/ScrollToTopWrapper.d.ts
|
|
4028
4031
|
declare const ScrollToTopWrapper: ({
|
|
4029
4032
|
children,
|
|
4030
4033
|
...props
|
|
4031
|
-
}: StackProps) =>
|
|
4034
|
+
}: StackProps) => react_jsx_runtime0.JSX.Element;
|
|
4032
4035
|
//#endregion
|
|
4033
4036
|
//#region src/components/common/AccountAvatar.d.ts
|
|
4034
4037
|
type AccountAvatarProps = {
|
|
@@ -4038,7 +4041,7 @@ type AccountAvatarProps = {
|
|
|
4038
4041
|
declare const AccountAvatar: ({
|
|
4039
4042
|
wallet,
|
|
4040
4043
|
props
|
|
4041
|
-
}: AccountAvatarProps) =>
|
|
4044
|
+
}: AccountAvatarProps) => react_jsx_runtime0.JSX.Element;
|
|
4042
4045
|
//#endregion
|
|
4043
4046
|
//#region src/components/common/TransactionButtonAndStatus.d.ts
|
|
4044
4047
|
type TransactionButtonAndStatusProps = {
|
|
@@ -4080,7 +4083,7 @@ declare const TransactionButtonAndStatus: ({
|
|
|
4080
4083
|
isLoadingGasEstimation,
|
|
4081
4084
|
showGasEstimationError,
|
|
4082
4085
|
context
|
|
4083
|
-
}: TransactionButtonAndStatusProps) =>
|
|
4086
|
+
}: TransactionButtonAndStatusProps) => react_jsx_runtime0.JSX.Element;
|
|
4084
4087
|
//#endregion
|
|
4085
4088
|
//#region src/components/common/ModalNotificationButton.d.ts
|
|
4086
4089
|
type NotificationButtonProps = {
|
|
@@ -4091,7 +4094,7 @@ declare const ModalNotificationButton: ({
|
|
|
4091
4094
|
onClick,
|
|
4092
4095
|
hasUnreadNotifications,
|
|
4093
4096
|
...props
|
|
4094
|
-
}: NotificationButtonProps) =>
|
|
4097
|
+
}: NotificationButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
4095
4098
|
//#endregion
|
|
4096
4099
|
//#region src/components/common/GasFeeSummary.d.ts
|
|
4097
4100
|
interface GasFeeSummaryProps {
|
|
@@ -4127,7 +4130,7 @@ declare const GasFeeTokenSelector: ({
|
|
|
4127
4130
|
availableTokens,
|
|
4128
4131
|
tokenEstimations,
|
|
4129
4132
|
walletAddress
|
|
4130
|
-
}: GasFeeTokenSelectorProps) =>
|
|
4133
|
+
}: GasFeeTokenSelectorProps) => react_jsx_runtime0.JSX.Element;
|
|
4131
4134
|
//#endregion
|
|
4132
4135
|
//#region src/components/common/InlineFeedback.d.ts
|
|
4133
4136
|
type Props$4 = {
|
|
@@ -4139,7 +4142,7 @@ declare const InlineFeedback: ({
|
|
|
4139
4142
|
message,
|
|
4140
4143
|
duration,
|
|
4141
4144
|
onClose
|
|
4142
|
-
}: Props$4) =>
|
|
4145
|
+
}: Props$4) => react_jsx_runtime0.JSX.Element;
|
|
4143
4146
|
//#endregion
|
|
4144
4147
|
//#region src/components/common/WalletSwitchFeedback.d.ts
|
|
4145
4148
|
type Props$3 = {
|
|
@@ -4156,7 +4159,7 @@ type Props$3 = {
|
|
|
4156
4159
|
*/
|
|
4157
4160
|
declare const WalletSwitchFeedback: ({
|
|
4158
4161
|
showFeedback
|
|
4159
|
-
}: Props$3) =>
|
|
4162
|
+
}: Props$3) => react_jsx_runtime0.JSX.Element | null;
|
|
4160
4163
|
//#endregion
|
|
4161
4164
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
4162
4165
|
type SuccessfulOperationContentProps = {
|
|
@@ -4186,7 +4189,7 @@ declare const UpgradeSmartAccountModal: ({
|
|
|
4186
4189
|
isOpen,
|
|
4187
4190
|
onClose,
|
|
4188
4191
|
style
|
|
4189
|
-
}: Props$2) =>
|
|
4192
|
+
}: Props$2) => react_jsx_runtime0.JSX.Element;
|
|
4190
4193
|
//#endregion
|
|
4191
4194
|
//#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
|
|
4192
4195
|
type Props$1 = {
|
|
@@ -4201,7 +4204,7 @@ declare const LegalDocumentsModal: ({
|
|
|
4201
4204
|
onAgree,
|
|
4202
4205
|
handleLogout,
|
|
4203
4206
|
onlyOptionalDocuments
|
|
4204
|
-
}: Props$1) =>
|
|
4207
|
+
}: Props$1) => react_jsx_runtime0.JSX.Element;
|
|
4205
4208
|
//#endregion
|
|
4206
4209
|
//#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
|
|
4207
4210
|
type Props = {
|
|
@@ -4213,7 +4216,7 @@ declare const LegalDocumentItem: ({
|
|
|
4213
4216
|
document,
|
|
4214
4217
|
register,
|
|
4215
4218
|
isText
|
|
4216
|
-
}: Props) =>
|
|
4219
|
+
}: Props) => react_jsx_runtime0.JSX.Element;
|
|
4217
4220
|
//#endregion
|
|
4218
4221
|
//#region src/providers/ModalProvider.d.ts
|
|
4219
4222
|
type AccountModalOptions = {
|
|
@@ -4248,7 +4251,7 @@ declare const ModalProvider: ({
|
|
|
4248
4251
|
children
|
|
4249
4252
|
}: {
|
|
4250
4253
|
children: ReactNode;
|
|
4251
|
-
}) =>
|
|
4254
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
4252
4255
|
//#endregion
|
|
4253
4256
|
//#region src/config/index.d.ts
|
|
4254
4257
|
type AppConfig = {
|
|
@@ -4293,5 +4296,5 @@ type AppConfig = {
|
|
|
4293
4296
|
};
|
|
4294
4297
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4295
4298
|
//#endregion
|
|
4296
|
-
export { LanguageSettingsContent as $, useRefreshMetadata as $a, useAccountCustomizationModal as $i, useBuildClauses as $n, useGetDomainsOfAddress as $o, resolveMediaTypeFromMimeType as $r, VeChainKitProvider as $s, useUpgradeSmartAccount as $t, AddressDisplay as A, IpfsImage as Aa, ExecuteWithAuthorizationSignData as Ac, notFoundImage as Ai, getAccountBalanceQueryKey as An, ExchangeRates as Ao, buildCallClauses as Ar, PrivyButton as As, useMfaEnrollment as At, AccountDetailsButton as B, useXAppsShares as Ba, useNotificationAlerts as Bi, estimateGas as Bn, getResolverAddressQueryKey as Bo, validate as Br, ConnectModalContentsTypes as Bs, useTransferVET as Bt, AddressDisplayCard as C, useSwapTransaction as Ca, CURRENCY as Cc, TogglePassportCheck as Ci, getCurrentAccountImplementationVersion as Cn, useGetB3trBalance as Co, removeLocalStorageItem as Cr, WalletDisplayVariant as Cs, ReceiveTokenContent as Ct, StickyHeaderContainer as D, imageCompressionOptions as Da, ENSRecords as Dc, VECHAIN_PRIVY_APP_ID as Di, getAccountImplementationAddressQueryKey as Dn, useTotalBalance as Do, MultipleClausesCallParameters as Dr, DappKitButton as Ds, ThorClient$1 as Dt, StickyFooterContainer as E, compressImages as Ea, CrossAppConnectionCache as Ec, VECHAIN_KIT_TERMS_CONFIG as Ei, getAccountImplementationAddress as En, useCurrentAllocationsRoundId as Eo, setLocalStorageItem as Er, VeChainWithPrivyLoginButton as Es, SendTokenContent as Et, FeatureAnnouncementCard as F, useIpfsImageList as Fa, TokenBalance as Fc, useLoginWithVeChain as Fi, useGenericDelegatorFeeEstimationParams as Fn, getAvatarLegacy as Fo, compare as Fr, EcosystemContent as Fs, txReceiptQueryKey as Ft, RemoveWalletConfirmContentProps as G, useSwitchWallet as Ga, ProfileModalProvider as Gi, EcosystemShortcut as Gn, getTextRecordsQueryKey as Go, MinXNodeLevel as Gr, useVechainKitThemeConfig as Gs, GetEventsProps as Gt, AccountModalContentTypes as H, getXAppMetadata as Ha, SettingsModalProvider as Hi, signVip191Transaction as Hn, buildClauses as Ho, simpleHash as Hr, useLegalDocuments as Hs, useTransferERC20 as Ht, QuickActionsSection as I, getIpfsMetadata as Ia, TransactionStatus as Ic, useLoginWithOAuth as Ii, useGasTokenSelection as In, getAvatarLegacyQueryKey as Io, isInvalid as Ir, ErrorContent as Is, useTxReceipt as It, DisconnectConfirmContentProps as J, useWalletMetadata as Ja, useUpgradeSmartAccountModal as Ji, LocalStorageKey as Jn, useGetAvatar as Jo, allNodeStrengthLevelToName as Jr, usePrivyWalletProvider as Js, getChainId as Jt, SelectWalletContent as K, StoredWallet as Ka, useProfileModal as Ki, useEcosystemShortcuts as Kn, useGetTextRecords as Ko, NodeStrengthLevelToImage as Kr, PrivyWalletProvider as Ks, getAllEventLogs as Kt, BalanceSection as L, getIpfsMetadataQueryKey as La, TransactionStatusErrorType as Lc, useLoginWithPasskey as Li, decodeRawTx as Ln, useGetAvatarLegacy as Lo, isValid as Lr, LoadingContent as Ls, BuildTransactionProps as Lt, CrossAppConnectionSecurityCard as M, getIpfsImage as Ma, PrivyAppInfo as Mc, fetchAppHubApps as Mi, UseEstimateAllTokensParams as Mn, WalletTokenBalance as Mo, executeMultipleClausesCall as Mr, VeChainLoginButton as Ms, useSetWalletRecovery as Mt, DomainRequiredAlert as N, getIpfsImageQueryKey as Na, PrivyLoginMethod as Nc, getAppHubAppsQueryKey as Ni, useEstimateAllTokens as Nn, useTokenBalances as No, isValidUrl as Nr, EmailLoginButton as Ns, useThor as Nt, useStickyHeaderContext as O, useUploadImages as Oa, EnhancedClause as Oc, getENV as Oi, useAccountImplementationAddress as On, TokenWithValue as Oo, MultipleClausesCallReturnType as Or, PasskeyLoginButton as Os, useDAppKitWallet as Ot, ExchangeWarningAlert as P, useIpfsImage as Pa, SmartAccount as Pc, useAppHubApps as Pi, useGenericDelegatorFeeEstimation as Pn, useUnsetDomain as Po, addPrefix as Pr, ConnectionButton as Ps, useGasEstimate as Pt, GasTokenSettingsContent as Q, useRoundXApps as Qa, AccountCustomizationModalProvider as Qi, buildSingleAuthorizationTypedData as Qn, getDomainsOfAddressQueryKey as Qo, convertUriToUrl as Qr, VeChainKitContext as Qs, useCurrentBlock as Qt, AccountSelector as R, useIpfsMetadata as Ra, VePassportUserStatus as Rc, useSignTypedData as Ri, delegateAuthorized as Rn, getAvatarOfAddressQueryKey as Ro, normalize as Rr, MainContent as Rs, useBuildTransaction as Rt, ModalFAQButton as S, useSwapQuotes as Sa, TextRecords as Sc, TOKEN_LOGO_COMPONENTS as Si, useGetAccountAddress as Sn, getB3trBalanceQueryKey as So, isOnline as Sr, WalletButtonProps as Ss, SwapTokenContent as St, BaseModal as T, UploadedImage as Ta, ConnectionSource as Tc, VECHAIN_KIT_STORAGE_KEYS as Ti, useCurrentAccountImplementationVersion as Tn, getCurrentAllocationsRoundIdQueryKey as To, safeWindowOpen as Tr, LoginWithGithubButton as Ts, SendTokenSummaryContent as Tt, SwitchFeedback as U, useXAppMetadata as Ua, useSettingsModal as Ui, useGenericDelegator as Un, useUpdateTextRecord as Uo, TIME as Ur, ColorModeSync as Us, UseSendTransactionReturnValue as Ut, AccountModal as V, XAppMetadata as Va, useNotifications as Vi, getDepositAccount as Vn, useGetResolverAddress as Vo, isRejectionError as Vr, LegalDocumentsProvider as Vs, buildERC20Clauses as Vt, RemoveWalletConfirmContent as W, UseSwitchWalletReturnType as Wa, useAccountModalOptions as Wi, useCrossAppConnectionCache as Wn, getTextRecords as Wo, EconomicNodeStrengthLevelToName as Wr, VechainKitThemeProvider as Ws, useSendTransaction as Wt, SettingsContent as X, useWallet as Xa, ReceiveModalProvider as Xi, BuildClausesParams as Xn, DomainsResponse as Xo, gmNfts as Xr, LegalDocumentOptions as Xs, useGetChainId as Xt, TermsAndPrivacyContent as Y, UseWalletReturnType as Ya, useLoginModalContent as Yi, useLocalStorage as Yn, Domain as Yo, buildQueryString as Yr, LegalDocument as Ys, getChainIdQueryKey as Yt, SettingsContentProps as Z, getRoundXAppsQueryKey as Za, useReceiveModal as Zi, buildBatchAuthorizationTypedData as Zn, getDomainsOfAddress as Zo, xNodeToGMstartingLevel as Zr, VeChainKitConfig as Zs, currentBlockQueryKey as Zt, ModalNotificationButton as _, useTransactionModal as _a, GasTokenPreferences as _c, ENV as _i, useHasV1SmartAccount as _n, getTokenInfo as _o, getDocumentTitle as _r, ShareButtons as _s, ChooseNameSummaryContentProps as _t, useModal as a, useExploreEcosystemModal as aa, LegalDocumentType as ac, isValidAddress as ai, useUpgradeRequired as an, useIsPerson as ao, useScrollToTop as ar, getEnsRecordExistsQueryKey as as, AssetsContent as at, AccountAvatar as b, ConnectModalProvider as ba, TransactionSpeed as bc, SUPPORTED_GAS_TOKENS as bi, getAccountAddress as bn, getCustomTokenBalanceQueryKey as bo, hasNavigator as br, SocialIcons as bs, ChooseNameContent as bt, LegalDocumentsModal as c, SendTokenModalProvider as ca, EstimatedGas as cc, randomTransactionUser as ci, getSmartAccountQueryKey as cn, PRICE_FEED_IDS as co, useFeatureAnnouncement as cr, useVechainDomain as cs, UpgradeSmartAccountContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useChooseNameModal as da, TransactionCost as dc, humanAddress as di, useRefreshFactoryQueries as dn, getTokenUsdPriceQueryKey as do, useCurrency as dr, fetchPrivyAppInfo as ds, CustomizationSummaryContent as dt, FAQModalProvider as ea, VechainKitProviderProps as ec, toIPFSURL as ei, getUpgradeRequiredForAccount as en, useRefreshBalances as eo, GetEventsKeyParams as er, getIsDomainProtectedQueryKey as es, ChangeCurrencyContent as et, UpgradeSmartAccountModalStyle as f, WalletModalProvider as fa, VthoPerGasAtSpeed as fc, humanDomain as fi, getIsDeployed as fn, useGetTokenUsdPrice as fo, getCallClauseQueryKey as fr, getPrivyAppInfoQueryKey as fs, CustomizationSummaryContentProps as ft, GasFeeSummary as g, TransactionModalProvider as ga, GasTokenInfo as gc, DEFAULT_PRIVY_ECOSYSTEM_APPS as gi, getHasV1SmartAccountQueryKey as gn, getCustomTokenInfoQueryKey as go, copyToClipboard as gr, TransactionModalContent as gs, ChooseNameSummaryContent as gt, GasFeeTokenSelector as h, useTransactionToast as ha, GasTokenEstimate as hc, DEFAULT_GAS_TOKEN_PREFERENCES as hi, getHasV1SmartAccount as hn, useGetErc20Balance as ho, useMultipleClausesCall as hr, TransactionToast as hs, FAQContent as ht, ModalProvider as i, ExploreEcosystemModalProvider as ia, LegalDocumentSource as ic, compareListOfAddresses as ii, getUpgradeRequiredQueryKey as in, getIsPersonQueryKey as io, useEvents as ir, useClaimVeWorldSubdomain as is, ManageCustomTokenContentProps as it, ModalBackButton as j, MAX_IMAGE_SIZE as ja, NFTMediaType as jc, AppHubApp as ji, useAccountBalance as jn, useTokenPrices as jo, executeCallClause as jr, EcosystemButton as js, usePrivy as jt, VersionFooter as k, useIpfsMetadatas as ka, ExecuteBatchWithAuthorizationSignData as kc, getGenericDelegatorUrl as ki, getAccountBalance as kn, useTokensWithValues as ko, ViewFunctionResult as kr, LoginWithGoogleButton as ks, useDAppKitWalletModal as kt, LegalDocumentsModalContentsTypes as l, useSendTokenModal as la, EstimationResponse as lc, formatTokenBalance as li, useSmartAccount as ln, SupportedToken as lo, useCurrentCurrency as lr, fetchPrivyStatus as ls, ProfileContent as lt, InlineFeedback as m, TransactionToastProvider as ma, formatGasCost as mc, isZero as mi, useIsSmartAccountDeployed as mn, getErc20BalanceQueryKey as mo, useCallClause as mr, AccountMainContent as ms, CustomizationContent as mt, getConfig as n, NotificationsModalProvider as na, EnrichedLegalDocument as nc, validateIpfsUri as ni, useUpgradeRequiredForAccount as nn, XApp as no, decodeEventLog$1 as nr, buildVetDomainClauses as ns, BridgeContent as nt, DAppKitWalletButton as o, SwapTokenModalProvider as oa, CostLevel as oc, leftPadWithZeros as oi, SmartAccountReturnType as on, getVot3BalanceQueryKey as oo, useIsPWA as or, useEnsRecordExists as os, AssetsContentProps as ot, WalletSwitchFeedback as p, useWalletModal as pa, calculateTotalCost as pc, humanNumber as pi, getIsDeployedQueryKey as pn, UseGetErc20BalanceOptions as po, getCallClauseQueryKeyWithArgs as pr, useFetchAppInfo as ps, AccountCustomizationContentProps as pt, DisconnectConfirmContent as q, useWalletStorage as qa, UpgradeSmartAccountModalProvider as qi, useSyncableLocalStorage as qn, getAvatarQueryKey as qo, XNodeStrengthLevelToName as qr, PrivyWalletProviderContextType as qs, getEventLogs as qt, AccountModalOptions as r, useNotificationsModal as ra, LegalDocumentAgreement as rc, compareAddresses as ri, getUpgradeRequired as rn, useMostVotedAppsInRound as ro, getEventsKey as rr, useClaimVetDomain as rs, ManageCustomTokenContent as rt, LegalDocumentItem as s, useSwapTokenModal as sa, DepositAccount as sc, regexPattern as si, getSmartAccount as sn, useGetVot3Balance as so, useGetNodeUrl as sr, getVechainDomainQueryKey as ss, UpgradeSmartAccountContent as st, AppConfig as t, useFAQModal as ta, useVeChainKitConfig as tc, uploadBlobToIPFS as ti, getUpgradeRequiredForAccountQueryKey as tn, MostVotedAppsInRoundReturnType as to, UseEventsParams as tr, useIsDomainProtected as ts, ChangeCurrencyContentProps as tt, UpgradeSmartAccountModal as u, ChooseNameModalProvider as ua, Rate as uc, getPicassoImage as ui, useRefreshSmartAccountQueries as un, getTokenUsdPrice as uo, useCurrentLanguage as ur, useFetchPrivyStatus as us, ProfileContentProps as ut, TransactionButtonAndStatus as v, AccountModalProvider as va, GasTokenSelection as vc, NON_TRANSFERABLE_TOKEN_SYMBOLS as vi, getAccountVersionQueryKey as vn, useGetCustomTokenInfo as vo, getLocalStorageItem as vr, TransactionModal as vs, ChooseNameSearchContent as vt, AssetButton as w, useSingleImageUpload as wa, CURRENCY_SYMBOLS as wc, VECHAIN_KIT_COOKIES_CONFIG as wi, getCurrentAccountImplementationVersionQueryKey as wn, useCustomTokens as wo, safeQuerySelector as wr, ConnectPopover as ws, SelectTokenContent as wt, ScrollToTopWrapper as x, useConnectModal as xa, ENS_TEXT_RECORDS as xc, TOKEN_LOGOS as xi, getAccountAddressQueryKey as xn, useGetCustomTokenBalances as xo, isBrowser as xr, WalletButton as xs, ChooseNameContentProps as xt, TransactionButtonAndStatusProps as y, useAccountModal as ya, GasTokenType as yc, PrivyEcosystemApp as yi, useGetAccountVersion as yn, TokenWithBalance as yo, getWindowOrigin as yr, TransactionModalProps as ys, ChooseNameSearchContentProps as yt, ActionButton as z, getXAppsSharesQueryKey as za, Wallet as zc, useSignMessage as zi, estimateAndBuildTxBody as zn, useGetAvatarOfAddress as zo, removePrefix as zr, ConnectModal as zs, buildVETClauses as zt };
|
|
4297
|
-
//# sourceMappingURL=index-
|
|
4299
|
+
export { LanguageSettingsContent as $, useRefreshMetadata as $a, useAccountCustomizationModal as $i, useBuildClauses as $n, useGetDomainsOfAddress as $o, resolveMediaTypeFromMimeType as $r, VeChainKitContext as $s, useUpgradeSmartAccount as $t, AddressDisplay as A, IpfsImage as Aa, ExecuteBatchWithAuthorizationSignData as Ac, notFoundImage as Ai, getAccountBalanceQueryKey as An, ExchangeRates as Ao, buildCallClauses as Ar, PrivyButton as As, useMfaEnrollment as At, AccountDetailsButton as B, useXAppsShares as Ba, Wallet as Bc, useNotificationAlerts as Bi, estimateGas as Bn, getResolverAddressQueryKey as Bo, validate as Br, ConnectModalContentsTypes as Bs, useTransferVET as Bt, AddressDisplayCard as C, useSwapTransaction as Ca, TextRecords as Cc, TogglePassportCheck as Ci, getCurrentAccountImplementationVersion as Cn, useGetB3trBalance as Co, removeLocalStorageItem as Cr, WalletDisplayVariant as Cs, ReceiveTokenContent as Ct, StickyHeaderContainer as D, imageCompressionOptions as Da, CrossAppConnectionCache as Dc, VECHAIN_PRIVY_APP_ID as Di, getAccountImplementationAddressQueryKey as Dn, useTotalBalance as Do, MultipleClausesCallParameters as Dr, DappKitButton as Ds, ThorClient$1 as Dt, StickyFooterContainer as E, compressImages as Ea, ConnectionSource as Ec, VECHAIN_KIT_TERMS_CONFIG as Ei, getAccountImplementationAddress as En, useCurrentAllocationsRoundId as Eo, setLocalStorageItem as Er, VeChainWithPrivyLoginButton as Es, SendTokenContent as Et, FeatureAnnouncementCard as F, useIpfsImageList as Fa, SmartAccount as Fc, useLoginWithVeChain as Fi, useGenericDelegatorFeeEstimationParams as Fn, getAvatarLegacy as Fo, compare as Fr, EcosystemContent as Fs, txReceiptQueryKey as Ft, RemoveWalletConfirmContentProps as G, useSwitchWallet as Ga, ProfileModalProvider as Gi, EcosystemShortcut as Gn, getTextRecordsQueryKey as Go, MinXNodeLevel as Gr, useVechainKitThemeConfig as Gs, GetEventsProps as Gt, AccountModalContentTypes as H, getXAppMetadata as Ha, SettingsModalProvider as Hi, signVip191Transaction as Hn, buildClauses as Ho, simpleHash as Hr, useLegalDocuments as Hs, useTransferERC20 as Ht, QuickActionsSection as I, getIpfsMetadata as Ia, TokenBalance as Ic, useLoginWithOAuth as Ii, useGasTokenSelection as In, getAvatarLegacyQueryKey as Io, isInvalid as Ir, ErrorContent as Is, useTxReceipt as It, DisconnectConfirmContentProps as J, useWalletMetadata as Ja, useUpgradeSmartAccountModal as Ji, LocalStorageKey as Jn, useGetAvatar as Jo, allNodeStrengthLevelToName as Jr, usePrivyWalletProvider as Js, getChainId as Jt, SelectWalletContent as K, StoredWallet as Ka, useProfileModal as Ki, useEcosystemShortcuts as Kn, useGetTextRecords as Ko, NodeStrengthLevelToImage as Kr, PrivyWalletProvider as Ks, getAllEventLogs as Kt, BalanceSection as L, getIpfsMetadataQueryKey as La, TransactionStatus as Lc, useLoginWithPasskey as Li, decodeRawTx as Ln, useGetAvatarLegacy as Lo, isValid as Lr, LoadingContent as Ls, BuildTransactionProps as Lt, CrossAppConnectionSecurityCard as M, getIpfsImage as Ma, NFTMediaType as Mc, fetchAppHubApps as Mi, UseEstimateAllTokensParams as Mn, WalletTokenBalance as Mo, executeMultipleClausesCall as Mr, VeChainLoginButton as Ms, useSetWalletRecovery as Mt, DomainRequiredAlert as N, getIpfsImageQueryKey as Na, PrivyAppInfo as Nc, getAppHubAppsQueryKey as Ni, useEstimateAllTokens as Nn, useTokenBalances as No, isValidUrl as Nr, EmailLoginButton as Ns, useThor as Nt, useStickyHeaderContext as O, useUploadImages as Oa, ENSRecords as Oc, getENV as Oi, useAccountImplementationAddress as On, TokenWithValue as Oo, MultipleClausesCallReturnType as Or, PasskeyLoginButton as Os, useDAppKitWallet as Ot, ExchangeWarningAlert as P, useIpfsImage as Pa, PrivyLoginMethod as Pc, useAppHubApps as Pi, useGenericDelegatorFeeEstimation as Pn, useUnsetDomain as Po, addPrefix as Pr, ConnectionButton as Ps, useGasEstimate as Pt, GasTokenSettingsContent as Q, useRoundXApps as Qa, AccountCustomizationModalProvider as Qi, buildSingleAuthorizationTypedData as Qn, getDomainsOfAddressQueryKey as Qo, convertUriToUrl as Qr, VeChainKitConfig as Qs, useCurrentBlock as Qt, AccountSelector as R, useIpfsMetadata as Ra, TransactionStatusErrorType as Rc, useSignTypedData as Ri, delegateAuthorized as Rn, getAvatarOfAddressQueryKey as Ro, normalize as Rr, MainContent as Rs, useBuildTransaction as Rt, ModalFAQButton as S, useSwapQuotes as Sa, ENS_TEXT_RECORDS as Sc, TOKEN_LOGO_COMPONENTS as Si, useGetAccountAddress as Sn, getB3trBalanceQueryKey as So, isOnline as Sr, WalletButtonProps as Ss, SwapTokenContent as St, BaseModal as T, UploadedImage as Ta, CURRENCY_SYMBOLS as Tc, VECHAIN_KIT_STORAGE_KEYS as Ti, useCurrentAccountImplementationVersion as Tn, getCurrentAllocationsRoundIdQueryKey as To, safeWindowOpen as Tr, LoginWithGithubButton as Ts, SendTokenSummaryContent as Tt, SwitchFeedback as U, useXAppMetadata as Ua, useSettingsModal as Ui, useGenericDelegator as Un, useUpdateTextRecord as Uo, TIME as Ur, ColorModeSync as Us, UseSendTransactionReturnValue as Ut, AccountModal as V, XAppMetadata as Va, useNotifications as Vi, getDepositAccount as Vn, useGetResolverAddress as Vo, isRejectionError as Vr, LegalDocumentsProvider as Vs, buildERC20Clauses as Vt, RemoveWalletConfirmContent as W, UseSwitchWalletReturnType as Wa, useAccountModalOptions as Wi, useCrossAppConnectionCache as Wn, getTextRecords as Wo, EconomicNodeStrengthLevelToName as Wr, VechainKitThemeProvider as Ws, useSendTransaction as Wt, SettingsContent as X, useWallet as Xa, ReceiveModalProvider as Xi, BuildClausesParams as Xn, DomainsResponse as Xo, gmNfts as Xr, LegalDocument as Xs, useGetChainId as Xt, TermsAndPrivacyContent as Y, UseWalletReturnType as Ya, useLoginModalContent as Yi, useLocalStorage as Yn, Domain as Yo, buildQueryString as Yr, AccountQuickAction as Ys, getChainIdQueryKey as Yt, SettingsContentProps as Z, getRoundXAppsQueryKey as Za, useReceiveModal as Zi, buildBatchAuthorizationTypedData as Zn, getDomainsOfAddress as Zo, xNodeToGMstartingLevel as Zr, LegalDocumentOptions as Zs, currentBlockQueryKey as Zt, ModalNotificationButton as _, useTransactionModal as _a, GasTokenInfo as _c, ENV as _i, useHasV1SmartAccount as _n, getTokenInfo as _o, getDocumentTitle as _r, ShareButtons as _s, ChooseNameSummaryContentProps as _t, useModal as a, useExploreEcosystemModal as aa, LegalDocumentSource as ac, isValidAddress as ai, useUpgradeRequired as an, useIsPerson as ao, useScrollToTop as ar, getEnsRecordExistsQueryKey as as, AssetsContent as at, AccountAvatar as b, ConnectModalProvider as ba, GasTokenType as bc, SUPPORTED_GAS_TOKENS as bi, getAccountAddress as bn, getCustomTokenBalanceQueryKey as bo, hasNavigator as br, SocialIcons as bs, ChooseNameContent as bt, LegalDocumentsModal as c, SendTokenModalProvider as ca, DepositAccount as cc, randomTransactionUser as ci, getSmartAccountQueryKey as cn, PRICE_FEED_IDS as co, useFeatureAnnouncement as cr, useVechainDomain as cs, UpgradeSmartAccountContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useChooseNameModal as da, Rate as dc, humanAddress as di, useRefreshFactoryQueries as dn, getTokenUsdPriceQueryKey as do, useCurrency as dr, fetchPrivyAppInfo as ds, CustomizationSummaryContent as dt, FAQModalProvider as ea, VeChainKitProvider as ec, toIPFSURL as ei, getUpgradeRequiredForAccount as en, useRefreshBalances as eo, GetEventsKeyParams as er, getIsDomainProtectedQueryKey as es, ChangeCurrencyContent as et, UpgradeSmartAccountModalStyle as f, WalletModalProvider as fa, TransactionCost as fc, humanDomain as fi, getIsDeployed as fn, useGetTokenUsdPrice as fo, getCallClauseQueryKey as fr, getPrivyAppInfoQueryKey as fs, CustomizationSummaryContentProps as ft, GasFeeSummary as g, TransactionModalProvider as ga, GasTokenEstimate as gc, DEFAULT_PRIVY_ECOSYSTEM_APPS as gi, getHasV1SmartAccountQueryKey as gn, getCustomTokenInfoQueryKey as go, copyToClipboard as gr, TransactionModalContent as gs, ChooseNameSummaryContent as gt, GasFeeTokenSelector as h, useTransactionToast as ha, formatGasCost as hc, DEFAULT_GAS_TOKEN_PREFERENCES as hi, getHasV1SmartAccount as hn, useGetErc20Balance as ho, useMultipleClausesCall as hr, TransactionToast as hs, FAQContent as ht, ModalProvider as i, ExploreEcosystemModalProvider as ia, LegalDocumentAgreement as ic, compareListOfAddresses as ii, getUpgradeRequiredQueryKey as in, getIsPersonQueryKey as io, useEvents as ir, useClaimVeWorldSubdomain as is, ManageCustomTokenContentProps as it, ModalBackButton as j, MAX_IMAGE_SIZE as ja, ExecuteWithAuthorizationSignData as jc, AppHubApp as ji, useAccountBalance as jn, useTokenPrices as jo, executeCallClause as jr, EcosystemButton as js, usePrivy as jt, VersionFooter as k, useIpfsMetadatas as ka, EnhancedClause as kc, getGenericDelegatorUrl as ki, getAccountBalance as kn, useTokensWithValues as ko, ViewFunctionResult as kr, LoginWithGoogleButton as ks, useDAppKitWalletModal as kt, LegalDocumentsModalContentsTypes as l, useSendTokenModal as la, EstimatedGas as lc, formatTokenBalance as li, useSmartAccount as ln, SupportedToken as lo, useCurrentCurrency as lr, fetchPrivyStatus as ls, ProfileContent as lt, InlineFeedback as m, TransactionToastProvider as ma, calculateTotalCost as mc, isZero as mi, useIsSmartAccountDeployed as mn, getErc20BalanceQueryKey as mo, useCallClause as mr, AccountMainContent as ms, CustomizationContent as mt, getConfig as n, NotificationsModalProvider as na, useVeChainKitConfig as nc, validateIpfsUri as ni, useUpgradeRequiredForAccount as nn, XApp as no, decodeEventLog$1 as nr, buildVetDomainClauses as ns, BridgeContent as nt, DAppKitWalletButton as o, SwapTokenModalProvider as oa, LegalDocumentType as oc, leftPadWithZeros as oi, SmartAccountReturnType as on, getVot3BalanceQueryKey as oo, useIsPWA as or, useEnsRecordExists as os, AssetsContentProps as ot, WalletSwitchFeedback as p, useWalletModal as pa, VthoPerGasAtSpeed as pc, humanNumber as pi, getIsDeployedQueryKey as pn, UseGetErc20BalanceOptions as po, getCallClauseQueryKeyWithArgs as pr, useFetchAppInfo as ps, AccountCustomizationContentProps as pt, DisconnectConfirmContent as q, useWalletStorage as qa, UpgradeSmartAccountModalProvider as qi, useSyncableLocalStorage as qn, getAvatarQueryKey as qo, XNodeStrengthLevelToName as qr, PrivyWalletProviderContextType as qs, getEventLogs as qt, AccountModalOptions as r, useNotificationsModal as ra, EnrichedLegalDocument as rc, compareAddresses as ri, getUpgradeRequired as rn, useMostVotedAppsInRound as ro, getEventsKey as rr, useClaimVetDomain as rs, ManageCustomTokenContent as rt, LegalDocumentItem as s, useSwapTokenModal as sa, CostLevel as sc, regexPattern as si, getSmartAccount as sn, useGetVot3Balance as so, useGetNodeUrl as sr, getVechainDomainQueryKey as ss, UpgradeSmartAccountContent as st, AppConfig as t, useFAQModal as ta, VechainKitProviderProps as tc, uploadBlobToIPFS as ti, getUpgradeRequiredForAccountQueryKey as tn, MostVotedAppsInRoundReturnType as to, UseEventsParams as tr, useIsDomainProtected as ts, ChangeCurrencyContentProps as tt, UpgradeSmartAccountModal as u, ChooseNameModalProvider as ua, EstimationResponse as uc, getPicassoImage as ui, useRefreshSmartAccountQueries as un, getTokenUsdPrice as uo, useCurrentLanguage as ur, useFetchPrivyStatus as us, ProfileContentProps as ut, TransactionButtonAndStatus as v, AccountModalProvider as va, GasTokenPreferences as vc, NON_TRANSFERABLE_TOKEN_SYMBOLS as vi, getAccountVersionQueryKey as vn, useGetCustomTokenInfo as vo, getLocalStorageItem as vr, TransactionModal as vs, ChooseNameSearchContent as vt, AssetButton as w, useSingleImageUpload as wa, CURRENCY as wc, VECHAIN_KIT_COOKIES_CONFIG as wi, getCurrentAccountImplementationVersionQueryKey as wn, useCustomTokens as wo, safeQuerySelector as wr, ConnectPopover as ws, SelectTokenContent as wt, ScrollToTopWrapper as x, useConnectModal as xa, TransactionSpeed as xc, TOKEN_LOGOS as xi, getAccountAddressQueryKey as xn, useGetCustomTokenBalances as xo, isBrowser as xr, WalletButton as xs, ChooseNameContentProps as xt, TransactionButtonAndStatusProps as y, useAccountModal as ya, GasTokenSelection as yc, PrivyEcosystemApp as yi, useGetAccountVersion as yn, TokenWithBalance as yo, getWindowOrigin as yr, TransactionModalProps as ys, ChooseNameSearchContentProps as yt, ActionButton as z, getXAppsSharesQueryKey as za, VePassportUserStatus as zc, useSignMessage as zi, estimateAndBuildTxBody as zn, useGetAvatarOfAddress as zo, removePrefix as zr, ConnectModal as zs, buildVETClauses as zt };
|
|
4300
|
+
//# sourceMappingURL=index-hEPoYu2o.d.cts.map
|