@vechain/vechain-kit 2.2.2 → 2.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/index.d.cts +1 -1
- package/dist/assets/index.d.mts +1 -1
- package/dist/{index-CWCXsRcP.d.cts → index-BAtr2iQI.d.cts} +141 -143
- package/dist/index-BAtr2iQI.d.cts.map +1 -0
- package/dist/{index-u3CPquCV.d.cts → index-Bs6t5GxR.d.mts} +1 -1
- package/dist/{index-u3CPquCV.d.cts.map → index-Bs6t5GxR.d.mts.map} +1 -1
- package/dist/{index--hSO7Xv4.d.mts → index-DSMUkHcK.d.cts} +1 -1
- package/dist/{index--hSO7Xv4.d.mts.map → index-DSMUkHcK.d.cts.map} +1 -1
- package/dist/{index-w9zDQB56.d.mts → index-DpCZuqUP.d.mts} +95 -97
- package/dist/index-DpCZuqUP.d.mts.map +1 -0
- package/dist/index.cjs +12 -19
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +12 -19
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.cts +2 -2
- package/dist/utils/index.d.mts +2 -2
- package/package.json +1 -1
- package/dist/index-CWCXsRcP.d.cts.map +0 -1
- package/dist/index-w9zDQB56.d.mts.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ButtonProps, IconButtonProps, ImageProps, PropsOf, StackProps, ThemeTypings, VStack } from "@chakra-ui/react";
|
|
2
2
|
import * as react0 from "react";
|
|
3
3
|
import React$1, { ElementType, ReactElement, ReactNode } from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
5
5
|
import * 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_query17 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";
|
|
@@ -53,7 +53,7 @@ declare const genesises: {
|
|
|
53
53
|
readonly main: CompressedBlockDetail;
|
|
54
54
|
readonly test: CompressedBlockDetail;
|
|
55
55
|
readonly solo: CompressedBlockDetail;
|
|
56
|
-
which(gid: string): "
|
|
56
|
+
which(gid: string): "main" | "test" | "solo" | undefined;
|
|
57
57
|
};
|
|
58
58
|
//#endregion
|
|
59
59
|
//#region src/types/types.d.ts
|
|
@@ -407,7 +407,6 @@ interface ThemeTokens {
|
|
|
407
407
|
};
|
|
408
408
|
modal: {
|
|
409
409
|
rounded?: string | number;
|
|
410
|
-
zIndex?: number;
|
|
411
410
|
};
|
|
412
411
|
}
|
|
413
412
|
/**
|
|
@@ -427,7 +426,6 @@ interface VechainKitThemeConfig {
|
|
|
427
426
|
backdropFilter?: string;
|
|
428
427
|
borderRadius?: string;
|
|
429
428
|
rounded?: string | number;
|
|
430
|
-
zIndex?: number;
|
|
431
429
|
};
|
|
432
430
|
buttons?: {
|
|
433
431
|
secondaryButton?: {
|
|
@@ -625,7 +623,7 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
|
|
|
625
623
|
* ```
|
|
626
624
|
*/
|
|
627
625
|
declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
628
|
-
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) =>
|
|
626
|
+
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime1.JSX.Element;
|
|
629
627
|
//#endregion
|
|
630
628
|
//#region src/providers/PrivyWalletProvider.d.ts
|
|
631
629
|
interface PrivyWalletProviderContextType {
|
|
@@ -668,7 +666,7 @@ declare const PrivyWalletProvider: ({
|
|
|
668
666
|
delegatorUrl?: string;
|
|
669
667
|
delegateAllTransactions: boolean;
|
|
670
668
|
genericDelegator?: boolean;
|
|
671
|
-
}) =>
|
|
669
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
672
670
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
673
671
|
//#endregion
|
|
674
672
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
@@ -685,12 +683,12 @@ declare const ColorModeSync: ({
|
|
|
685
683
|
darkMode
|
|
686
684
|
}: {
|
|
687
685
|
darkMode: boolean;
|
|
688
|
-
}) =>
|
|
686
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
689
687
|
declare const VechainKitThemeProvider: ({
|
|
690
688
|
children,
|
|
691
689
|
darkMode,
|
|
692
690
|
theme: customTheme
|
|
693
|
-
}: Props$32) =>
|
|
691
|
+
}: Props$32) => react_jsx_runtime1.JSX.Element;
|
|
694
692
|
//#endregion
|
|
695
693
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
696
694
|
type Props$31 = {
|
|
@@ -706,7 +704,7 @@ type LegalDocumentsContextType = {
|
|
|
706
704
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
707
705
|
declare const LegalDocumentsProvider: ({
|
|
708
706
|
children
|
|
709
|
-
}: Props$31) =>
|
|
707
|
+
}: Props$31) => react_jsx_runtime1.JSX.Element;
|
|
710
708
|
//#endregion
|
|
711
709
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
712
710
|
type Props$30 = {
|
|
@@ -717,7 +715,7 @@ type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
|
|
|
717
715
|
declare const ConnectModal: ({
|
|
718
716
|
isOpen,
|
|
719
717
|
onClose
|
|
720
|
-
}: Props$30) =>
|
|
718
|
+
}: Props$30) => react_jsx_runtime1.JSX.Element;
|
|
721
719
|
//#endregion
|
|
722
720
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
723
721
|
type Props$29 = {
|
|
@@ -727,7 +725,7 @@ type Props$29 = {
|
|
|
727
725
|
declare const MainContent: ({
|
|
728
726
|
setCurrentContent,
|
|
729
727
|
onClose
|
|
730
|
-
}: Props$29) =>
|
|
728
|
+
}: Props$29) => react_jsx_runtime1.JSX.Element;
|
|
731
729
|
//#endregion
|
|
732
730
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
733
731
|
interface ConnectionButtonProps {
|
|
@@ -750,10 +748,10 @@ declare const ConnectionButton: ({
|
|
|
750
748
|
style,
|
|
751
749
|
variant,
|
|
752
750
|
iconWidth
|
|
753
|
-
}: ConnectionButtonProps) =>
|
|
751
|
+
}: ConnectionButtonProps) => react_jsx_runtime1.JSX.Element | null;
|
|
754
752
|
//#endregion
|
|
755
753
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
756
|
-
declare const EmailLoginButton: () =>
|
|
754
|
+
declare const EmailLoginButton: () => react_jsx_runtime1.JSX.Element;
|
|
757
755
|
//#endregion
|
|
758
756
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
759
757
|
type Props$28 = {
|
|
@@ -763,7 +761,7 @@ type Props$28 = {
|
|
|
763
761
|
declare const VeChainLoginButton: ({
|
|
764
762
|
isDark,
|
|
765
763
|
gridColumn
|
|
766
|
-
}: Props$28) =>
|
|
764
|
+
}: Props$28) => react_jsx_runtime1.JSX.Element;
|
|
767
765
|
//#endregion
|
|
768
766
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
769
767
|
type Props$27 = {
|
|
@@ -775,7 +773,7 @@ type Props$27 = {
|
|
|
775
773
|
declare const EcosystemButton: ({
|
|
776
774
|
appsInfo,
|
|
777
775
|
isLoading
|
|
778
|
-
}: Props$27) =>
|
|
776
|
+
}: Props$27) => react_jsx_runtime1.JSX.Element;
|
|
779
777
|
//#endregion
|
|
780
778
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
781
779
|
type Props$26 = {
|
|
@@ -787,7 +785,7 @@ declare const PrivyButton: ({
|
|
|
787
785
|
isDark,
|
|
788
786
|
onViewMoreLogin,
|
|
789
787
|
gridColumn
|
|
790
|
-
}: Props$26) =>
|
|
788
|
+
}: Props$26) => react_jsx_runtime1.JSX.Element;
|
|
791
789
|
//#endregion
|
|
792
790
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
793
791
|
type Props$25 = {
|
|
@@ -797,7 +795,7 @@ type Props$25 = {
|
|
|
797
795
|
declare const LoginWithGoogleButton: ({
|
|
798
796
|
isDark,
|
|
799
797
|
gridColumn
|
|
800
|
-
}: Props$25) =>
|
|
798
|
+
}: Props$25) => react_jsx_runtime1.JSX.Element;
|
|
801
799
|
//#endregion
|
|
802
800
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
803
801
|
type Props$24 = {
|
|
@@ -807,7 +805,7 @@ type Props$24 = {
|
|
|
807
805
|
declare const PasskeyLoginButton: ({
|
|
808
806
|
isDark,
|
|
809
807
|
gridColumn
|
|
810
|
-
}: Props$24) =>
|
|
808
|
+
}: Props$24) => react_jsx_runtime1.JSX.Element;
|
|
811
809
|
//#endregion
|
|
812
810
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
813
811
|
type Props$23 = {
|
|
@@ -817,7 +815,7 @@ type Props$23 = {
|
|
|
817
815
|
declare const DappKitButton: ({
|
|
818
816
|
isDark,
|
|
819
817
|
gridColumn
|
|
820
|
-
}: Props$23) =>
|
|
818
|
+
}: Props$23) => react_jsx_runtime1.JSX.Element;
|
|
821
819
|
//#endregion
|
|
822
820
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
823
821
|
type Props$22 = {
|
|
@@ -827,7 +825,7 @@ type Props$22 = {
|
|
|
827
825
|
declare const VeChainWithPrivyLoginButton: ({
|
|
828
826
|
isDark,
|
|
829
827
|
gridColumn
|
|
830
|
-
}: Props$22) =>
|
|
828
|
+
}: Props$22) => react_jsx_runtime1.JSX.Element;
|
|
831
829
|
//#endregion
|
|
832
830
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
833
831
|
type Props$21 = {
|
|
@@ -837,7 +835,7 @@ type Props$21 = {
|
|
|
837
835
|
declare const LoginWithGithubButton: ({
|
|
838
836
|
isDark,
|
|
839
837
|
gridColumn
|
|
840
|
-
}: Props$21) =>
|
|
838
|
+
}: Props$21) => react_jsx_runtime1.JSX.Element;
|
|
841
839
|
//#endregion
|
|
842
840
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
843
841
|
type ConnectPopoverProps = {
|
|
@@ -847,7 +845,7 @@ type ConnectPopoverProps = {
|
|
|
847
845
|
declare const ConnectPopover: ({
|
|
848
846
|
isLoading,
|
|
849
847
|
buttonStyle
|
|
850
|
-
}: ConnectPopoverProps) =>
|
|
848
|
+
}: ConnectPopoverProps) => react_jsx_runtime1.JSX.Element;
|
|
851
849
|
//#endregion
|
|
852
850
|
//#region src/components/WalletButton/types.d.ts
|
|
853
851
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
@@ -864,10 +862,10 @@ declare const WalletButton: ({
|
|
|
864
862
|
desktopVariant,
|
|
865
863
|
buttonStyle,
|
|
866
864
|
connectionVariant
|
|
867
|
-
}: WalletButtonProps) =>
|
|
865
|
+
}: WalletButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
868
866
|
//#endregion
|
|
869
867
|
//#region src/components/WalletButton/SocialIcons.d.ts
|
|
870
|
-
declare const SocialIcons: () =>
|
|
868
|
+
declare const SocialIcons: () => react_jsx_runtime1.JSX.Element;
|
|
871
869
|
//#endregion
|
|
872
870
|
//#region src/components/TransactionModal/TransactionModal.d.ts
|
|
873
871
|
type TransactionModalProps = {
|
|
@@ -897,7 +895,7 @@ declare const TransactionModal: ({
|
|
|
897
895
|
txReceipt,
|
|
898
896
|
txError,
|
|
899
897
|
onTryAgain
|
|
900
|
-
}: TransactionModalProps) =>
|
|
898
|
+
}: TransactionModalProps) => react_jsx_runtime1.JSX.Element;
|
|
901
899
|
//#endregion
|
|
902
900
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
903
901
|
type Props$20 = {
|
|
@@ -907,7 +905,7 @@ type Props$20 = {
|
|
|
907
905
|
};
|
|
908
906
|
declare const ShareButtons: ({
|
|
909
907
|
descriptionEncoded
|
|
910
|
-
}: Props$20) =>
|
|
908
|
+
}: Props$20) => react_jsx_runtime1.JSX.Element;
|
|
911
909
|
//#endregion
|
|
912
910
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
913
911
|
declare const TransactionModalContent: ({
|
|
@@ -917,7 +915,7 @@ declare const TransactionModalContent: ({
|
|
|
917
915
|
txReceipt,
|
|
918
916
|
txError,
|
|
919
917
|
onClose
|
|
920
|
-
}: Omit<TransactionModalProps, "isOpen">) =>
|
|
918
|
+
}: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime1.JSX.Element;
|
|
921
919
|
//#endregion
|
|
922
920
|
//#region src/components/TransactionToast/TransactionToast.d.ts
|
|
923
921
|
type TransactionToastProps = {
|
|
@@ -937,7 +935,7 @@ declare const TransactionToast: ({
|
|
|
937
935
|
txError,
|
|
938
936
|
onTryAgain,
|
|
939
937
|
description
|
|
940
|
-
}: TransactionToastProps) =>
|
|
938
|
+
}: TransactionToastProps) => react_jsx_runtime1.JSX.Element | null;
|
|
941
939
|
//#endregion
|
|
942
940
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
943
941
|
type Props$19 = {
|
|
@@ -949,12 +947,12 @@ declare const AccountMainContent: ({
|
|
|
949
947
|
setCurrentContent,
|
|
950
948
|
wallet,
|
|
951
949
|
onClose
|
|
952
|
-
}: Props$19) =>
|
|
950
|
+
}: Props$19) => react_jsx_runtime1.JSX.Element;
|
|
953
951
|
//#endregion
|
|
954
952
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
955
953
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
956
954
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
957
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
955
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query17.UseQueryResult<{
|
|
958
956
|
[k: string]: {
|
|
959
957
|
website: string | undefined;
|
|
960
958
|
id: string;
|
|
@@ -975,7 +973,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
975
973
|
//#endregion
|
|
976
974
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
977
975
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
978
|
-
declare const useFetchPrivyStatus: () =>
|
|
976
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query17.UseQueryResult<string, Error>;
|
|
979
977
|
//#endregion
|
|
980
978
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
981
979
|
interface VeChainDomainResult {
|
|
@@ -985,11 +983,11 @@ interface VeChainDomainResult {
|
|
|
985
983
|
isPrimaryDomain: boolean;
|
|
986
984
|
}
|
|
987
985
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
988
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
986
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query17.UseQueryResult<VeChainDomainResult, Error>;
|
|
989
987
|
//#endregion
|
|
990
988
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
991
989
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
992
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
990
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
|
|
993
991
|
//#endregion
|
|
994
992
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
995
993
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1051,7 +1049,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1051
1049
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1052
1050
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1053
1051
|
*/
|
|
1054
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1052
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
|
|
1055
1053
|
//#endregion
|
|
1056
1054
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1057
1055
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1079,7 +1077,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1079
1077
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1080
1078
|
* @returns The domains owned by the address
|
|
1081
1079
|
*/
|
|
1082
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1080
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query17.UseQueryResult<{
|
|
1083
1081
|
domains: {
|
|
1084
1082
|
name: string;
|
|
1085
1083
|
}[];
|
|
@@ -1092,7 +1090,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1092
1090
|
* @param name - The VET domain name
|
|
1093
1091
|
* @returns The resolved avatar URL
|
|
1094
1092
|
*/
|
|
1095
|
-
declare const useGetAvatar: (name: string) =>
|
|
1093
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query17.UseQueryResult<string | null, Error>;
|
|
1096
1094
|
//#endregion
|
|
1097
1095
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1098
1096
|
/**
|
|
@@ -1104,7 +1102,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query7.UseQueryRes
|
|
|
1104
1102
|
*/
|
|
1105
1103
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1106
1104
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1107
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1105
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query17.UseQueryResult<TextRecords, Error>;
|
|
1108
1106
|
//#endregion
|
|
1109
1107
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1110
1108
|
type UpdateTextRecordVariables = {
|
|
@@ -1137,7 +1135,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1137
1135
|
* @param domain The domain to get resolver for
|
|
1138
1136
|
* @returns The resolver address for the domain
|
|
1139
1137
|
*/
|
|
1140
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1138
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query17.UseQueryResult<`0x${string}`, unknown>;
|
|
1141
1139
|
//#endregion
|
|
1142
1140
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1143
1141
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1147,7 +1145,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1147
1145
|
* @param address The owner's address
|
|
1148
1146
|
* @returns The avatar URL for the address's primary domain
|
|
1149
1147
|
*/
|
|
1150
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1148
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query17.UseQueryResult<string, Error>;
|
|
1151
1149
|
//#endregion
|
|
1152
1150
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1153
1151
|
/**
|
|
@@ -1164,7 +1162,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1164
1162
|
* @param name - The VET domain name
|
|
1165
1163
|
* @returns The resolved avatar URL
|
|
1166
1164
|
*/
|
|
1167
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1165
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query17.UseQueryResult<string | null, Error>;
|
|
1168
1166
|
//#endregion
|
|
1169
1167
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1170
1168
|
type useUnsetDomainProps = {
|
|
@@ -1273,7 +1271,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1273
1271
|
* Hook to get the current roundId of allocations voting
|
|
1274
1272
|
* @returns the current roundId of allocations voting
|
|
1275
1273
|
*/
|
|
1276
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1274
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query17.UseQueryResult<string, unknown>;
|
|
1277
1275
|
//#endregion
|
|
1278
1276
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1279
1277
|
declare const useCustomTokens: () => {
|
|
@@ -1286,7 +1284,7 @@ declare const useCustomTokens: () => {
|
|
|
1286
1284
|
//#endregion
|
|
1287
1285
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1288
1286
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1289
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1287
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
|
|
1290
1288
|
original: string;
|
|
1291
1289
|
scaled: string;
|
|
1292
1290
|
formatted: string;
|
|
@@ -1295,7 +1293,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query7.Us
|
|
|
1295
1293
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1296
1294
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1297
1295
|
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
|
|
1298
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1296
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query17.UseQueryResult<{
|
|
1299
1297
|
original: string;
|
|
1300
1298
|
scaled: string;
|
|
1301
1299
|
formatted: string;
|
|
@@ -1308,11 +1306,11 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1308
1306
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1309
1307
|
declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1310
1308
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1311
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1309
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query17.UseQueryResult<CustomTokenInfo, Error>;
|
|
1312
1310
|
//#endregion
|
|
1313
1311
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1314
1312
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1315
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string) =>
|
|
1313
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query17.UseQueryResult<{
|
|
1316
1314
|
original: string;
|
|
1317
1315
|
scaled: string;
|
|
1318
1316
|
formatted: string;
|
|
@@ -1329,11 +1327,11 @@ declare const PRICE_FEED_IDS: {
|
|
|
1329
1327
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1330
1328
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1331
1329
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1332
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1330
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query17.UseQueryResult<number, Error>;
|
|
1333
1331
|
//#endregion
|
|
1334
1332
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1335
1333
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1336
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1334
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
|
|
1337
1335
|
original: string;
|
|
1338
1336
|
scaled: string;
|
|
1339
1337
|
formatted: string;
|
|
@@ -1352,7 +1350,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1352
1350
|
* @param user - The user address.
|
|
1353
1351
|
* @returns The isPerson status.
|
|
1354
1352
|
*/
|
|
1355
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1353
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
|
|
1356
1354
|
//#endregion
|
|
1357
1355
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1358
1356
|
type XApp = {
|
|
@@ -1390,7 +1388,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1390
1388
|
//#endregion
|
|
1391
1389
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1392
1390
|
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
|
|
1393
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1391
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query17.UseQueryResult<{
|
|
1394
1392
|
id: string;
|
|
1395
1393
|
teamWalletAddress: `0x${string}`;
|
|
1396
1394
|
name: string;
|
|
@@ -1473,7 +1471,7 @@ type XAppMetadata = {
|
|
|
1473
1471
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1474
1472
|
*/
|
|
1475
1473
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1476
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1474
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query17.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1477
1475
|
//#endregion
|
|
1478
1476
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1479
1477
|
/**
|
|
@@ -1488,7 +1486,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1488
1486
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1489
1487
|
*
|
|
1490
1488
|
*/
|
|
1491
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1489
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query17.UseQueryResult<{
|
|
1492
1490
|
app: string;
|
|
1493
1491
|
share: number;
|
|
1494
1492
|
unallocatedShare: number;
|
|
@@ -1510,7 +1508,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1510
1508
|
* @param ipfsUri - The IPFS URI
|
|
1511
1509
|
* @returns The metadata from IPFS
|
|
1512
1510
|
*/
|
|
1513
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1511
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<T$1>, Error>;
|
|
1514
1512
|
//#endregion
|
|
1515
1513
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1516
1514
|
interface IpfsImage {
|
|
@@ -1537,14 +1535,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1537
1535
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1538
1536
|
* @returns The NFT media
|
|
1539
1537
|
*/
|
|
1540
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1538
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query17.UseQueryResult<IpfsImage, Error>;
|
|
1541
1539
|
/**
|
|
1542
1540
|
* Custom hook to fetch a list of IPFS images.
|
|
1543
1541
|
*
|
|
1544
1542
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1545
1543
|
* @returns An array of queries for each IPFS image URI.
|
|
1546
1544
|
*/
|
|
1547
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1545
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query17.UseQueryResult<IpfsImage, Error>[];
|
|
1548
1546
|
//#endregion
|
|
1549
1547
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1550
1548
|
/**
|
|
@@ -1552,7 +1550,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1552
1550
|
* @param ipfsUris - The IPFS URIs
|
|
1553
1551
|
* @returns The metadata from IPFS for each URI
|
|
1554
1552
|
*/
|
|
1555
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1553
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query17.UseQueryResult<T$1, Error>[];
|
|
1556
1554
|
//#endregion
|
|
1557
1555
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1558
1556
|
declare const imageCompressionOptions: Options;
|
|
@@ -1771,7 +1769,7 @@ declare const ConnectModalProvider: ({
|
|
|
1771
1769
|
children
|
|
1772
1770
|
}: {
|
|
1773
1771
|
children: ReactNode;
|
|
1774
|
-
}) =>
|
|
1772
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1775
1773
|
//#endregion
|
|
1776
1774
|
//#region src/hooks/modals/useAccountModal.d.ts
|
|
1777
1775
|
declare const useAccountModal: () => {
|
|
@@ -1783,7 +1781,7 @@ declare const AccountModalProvider: ({
|
|
|
1783
1781
|
children
|
|
1784
1782
|
}: {
|
|
1785
1783
|
children: ReactNode;
|
|
1786
|
-
}) =>
|
|
1784
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1787
1785
|
//#endregion
|
|
1788
1786
|
//#region src/hooks/modals/useTransactionModal.d.ts
|
|
1789
1787
|
declare const useTransactionModal: () => {
|
|
@@ -1795,7 +1793,7 @@ declare const TransactionModalProvider: ({
|
|
|
1795
1793
|
children
|
|
1796
1794
|
}: {
|
|
1797
1795
|
children: ReactNode;
|
|
1798
|
-
}) =>
|
|
1796
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1799
1797
|
//#endregion
|
|
1800
1798
|
//#region src/hooks/modals/useTransactionToast.d.ts
|
|
1801
1799
|
declare const useTransactionToast: () => {
|
|
@@ -1807,7 +1805,7 @@ declare const TransactionToastProvider: ({
|
|
|
1807
1805
|
children
|
|
1808
1806
|
}: {
|
|
1809
1807
|
children: ReactNode;
|
|
1810
|
-
}) =>
|
|
1808
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1811
1809
|
//#endregion
|
|
1812
1810
|
//#region src/hooks/modals/useWalletModal.d.ts
|
|
1813
1811
|
declare const useWalletModal: () => {
|
|
@@ -1819,7 +1817,7 @@ declare const WalletModalProvider: ({
|
|
|
1819
1817
|
children
|
|
1820
1818
|
}: {
|
|
1821
1819
|
children: ReactNode;
|
|
1822
|
-
}) =>
|
|
1820
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1823
1821
|
//#endregion
|
|
1824
1822
|
//#region src/hooks/modals/useChooseNameModal.d.ts
|
|
1825
1823
|
declare const useChooseNameModal: () => {
|
|
@@ -1831,7 +1829,7 @@ declare const ChooseNameModalProvider: ({
|
|
|
1831
1829
|
children
|
|
1832
1830
|
}: {
|
|
1833
1831
|
children: ReactNode;
|
|
1834
|
-
}) =>
|
|
1832
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1835
1833
|
//#endregion
|
|
1836
1834
|
//#region src/hooks/modals/useSendTokenModal.d.ts
|
|
1837
1835
|
declare const useSendTokenModal: () => {
|
|
@@ -1843,7 +1841,7 @@ declare const SendTokenModalProvider: ({
|
|
|
1843
1841
|
children
|
|
1844
1842
|
}: {
|
|
1845
1843
|
children: ReactNode;
|
|
1846
|
-
}) =>
|
|
1844
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1847
1845
|
//#endregion
|
|
1848
1846
|
//#region src/hooks/modals/useSwapTokenModal.d.ts
|
|
1849
1847
|
type SwapTokenModalOptions = {
|
|
@@ -1860,7 +1858,7 @@ declare const SwapTokenModalProvider: ({
|
|
|
1860
1858
|
children
|
|
1861
1859
|
}: {
|
|
1862
1860
|
children: ReactNode;
|
|
1863
|
-
}) =>
|
|
1861
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1864
1862
|
//#endregion
|
|
1865
1863
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
1866
1864
|
declare const useExploreEcosystemModal: () => {
|
|
@@ -1872,7 +1870,7 @@ declare const ExploreEcosystemModalProvider: ({
|
|
|
1872
1870
|
children
|
|
1873
1871
|
}: {
|
|
1874
1872
|
children: ReactNode;
|
|
1875
|
-
}) =>
|
|
1873
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1876
1874
|
//#endregion
|
|
1877
1875
|
//#region src/hooks/modals/useNotificationsModal.d.ts
|
|
1878
1876
|
declare const useNotificationsModal: () => {
|
|
@@ -1884,7 +1882,7 @@ declare const NotificationsModalProvider: ({
|
|
|
1884
1882
|
children
|
|
1885
1883
|
}: {
|
|
1886
1884
|
children: ReactNode;
|
|
1887
|
-
}) =>
|
|
1885
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1888
1886
|
//#endregion
|
|
1889
1887
|
//#region src/hooks/modals/useFAQModal.d.ts
|
|
1890
1888
|
declare const useFAQModal: () => {
|
|
@@ -1896,7 +1894,7 @@ declare const FAQModalProvider: ({
|
|
|
1896
1894
|
children
|
|
1897
1895
|
}: {
|
|
1898
1896
|
children: ReactNode;
|
|
1899
|
-
}) =>
|
|
1897
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1900
1898
|
//#endregion
|
|
1901
1899
|
//#region src/hooks/modals/useAccountCustomizationModal.d.ts
|
|
1902
1900
|
declare const useAccountCustomizationModal: () => {
|
|
@@ -1908,7 +1906,7 @@ declare const AccountCustomizationModalProvider: ({
|
|
|
1908
1906
|
children
|
|
1909
1907
|
}: {
|
|
1910
1908
|
children: ReactNode;
|
|
1911
|
-
}) =>
|
|
1909
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1912
1910
|
//#endregion
|
|
1913
1911
|
//#region src/hooks/modals/useReceiveModal.d.ts
|
|
1914
1912
|
declare const useReceiveModal: () => {
|
|
@@ -1920,7 +1918,7 @@ declare const ReceiveModalProvider: ({
|
|
|
1920
1918
|
children
|
|
1921
1919
|
}: {
|
|
1922
1920
|
children: ReactNode;
|
|
1923
|
-
}) =>
|
|
1921
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1924
1922
|
//#endregion
|
|
1925
1923
|
//#region src/hooks/modals/useLoginModalContent.d.ts
|
|
1926
1924
|
type LoginModalContentConfig = {
|
|
@@ -1946,7 +1944,7 @@ declare const UpgradeSmartAccountModalProvider: ({
|
|
|
1946
1944
|
children
|
|
1947
1945
|
}: {
|
|
1948
1946
|
children: ReactNode;
|
|
1949
|
-
}) =>
|
|
1947
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1950
1948
|
//#endregion
|
|
1951
1949
|
//#region src/hooks/modals/useProfileModal.d.ts
|
|
1952
1950
|
declare const useProfileModal: () => {
|
|
@@ -1958,7 +1956,7 @@ declare const ProfileModalProvider: ({
|
|
|
1958
1956
|
children
|
|
1959
1957
|
}: {
|
|
1960
1958
|
children: ReactNode;
|
|
1961
|
-
}) =>
|
|
1959
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
1962
1960
|
//#endregion
|
|
1963
1961
|
//#region src/hooks/modals/useAccountModalOptions.d.ts
|
|
1964
1962
|
declare const useAccountModalOptions: () => {
|
|
@@ -2094,7 +2092,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2094
2092
|
* );
|
|
2095
2093
|
* ```
|
|
2096
2094
|
*/
|
|
2097
|
-
declare const useAppHubApps: () =>
|
|
2095
|
+
declare const useAppHubApps: () => _tanstack_react_query17.UseQueryResult<AppHubApp[], Error>;
|
|
2098
2096
|
//#endregion
|
|
2099
2097
|
//#region src/utils/constants.d.ts
|
|
2100
2098
|
declare const TOKEN_LOGOS: Record<string, string>;
|
|
@@ -2441,7 +2439,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
2441
2439
|
method: TMethod;
|
|
2442
2440
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2443
2441
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
2444
|
-
}) =>
|
|
2442
|
+
}) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<TData>, unknown>;
|
|
2445
2443
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
2446
2444
|
thor,
|
|
2447
2445
|
calls,
|
|
@@ -2452,7 +2450,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
2452
2450
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
2453
2451
|
queryKey: string[];
|
|
2454
2452
|
enabled?: boolean;
|
|
2455
|
-
}) =>
|
|
2453
|
+
}) => _tanstack_react_query17.UseQueryResult<_tanstack_react_query17.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
2456
2454
|
//#endregion
|
|
2457
2455
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
2458
2456
|
/**
|
|
@@ -2576,7 +2574,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
2576
2574
|
filterParams,
|
|
2577
2575
|
mapResponse,
|
|
2578
2576
|
nodeUrl
|
|
2579
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
2577
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query17.UseQueryResult<R[], Error>;
|
|
2580
2578
|
//#endregion
|
|
2581
2579
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
2582
2580
|
interface BuildClausesParams {
|
|
@@ -2727,7 +2725,7 @@ declare const useGenericDelegatorFeeEstimation: ({
|
|
|
2727
2725
|
tokens,
|
|
2728
2726
|
sendingAmount,
|
|
2729
2727
|
sendingTokenSymbol
|
|
2730
|
-
}: useGenericDelegatorFeeEstimationParams) =>
|
|
2728
|
+
}: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query17.UseQueryResult<EstimationResponse & {
|
|
2731
2729
|
usedToken: string;
|
|
2732
2730
|
}, Error>;
|
|
2733
2731
|
//#endregion
|
|
@@ -2741,7 +2739,7 @@ declare const useEstimateAllTokens: ({
|
|
|
2741
2739
|
clauses,
|
|
2742
2740
|
tokens,
|
|
2743
2741
|
enabled
|
|
2744
|
-
}: UseEstimateAllTokensParams) =>
|
|
2742
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query17.UseQueryResult<Record<GasTokenType, {
|
|
2745
2743
|
cost: number;
|
|
2746
2744
|
loading: boolean;
|
|
2747
2745
|
error?: string;
|
|
@@ -2758,7 +2756,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
2758
2756
|
* @param address The address of the account to get the balance for
|
|
2759
2757
|
* @returns The account balance
|
|
2760
2758
|
*/
|
|
2761
|
-
declare const useAccountBalance: (address?: string) =>
|
|
2759
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query17.UseQueryResult<{
|
|
2762
2760
|
balance: string;
|
|
2763
2761
|
energy: string;
|
|
2764
2762
|
}, Error>;
|
|
@@ -2771,7 +2769,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
2771
2769
|
* @param version - The version of the smart account implementation
|
|
2772
2770
|
* @returns The address of the smart account implementation
|
|
2773
2771
|
*/
|
|
2774
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
2772
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query17.UseQueryResult<string, Error>;
|
|
2775
2773
|
//#endregion
|
|
2776
2774
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
2777
2775
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -2780,7 +2778,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
2780
2778
|
* Get the current account implementation version used by the smart account factory
|
|
2781
2779
|
* @returns The current account implementation version
|
|
2782
2780
|
*/
|
|
2783
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
2781
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query17.UseQueryResult<number, Error>;
|
|
2784
2782
|
//#endregion
|
|
2785
2783
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
2786
2784
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -2790,7 +2788,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
2790
2788
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2791
2789
|
* @returns The address of the smart account
|
|
2792
2790
|
*/
|
|
2793
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
2791
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<string, Error>;
|
|
2794
2792
|
//#endregion
|
|
2795
2793
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
2796
2794
|
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
|
|
@@ -2800,7 +2798,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2800
2798
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2801
2799
|
* @returns The version of the smart account
|
|
2802
2800
|
*/
|
|
2803
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
2801
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query17.UseQueryResult<{
|
|
2804
2802
|
version: number;
|
|
2805
2803
|
isDeployed: boolean;
|
|
2806
2804
|
}, unknown>;
|
|
@@ -2813,7 +2811,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
2813
2811
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2814
2812
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
2815
2813
|
*/
|
|
2816
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
2814
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
|
|
2817
2815
|
//#endregion
|
|
2818
2816
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
2819
2817
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -2822,7 +2820,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
2822
2820
|
* Check if a smart account is deployed
|
|
2823
2821
|
* @returns True if the smart account is deployed, false otherwise
|
|
2824
2822
|
*/
|
|
2825
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
2823
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
|
|
2826
2824
|
//#endregion
|
|
2827
2825
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
2828
2826
|
/**
|
|
@@ -2855,7 +2853,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
2855
2853
|
isDeployed: boolean;
|
|
2856
2854
|
}>;
|
|
2857
2855
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
2858
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
2856
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query17.UseQueryResult<{
|
|
2859
2857
|
address: undefined;
|
|
2860
2858
|
isDeployed?: undefined;
|
|
2861
2859
|
} | {
|
|
@@ -2873,7 +2871,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2873
2871
|
* @param targetVersion - The version of the smart account to check for
|
|
2874
2872
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
2875
2873
|
*/
|
|
2876
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
2874
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
|
|
2877
2875
|
//#endregion
|
|
2878
2876
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
2879
2877
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -2884,7 +2882,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
2884
2882
|
* @param targetVersion - The target version of the smart account
|
|
2885
2883
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
2886
2884
|
*/
|
|
2887
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
2885
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query17.UseQueryResult<boolean, Error>;
|
|
2888
2886
|
//#endregion
|
|
2889
2887
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
2890
2888
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -2909,7 +2907,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
2909
2907
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
2910
2908
|
* @returns the current block
|
|
2911
2909
|
*/
|
|
2912
|
-
declare const useCurrentBlock: () =>
|
|
2910
|
+
declare const useCurrentBlock: () => _tanstack_react_query17.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
|
|
2913
2911
|
//#endregion
|
|
2914
2912
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
2915
2913
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -2918,7 +2916,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
2918
2916
|
* Get the chain id
|
|
2919
2917
|
* @returns The chain id
|
|
2920
2918
|
*/
|
|
2921
|
-
declare const useGetChainId: () =>
|
|
2919
|
+
declare const useGetChainId: () => _tanstack_react_query17.UseQueryResult<string, Error>;
|
|
2922
2920
|
//#endregion
|
|
2923
2921
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
2924
2922
|
/**
|
|
@@ -3170,7 +3168,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
3170
3168
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
3171
3169
|
* @returns Query result containing the transaction receipt
|
|
3172
3170
|
*/
|
|
3173
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
3171
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query17.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
|
|
3174
3172
|
//#endregion
|
|
3175
3173
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenContent.d.ts
|
|
3176
3174
|
type SendTokenContentProps = {
|
|
@@ -3186,7 +3184,7 @@ declare const SendTokenContent: ({
|
|
|
3186
3184
|
initialAmount,
|
|
3187
3185
|
initialToAddressOrDomain,
|
|
3188
3186
|
onBack: parentOnBack
|
|
3189
|
-
}: SendTokenContentProps) =>
|
|
3187
|
+
}: SendTokenContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3190
3188
|
//#endregion
|
|
3191
3189
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
|
|
3192
3190
|
type SendTokenSummaryContentProps = {
|
|
@@ -3206,7 +3204,7 @@ declare const SendTokenSummaryContent: ({
|
|
|
3206
3204
|
amount,
|
|
3207
3205
|
selectedToken,
|
|
3208
3206
|
formattedTotalAmount
|
|
3209
|
-
}: SendTokenSummaryContentProps) =>
|
|
3207
|
+
}: SendTokenSummaryContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3210
3208
|
//#endregion
|
|
3211
3209
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
3212
3210
|
type Props$16 = {
|
|
@@ -3222,7 +3220,7 @@ declare const SelectTokenContent: ({
|
|
|
3222
3220
|
onSelectToken,
|
|
3223
3221
|
onBack,
|
|
3224
3222
|
showAllTokens
|
|
3225
|
-
}: Props$16) =>
|
|
3223
|
+
}: Props$16) => react_jsx_runtime1.JSX.Element;
|
|
3226
3224
|
//#endregion
|
|
3227
3225
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
3228
3226
|
type Props$15 = {
|
|
@@ -3230,7 +3228,7 @@ type Props$15 = {
|
|
|
3230
3228
|
};
|
|
3231
3229
|
declare const ReceiveTokenContent: ({
|
|
3232
3230
|
setCurrentContent
|
|
3233
|
-
}: Props$15) =>
|
|
3231
|
+
}: Props$15) => react_jsx_runtime1.JSX.Element;
|
|
3234
3232
|
//#endregion
|
|
3235
3233
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
3236
3234
|
type Props$14 = {
|
|
@@ -3242,7 +3240,7 @@ declare const SwapTokenContent: ({
|
|
|
3242
3240
|
setCurrentContent,
|
|
3243
3241
|
fromTokenAddress,
|
|
3244
3242
|
toTokenAddress
|
|
3245
|
-
}: Props$14) =>
|
|
3243
|
+
}: Props$14) => react_jsx_runtime1.JSX.Element;
|
|
3246
3244
|
//#endregion
|
|
3247
3245
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
3248
3246
|
type ChooseNameContentProps = {
|
|
@@ -3254,7 +3252,7 @@ declare const ChooseNameContent: ({
|
|
|
3254
3252
|
setCurrentContent,
|
|
3255
3253
|
onBack,
|
|
3256
3254
|
initialContentSource
|
|
3257
|
-
}: ChooseNameContentProps) =>
|
|
3255
|
+
}: ChooseNameContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3258
3256
|
//#endregion
|
|
3259
3257
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
|
|
3260
3258
|
type ChooseNameSearchContentProps = {
|
|
@@ -3266,7 +3264,7 @@ declare const ChooseNameSearchContent: ({
|
|
|
3266
3264
|
name: initialName,
|
|
3267
3265
|
setCurrentContent,
|
|
3268
3266
|
initialContentSource
|
|
3269
|
-
}: ChooseNameSearchContentProps) =>
|
|
3267
|
+
}: ChooseNameSearchContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3270
3268
|
//#endregion
|
|
3271
3269
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
|
|
3272
3270
|
type ChooseNameSummaryContentProps = {
|
|
@@ -3284,7 +3282,7 @@ declare const ChooseNameSummaryContent: ({
|
|
|
3284
3282
|
isOwnDomain,
|
|
3285
3283
|
isUnsetting,
|
|
3286
3284
|
initialContentSource
|
|
3287
|
-
}: ChooseNameSummaryContentProps) =>
|
|
3285
|
+
}: ChooseNameSummaryContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3288
3286
|
//#endregion
|
|
3289
3287
|
//#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
|
|
3290
3288
|
type FAQContentProps = {
|
|
@@ -3294,7 +3292,7 @@ type FAQContentProps = {
|
|
|
3294
3292
|
declare const FAQContent: ({
|
|
3295
3293
|
onGoBack,
|
|
3296
3294
|
showLanguageSelector
|
|
3297
|
-
}: FAQContentProps) =>
|
|
3295
|
+
}: FAQContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3298
3296
|
//#endregion
|
|
3299
3297
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
|
|
3300
3298
|
type AccountCustomizationContentProps = {
|
|
@@ -3304,7 +3302,7 @@ type AccountCustomizationContentProps = {
|
|
|
3304
3302
|
declare const CustomizationContent: ({
|
|
3305
3303
|
setCurrentContent,
|
|
3306
3304
|
initialContentSource
|
|
3307
|
-
}: AccountCustomizationContentProps) =>
|
|
3305
|
+
}: AccountCustomizationContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3308
3306
|
//#endregion
|
|
3309
3307
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
|
|
3310
3308
|
type CustomizationSummaryContentProps = {
|
|
@@ -3323,7 +3321,7 @@ declare const CustomizationSummaryContent: ({
|
|
|
3323
3321
|
setCurrentContent,
|
|
3324
3322
|
changes,
|
|
3325
3323
|
onDoneRedirectContent
|
|
3326
|
-
}: CustomizationSummaryContentProps) =>
|
|
3324
|
+
}: CustomizationSummaryContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3327
3325
|
//#endregion
|
|
3328
3326
|
//#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
|
|
3329
3327
|
type ProfileContentProps = {
|
|
@@ -3333,7 +3331,7 @@ type ProfileContentProps = {
|
|
|
3333
3331
|
declare const ProfileContent: ({
|
|
3334
3332
|
setCurrentContent,
|
|
3335
3333
|
onLogoutSuccess
|
|
3336
|
-
}: ProfileContentProps) =>
|
|
3334
|
+
}: ProfileContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3337
3335
|
//#endregion
|
|
3338
3336
|
//#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
|
|
3339
3337
|
type UpgradeSmartAccountContentProps = {
|
|
@@ -3345,7 +3343,7 @@ declare const UpgradeSmartAccountContent: ({
|
|
|
3345
3343
|
setCurrentContent,
|
|
3346
3344
|
handleClose,
|
|
3347
3345
|
initialContent
|
|
3348
|
-
}: UpgradeSmartAccountContentProps) =>
|
|
3346
|
+
}: UpgradeSmartAccountContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3349
3347
|
//#endregion
|
|
3350
3348
|
//#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
|
|
3351
3349
|
type AssetsContentProps = {
|
|
@@ -3353,7 +3351,7 @@ type AssetsContentProps = {
|
|
|
3353
3351
|
};
|
|
3354
3352
|
declare const AssetsContent: ({
|
|
3355
3353
|
setCurrentContent
|
|
3356
|
-
}: AssetsContentProps) =>
|
|
3354
|
+
}: AssetsContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3357
3355
|
//#endregion
|
|
3358
3356
|
//#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
|
|
3359
3357
|
type ManageCustomTokenContentProps = {
|
|
@@ -3361,7 +3359,7 @@ type ManageCustomTokenContentProps = {
|
|
|
3361
3359
|
};
|
|
3362
3360
|
declare const ManageCustomTokenContent: ({
|
|
3363
3361
|
setCurrentContent
|
|
3364
|
-
}: ManageCustomTokenContentProps) =>
|
|
3362
|
+
}: ManageCustomTokenContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3365
3363
|
//#endregion
|
|
3366
3364
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
3367
3365
|
type Props$13 = {
|
|
@@ -3369,7 +3367,7 @@ type Props$13 = {
|
|
|
3369
3367
|
};
|
|
3370
3368
|
declare const BridgeContent: ({
|
|
3371
3369
|
setCurrentContent
|
|
3372
|
-
}: Props$13) =>
|
|
3370
|
+
}: Props$13) => react_jsx_runtime1.JSX.Element;
|
|
3373
3371
|
//#endregion
|
|
3374
3372
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
3375
3373
|
type ChangeCurrencyContentProps = {
|
|
@@ -3377,7 +3375,7 @@ type ChangeCurrencyContentProps = {
|
|
|
3377
3375
|
};
|
|
3378
3376
|
declare const ChangeCurrencyContent: ({
|
|
3379
3377
|
setCurrentContent
|
|
3380
|
-
}: ChangeCurrencyContentProps) =>
|
|
3378
|
+
}: ChangeCurrencyContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3381
3379
|
//#endregion
|
|
3382
3380
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
3383
3381
|
type Props$12 = {
|
|
@@ -3385,7 +3383,7 @@ type Props$12 = {
|
|
|
3385
3383
|
};
|
|
3386
3384
|
declare const LanguageSettingsContent: ({
|
|
3387
3385
|
setCurrentContent
|
|
3388
|
-
}: Props$12) =>
|
|
3386
|
+
}: Props$12) => react_jsx_runtime1.JSX.Element;
|
|
3389
3387
|
//#endregion
|
|
3390
3388
|
//#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
|
|
3391
3389
|
type Props$11 = {
|
|
@@ -3393,7 +3391,7 @@ type Props$11 = {
|
|
|
3393
3391
|
};
|
|
3394
3392
|
declare const GasTokenSettingsContent: ({
|
|
3395
3393
|
setCurrentContent
|
|
3396
|
-
}: Props$11) =>
|
|
3394
|
+
}: Props$11) => react_jsx_runtime1.JSX.Element;
|
|
3397
3395
|
//#endregion
|
|
3398
3396
|
//#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
|
|
3399
3397
|
type SettingsContentProps = {
|
|
@@ -3403,7 +3401,7 @@ type SettingsContentProps = {
|
|
|
3403
3401
|
declare const SettingsContent: ({
|
|
3404
3402
|
setCurrentContent,
|
|
3405
3403
|
onLogoutSuccess
|
|
3406
|
-
}: SettingsContentProps) =>
|
|
3404
|
+
}: SettingsContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3407
3405
|
//#endregion
|
|
3408
3406
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
3409
3407
|
type TermsAndPrivacyContentProps = {
|
|
@@ -3411,7 +3409,7 @@ type TermsAndPrivacyContentProps = {
|
|
|
3411
3409
|
};
|
|
3412
3410
|
declare const TermsAndPrivacyContent: ({
|
|
3413
3411
|
onGoBack
|
|
3414
|
-
}: TermsAndPrivacyContentProps) =>
|
|
3412
|
+
}: TermsAndPrivacyContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3415
3413
|
//#endregion
|
|
3416
3414
|
//#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
|
|
3417
3415
|
type DisconnectConfirmContentProps = {
|
|
@@ -3427,7 +3425,7 @@ declare const DisconnectConfirmContent: ({
|
|
|
3427
3425
|
onClose,
|
|
3428
3426
|
showCloseButton,
|
|
3429
3427
|
text
|
|
3430
|
-
}: DisconnectConfirmContentProps) =>
|
|
3428
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime1.JSX.Element;
|
|
3431
3429
|
//#endregion
|
|
3432
3430
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
3433
3431
|
type CategoryFilter = string | null;
|
|
@@ -3531,7 +3529,7 @@ declare const AccountModal: ({
|
|
|
3531
3529
|
isOpen,
|
|
3532
3530
|
onClose,
|
|
3533
3531
|
initialContent
|
|
3534
|
-
}: Props$10) =>
|
|
3532
|
+
}: Props$10) => react_jsx_runtime1.JSX.Element;
|
|
3535
3533
|
//#endregion
|
|
3536
3534
|
//#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
|
|
3537
3535
|
interface AccountDetailsButtonProps {
|
|
@@ -3553,7 +3551,7 @@ declare const AccountDetailsButton: ({
|
|
|
3553
3551
|
onClick,
|
|
3554
3552
|
leftImage,
|
|
3555
3553
|
isActive
|
|
3556
|
-
}: AccountDetailsButtonProps) =>
|
|
3554
|
+
}: AccountDetailsButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3557
3555
|
//#endregion
|
|
3558
3556
|
//#region src/components/AccountModal/Components/ActionButton.d.ts
|
|
3559
3557
|
type ActionButtonProps = {
|
|
@@ -3595,7 +3593,7 @@ declare const ActionButton: ({
|
|
|
3595
3593
|
extraContent,
|
|
3596
3594
|
dataTestId,
|
|
3597
3595
|
variant
|
|
3598
|
-
}: ActionButtonProps) =>
|
|
3596
|
+
}: ActionButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3599
3597
|
//#endregion
|
|
3600
3598
|
//#region src/components/AccountModal/Components/AccountSelector.d.ts
|
|
3601
3599
|
type Props$9 = {
|
|
@@ -3615,7 +3613,7 @@ declare const AccountSelector: ({
|
|
|
3615
3613
|
onClose,
|
|
3616
3614
|
mt,
|
|
3617
3615
|
style
|
|
3618
|
-
}: Props$9) =>
|
|
3616
|
+
}: Props$9) => react_jsx_runtime1.JSX.Element;
|
|
3619
3617
|
//#endregion
|
|
3620
3618
|
//#region src/components/AccountModal/Components/BalanceSection.d.ts
|
|
3621
3619
|
declare const BalanceSection: ({
|
|
@@ -3626,7 +3624,7 @@ declare const BalanceSection: ({
|
|
|
3626
3624
|
mb?: number;
|
|
3627
3625
|
mt?: number;
|
|
3628
3626
|
onAssetsClick?: () => void;
|
|
3629
|
-
}) =>
|
|
3627
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
3630
3628
|
//#endregion
|
|
3631
3629
|
//#region src/components/AccountModal/Components/QuickActionsSection.d.ts
|
|
3632
3630
|
type Props$8 = {
|
|
@@ -3636,7 +3634,7 @@ type Props$8 = {
|
|
|
3636
3634
|
declare const QuickActionsSection: ({
|
|
3637
3635
|
mt,
|
|
3638
3636
|
setCurrentContent
|
|
3639
|
-
}: Props$8) =>
|
|
3637
|
+
}: Props$8) => react_jsx_runtime1.JSX.Element;
|
|
3640
3638
|
//#endregion
|
|
3641
3639
|
//#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
|
|
3642
3640
|
type FeatureAnnouncementCardProps = {
|
|
@@ -3644,16 +3642,16 @@ type FeatureAnnouncementCardProps = {
|
|
|
3644
3642
|
};
|
|
3645
3643
|
declare const FeatureAnnouncementCard: ({
|
|
3646
3644
|
setCurrentContent
|
|
3647
|
-
}: FeatureAnnouncementCardProps) =>
|
|
3645
|
+
}: FeatureAnnouncementCardProps) => react_jsx_runtime1.JSX.Element | null;
|
|
3648
3646
|
//#endregion
|
|
3649
3647
|
//#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
|
|
3650
|
-
declare const ExchangeWarningAlert: () =>
|
|
3648
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime1.JSX.Element;
|
|
3651
3649
|
//#endregion
|
|
3652
3650
|
//#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
|
|
3653
|
-
declare const DomainRequiredAlert: () =>
|
|
3651
|
+
declare const DomainRequiredAlert: () => react_jsx_runtime1.JSX.Element;
|
|
3654
3652
|
//#endregion
|
|
3655
3653
|
//#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
|
|
3656
|
-
declare const CrossAppConnectionSecurityCard: () =>
|
|
3654
|
+
declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime1.JSX.Element;
|
|
3657
3655
|
//#endregion
|
|
3658
3656
|
//#region src/components/common/ModalBackButton.d.ts
|
|
3659
3657
|
type BackButtonProps = {
|
|
@@ -3662,7 +3660,7 @@ type BackButtonProps = {
|
|
|
3662
3660
|
declare const ModalBackButton: ({
|
|
3663
3661
|
onClick,
|
|
3664
3662
|
...props
|
|
3665
|
-
}: BackButtonProps) =>
|
|
3663
|
+
}: BackButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3666
3664
|
//#endregion
|
|
3667
3665
|
//#region src/components/common/AddressDisplay.d.ts
|
|
3668
3666
|
type Props$7 = {
|
|
@@ -3676,13 +3674,13 @@ declare const AddressDisplay: ({
|
|
|
3676
3674
|
label,
|
|
3677
3675
|
style,
|
|
3678
3676
|
showHumanAddress
|
|
3679
|
-
}: Props$7) =>
|
|
3677
|
+
}: Props$7) => react_jsx_runtime1.JSX.Element;
|
|
3680
3678
|
//#endregion
|
|
3681
3679
|
//#region src/components/common/VersionFooter.d.ts
|
|
3682
3680
|
type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
3683
3681
|
declare const VersionFooter: ({
|
|
3684
3682
|
...props
|
|
3685
|
-
}: Props$6) =>
|
|
3683
|
+
}: Props$6) => react_jsx_runtime1.JSX.Element;
|
|
3686
3684
|
//#endregion
|
|
3687
3685
|
//#region src/components/common/StickyHeaderContainer.d.ts
|
|
3688
3686
|
type Props$5 = {
|
|
@@ -3690,7 +3688,7 @@ type Props$5 = {
|
|
|
3690
3688
|
};
|
|
3691
3689
|
declare const StickyHeaderContainer: ({
|
|
3692
3690
|
children
|
|
3693
|
-
}: Props$5) =>
|
|
3691
|
+
}: Props$5) => react_jsx_runtime1.JSX.Element;
|
|
3694
3692
|
//#endregion
|
|
3695
3693
|
//#region src/components/common/StickyFooterContainer.d.ts
|
|
3696
3694
|
type Props$4 = {
|
|
@@ -3698,7 +3696,7 @@ type Props$4 = {
|
|
|
3698
3696
|
};
|
|
3699
3697
|
declare const StickyFooterContainer: ({
|
|
3700
3698
|
children
|
|
3701
|
-
}: Props$4) =>
|
|
3699
|
+
}: Props$4) => react_jsx_runtime1.JSX.Element;
|
|
3702
3700
|
//#endregion
|
|
3703
3701
|
//#region src/components/common/BaseModal.d.ts
|
|
3704
3702
|
type BaseModalProps = {
|
|
@@ -3729,7 +3727,7 @@ declare const BaseModal: ({
|
|
|
3729
3727
|
allowExternalFocus,
|
|
3730
3728
|
backdropFilter,
|
|
3731
3729
|
isCloseable
|
|
3732
|
-
}: BaseModalProps) =>
|
|
3730
|
+
}: BaseModalProps) => react_jsx_runtime1.JSX.Element;
|
|
3733
3731
|
//#endregion
|
|
3734
3732
|
//#region src/components/common/AssetButton.d.ts
|
|
3735
3733
|
type AssetButtonProps = ButtonProps & {
|
|
@@ -3748,7 +3746,7 @@ declare const AssetButton: ({
|
|
|
3748
3746
|
isDisabled,
|
|
3749
3747
|
onClick,
|
|
3750
3748
|
...buttonProps
|
|
3751
|
-
}: AssetButtonProps) =>
|
|
3749
|
+
}: AssetButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3752
3750
|
//#endregion
|
|
3753
3751
|
//#region src/components/common/AddressDisplayCard.d.ts
|
|
3754
3752
|
type AddressDisplayCardProps = {
|
|
@@ -3770,7 +3768,7 @@ declare const AddressDisplayCard: ({
|
|
|
3770
3768
|
hideAddress,
|
|
3771
3769
|
balance,
|
|
3772
3770
|
tokenAddress
|
|
3773
|
-
}: AddressDisplayCardProps) =>
|
|
3771
|
+
}: AddressDisplayCardProps) => react_jsx_runtime1.JSX.Element;
|
|
3774
3772
|
//#endregion
|
|
3775
3773
|
//#region src/components/common/ModalFAQButton.d.ts
|
|
3776
3774
|
type FAQButtonProps = {
|
|
@@ -3779,13 +3777,13 @@ type FAQButtonProps = {
|
|
|
3779
3777
|
declare const ModalFAQButton: ({
|
|
3780
3778
|
onClick,
|
|
3781
3779
|
...props
|
|
3782
|
-
}: FAQButtonProps) =>
|
|
3780
|
+
}: FAQButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3783
3781
|
//#endregion
|
|
3784
3782
|
//#region src/components/common/ScrollToTopWrapper.d.ts
|
|
3785
3783
|
declare const ScrollToTopWrapper: ({
|
|
3786
3784
|
children,
|
|
3787
3785
|
...props
|
|
3788
|
-
}: StackProps) =>
|
|
3786
|
+
}: StackProps) => react_jsx_runtime1.JSX.Element;
|
|
3789
3787
|
//#endregion
|
|
3790
3788
|
//#region src/components/common/AccountAvatar.d.ts
|
|
3791
3789
|
type AccountAvatarProps = {
|
|
@@ -3795,7 +3793,7 @@ type AccountAvatarProps = {
|
|
|
3795
3793
|
declare const AccountAvatar: ({
|
|
3796
3794
|
wallet,
|
|
3797
3795
|
props
|
|
3798
|
-
}: AccountAvatarProps) =>
|
|
3796
|
+
}: AccountAvatarProps) => react_jsx_runtime1.JSX.Element;
|
|
3799
3797
|
//#endregion
|
|
3800
3798
|
//#region src/components/common/TransactionButtonAndStatus.d.ts
|
|
3801
3799
|
type TransactionButtonAndStatusProps = {
|
|
@@ -3837,7 +3835,7 @@ declare const TransactionButtonAndStatus: ({
|
|
|
3837
3835
|
isLoadingGasEstimation,
|
|
3838
3836
|
showGasEstimationError,
|
|
3839
3837
|
context
|
|
3840
|
-
}: TransactionButtonAndStatusProps) =>
|
|
3838
|
+
}: TransactionButtonAndStatusProps) => react_jsx_runtime1.JSX.Element;
|
|
3841
3839
|
//#endregion
|
|
3842
3840
|
//#region src/components/common/ModalNotificationButton.d.ts
|
|
3843
3841
|
type NotificationButtonProps = {
|
|
@@ -3848,7 +3846,7 @@ declare const ModalNotificationButton: ({
|
|
|
3848
3846
|
onClick,
|
|
3849
3847
|
hasUnreadNotifications,
|
|
3850
3848
|
...props
|
|
3851
|
-
}: NotificationButtonProps) =>
|
|
3849
|
+
}: NotificationButtonProps) => react_jsx_runtime1.JSX.Element;
|
|
3852
3850
|
//#endregion
|
|
3853
3851
|
//#region src/components/common/GasFeeSummary.d.ts
|
|
3854
3852
|
interface GasFeeSummaryProps {
|
|
@@ -3884,7 +3882,7 @@ declare const GasFeeTokenSelector: ({
|
|
|
3884
3882
|
availableTokens,
|
|
3885
3883
|
tokenEstimations,
|
|
3886
3884
|
walletAddress
|
|
3887
|
-
}: GasFeeTokenSelectorProps) =>
|
|
3885
|
+
}: GasFeeTokenSelectorProps) => react_jsx_runtime1.JSX.Element;
|
|
3888
3886
|
//#endregion
|
|
3889
3887
|
//#region src/components/LoginLoadingModal/LoginLoadingModal.d.ts
|
|
3890
3888
|
type LoginLoadingModalProps = {
|
|
@@ -3902,7 +3900,7 @@ declare const LoginLoadingModal: ({
|
|
|
3902
3900
|
title,
|
|
3903
3901
|
loadingText,
|
|
3904
3902
|
onTryAgain
|
|
3905
|
-
}: LoginLoadingModalProps) =>
|
|
3903
|
+
}: LoginLoadingModalProps) => react_jsx_runtime1.JSX.Element;
|
|
3906
3904
|
//#endregion
|
|
3907
3905
|
//#region src/components/EcosystemModal/EcosystemModal.d.ts
|
|
3908
3906
|
type Props$3 = {
|
|
@@ -3916,7 +3914,7 @@ declare const EcosystemModal: ({
|
|
|
3916
3914
|
onClose,
|
|
3917
3915
|
appsInfo,
|
|
3918
3916
|
isLoading
|
|
3919
|
-
}: Props$3) =>
|
|
3917
|
+
}: Props$3) => react_jsx_runtime1.JSX.Element;
|
|
3920
3918
|
//#endregion
|
|
3921
3919
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
3922
3920
|
type SuccessfulOperationContentProps = {
|
|
@@ -3946,7 +3944,7 @@ declare const UpgradeSmartAccountModal: ({
|
|
|
3946
3944
|
isOpen,
|
|
3947
3945
|
onClose,
|
|
3948
3946
|
style
|
|
3949
|
-
}: Props$2) =>
|
|
3947
|
+
}: Props$2) => react_jsx_runtime1.JSX.Element;
|
|
3950
3948
|
//#endregion
|
|
3951
3949
|
//#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
|
|
3952
3950
|
type Props$1 = {
|
|
@@ -3961,7 +3959,7 @@ declare const LegalDocumentsModal: ({
|
|
|
3961
3959
|
onAgree,
|
|
3962
3960
|
handleLogout,
|
|
3963
3961
|
onlyOptionalDocuments
|
|
3964
|
-
}: Props$1) =>
|
|
3962
|
+
}: Props$1) => react_jsx_runtime1.JSX.Element;
|
|
3965
3963
|
//#endregion
|
|
3966
3964
|
//#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
|
|
3967
3965
|
type Props = {
|
|
@@ -3973,7 +3971,7 @@ declare const LegalDocumentItem: ({
|
|
|
3973
3971
|
document,
|
|
3974
3972
|
register,
|
|
3975
3973
|
isText
|
|
3976
|
-
}: Props) =>
|
|
3974
|
+
}: Props) => react_jsx_runtime1.JSX.Element;
|
|
3977
3975
|
//#endregion
|
|
3978
3976
|
//#region src/providers/ModalProvider.d.ts
|
|
3979
3977
|
type AccountModalOptions = {
|
|
@@ -4004,7 +4002,7 @@ declare const ModalProvider: ({
|
|
|
4004
4002
|
children
|
|
4005
4003
|
}: {
|
|
4006
4004
|
children: ReactNode;
|
|
4007
|
-
}) =>
|
|
4005
|
+
}) => react_jsx_runtime1.JSX.Element;
|
|
4008
4006
|
//#endregion
|
|
4009
4007
|
//#region src/config/index.d.ts
|
|
4010
4008
|
type AppConfig = {
|
|
@@ -4050,4 +4048,4 @@ type AppConfig = {
|
|
|
4050
4048
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4051
4049
|
//#endregion
|
|
4052
4050
|
export { ManageCustomTokenContentProps as $, getErc20BalanceQueryKey as $a, useSendTokenModal as $i, useScrollToTop as $n, AccountMainContent as $o, leftPadWithZeros as $r, GasTokenPreferences as $s, useUpgradeRequired as $t, ModalBackButton as A, useXAppsShares as Aa, useSignTypedData as Ai, useGasTokenSelection as An, getTextRecordsQueryKey as Ao, isInvalid as Ar, usePrivyWalletProvider as As, useTxReceipt as At, AccountModal as B, useRefreshBalances as Ba, ReceiveModalProvider as Bi, useEcosystemShortcuts as Bn, useIsDomainProtected as Bo, XNodeStrengthLevelToName as Br, LegalDocumentSource as Bs, getAllEventLogs as Bt, AddressDisplayCard as C, getIpfsImageQueryKey as Ca, AppHubApp as Ci, getAccountBalance as Cn, getAvatarOfAddressQueryKey as Co, ViewFunctionResult as Cr, LegalDocumentsProvider as Cs, useDAppKitWallet as Ct, StickyHeaderContainer as D, getIpfsMetadataQueryKey as Da, useLoginWithVeChain as Di, useEstimateAllTokens as Dn, buildClauses as Do, isValidUrl as Dr, useVechainKitThemeConfig as Ds, useSetWalletRecovery as Dt, StickyFooterContainer as E, getIpfsMetadata as Ea, useAppHubApps as Ei, UseEstimateAllTokensParams as En, useGetResolverAddress as Eo, executeMultipleClausesCall as Er, VechainKitThemeProvider as Es, usePrivy as Et, QuickActionsSection as F, UseWalletReturnType as Fa, ProfileModalProvider as Fi, getDepositAccount as Fn, DomainsResponse as Fo, isRejectionError as Fr, VeChainKitProvider as Fs, buildERC20Clauses as Ft, SettingsContent as G, useIsPerson as Ga, useFAQModal as Gi, buildBatchAuthorizationTypedData as Gn, useEnsRecordExists as Go, convertUriToUrl as Gr, EstimationResponse as Gs, currentBlockQueryKey as Gt, DisconnectConfirmContent as H, XApp as Ha, AccountCustomizationModalProvider as Hi, LocalStorageKey as Hn, useClaimVetDomain as Ho, buildQueryString as Hr, CostLevel as Hs, getChainId as Ht, BalanceSection as I, useWallet as Ia, useProfileModal as Ii, signVip191Transaction as In, getDomainsOfAddress as Io, TIME as Ir, VechainKitProviderProps as Is, useTransferERC20 as It, LanguageSettingsContent as J, PRICE_FEED_IDS as Ja, ExploreEcosystemModalProvider as Ji, GetEventsKeyParams as Jn, fetchPrivyStatus as Jo, uploadBlobToIPFS as Jr, VthoPerGasAtSpeed as Js, getUpgradeRequiredForAccount as Jt, SettingsContentProps as K, getVot3BalanceQueryKey as Ka, NotificationsModalProvider as Ki, buildSingleAuthorizationTypedData as Kn, getVechainDomainQueryKey as Ko, resolveMediaTypeFromMimeType as Kr, Rate as Ks, useCurrentBlock as Kt, AccountSelector as L, getRoundXAppsQueryKey as La, UpgradeSmartAccountModalProvider as Li, useGenericDelegator as Ln, getDomainsOfAddressQueryKey as Lo, EconomicNodeStrengthLevelToName as Lr, useVeChainKitConfig as Ls, UseSendTransactionReturnValue as Lt, DomainRequiredAlert as M, getXAppMetadata as Ma, useNotificationAlerts as Mi, delegateAuthorized as Mn, getAvatarQueryKey as Mo, normalize as Mr, LegalDocumentOptions as Ms, useBuildTransaction as Mt, ExchangeWarningAlert as N, useXAppMetadata as Na, useNotifications as Ni, estimateAndBuildTxBody as Nn, useGetAvatar as No, removePrefix as Nr, VeChainKitConfig as Ns, buildVETClauses as Nt, VersionFooter as O, useIpfsMetadata as Oa, useLoginWithOAuth as Oi, useGenericDelegatorFeeEstimation as On, useUpdateTextRecord as Oo, addPrefix as Or, PrivyWalletProvider as Os, useThor as Ot, FeatureAnnouncementCard as P, useWalletMetadata as Pa, useAccountModalOptions as Pi, estimateGas as Pn, Domain as Po, validate as Pr, VeChainKitContext as Ps, useTransferVET as Pt, ManageCustomTokenContent as Q, useGetTokenUsdPrice as Qa, SendTokenModalProvider as Qi, useEvents as Qn, useFetchAppInfo as Qo, isValidAddress as Qr, GasTokenInfo as Qs, getUpgradeRequiredQueryKey as Qt, ActionButton as R, useRoundXApps as Ra, useUpgradeSmartAccountModal as Ri, useCrossAppConnectionCache as Rn, useGetDomainsOfAddress as Ro, MinXNodeLevel as Rr, EnrichedLegalDocument as Rs, useSendTransaction as Rt, ModalFAQButton as S, getIpfsImage as Sa, notFoundImage as Si, useAccountImplementationAddress as Sn, useGetAvatarLegacy as So, MultipleClausesCallReturnType as Sr, ConnectModalContentsTypes as Ss, ThorClient$1 as St, BaseModal as T, useIpfsImageList as Ta, getAppHubAppsQueryKey as Ti, useAccountBalance as Tn, getResolverAddressQueryKey as To, executeCallClause as Tr, ColorModeSync as Ts, useMfaEnrollment as Tt, DisconnectConfirmContentProps as U, useMostVotedAppsInRound as Ua, useAccountCustomizationModal as Ui, useLocalStorage as Un, useClaimVeWorldSubdomain as Uo, gmNfts as Ur, DepositAccount as Us, getChainIdQueryKey as Ut, AccountModalContentTypes as V, MostVotedAppsInRoundReturnType as Va, useReceiveModal as Vi, useSyncableLocalStorage as Vn, buildVetDomainClauses as Vo, allNodeStrengthLevelToName as Vr, LegalDocumentType as Vs, getEventLogs as Vt, TermsAndPrivacyContent as W, getIsPersonQueryKey as Wa, FAQModalProvider as Wi, BuildClausesParams as Wn, getEnsRecordExistsQueryKey as Wo, xNodeToGMstartingLevel as Wr, EstimatedGas as Ws, useGetChainId as Wt, ChangeCurrencyContentProps as X, getTokenUsdPrice as Xa, SwapTokenModalProvider as Xi, decodeEventLog$1 as Xn, fetchPrivyAppInfo as Xo, compareAddresses as Xr, formatGasCost as Xs, useUpgradeRequiredForAccount as Xt, ChangeCurrencyContent as Y, SupportedToken as Ya, useExploreEcosystemModal as Yi, UseEventsParams as Yn, useFetchPrivyStatus as Yo, validateIpfsUri as Yr, calculateTotalCost as Ys, getUpgradeRequiredForAccountQueryKey as Yt, BridgeContent as Z, getTokenUsdPriceQueryKey as Za, useSwapTokenModal as Zi, getEventsKey as Zn, getPrivyAppInfoQueryKey as Zo, compareListOfAddresses as Zr, GasTokenEstimate as Zs, getUpgradeRequired as Zt, ModalNotificationButton as _, imageCompressionOptions as _a, TokenBalance as _c, VECHAIN_KIT_STORAGE_KEYS as _i, getCurrentAccountImplementationVersion as _n, WalletTokenBalance as _o, removeLocalStorageItem as _r, VeChainLoginButton as _s, SwapTokenContent as _t, useModal as a, useTransactionToast as aa, CURRENCY as ac, humanDomain as ai, useRefreshFactoryQueries as an, getCustomTokenBalanceQueryKey as ao, useCurrency as ar, SocialIcons as as, ProfileContentProps as at, AccountAvatar as b, IpfsImage as ba, VePassportUserStatus as bc, getENV as bi, getAccountImplementationAddress as bn, getAvatarLegacy as bo, setLocalStorageItem as br, MainContent as bs, SendTokenSummaryContent as bt, LegalDocumentsModal as c, AccountModalProvider as ca, CrossAppConnectionCache as cc, DEFAULT_GAS_TOKEN_PREFERENCES as ci, useIsSmartAccountDeployed as cn, useGetB3trBalance as co, useCallClause as cr, WalletDisplayVariant as cs, AccountCustomizationContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useConnectModal as da, ExecuteBatchWithAuthorizationSignData as dc, PrivyEcosystemApp as di, useHasV1SmartAccount as dn, useCurrentAllocationsRoundId as do, getDocumentTitle as dr, VeChainWithPrivyLoginButton as ds, ChooseNameSummaryContent as dt, ChooseNameModalProvider as ea, GasTokenSelection as ec, regexPattern as ei, SmartAccountReturnType as en, useGetErc20Balance as eo, useIsPWA as er, TransactionToast as es, AssetsContent as et, UpgradeSmartAccountModalStyle as f, useSwapQuotes as fa, ExecuteWithAuthorizationSignData as fc, SUPPORTED_GAS_TOKENS as fi, getAccountVersionQueryKey as fn, useTotalBalance as fo, getLocalStorageItem as fr, DappKitButton as fs, ChooseNameSummaryContentProps as ft, GasFeeSummary as g, compressImages as ga, SmartAccount as gc, VECHAIN_KIT_COOKIES_CONFIG as gi, useGetAccountAddress as gn, useTokenPrices as go, isOnline as gr, EcosystemButton as gs, ChooseNameContentProps as gt, GasFeeTokenSelector as h, UploadedImage as ha, PrivyLoginMethod as hc, TogglePassportCheck as hi, getAccountAddressQueryKey as hn, ExchangeRates as ho, isBrowser as hr, PrivyButton as hs, ChooseNameContent as ht, ModalProvider as i, TransactionToastProvider as ia, TextRecords as ic, humanAddress as ii, useRefreshSmartAccountQueries as in, TokenWithBalance as io, useCurrentLanguage as ir, TransactionModalProps as is, ProfileContent as it, CrossAppConnectionSecurityCard as j, XAppMetadata as ja, useSignMessage as ji, decodeRawTx as jn, useGetTextRecords as jo, isValid as jr, LegalDocument as js, BuildTransactionProps as jt, AddressDisplay as k, getXAppsSharesQueryKey as ka, useLoginWithPasskey as ki, useGenericDelegatorFeeEstimationParams as kn, getTextRecords as ko, compare as kr, PrivyWalletProviderContextType as ks, txReceiptQueryKey as kt, LegalDocumentsModalContentsTypes as l, useAccountModal as la, ENSRecords as lc, DEFAULT_PRIVY_ECOSYSTEM_APPS as li, getHasV1SmartAccount as ln, useCustomTokens as lo, useMultipleClausesCall as lr, ConnectPopover as ls, CustomizationContent as lt, LoginLoadingModal as m, useSingleImageUpload as ma, PrivyAppInfo as mc, TOKEN_LOGO_COMPONENTS as mi, getAccountAddress as mn, useTokensWithValues as mo, hasNavigator as mr, LoginWithGoogleButton as ms, ChooseNameSearchContentProps as mt, getConfig as n, WalletModalProvider as na, TransactionSpeed as nc, formatTokenBalance as ni, getSmartAccountQueryKey as nn, getTokenInfo as no, useFeatureAnnouncement as nr, ShareButtons as ns, UpgradeSmartAccountContent as nt, DAppKitWalletButton as o, TransactionModalProvider as oa, CURRENCY_SYMBOLS as oc, humanNumber as oi, getIsDeployed as on, useGetCustomTokenBalances as oo, getCallClauseQueryKey as or, WalletButton as os, CustomizationSummaryContent as ot, EcosystemModal as p, useSwapTransaction as pa, NFTMediaType as pc, TOKEN_LOGOS as pi, useGetAccountVersion as pn, TokenWithValue as po, getWindowOrigin as pr, PasskeyLoginButton as ps, ChooseNameSearchContent as pt, GasTokenSettingsContent as q, useGetVot3Balance as qa, useNotificationsModal as qi, useBuildClauses as qn, useVechainDomain as qo, toIPFSURL as qr, TransactionCost as qs, useUpgradeSmartAccount as qt, AccountModalOptions as r, useWalletModal as ra, ENS_TEXT_RECORDS as rc, getPicassoImage as ri, useSmartAccount as rn, useGetCustomTokenInfo as ro, useCurrentCurrency as rr, TransactionModal as rs, UpgradeSmartAccountContentProps as rt, LegalDocumentItem as s, useTransactionModal as sa, ConnectionSource as sc, isZero as si, getIsDeployedQueryKey as sn, getB3trBalanceQueryKey as so, getCallClauseQueryKeyWithArgs as sr, WalletButtonProps as ss, CustomizationSummaryContentProps as st, AppConfig as t, useChooseNameModal as ta, GasTokenType as tc, randomTransactionUser as ti, getSmartAccount as tn, getCustomTokenInfoQueryKey as to, useGetNodeUrl as tr, TransactionModalContent as ts, AssetsContentProps as tt, UpgradeSmartAccountModal as u, ConnectModalProvider as ua, EnhancedClause as uc, ENV as ui, getHasV1SmartAccountQueryKey as un, getCurrentAllocationsRoundIdQueryKey as uo, copyToClipboard as ur, LoginWithGithubButton as us, FAQContent as ut, TransactionButtonAndStatus as v, useUploadImages as va, TransactionStatus as vc, VECHAIN_KIT_TERMS_CONFIG as vi, getCurrentAccountImplementationVersionQueryKey as vn, useTokenBalances as vo, safeQuerySelector as vr, EmailLoginButton as vs, ReceiveTokenContent as vt, AssetButton as w, useIpfsImage as wa, fetchAppHubApps as wi, getAccountBalanceQueryKey as wn, useGetAvatarOfAddress as wo, buildCallClauses as wr, useLegalDocuments as ws, useDAppKitWalletModal as wt, ScrollToTopWrapper as x, MAX_IMAGE_SIZE as xa, Wallet as xc, getGenericDelegatorUrl as xi, getAccountImplementationAddressQueryKey as xn, getAvatarLegacyQueryKey as xo, MultipleClausesCallParameters as xr, ConnectModal as xs, SendTokenContent as xt, TransactionButtonAndStatusProps as y, useIpfsMetadatas as ya, TransactionStatusErrorType as yc, VECHAIN_PRIVY_APP_ID as yi, useCurrentAccountImplementationVersion as yn, useUnsetDomain as yo, safeWindowOpen as yr, ConnectionButton as ys, SelectTokenContent as yt, AccountDetailsButton as z, useRefreshMetadata as za, useLoginModalContent as zi, EcosystemShortcut as zn, getIsDomainProtectedQueryKey as zo, NodeStrengthLevelToImage as zr, LegalDocumentAgreement as zs, GetEventsProps as zt };
|
|
4053
|
-
//# sourceMappingURL=index-
|
|
4051
|
+
//# sourceMappingURL=index-BAtr2iQI.d.cts.map
|