@vechain/vechain-kit 2.5.0 → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/index.d.cts +1 -1
- package/dist/assets/index.d.mts +1 -1
- package/dist/{index-DSMUkHcK.d.cts → index--hSO7Xv4.d.mts} +1 -1
- package/dist/{index-DSMUkHcK.d.cts.map → index--hSO7Xv4.d.mts.map} +1 -1
- package/dist/{index-eQhlDtCI.d.cts → index-BQSKWDL8.d.cts} +101 -101
- package/dist/{index-eQhlDtCI.d.cts.map → index-BQSKWDL8.d.cts.map} +1 -1
- package/dist/{index-BNVPAknF.d.mts → index-CpmIWCFY.d.mts} +147 -147
- package/dist/{index-BNVPAknF.d.mts.map → index-CpmIWCFY.d.mts.map} +1 -1
- package/dist/{index-CWViOs1U.d.mts → index-I8fe7GR2.d.cts} +1 -1
- package/dist/{index-CWViOs1U.d.mts.map → index-I8fe7GR2.d.cts.map} +1 -1
- package/dist/index.cjs +3 -3
- 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 +6 -6
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.cts +2 -2
- package/dist/utils/index.d.mts +2 -2
- package/package.json +1 -1
|
@@ -1,13 +1,13 @@
|
|
|
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_runtime4 from "react/jsx-runtime";
|
|
5
5
|
import { Account } from "viem/accounts";
|
|
6
6
|
import * as _vechain_sdk_core0 from "@vechain/sdk-core";
|
|
7
7
|
import { Address, Certificate, CertificateData, Clause, Revision, Transaction, TransactionClause } from "@vechain/sdk-core";
|
|
8
8
|
import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy as usePrivy$1, useSetWalletRecovery } from "@privy-io/react-auth";
|
|
9
9
|
import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor as useThor$1, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
|
|
10
|
-
import * as
|
|
10
|
+
import * as _tanstack_react_query8 from "@tanstack/react-query";
|
|
11
11
|
import { UseQueryOptions } from "@tanstack/react-query";
|
|
12
12
|
import { CustomTokenInfo } from "@vechain/contract-getters";
|
|
13
13
|
import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
|
|
@@ -53,7 +53,7 @@ declare const genesises: {
|
|
|
53
53
|
readonly main: CompressedBlockDetail;
|
|
54
54
|
readonly test: CompressedBlockDetail;
|
|
55
55
|
readonly solo: CompressedBlockDetail;
|
|
56
|
-
which(gid: string): "
|
|
56
|
+
which(gid: string): "test" | "main" | "solo" | undefined;
|
|
57
57
|
};
|
|
58
58
|
//#endregion
|
|
59
59
|
//#region src/types/types.d.ts
|
|
@@ -635,7 +635,7 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
|
|
|
635
635
|
* ```
|
|
636
636
|
*/
|
|
637
637
|
declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
638
|
-
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) =>
|
|
638
|
+
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime4.JSX.Element;
|
|
639
639
|
//#endregion
|
|
640
640
|
//#region src/providers/PrivyWalletProvider.d.ts
|
|
641
641
|
interface PrivyWalletProviderContextType {
|
|
@@ -678,7 +678,7 @@ declare const PrivyWalletProvider: ({
|
|
|
678
678
|
delegatorUrl?: string;
|
|
679
679
|
delegateAllTransactions: boolean;
|
|
680
680
|
genericDelegator?: boolean;
|
|
681
|
-
}) =>
|
|
681
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
682
682
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
683
683
|
//#endregion
|
|
684
684
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
@@ -696,12 +696,12 @@ declare const ColorModeSync: ({
|
|
|
696
696
|
darkMode
|
|
697
697
|
}: {
|
|
698
698
|
darkMode: boolean;
|
|
699
|
-
}) =>
|
|
699
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
700
700
|
declare const VechainKitThemeProvider: ({
|
|
701
701
|
children,
|
|
702
702
|
darkMode,
|
|
703
703
|
theme: customTheme
|
|
704
|
-
}: Props$35) =>
|
|
704
|
+
}: Props$35) => react_jsx_runtime4.JSX.Element;
|
|
705
705
|
//#endregion
|
|
706
706
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
707
707
|
type Props$34 = {
|
|
@@ -717,7 +717,7 @@ type LegalDocumentsContextType = {
|
|
|
717
717
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
718
718
|
declare const LegalDocumentsProvider: ({
|
|
719
719
|
children
|
|
720
|
-
}: Props$34) =>
|
|
720
|
+
}: Props$34) => react_jsx_runtime4.JSX.Element;
|
|
721
721
|
//#endregion
|
|
722
722
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
723
723
|
type Props$33 = {
|
|
@@ -753,7 +753,7 @@ declare const ConnectModal: ({
|
|
|
753
753
|
onClose,
|
|
754
754
|
initialContent,
|
|
755
755
|
preventAutoClose
|
|
756
|
-
}: Props$33) =>
|
|
756
|
+
}: Props$33) => react_jsx_runtime4.JSX.Element;
|
|
757
757
|
//#endregion
|
|
758
758
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
759
759
|
type Props$32 = {
|
|
@@ -765,7 +765,7 @@ declare const MainContent: ({
|
|
|
765
765
|
setCurrentContent,
|
|
766
766
|
onClose,
|
|
767
767
|
preventAutoClose
|
|
768
|
-
}: Props$32) =>
|
|
768
|
+
}: Props$32) => react_jsx_runtime4.JSX.Element;
|
|
769
769
|
//#endregion
|
|
770
770
|
//#region src/components/ConnectModal/Contents/LoadingContent.d.ts
|
|
771
771
|
type LoadingContentProps = {
|
|
@@ -783,7 +783,7 @@ declare const LoadingContent: ({
|
|
|
783
783
|
onClose,
|
|
784
784
|
onGoBack,
|
|
785
785
|
showBackButton
|
|
786
|
-
}: LoadingContentProps) =>
|
|
786
|
+
}: LoadingContentProps) => react_jsx_runtime4.JSX.Element;
|
|
787
787
|
//#endregion
|
|
788
788
|
//#region src/components/ConnectModal/Contents/ErrorContent.d.ts
|
|
789
789
|
type ErrorContentProps = {
|
|
@@ -797,7 +797,7 @@ declare const ErrorContent: ({
|
|
|
797
797
|
onClose,
|
|
798
798
|
onTryAgain,
|
|
799
799
|
onGoBack
|
|
800
|
-
}: ErrorContentProps) =>
|
|
800
|
+
}: ErrorContentProps) => react_jsx_runtime4.JSX.Element;
|
|
801
801
|
//#endregion
|
|
802
802
|
//#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
|
|
803
803
|
type Props$31 = {
|
|
@@ -813,7 +813,7 @@ declare const EcosystemContent: ({
|
|
|
813
813
|
isLoading,
|
|
814
814
|
setCurrentContent,
|
|
815
815
|
showBackButton
|
|
816
|
-
}: Props$31) =>
|
|
816
|
+
}: Props$31) => react_jsx_runtime4.JSX.Element;
|
|
817
817
|
//#endregion
|
|
818
818
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
819
819
|
interface ConnectionButtonProps {
|
|
@@ -836,10 +836,10 @@ declare const ConnectionButton: ({
|
|
|
836
836
|
style,
|
|
837
837
|
variant,
|
|
838
838
|
iconWidth
|
|
839
|
-
}: ConnectionButtonProps) =>
|
|
839
|
+
}: ConnectionButtonProps) => react_jsx_runtime4.JSX.Element | null;
|
|
840
840
|
//#endregion
|
|
841
841
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
842
|
-
declare const EmailLoginButton: () =>
|
|
842
|
+
declare const EmailLoginButton: () => react_jsx_runtime4.JSX.Element;
|
|
843
843
|
//#endregion
|
|
844
844
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
845
845
|
type Props$30 = {
|
|
@@ -851,7 +851,7 @@ declare const VeChainLoginButton: ({
|
|
|
851
851
|
isDark,
|
|
852
852
|
gridColumn,
|
|
853
853
|
setCurrentContent
|
|
854
|
-
}: Props$30) =>
|
|
854
|
+
}: Props$30) => react_jsx_runtime4.JSX.Element;
|
|
855
855
|
//#endregion
|
|
856
856
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
857
857
|
type Props$29 = {
|
|
@@ -865,7 +865,7 @@ declare const EcosystemButton: ({
|
|
|
865
865
|
appsInfo,
|
|
866
866
|
isLoading,
|
|
867
867
|
setCurrentContent
|
|
868
|
-
}: Props$29) =>
|
|
868
|
+
}: Props$29) => react_jsx_runtime4.JSX.Element;
|
|
869
869
|
//#endregion
|
|
870
870
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
871
871
|
type Props$28 = {
|
|
@@ -877,7 +877,7 @@ declare const PrivyButton: ({
|
|
|
877
877
|
isDark,
|
|
878
878
|
onViewMoreLogin,
|
|
879
879
|
gridColumn
|
|
880
|
-
}: Props$28) =>
|
|
880
|
+
}: Props$28) => react_jsx_runtime4.JSX.Element;
|
|
881
881
|
//#endregion
|
|
882
882
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
883
883
|
type Props$27 = {
|
|
@@ -887,7 +887,7 @@ type Props$27 = {
|
|
|
887
887
|
declare const LoginWithGoogleButton: ({
|
|
888
888
|
isDark,
|
|
889
889
|
gridColumn
|
|
890
|
-
}: Props$27) =>
|
|
890
|
+
}: Props$27) => react_jsx_runtime4.JSX.Element;
|
|
891
891
|
//#endregion
|
|
892
892
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
893
893
|
type Props$26 = {
|
|
@@ -899,7 +899,7 @@ declare const PasskeyLoginButton: ({
|
|
|
899
899
|
isDark,
|
|
900
900
|
gridColumn,
|
|
901
901
|
setCurrentContent
|
|
902
|
-
}: Props$26) =>
|
|
902
|
+
}: Props$26) => react_jsx_runtime4.JSX.Element;
|
|
903
903
|
//#endregion
|
|
904
904
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
905
905
|
type Props$25 = {
|
|
@@ -909,7 +909,7 @@ type Props$25 = {
|
|
|
909
909
|
declare const DappKitButton: ({
|
|
910
910
|
isDark,
|
|
911
911
|
gridColumn
|
|
912
|
-
}: Props$25) =>
|
|
912
|
+
}: Props$25) => react_jsx_runtime4.JSX.Element;
|
|
913
913
|
//#endregion
|
|
914
914
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
915
915
|
type Props$24 = {
|
|
@@ -919,7 +919,7 @@ type Props$24 = {
|
|
|
919
919
|
declare const VeChainWithPrivyLoginButton: ({
|
|
920
920
|
isDark,
|
|
921
921
|
gridColumn
|
|
922
|
-
}: Props$24) =>
|
|
922
|
+
}: Props$24) => react_jsx_runtime4.JSX.Element;
|
|
923
923
|
//#endregion
|
|
924
924
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
925
925
|
type Props$23 = {
|
|
@@ -929,7 +929,7 @@ type Props$23 = {
|
|
|
929
929
|
declare const LoginWithGithubButton: ({
|
|
930
930
|
isDark,
|
|
931
931
|
gridColumn
|
|
932
|
-
}: Props$23) =>
|
|
932
|
+
}: Props$23) => react_jsx_runtime4.JSX.Element;
|
|
933
933
|
//#endregion
|
|
934
934
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
935
935
|
type ConnectPopoverProps = {
|
|
@@ -939,7 +939,7 @@ type ConnectPopoverProps = {
|
|
|
939
939
|
declare const ConnectPopover: ({
|
|
940
940
|
isLoading,
|
|
941
941
|
buttonStyle
|
|
942
|
-
}: ConnectPopoverProps) =>
|
|
942
|
+
}: ConnectPopoverProps) => react_jsx_runtime4.JSX.Element;
|
|
943
943
|
//#endregion
|
|
944
944
|
//#region src/components/WalletButton/types.d.ts
|
|
945
945
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
@@ -958,10 +958,10 @@ declare const WalletButton: ({
|
|
|
958
958
|
buttonStyle,
|
|
959
959
|
connectionVariant,
|
|
960
960
|
label
|
|
961
|
-
}: WalletButtonProps) =>
|
|
961
|
+
}: WalletButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
962
962
|
//#endregion
|
|
963
963
|
//#region src/components/WalletButton/SocialIcons.d.ts
|
|
964
|
-
declare const SocialIcons: () =>
|
|
964
|
+
declare const SocialIcons: () => react_jsx_runtime4.JSX.Element;
|
|
965
965
|
//#endregion
|
|
966
966
|
//#region src/components/TransactionModal/TransactionModal.d.ts
|
|
967
967
|
type TransactionModalProps = {
|
|
@@ -991,7 +991,7 @@ declare const TransactionModal: ({
|
|
|
991
991
|
txReceipt,
|
|
992
992
|
txError,
|
|
993
993
|
onTryAgain
|
|
994
|
-
}: TransactionModalProps) =>
|
|
994
|
+
}: TransactionModalProps) => react_jsx_runtime4.JSX.Element | null;
|
|
995
995
|
//#endregion
|
|
996
996
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
997
997
|
type Props$22 = {
|
|
@@ -1001,7 +1001,7 @@ type Props$22 = {
|
|
|
1001
1001
|
};
|
|
1002
1002
|
declare const ShareButtons: ({
|
|
1003
1003
|
description
|
|
1004
|
-
}: Props$22) =>
|
|
1004
|
+
}: Props$22) => react_jsx_runtime4.JSX.Element;
|
|
1005
1005
|
//#endregion
|
|
1006
1006
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
1007
1007
|
declare const TransactionModalContent: ({
|
|
@@ -1011,7 +1011,7 @@ declare const TransactionModalContent: ({
|
|
|
1011
1011
|
txReceipt,
|
|
1012
1012
|
txError,
|
|
1013
1013
|
onClose
|
|
1014
|
-
}: Omit<TransactionModalProps, "isOpen">) =>
|
|
1014
|
+
}: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime4.JSX.Element;
|
|
1015
1015
|
//#endregion
|
|
1016
1016
|
//#region src/components/TransactionToast/TransactionToast.d.ts
|
|
1017
1017
|
type TransactionToastProps = {
|
|
@@ -1031,7 +1031,7 @@ declare const TransactionToast: ({
|
|
|
1031
1031
|
txError,
|
|
1032
1032
|
onTryAgain,
|
|
1033
1033
|
description
|
|
1034
|
-
}: TransactionToastProps) =>
|
|
1034
|
+
}: TransactionToastProps) => react_jsx_runtime4.JSX.Element | null;
|
|
1035
1035
|
//#endregion
|
|
1036
1036
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
1037
1037
|
type Props$21 = {
|
|
@@ -1047,12 +1047,12 @@ declare const AccountMainContent: ({
|
|
|
1047
1047
|
wallet,
|
|
1048
1048
|
onClose,
|
|
1049
1049
|
switchFeedback
|
|
1050
|
-
}: Props$21) =>
|
|
1050
|
+
}: Props$21) => react_jsx_runtime4.JSX.Element;
|
|
1051
1051
|
//#endregion
|
|
1052
1052
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
1053
1053
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
1054
1054
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
1055
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
1055
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
|
|
1056
1056
|
[k: string]: {
|
|
1057
1057
|
website: string | undefined;
|
|
1058
1058
|
id: string;
|
|
@@ -1073,7 +1073,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
1073
1073
|
//#endregion
|
|
1074
1074
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
1075
1075
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
1076
|
-
declare const useFetchPrivyStatus: () =>
|
|
1076
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1077
1077
|
//#endregion
|
|
1078
1078
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
1079
1079
|
interface VeChainDomainResult {
|
|
@@ -1083,11 +1083,11 @@ interface VeChainDomainResult {
|
|
|
1083
1083
|
isPrimaryDomain: boolean;
|
|
1084
1084
|
}
|
|
1085
1085
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
1086
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
1086
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
|
|
1087
1087
|
//#endregion
|
|
1088
1088
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
1089
1089
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
1090
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
1090
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1091
1091
|
//#endregion
|
|
1092
1092
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
1093
1093
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1149,7 +1149,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1149
1149
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1150
1150
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1151
1151
|
*/
|
|
1152
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1152
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1153
1153
|
//#endregion
|
|
1154
1154
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1155
1155
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1177,7 +1177,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1177
1177
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1178
1178
|
* @returns The domains owned by the address
|
|
1179
1179
|
*/
|
|
1180
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1180
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1181
1181
|
domains: {
|
|
1182
1182
|
name: string;
|
|
1183
1183
|
}[];
|
|
@@ -1190,7 +1190,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1190
1190
|
* @param name - The VET domain name
|
|
1191
1191
|
* @returns The resolved avatar URL
|
|
1192
1192
|
*/
|
|
1193
|
-
declare const useGetAvatar: (name: string) =>
|
|
1193
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1194
1194
|
//#endregion
|
|
1195
1195
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1196
1196
|
/**
|
|
@@ -1202,7 +1202,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query33.UseQueryRe
|
|
|
1202
1202
|
*/
|
|
1203
1203
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1204
1204
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1205
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1205
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
|
|
1206
1206
|
//#endregion
|
|
1207
1207
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1208
1208
|
type UpdateTextRecordVariables = {
|
|
@@ -1235,7 +1235,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1235
1235
|
* @param domain The domain to get resolver for
|
|
1236
1236
|
* @returns The resolver address for the domain
|
|
1237
1237
|
*/
|
|
1238
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1238
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
|
|
1239
1239
|
//#endregion
|
|
1240
1240
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1241
1241
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1245,7 +1245,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1245
1245
|
* @param address The owner's address
|
|
1246
1246
|
* @returns The avatar URL for the address's primary domain
|
|
1247
1247
|
*/
|
|
1248
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1248
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1249
1249
|
//#endregion
|
|
1250
1250
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1251
1251
|
/**
|
|
@@ -1262,7 +1262,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1262
1262
|
* @param name - The VET domain name
|
|
1263
1263
|
* @returns The resolved avatar URL
|
|
1264
1264
|
*/
|
|
1265
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1265
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1266
1266
|
//#endregion
|
|
1267
1267
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1268
1268
|
type useUnsetDomainProps = {
|
|
@@ -1371,7 +1371,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1371
1371
|
* Hook to get the current roundId of allocations voting
|
|
1372
1372
|
* @returns the current roundId of allocations voting
|
|
1373
1373
|
*/
|
|
1374
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1374
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
|
|
1375
1375
|
//#endregion
|
|
1376
1376
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1377
1377
|
declare const useCustomTokens: () => {
|
|
@@ -1384,7 +1384,7 @@ declare const useCustomTokens: () => {
|
|
|
1384
1384
|
//#endregion
|
|
1385
1385
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1386
1386
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1387
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1387
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1388
1388
|
original: string;
|
|
1389
1389
|
scaled: string;
|
|
1390
1390
|
formatted: string;
|
|
@@ -1393,7 +1393,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query33.U
|
|
|
1393
1393
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1394
1394
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1395
1395
|
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
|
|
1396
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1396
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1397
1397
|
original: string;
|
|
1398
1398
|
scaled: string;
|
|
1399
1399
|
formatted: string;
|
|
@@ -1406,11 +1406,11 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1406
1406
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1407
1407
|
declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1408
1408
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1409
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1409
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
|
|
1410
1410
|
//#endregion
|
|
1411
1411
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1412
1412
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1413
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string) =>
|
|
1413
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1414
1414
|
original: string;
|
|
1415
1415
|
scaled: string;
|
|
1416
1416
|
formatted: string;
|
|
@@ -1427,11 +1427,11 @@ declare const PRICE_FEED_IDS: {
|
|
|
1427
1427
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1428
1428
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1429
1429
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1430
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1430
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
1431
1431
|
//#endregion
|
|
1432
1432
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1433
1433
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1434
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1434
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1435
1435
|
original: string;
|
|
1436
1436
|
scaled: string;
|
|
1437
1437
|
formatted: string;
|
|
@@ -1450,7 +1450,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1450
1450
|
* @param user - The user address.
|
|
1451
1451
|
* @returns The isPerson status.
|
|
1452
1452
|
*/
|
|
1453
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1453
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1454
1454
|
//#endregion
|
|
1455
1455
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1456
1456
|
type XApp = {
|
|
@@ -1488,7 +1488,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1488
1488
|
//#endregion
|
|
1489
1489
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1490
1490
|
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
|
|
1491
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1491
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1492
1492
|
id: string;
|
|
1493
1493
|
teamWalletAddress: `0x${string}`;
|
|
1494
1494
|
name: string;
|
|
@@ -1602,7 +1602,7 @@ type XAppMetadata = {
|
|
|
1602
1602
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1603
1603
|
*/
|
|
1604
1604
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1605
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1605
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1606
1606
|
//#endregion
|
|
1607
1607
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1608
1608
|
/**
|
|
@@ -1617,7 +1617,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1617
1617
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1618
1618
|
*
|
|
1619
1619
|
*/
|
|
1620
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1620
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1621
1621
|
app: string;
|
|
1622
1622
|
share: number;
|
|
1623
1623
|
unallocatedShare: number;
|
|
@@ -1639,7 +1639,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1639
1639
|
* @param ipfsUri - The IPFS URI
|
|
1640
1640
|
* @returns The metadata from IPFS
|
|
1641
1641
|
*/
|
|
1642
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1642
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
|
|
1643
1643
|
//#endregion
|
|
1644
1644
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1645
1645
|
interface IpfsImage {
|
|
@@ -1666,14 +1666,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1666
1666
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1667
1667
|
* @returns The NFT media
|
|
1668
1668
|
*/
|
|
1669
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1669
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
|
|
1670
1670
|
/**
|
|
1671
1671
|
* Custom hook to fetch a list of IPFS images.
|
|
1672
1672
|
*
|
|
1673
1673
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1674
1674
|
* @returns An array of queries for each IPFS image URI.
|
|
1675
1675
|
*/
|
|
1676
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1676
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
|
|
1677
1677
|
//#endregion
|
|
1678
1678
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1679
1679
|
/**
|
|
@@ -1681,7 +1681,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1681
1681
|
* @param ipfsUris - The IPFS URIs
|
|
1682
1682
|
* @returns The metadata from IPFS for each URI
|
|
1683
1683
|
*/
|
|
1684
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1684
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
|
|
1685
1685
|
//#endregion
|
|
1686
1686
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1687
1687
|
declare const imageCompressionOptions: Options;
|
|
@@ -1900,7 +1900,7 @@ declare const ConnectModalProvider: ({
|
|
|
1900
1900
|
children
|
|
1901
1901
|
}: {
|
|
1902
1902
|
children: ReactNode;
|
|
1903
|
-
}) =>
|
|
1903
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1904
1904
|
//#endregion
|
|
1905
1905
|
//#region src/hooks/modals/useAccountModal.d.ts
|
|
1906
1906
|
declare const useAccountModal: () => {
|
|
@@ -1912,7 +1912,7 @@ declare const AccountModalProvider: ({
|
|
|
1912
1912
|
children
|
|
1913
1913
|
}: {
|
|
1914
1914
|
children: ReactNode;
|
|
1915
|
-
}) =>
|
|
1915
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1916
1916
|
//#endregion
|
|
1917
1917
|
//#region src/hooks/modals/useTransactionModal.d.ts
|
|
1918
1918
|
declare const useTransactionModal: () => {
|
|
@@ -1924,7 +1924,7 @@ declare const TransactionModalProvider: ({
|
|
|
1924
1924
|
children
|
|
1925
1925
|
}: {
|
|
1926
1926
|
children: ReactNode;
|
|
1927
|
-
}) =>
|
|
1927
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1928
1928
|
//#endregion
|
|
1929
1929
|
//#region src/hooks/modals/useTransactionToast.d.ts
|
|
1930
1930
|
declare const useTransactionToast: () => {
|
|
@@ -1936,7 +1936,7 @@ declare const TransactionToastProvider: ({
|
|
|
1936
1936
|
children
|
|
1937
1937
|
}: {
|
|
1938
1938
|
children: ReactNode;
|
|
1939
|
-
}) =>
|
|
1939
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1940
1940
|
//#endregion
|
|
1941
1941
|
//#region src/hooks/modals/useWalletModal.d.ts
|
|
1942
1942
|
declare const useWalletModal: () => {
|
|
@@ -1948,7 +1948,7 @@ declare const WalletModalProvider: ({
|
|
|
1948
1948
|
children
|
|
1949
1949
|
}: {
|
|
1950
1950
|
children: ReactNode;
|
|
1951
|
-
}) =>
|
|
1951
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1952
1952
|
//#endregion
|
|
1953
1953
|
//#region src/hooks/modals/useChooseNameModal.d.ts
|
|
1954
1954
|
declare const useChooseNameModal: () => {
|
|
@@ -1960,7 +1960,7 @@ declare const ChooseNameModalProvider: ({
|
|
|
1960
1960
|
children
|
|
1961
1961
|
}: {
|
|
1962
1962
|
children: ReactNode;
|
|
1963
|
-
}) =>
|
|
1963
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1964
1964
|
//#endregion
|
|
1965
1965
|
//#region src/hooks/modals/useSendTokenModal.d.ts
|
|
1966
1966
|
declare const useSendTokenModal: () => {
|
|
@@ -1972,7 +1972,7 @@ declare const SendTokenModalProvider: ({
|
|
|
1972
1972
|
children
|
|
1973
1973
|
}: {
|
|
1974
1974
|
children: ReactNode;
|
|
1975
|
-
}) =>
|
|
1975
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1976
1976
|
//#endregion
|
|
1977
1977
|
//#region src/hooks/modals/useSwapTokenModal.d.ts
|
|
1978
1978
|
type SwapTokenModalOptions = {
|
|
@@ -1989,7 +1989,7 @@ declare const SwapTokenModalProvider: ({
|
|
|
1989
1989
|
children
|
|
1990
1990
|
}: {
|
|
1991
1991
|
children: ReactNode;
|
|
1992
|
-
}) =>
|
|
1992
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1993
1993
|
//#endregion
|
|
1994
1994
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
1995
1995
|
declare const useExploreEcosystemModal: () => {
|
|
@@ -2001,7 +2001,7 @@ declare const ExploreEcosystemModalProvider: ({
|
|
|
2001
2001
|
children
|
|
2002
2002
|
}: {
|
|
2003
2003
|
children: ReactNode;
|
|
2004
|
-
}) =>
|
|
2004
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2005
2005
|
//#endregion
|
|
2006
2006
|
//#region src/hooks/modals/useNotificationsModal.d.ts
|
|
2007
2007
|
declare const useNotificationsModal: () => {
|
|
@@ -2013,7 +2013,7 @@ declare const NotificationsModalProvider: ({
|
|
|
2013
2013
|
children
|
|
2014
2014
|
}: {
|
|
2015
2015
|
children: ReactNode;
|
|
2016
|
-
}) =>
|
|
2016
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2017
2017
|
//#endregion
|
|
2018
2018
|
//#region src/hooks/modals/useFAQModal.d.ts
|
|
2019
2019
|
declare const useFAQModal: () => {
|
|
@@ -2025,7 +2025,7 @@ declare const FAQModalProvider: ({
|
|
|
2025
2025
|
children
|
|
2026
2026
|
}: {
|
|
2027
2027
|
children: ReactNode;
|
|
2028
|
-
}) =>
|
|
2028
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2029
2029
|
//#endregion
|
|
2030
2030
|
//#region src/hooks/modals/useAccountCustomizationModal.d.ts
|
|
2031
2031
|
declare const useAccountCustomizationModal: () => {
|
|
@@ -2037,7 +2037,7 @@ declare const AccountCustomizationModalProvider: ({
|
|
|
2037
2037
|
children
|
|
2038
2038
|
}: {
|
|
2039
2039
|
children: ReactNode;
|
|
2040
|
-
}) =>
|
|
2040
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2041
2041
|
//#endregion
|
|
2042
2042
|
//#region src/hooks/modals/useReceiveModal.d.ts
|
|
2043
2043
|
declare const useReceiveModal: () => {
|
|
@@ -2049,7 +2049,7 @@ declare const ReceiveModalProvider: ({
|
|
|
2049
2049
|
children
|
|
2050
2050
|
}: {
|
|
2051
2051
|
children: ReactNode;
|
|
2052
|
-
}) =>
|
|
2052
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2053
2053
|
//#endregion
|
|
2054
2054
|
//#region src/hooks/modals/useLoginModalContent.d.ts
|
|
2055
2055
|
type LoginModalContentConfig = {
|
|
@@ -2075,7 +2075,7 @@ declare const UpgradeSmartAccountModalProvider: ({
|
|
|
2075
2075
|
children
|
|
2076
2076
|
}: {
|
|
2077
2077
|
children: ReactNode;
|
|
2078
|
-
}) =>
|
|
2078
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2079
2079
|
//#endregion
|
|
2080
2080
|
//#region src/hooks/modals/useProfileModal.d.ts
|
|
2081
2081
|
declare const useProfileModal: () => {
|
|
@@ -2087,7 +2087,7 @@ declare const ProfileModalProvider: ({
|
|
|
2087
2087
|
children
|
|
2088
2088
|
}: {
|
|
2089
2089
|
children: ReactNode;
|
|
2090
|
-
}) =>
|
|
2090
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2091
2091
|
//#endregion
|
|
2092
2092
|
//#region src/hooks/modals/useAccountModalOptions.d.ts
|
|
2093
2093
|
declare const useAccountModalOptions: () => {
|
|
@@ -2105,7 +2105,7 @@ declare const SettingsModalProvider: ({
|
|
|
2105
2105
|
children
|
|
2106
2106
|
}: {
|
|
2107
2107
|
children: ReactNode;
|
|
2108
|
-
}) =>
|
|
2108
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2109
2109
|
//#endregion
|
|
2110
2110
|
//#region src/hooks/notifications/types.d.ts
|
|
2111
2111
|
type NotificationAction = {
|
|
@@ -2235,7 +2235,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2235
2235
|
* );
|
|
2236
2236
|
* ```
|
|
2237
2237
|
*/
|
|
2238
|
-
declare const useAppHubApps: () =>
|
|
2238
|
+
declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
|
|
2239
2239
|
//#endregion
|
|
2240
2240
|
//#region src/utils/constants.d.ts
|
|
2241
2241
|
/** Tokens that cannot be swapped or transferred (e.g. governance voting tokens) */
|
|
@@ -2590,7 +2590,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
2590
2590
|
method: TMethod;
|
|
2591
2591
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2592
2592
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
2593
|
-
}) =>
|
|
2593
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
|
|
2594
2594
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
2595
2595
|
thor,
|
|
2596
2596
|
calls,
|
|
@@ -2601,7 +2601,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
2601
2601
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
2602
2602
|
queryKey: string[];
|
|
2603
2603
|
enabled?: boolean;
|
|
2604
|
-
}) =>
|
|
2604
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
2605
2605
|
//#endregion
|
|
2606
2606
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
2607
2607
|
/**
|
|
@@ -2725,7 +2725,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
2725
2725
|
filterParams,
|
|
2726
2726
|
mapResponse,
|
|
2727
2727
|
nodeUrl
|
|
2728
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
2728
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
|
|
2729
2729
|
//#endregion
|
|
2730
2730
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
2731
2731
|
interface BuildClausesParams {
|
|
@@ -2877,7 +2877,7 @@ declare const useGenericDelegatorFeeEstimation: ({
|
|
|
2877
2877
|
tokens,
|
|
2878
2878
|
sendingAmount,
|
|
2879
2879
|
sendingTokenSymbol
|
|
2880
|
-
}: useGenericDelegatorFeeEstimationParams) =>
|
|
2880
|
+
}: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
|
|
2881
2881
|
usedToken: string;
|
|
2882
2882
|
}, Error>;
|
|
2883
2883
|
//#endregion
|
|
@@ -2891,7 +2891,7 @@ declare const useEstimateAllTokens: ({
|
|
|
2891
2891
|
clauses,
|
|
2892
2892
|
tokens,
|
|
2893
2893
|
enabled
|
|
2894
|
-
}: UseEstimateAllTokensParams) =>
|
|
2894
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
|
|
2895
2895
|
cost: number;
|
|
2896
2896
|
loading: boolean;
|
|
2897
2897
|
error?: string;
|
|
@@ -2908,7 +2908,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
2908
2908
|
* @param address The address of the account to get the balance for
|
|
2909
2909
|
* @returns The account balance
|
|
2910
2910
|
*/
|
|
2911
|
-
declare const useAccountBalance: (address?: string) =>
|
|
2911
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
2912
2912
|
balance: string;
|
|
2913
2913
|
energy: string;
|
|
2914
2914
|
}, Error>;
|
|
@@ -2921,7 +2921,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
2921
2921
|
* @param version - The version of the smart account implementation
|
|
2922
2922
|
* @returns The address of the smart account implementation
|
|
2923
2923
|
*/
|
|
2924
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
2924
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2925
2925
|
//#endregion
|
|
2926
2926
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
2927
2927
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -2930,7 +2930,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
2930
2930
|
* Get the current account implementation version used by the smart account factory
|
|
2931
2931
|
* @returns The current account implementation version
|
|
2932
2932
|
*/
|
|
2933
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
2933
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
2934
2934
|
//#endregion
|
|
2935
2935
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
2936
2936
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -2940,7 +2940,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
2940
2940
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2941
2941
|
* @returns The address of the smart account
|
|
2942
2942
|
*/
|
|
2943
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
2943
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2944
2944
|
//#endregion
|
|
2945
2945
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
2946
2946
|
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
|
|
@@ -2950,7 +2950,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2950
2950
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2951
2951
|
* @returns The version of the smart account
|
|
2952
2952
|
*/
|
|
2953
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
2953
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
|
|
2954
2954
|
version: number;
|
|
2955
2955
|
isDeployed: boolean;
|
|
2956
2956
|
}, unknown>;
|
|
@@ -2963,7 +2963,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
2963
2963
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2964
2964
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
2965
2965
|
*/
|
|
2966
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
2966
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2967
2967
|
//#endregion
|
|
2968
2968
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
2969
2969
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -2972,7 +2972,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
2972
2972
|
* Check if a smart account is deployed
|
|
2973
2973
|
* @returns True if the smart account is deployed, false otherwise
|
|
2974
2974
|
*/
|
|
2975
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
2975
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2976
2976
|
//#endregion
|
|
2977
2977
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
2978
2978
|
/**
|
|
@@ -3005,7 +3005,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
3005
3005
|
isDeployed: boolean;
|
|
3006
3006
|
}>;
|
|
3007
3007
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
3008
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
3008
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
3009
3009
|
address: undefined;
|
|
3010
3010
|
isDeployed?: undefined;
|
|
3011
3011
|
} | {
|
|
@@ -3023,7 +3023,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
3023
3023
|
* @param targetVersion - The version of the smart account to check for
|
|
3024
3024
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3025
3025
|
*/
|
|
3026
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
3026
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3027
3027
|
//#endregion
|
|
3028
3028
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
3029
3029
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -3034,7 +3034,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
3034
3034
|
* @param targetVersion - The target version of the smart account
|
|
3035
3035
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3036
3036
|
*/
|
|
3037
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
3037
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3038
3038
|
//#endregion
|
|
3039
3039
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
3040
3040
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -3059,7 +3059,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
3059
3059
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
3060
3060
|
* @returns the current block
|
|
3061
3061
|
*/
|
|
3062
|
-
declare const useCurrentBlock: () =>
|
|
3062
|
+
declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
|
|
3063
3063
|
//#endregion
|
|
3064
3064
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
3065
3065
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -3068,7 +3068,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
3068
3068
|
* Get the chain id
|
|
3069
3069
|
* @returns The chain id
|
|
3070
3070
|
*/
|
|
3071
|
-
declare const useGetChainId: () =>
|
|
3071
|
+
declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
3072
3072
|
//#endregion
|
|
3073
3073
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
3074
3074
|
/**
|
|
@@ -3320,7 +3320,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
3320
3320
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
3321
3321
|
* @returns Query result containing the transaction receipt
|
|
3322
3322
|
*/
|
|
3323
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
3323
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
|
|
3324
3324
|
//#endregion
|
|
3325
3325
|
//#region src/hooks/thor/transactions/useGasEstimate.d.ts
|
|
3326
3326
|
declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
|
|
@@ -3342,7 +3342,7 @@ declare const SendTokenContent: ({
|
|
|
3342
3342
|
initialAmount,
|
|
3343
3343
|
initialToAddressOrDomain,
|
|
3344
3344
|
onBack: parentOnBack
|
|
3345
|
-
}: SendTokenContentProps) =>
|
|
3345
|
+
}: SendTokenContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3346
3346
|
//#endregion
|
|
3347
3347
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
|
|
3348
3348
|
type SendTokenSummaryContentProps = {
|
|
@@ -3362,7 +3362,7 @@ declare const SendTokenSummaryContent: ({
|
|
|
3362
3362
|
amount,
|
|
3363
3363
|
selectedToken,
|
|
3364
3364
|
formattedTotalAmount
|
|
3365
|
-
}: SendTokenSummaryContentProps) =>
|
|
3365
|
+
}: SendTokenSummaryContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3366
3366
|
//#endregion
|
|
3367
3367
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
3368
3368
|
type Props$18 = {
|
|
@@ -3383,7 +3383,7 @@ declare const SelectTokenContent: ({
|
|
|
3383
3383
|
onBack,
|
|
3384
3384
|
showAllTokens,
|
|
3385
3385
|
excludedTokenSymbols
|
|
3386
|
-
}: Props$18) =>
|
|
3386
|
+
}: Props$18) => react_jsx_runtime4.JSX.Element;
|
|
3387
3387
|
//#endregion
|
|
3388
3388
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
3389
3389
|
type Props$17 = {
|
|
@@ -3391,7 +3391,7 @@ type Props$17 = {
|
|
|
3391
3391
|
};
|
|
3392
3392
|
declare const ReceiveTokenContent: ({
|
|
3393
3393
|
setCurrentContent
|
|
3394
|
-
}: Props$17) =>
|
|
3394
|
+
}: Props$17) => react_jsx_runtime4.JSX.Element;
|
|
3395
3395
|
//#endregion
|
|
3396
3396
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
3397
3397
|
type Props$16 = {
|
|
@@ -3403,7 +3403,7 @@ declare const SwapTokenContent: ({
|
|
|
3403
3403
|
setCurrentContent,
|
|
3404
3404
|
fromTokenAddress,
|
|
3405
3405
|
toTokenAddress
|
|
3406
|
-
}: Props$16) =>
|
|
3406
|
+
}: Props$16) => react_jsx_runtime4.JSX.Element;
|
|
3407
3407
|
//#endregion
|
|
3408
3408
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
3409
3409
|
type ChooseNameContentProps = {
|
|
@@ -3415,7 +3415,7 @@ declare const ChooseNameContent: ({
|
|
|
3415
3415
|
setCurrentContent,
|
|
3416
3416
|
onBack,
|
|
3417
3417
|
initialContentSource
|
|
3418
|
-
}: ChooseNameContentProps) =>
|
|
3418
|
+
}: ChooseNameContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3419
3419
|
//#endregion
|
|
3420
3420
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
|
|
3421
3421
|
type ChooseNameSearchContentProps = {
|
|
@@ -3427,7 +3427,7 @@ declare const ChooseNameSearchContent: ({
|
|
|
3427
3427
|
name: initialName,
|
|
3428
3428
|
setCurrentContent,
|
|
3429
3429
|
initialContentSource
|
|
3430
|
-
}: ChooseNameSearchContentProps) =>
|
|
3430
|
+
}: ChooseNameSearchContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3431
3431
|
//#endregion
|
|
3432
3432
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
|
|
3433
3433
|
type ChooseNameSummaryContentProps = {
|
|
@@ -3445,7 +3445,7 @@ declare const ChooseNameSummaryContent: ({
|
|
|
3445
3445
|
isOwnDomain,
|
|
3446
3446
|
isUnsetting,
|
|
3447
3447
|
initialContentSource
|
|
3448
|
-
}: ChooseNameSummaryContentProps) =>
|
|
3448
|
+
}: ChooseNameSummaryContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3449
3449
|
//#endregion
|
|
3450
3450
|
//#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
|
|
3451
3451
|
type FAQContentProps = {
|
|
@@ -3455,7 +3455,7 @@ type FAQContentProps = {
|
|
|
3455
3455
|
declare const FAQContent: ({
|
|
3456
3456
|
onGoBack,
|
|
3457
3457
|
showLanguageSelector
|
|
3458
|
-
}: FAQContentProps) =>
|
|
3458
|
+
}: FAQContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3459
3459
|
//#endregion
|
|
3460
3460
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
|
|
3461
3461
|
type AccountCustomizationContentProps = {
|
|
@@ -3465,7 +3465,7 @@ type AccountCustomizationContentProps = {
|
|
|
3465
3465
|
declare const CustomizationContent: ({
|
|
3466
3466
|
setCurrentContent,
|
|
3467
3467
|
initialContentSource
|
|
3468
|
-
}: AccountCustomizationContentProps) =>
|
|
3468
|
+
}: AccountCustomizationContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3469
3469
|
//#endregion
|
|
3470
3470
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
|
|
3471
3471
|
type CustomizationSummaryContentProps = {
|
|
@@ -3484,7 +3484,7 @@ declare const CustomizationSummaryContent: ({
|
|
|
3484
3484
|
setCurrentContent,
|
|
3485
3485
|
changes,
|
|
3486
3486
|
onDoneRedirectContent
|
|
3487
|
-
}: CustomizationSummaryContentProps) =>
|
|
3487
|
+
}: CustomizationSummaryContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3488
3488
|
//#endregion
|
|
3489
3489
|
//#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
|
|
3490
3490
|
type ProfileContentProps = {
|
|
@@ -3498,7 +3498,7 @@ declare const ProfileContent: ({
|
|
|
3498
3498
|
setCurrentContent,
|
|
3499
3499
|
onLogoutSuccess,
|
|
3500
3500
|
switchFeedback
|
|
3501
|
-
}: ProfileContentProps) =>
|
|
3501
|
+
}: ProfileContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3502
3502
|
//#endregion
|
|
3503
3503
|
//#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
|
|
3504
3504
|
type UpgradeSmartAccountContentProps = {
|
|
@@ -3510,7 +3510,7 @@ declare const UpgradeSmartAccountContent: ({
|
|
|
3510
3510
|
setCurrentContent,
|
|
3511
3511
|
handleClose,
|
|
3512
3512
|
initialContent
|
|
3513
|
-
}: UpgradeSmartAccountContentProps) =>
|
|
3513
|
+
}: UpgradeSmartAccountContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3514
3514
|
//#endregion
|
|
3515
3515
|
//#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
|
|
3516
3516
|
type AssetsContentProps = {
|
|
@@ -3518,7 +3518,7 @@ type AssetsContentProps = {
|
|
|
3518
3518
|
};
|
|
3519
3519
|
declare const AssetsContent: ({
|
|
3520
3520
|
setCurrentContent
|
|
3521
|
-
}: AssetsContentProps) =>
|
|
3521
|
+
}: AssetsContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3522
3522
|
//#endregion
|
|
3523
3523
|
//#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
|
|
3524
3524
|
type ManageCustomTokenContentProps = {
|
|
@@ -3526,7 +3526,7 @@ type ManageCustomTokenContentProps = {
|
|
|
3526
3526
|
};
|
|
3527
3527
|
declare const ManageCustomTokenContent: ({
|
|
3528
3528
|
setCurrentContent
|
|
3529
|
-
}: ManageCustomTokenContentProps) =>
|
|
3529
|
+
}: ManageCustomTokenContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3530
3530
|
//#endregion
|
|
3531
3531
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
3532
3532
|
type Props$15 = {
|
|
@@ -3534,7 +3534,7 @@ type Props$15 = {
|
|
|
3534
3534
|
};
|
|
3535
3535
|
declare const BridgeContent: ({
|
|
3536
3536
|
setCurrentContent
|
|
3537
|
-
}: Props$15) =>
|
|
3537
|
+
}: Props$15) => react_jsx_runtime4.JSX.Element;
|
|
3538
3538
|
//#endregion
|
|
3539
3539
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
3540
3540
|
type ChangeCurrencyContentProps = {
|
|
@@ -3542,7 +3542,7 @@ type ChangeCurrencyContentProps = {
|
|
|
3542
3542
|
};
|
|
3543
3543
|
declare const ChangeCurrencyContent: ({
|
|
3544
3544
|
setCurrentContent
|
|
3545
|
-
}: ChangeCurrencyContentProps) =>
|
|
3545
|
+
}: ChangeCurrencyContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3546
3546
|
//#endregion
|
|
3547
3547
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
3548
3548
|
type Props$14 = {
|
|
@@ -3550,7 +3550,7 @@ type Props$14 = {
|
|
|
3550
3550
|
};
|
|
3551
3551
|
declare const LanguageSettingsContent: ({
|
|
3552
3552
|
setCurrentContent
|
|
3553
|
-
}: Props$14) =>
|
|
3553
|
+
}: Props$14) => react_jsx_runtime4.JSX.Element;
|
|
3554
3554
|
//#endregion
|
|
3555
3555
|
//#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
|
|
3556
3556
|
type Props$13 = {
|
|
@@ -3558,7 +3558,7 @@ type Props$13 = {
|
|
|
3558
3558
|
};
|
|
3559
3559
|
declare const GasTokenSettingsContent: ({
|
|
3560
3560
|
setCurrentContent
|
|
3561
|
-
}: Props$13) =>
|
|
3561
|
+
}: Props$13) => react_jsx_runtime4.JSX.Element;
|
|
3562
3562
|
//#endregion
|
|
3563
3563
|
//#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
|
|
3564
3564
|
type SettingsContentProps = {
|
|
@@ -3568,7 +3568,7 @@ type SettingsContentProps = {
|
|
|
3568
3568
|
declare const SettingsContent: ({
|
|
3569
3569
|
setCurrentContent,
|
|
3570
3570
|
onLogoutSuccess
|
|
3571
|
-
}: SettingsContentProps) =>
|
|
3571
|
+
}: SettingsContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3572
3572
|
//#endregion
|
|
3573
3573
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
3574
3574
|
type TermsAndPrivacyContentProps = {
|
|
@@ -3576,7 +3576,7 @@ type TermsAndPrivacyContentProps = {
|
|
|
3576
3576
|
};
|
|
3577
3577
|
declare const TermsAndPrivacyContent: ({
|
|
3578
3578
|
onGoBack
|
|
3579
|
-
}: TermsAndPrivacyContentProps) =>
|
|
3579
|
+
}: TermsAndPrivacyContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3580
3580
|
//#endregion
|
|
3581
3581
|
//#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
|
|
3582
3582
|
type DisconnectConfirmContentProps = {
|
|
@@ -3592,7 +3592,7 @@ declare const DisconnectConfirmContent: ({
|
|
|
3592
3592
|
onClose,
|
|
3593
3593
|
showCloseButton,
|
|
3594
3594
|
text
|
|
3595
|
-
}: DisconnectConfirmContentProps) =>
|
|
3595
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3596
3596
|
//#endregion
|
|
3597
3597
|
//#region src/components/AccountModal/Contents/SelectWallet/SelectWalletContent.d.ts
|
|
3598
3598
|
type Props$12 = {
|
|
@@ -3605,7 +3605,7 @@ declare const SelectWalletContent: ({
|
|
|
3605
3605
|
setCurrentContent,
|
|
3606
3606
|
returnTo,
|
|
3607
3607
|
onLogoutSuccess: _onLogoutSuccess
|
|
3608
|
-
}: Props$12) =>
|
|
3608
|
+
}: Props$12) => react_jsx_runtime4.JSX.Element;
|
|
3609
3609
|
//#endregion
|
|
3610
3610
|
//#region src/components/AccountModal/Contents/SelectWallet/RemoveWalletConfirmContent.d.ts
|
|
3611
3611
|
type RemoveWalletConfirmContentProps = {
|
|
@@ -3621,7 +3621,7 @@ declare const RemoveWalletConfirmContent: ({
|
|
|
3621
3621
|
onConfirm,
|
|
3622
3622
|
onBack,
|
|
3623
3623
|
onClose
|
|
3624
|
-
}: RemoveWalletConfirmContentProps) =>
|
|
3624
|
+
}: RemoveWalletConfirmContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3625
3625
|
//#endregion
|
|
3626
3626
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
3627
3627
|
type CategoryFilter = string | null;
|
|
@@ -3749,7 +3749,7 @@ declare const AccountModal: ({
|
|
|
3749
3749
|
isOpen,
|
|
3750
3750
|
onClose,
|
|
3751
3751
|
initialContent
|
|
3752
|
-
}: Props$11) =>
|
|
3752
|
+
}: Props$11) => react_jsx_runtime4.JSX.Element;
|
|
3753
3753
|
//#endregion
|
|
3754
3754
|
//#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
|
|
3755
3755
|
interface AccountDetailsButtonProps {
|
|
@@ -3771,7 +3771,7 @@ declare const AccountDetailsButton: ({
|
|
|
3771
3771
|
onClick,
|
|
3772
3772
|
leftImage,
|
|
3773
3773
|
isActive
|
|
3774
|
-
}: AccountDetailsButtonProps) =>
|
|
3774
|
+
}: AccountDetailsButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
3775
3775
|
//#endregion
|
|
3776
3776
|
//#region src/components/AccountModal/Components/ActionButton.d.ts
|
|
3777
3777
|
type ActionButtonProps = {
|
|
@@ -3813,7 +3813,7 @@ declare const ActionButton: ({
|
|
|
3813
3813
|
extraContent,
|
|
3814
3814
|
dataTestId,
|
|
3815
3815
|
variant
|
|
3816
|
-
}: ActionButtonProps) =>
|
|
3816
|
+
}: ActionButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
3817
3817
|
//#endregion
|
|
3818
3818
|
//#region src/components/AccountModal/Components/AccountSelector.d.ts
|
|
3819
3819
|
type Props$10 = {
|
|
@@ -3833,7 +3833,7 @@ declare const AccountSelector: ({
|
|
|
3833
3833
|
onClose,
|
|
3834
3834
|
mt,
|
|
3835
3835
|
style
|
|
3836
|
-
}: Props$10) =>
|
|
3836
|
+
}: Props$10) => react_jsx_runtime4.JSX.Element;
|
|
3837
3837
|
//#endregion
|
|
3838
3838
|
//#region src/components/AccountModal/Components/BalanceSection.d.ts
|
|
3839
3839
|
declare const BalanceSection: ({
|
|
@@ -3844,7 +3844,7 @@ declare const BalanceSection: ({
|
|
|
3844
3844
|
mb?: number;
|
|
3845
3845
|
mt?: number;
|
|
3846
3846
|
onAssetsClick?: () => void;
|
|
3847
|
-
}) =>
|
|
3847
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
3848
3848
|
//#endregion
|
|
3849
3849
|
//#region src/components/AccountModal/Components/QuickActionsSection.d.ts
|
|
3850
3850
|
type Props$9 = {
|
|
@@ -3854,7 +3854,7 @@ type Props$9 = {
|
|
|
3854
3854
|
declare const QuickActionsSection: ({
|
|
3855
3855
|
mt,
|
|
3856
3856
|
setCurrentContent
|
|
3857
|
-
}: Props$9) =>
|
|
3857
|
+
}: Props$9) => react_jsx_runtime4.JSX.Element;
|
|
3858
3858
|
//#endregion
|
|
3859
3859
|
//#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
|
|
3860
3860
|
type FeatureAnnouncementCardProps = {
|
|
@@ -3862,16 +3862,16 @@ type FeatureAnnouncementCardProps = {
|
|
|
3862
3862
|
};
|
|
3863
3863
|
declare const FeatureAnnouncementCard: ({
|
|
3864
3864
|
setCurrentContent
|
|
3865
|
-
}: FeatureAnnouncementCardProps) =>
|
|
3865
|
+
}: FeatureAnnouncementCardProps) => react_jsx_runtime4.JSX.Element;
|
|
3866
3866
|
//#endregion
|
|
3867
3867
|
//#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
|
|
3868
|
-
declare const ExchangeWarningAlert: () =>
|
|
3868
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime4.JSX.Element;
|
|
3869
3869
|
//#endregion
|
|
3870
3870
|
//#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
|
|
3871
|
-
declare const DomainRequiredAlert: () =>
|
|
3871
|
+
declare const DomainRequiredAlert: () => react_jsx_runtime4.JSX.Element;
|
|
3872
3872
|
//#endregion
|
|
3873
3873
|
//#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
|
|
3874
|
-
declare const CrossAppConnectionSecurityCard: () =>
|
|
3874
|
+
declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime4.JSX.Element;
|
|
3875
3875
|
//#endregion
|
|
3876
3876
|
//#region src/components/common/ModalBackButton.d.ts
|
|
3877
3877
|
type BackButtonProps = {
|
|
@@ -3880,7 +3880,7 @@ type BackButtonProps = {
|
|
|
3880
3880
|
declare const ModalBackButton: ({
|
|
3881
3881
|
onClick,
|
|
3882
3882
|
...props
|
|
3883
|
-
}: BackButtonProps) =>
|
|
3883
|
+
}: BackButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
3884
3884
|
//#endregion
|
|
3885
3885
|
//#region src/components/common/AddressDisplay.d.ts
|
|
3886
3886
|
type Props$8 = {
|
|
@@ -3898,13 +3898,13 @@ declare const AddressDisplay: ({
|
|
|
3898
3898
|
showHumanAddress,
|
|
3899
3899
|
setCurrentContent,
|
|
3900
3900
|
onLogout
|
|
3901
|
-
}: Props$8) =>
|
|
3901
|
+
}: Props$8) => react_jsx_runtime4.JSX.Element;
|
|
3902
3902
|
//#endregion
|
|
3903
3903
|
//#region src/components/common/VersionFooter.d.ts
|
|
3904
3904
|
type Props$7 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
3905
3905
|
declare const VersionFooter: ({
|
|
3906
3906
|
...props
|
|
3907
|
-
}: Props$7) =>
|
|
3907
|
+
}: Props$7) => react_jsx_runtime4.JSX.Element;
|
|
3908
3908
|
//#endregion
|
|
3909
3909
|
//#region src/components/common/StickyHeaderContainer.d.ts
|
|
3910
3910
|
type Props$6 = {
|
|
@@ -3915,7 +3915,7 @@ declare const useStickyHeaderContext: () => {
|
|
|
3915
3915
|
};
|
|
3916
3916
|
declare const StickyHeaderContainer: ({
|
|
3917
3917
|
children
|
|
3918
|
-
}: Props$6) =>
|
|
3918
|
+
}: Props$6) => react_jsx_runtime4.JSX.Element;
|
|
3919
3919
|
//#endregion
|
|
3920
3920
|
//#region src/components/common/StickyFooterContainer.d.ts
|
|
3921
3921
|
type Props$5 = {
|
|
@@ -3923,7 +3923,7 @@ type Props$5 = {
|
|
|
3923
3923
|
};
|
|
3924
3924
|
declare const StickyFooterContainer: ({
|
|
3925
3925
|
children
|
|
3926
|
-
}: Props$5) =>
|
|
3926
|
+
}: Props$5) => react_jsx_runtime4.JSX.Element;
|
|
3927
3927
|
//#endregion
|
|
3928
3928
|
//#region src/components/common/BaseModal.d.ts
|
|
3929
3929
|
type BaseModalProps = {
|
|
@@ -3972,7 +3972,7 @@ declare const BaseModal: ({
|
|
|
3972
3972
|
mobileMaxHeight,
|
|
3973
3973
|
desktopMinHeight,
|
|
3974
3974
|
desktopMaxHeight
|
|
3975
|
-
}: BaseModalProps) =>
|
|
3975
|
+
}: BaseModalProps) => react_jsx_runtime4.JSX.Element;
|
|
3976
3976
|
//#endregion
|
|
3977
3977
|
//#region src/components/common/AssetButton.d.ts
|
|
3978
3978
|
type AssetButtonProps = ButtonProps & {
|
|
@@ -3991,7 +3991,7 @@ declare const AssetButton: ({
|
|
|
3991
3991
|
isDisabled,
|
|
3992
3992
|
onClick,
|
|
3993
3993
|
...buttonProps
|
|
3994
|
-
}: AssetButtonProps) =>
|
|
3994
|
+
}: AssetButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
3995
3995
|
//#endregion
|
|
3996
3996
|
//#region src/components/common/AddressDisplayCard.d.ts
|
|
3997
3997
|
type AddressDisplayCardProps = {
|
|
@@ -4011,7 +4011,7 @@ declare const AddressDisplayCard: ({
|
|
|
4011
4011
|
hideAddress,
|
|
4012
4012
|
balance,
|
|
4013
4013
|
tokenAddress
|
|
4014
|
-
}: AddressDisplayCardProps) =>
|
|
4014
|
+
}: AddressDisplayCardProps) => react_jsx_runtime4.JSX.Element;
|
|
4015
4015
|
//#endregion
|
|
4016
4016
|
//#region src/components/common/ModalFAQButton.d.ts
|
|
4017
4017
|
type FAQButtonProps = {
|
|
@@ -4020,13 +4020,13 @@ type FAQButtonProps = {
|
|
|
4020
4020
|
declare const ModalFAQButton: ({
|
|
4021
4021
|
onClick,
|
|
4022
4022
|
...props
|
|
4023
|
-
}: FAQButtonProps) =>
|
|
4023
|
+
}: FAQButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
4024
4024
|
//#endregion
|
|
4025
4025
|
//#region src/components/common/ScrollToTopWrapper.d.ts
|
|
4026
4026
|
declare const ScrollToTopWrapper: ({
|
|
4027
4027
|
children,
|
|
4028
4028
|
...props
|
|
4029
|
-
}: StackProps) =>
|
|
4029
|
+
}: StackProps) => react_jsx_runtime4.JSX.Element;
|
|
4030
4030
|
//#endregion
|
|
4031
4031
|
//#region src/components/common/AccountAvatar.d.ts
|
|
4032
4032
|
type AccountAvatarProps = {
|
|
@@ -4036,7 +4036,7 @@ type AccountAvatarProps = {
|
|
|
4036
4036
|
declare const AccountAvatar: ({
|
|
4037
4037
|
wallet,
|
|
4038
4038
|
props
|
|
4039
|
-
}: AccountAvatarProps) =>
|
|
4039
|
+
}: AccountAvatarProps) => react_jsx_runtime4.JSX.Element;
|
|
4040
4040
|
//#endregion
|
|
4041
4041
|
//#region src/components/common/TransactionButtonAndStatus.d.ts
|
|
4042
4042
|
type TransactionButtonAndStatusProps = {
|
|
@@ -4078,7 +4078,7 @@ declare const TransactionButtonAndStatus: ({
|
|
|
4078
4078
|
isLoadingGasEstimation,
|
|
4079
4079
|
showGasEstimationError,
|
|
4080
4080
|
context
|
|
4081
|
-
}: TransactionButtonAndStatusProps) =>
|
|
4081
|
+
}: TransactionButtonAndStatusProps) => react_jsx_runtime4.JSX.Element;
|
|
4082
4082
|
//#endregion
|
|
4083
4083
|
//#region src/components/common/ModalNotificationButton.d.ts
|
|
4084
4084
|
type NotificationButtonProps = {
|
|
@@ -4089,7 +4089,7 @@ declare const ModalNotificationButton: ({
|
|
|
4089
4089
|
onClick,
|
|
4090
4090
|
hasUnreadNotifications,
|
|
4091
4091
|
...props
|
|
4092
|
-
}: NotificationButtonProps) =>
|
|
4092
|
+
}: NotificationButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
4093
4093
|
//#endregion
|
|
4094
4094
|
//#region src/components/common/GasFeeSummary.d.ts
|
|
4095
4095
|
interface GasFeeSummaryProps {
|
|
@@ -4125,7 +4125,7 @@ declare const GasFeeTokenSelector: ({
|
|
|
4125
4125
|
availableTokens,
|
|
4126
4126
|
tokenEstimations,
|
|
4127
4127
|
walletAddress
|
|
4128
|
-
}: GasFeeTokenSelectorProps) =>
|
|
4128
|
+
}: GasFeeTokenSelectorProps) => react_jsx_runtime4.JSX.Element;
|
|
4129
4129
|
//#endregion
|
|
4130
4130
|
//#region src/components/common/InlineFeedback.d.ts
|
|
4131
4131
|
type Props$4 = {
|
|
@@ -4137,7 +4137,7 @@ declare const InlineFeedback: ({
|
|
|
4137
4137
|
message,
|
|
4138
4138
|
duration,
|
|
4139
4139
|
onClose
|
|
4140
|
-
}: Props$4) =>
|
|
4140
|
+
}: Props$4) => react_jsx_runtime4.JSX.Element;
|
|
4141
4141
|
//#endregion
|
|
4142
4142
|
//#region src/components/common/WalletSwitchFeedback.d.ts
|
|
4143
4143
|
type Props$3 = {
|
|
@@ -4154,7 +4154,7 @@ type Props$3 = {
|
|
|
4154
4154
|
*/
|
|
4155
4155
|
declare const WalletSwitchFeedback: ({
|
|
4156
4156
|
showFeedback
|
|
4157
|
-
}: Props$3) =>
|
|
4157
|
+
}: Props$3) => react_jsx_runtime4.JSX.Element | null;
|
|
4158
4158
|
//#endregion
|
|
4159
4159
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
4160
4160
|
type SuccessfulOperationContentProps = {
|
|
@@ -4184,7 +4184,7 @@ declare const UpgradeSmartAccountModal: ({
|
|
|
4184
4184
|
isOpen,
|
|
4185
4185
|
onClose,
|
|
4186
4186
|
style
|
|
4187
|
-
}: Props$2) =>
|
|
4187
|
+
}: Props$2) => react_jsx_runtime4.JSX.Element;
|
|
4188
4188
|
//#endregion
|
|
4189
4189
|
//#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
|
|
4190
4190
|
type Props$1 = {
|
|
@@ -4199,7 +4199,7 @@ declare const LegalDocumentsModal: ({
|
|
|
4199
4199
|
onAgree,
|
|
4200
4200
|
handleLogout,
|
|
4201
4201
|
onlyOptionalDocuments
|
|
4202
|
-
}: Props$1) =>
|
|
4202
|
+
}: Props$1) => react_jsx_runtime4.JSX.Element;
|
|
4203
4203
|
//#endregion
|
|
4204
4204
|
//#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
|
|
4205
4205
|
type Props = {
|
|
@@ -4211,7 +4211,7 @@ declare const LegalDocumentItem: ({
|
|
|
4211
4211
|
document,
|
|
4212
4212
|
register,
|
|
4213
4213
|
isText
|
|
4214
|
-
}: Props) =>
|
|
4214
|
+
}: Props) => react_jsx_runtime4.JSX.Element;
|
|
4215
4215
|
//#endregion
|
|
4216
4216
|
//#region src/providers/ModalProvider.d.ts
|
|
4217
4217
|
type AccountModalOptions = {
|
|
@@ -4246,7 +4246,7 @@ declare const ModalProvider: ({
|
|
|
4246
4246
|
children
|
|
4247
4247
|
}: {
|
|
4248
4248
|
children: ReactNode;
|
|
4249
|
-
}) =>
|
|
4249
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
4250
4250
|
//#endregion
|
|
4251
4251
|
//#region src/config/index.d.ts
|
|
4252
4252
|
type AppConfig = {
|
|
@@ -4292,4 +4292,4 @@ type AppConfig = {
|
|
|
4292
4292
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4293
4293
|
//#endregion
|
|
4294
4294
|
export { LanguageSettingsContent as $, useRefreshMetadata as $a, useAccountCustomizationModal as $i, useBuildClauses as $n, getIsDomainProtectedQueryKey as $o, resolveMediaTypeFromMimeType as $r, VechainKitProviderProps as $s, useUpgradeSmartAccount as $t, AddressDisplay as A, IpfsImage as Aa, NFTMediaType as Ac, notFoundImage as Ai, getAccountBalanceQueryKey as An, useTokenPrices as Ao, buildCallClauses as Ar, EcosystemButton as As, useMfaEnrollment as At, AccountDetailsButton as B, useXAppsShares as Ba, useNotificationAlerts as Bi, estimateGas as Bn, useGetResolverAddress as Bo, validate as Br, LegalDocumentsProvider as Bs, useTransferVET as Bt, AddressDisplayCard as C, useSwapTransaction as Ca, CURRENCY_SYMBOLS as Cc, TogglePassportCheck as Ci, getCurrentAccountImplementationVersion as Cn, useCustomTokens as Co, removeLocalStorageItem as Cr, ConnectPopover as Cs, ReceiveTokenContent as Ct, StickyHeaderContainer as D, imageCompressionOptions as Da, EnhancedClause as Dc, VECHAIN_PRIVY_APP_ID as Di, getAccountImplementationAddressQueryKey as Dn, TokenWithValue as Do, MultipleClausesCallParameters as Dr, PasskeyLoginButton as Ds, ThorClient$1 as Dt, StickyFooterContainer as E, compressImages as Ea, ENSRecords as Ec, VECHAIN_KIT_TERMS_CONFIG as Ei, getAccountImplementationAddress as En, useTotalBalance as Eo, setLocalStorageItem as Er, DappKitButton as Es, SendTokenContent as Et, FeatureAnnouncementCard as F, useIpfsImageList as Fa, TransactionStatus as Fc, useLoginWithVeChain as Fi, useGenericDelegatorFeeEstimationParams as Fn, getAvatarLegacyQueryKey as Fo, compare as Fr, ErrorContent as Fs, txReceiptQueryKey as Ft, RemoveWalletConfirmContentProps as G, useSwitchWallet as Ga, ProfileModalProvider as Gi, EcosystemShortcut as Gn, useGetTextRecords as Go, MinXNodeLevel as Gr, PrivyWalletProvider as Gs, GetEventsProps as Gt, AccountModalContentTypes as H, getXAppMetadata as Ha, SettingsModalProvider as Hi, signVip191Transaction as Hn, useUpdateTextRecord as Ho, simpleHash as Hr, ColorModeSync as Hs, useTransferERC20 as Ht, QuickActionsSection as I, getIpfsMetadata as Ia, TransactionStatusErrorType as Ic, useLoginWithOAuth$1 as Ii, useGasTokenSelection as In, useGetAvatarLegacy as Io, isInvalid as Ir, LoadingContent as Is, useTxReceipt as It, DisconnectConfirmContentProps as J, useWalletMetadata as Ja, useUpgradeSmartAccountModal as Ji, LocalStorageKey as Jn, Domain as Jo, allNodeStrengthLevelToName as Jr, LegalDocument as Js, getChainId as Jt, SelectWalletContent as K, StoredWallet as Ka, useProfileModal as Ki, useEcosystemShortcuts as Kn, getAvatarQueryKey as Ko, NodeStrengthLevelToImage as Kr, PrivyWalletProviderContextType as Ks, getAllEventLogs as Kt, BalanceSection as L, getIpfsMetadataQueryKey as La, VePassportUserStatus as Lc, useLoginWithPasskey$1 as Li, decodeRawTx as Ln, getAvatarOfAddressQueryKey as Lo, isValid as Lr, MainContent as Ls, BuildTransactionProps as Lt, CrossAppConnectionSecurityCard as M, getIpfsImage as Ma, PrivyLoginMethod as Mc, fetchAppHubApps as Mi, UseEstimateAllTokensParams as Mn, useTokenBalances as Mo, executeMultipleClausesCall as Mr, EmailLoginButton as Ms, useSetWalletRecovery as Mt, DomainRequiredAlert as N, getIpfsImageQueryKey as Na, SmartAccount as Nc, getAppHubAppsQueryKey as Ni, useEstimateAllTokens as Nn, useUnsetDomain as No, isValidUrl as Nr, ConnectionButton as Ns, useThor$1 as Nt, useStickyHeaderContext as O, useUploadImages as Oa, ExecuteBatchWithAuthorizationSignData as Oc, getENV as Oi, useAccountImplementationAddress as On, useTokensWithValues as Oo, MultipleClausesCallReturnType as Or, LoginWithGoogleButton as Os, useDAppKitWallet as Ot, ExchangeWarningAlert as P, useIpfsImage as Pa, TokenBalance as Pc, useAppHubApps as Pi, useGenericDelegatorFeeEstimation as Pn, getAvatarLegacy as Po, addPrefix as Pr, EcosystemContent as Ps, useGasEstimate as Pt, GasTokenSettingsContent as Q, useRoundXApps as Qa, AccountCustomizationModalProvider as Qi, buildSingleAuthorizationTypedData as Qn, useGetDomainsOfAddress as Qo, convertUriToUrl as Qr, VeChainKitProvider as Qs, useCurrentBlock as Qt, AccountSelector as R, useIpfsMetadata as Ra, Wallet as Rc, useSignTypedData as Ri, delegateAuthorized as Rn, useGetAvatarOfAddress as Ro, normalize as Rr, ConnectModal as Rs, useBuildTransaction as Rt, ModalFAQButton as S, useSwapQuotes as Sa, CURRENCY as Sc, TOKEN_LOGO_COMPONENTS as Si, useGetAccountAddress as Sn, useGetB3trBalance as So, isOnline as Sr, WalletDisplayVariant as Ss, SwapTokenContent as St, BaseModal as T, UploadedImage as Ta, CrossAppConnectionCache as Tc, VECHAIN_KIT_STORAGE_KEYS as Ti, useCurrentAccountImplementationVersion as Tn, useCurrentAllocationsRoundId as To, safeWindowOpen as Tr, VeChainWithPrivyLoginButton as Ts, SendTokenSummaryContent as Tt, SwitchFeedback as U, useXAppMetadata as Ua, useSettingsModal as Ui, useGenericDelegator as Un, getTextRecords as Uo, TIME as Ur, VechainKitThemeProvider as Us, UseSendTransactionReturnValue as Ut, AccountModal as V, XAppMetadata as Va, useNotifications as Vi, getDepositAccount as Vn, buildClauses as Vo, isRejectionError as Vr, useLegalDocuments as Vs, buildERC20Clauses as Vt, RemoveWalletConfirmContent as W, UseSwitchWalletReturnType as Wa, useAccountModalOptions as Wi, useCrossAppConnectionCache as Wn, getTextRecordsQueryKey as Wo, EconomicNodeStrengthLevelToName as Wr, useVechainKitThemeConfig as Ws, useSendTransaction as Wt, SettingsContent as X, useWallet$1 as Xa, ReceiveModalProvider as Xi, BuildClausesParams as Xn, getDomainsOfAddress as Xo, gmNfts as Xr, VeChainKitConfig as Xs, useGetChainId as Xt, TermsAndPrivacyContent as Y, UseWalletReturnType as Ya, useLoginModalContent as Yi, useLocalStorage as Yn, DomainsResponse as Yo, buildQueryString as Yr, LegalDocumentOptions as Ys, getChainIdQueryKey as Yt, SettingsContentProps as Z, getRoundXAppsQueryKey as Za, useReceiveModal as Zi, buildBatchAuthorizationTypedData as Zn, getDomainsOfAddressQueryKey as Zo, xNodeToGMstartingLevel as Zr, VeChainKitContext as Zs, currentBlockQueryKey as Zt, ModalNotificationButton as _, useTransactionModal as _a, GasTokenSelection as _c, ENV as _i, useHasV1SmartAccount as _n, useGetCustomTokenInfo as _o, getDocumentTitle as _r, TransactionModal as _s, ChooseNameSummaryContentProps as _t, useModal as a, useExploreEcosystemModal as aa, CostLevel as ac, isValidAddress as ai, useUpgradeRequired as an, useIsPerson as ao, useScrollToTop as ar, useEnsRecordExists as as, AssetsContent as at, AccountAvatar as b, ConnectModalProvider as ba, ENS_TEXT_RECORDS as bc, SUPPORTED_GAS_TOKENS as bi, getAccountAddress as bn, useGetCustomTokenBalances as bo, hasNavigator as br, WalletButton as bs, ChooseNameContent as bt, LegalDocumentsModal as c, SendTokenModalProvider as ca, EstimationResponse as cc, randomTransactionUser as ci, getSmartAccountQueryKey as cn, PRICE_FEED_IDS as co, useFeatureAnnouncement as cr, fetchPrivyStatus as cs, UpgradeSmartAccountContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useChooseNameModal as da, VthoPerGasAtSpeed as dc, humanAddress as di, useRefreshFactoryQueries as dn, getTokenUsdPriceQueryKey as do, useCurrency as dr, getPrivyAppInfoQueryKey as ds, CustomizationSummaryContent as dt, FAQModalProvider as ea, useVeChainKitConfig as ec, toIPFSURL as ei, getUpgradeRequiredForAccount as en, useRefreshBalances as eo, GetEventsKeyParams as er, useIsDomainProtected as es, ChangeCurrencyContent as et, UpgradeSmartAccountModalStyle as f, WalletModalProvider as fa, calculateTotalCost as fc, humanDomain as fi, getIsDeployed as fn, useGetTokenUsdPrice as fo, getCallClauseQueryKey as fr, useFetchAppInfo as fs, CustomizationSummaryContentProps as ft, GasFeeSummary as g, TransactionModalProvider as ga, GasTokenPreferences as gc, DEFAULT_PRIVY_ECOSYSTEM_APPS as gi, getHasV1SmartAccountQueryKey as gn, getTokenInfo$1 as go, copyToClipboard as gr, ShareButtons as gs, ChooseNameSummaryContent as gt, GasFeeTokenSelector as h, useTransactionToast as ha, GasTokenInfo as hc, DEFAULT_GAS_TOKEN_PREFERENCES as hi, getHasV1SmartAccount as hn, getCustomTokenInfoQueryKey as ho, useMultipleClausesCall as hr, TransactionModalContent as hs, FAQContent as ht, ModalProvider as i, ExploreEcosystemModalProvider as ia, LegalDocumentType as ic, compareListOfAddresses as ii, getUpgradeRequiredQueryKey as in, getIsPersonQueryKey as io, useEvents as ir, getEnsRecordExistsQueryKey as is, ManageCustomTokenContentProps as it, ModalBackButton as j, MAX_IMAGE_SIZE as ja, PrivyAppInfo as jc, AppHubApp as ji, useAccountBalance as jn, WalletTokenBalance as jo, executeCallClause as jr, VeChainLoginButton as js, usePrivy$1 as jt, VersionFooter as k, useIpfsMetadatas as ka, ExecuteWithAuthorizationSignData as kc, getGenericDelegatorUrl as ki, getAccountBalance as kn, ExchangeRates as ko, ViewFunctionResult as kr, PrivyButton as ks, useDAppKitWalletModal as kt, LegalDocumentsModalContentsTypes as l, useSendTokenModal as la, Rate as lc, formatTokenBalance as li, useSmartAccount as ln, SupportedToken as lo, useCurrentCurrency as lr, useFetchPrivyStatus as ls, ProfileContent as lt, InlineFeedback as m, TransactionToastProvider as ma, GasTokenEstimate as mc, isZero as mi, useIsSmartAccountDeployed as mn, useGetErc20Balance as mo, useCallClause as mr, TransactionToast as ms, CustomizationContent as mt, getConfig as n, NotificationsModalProvider as na, LegalDocumentAgreement as nc, validateIpfsUri as ni, useUpgradeRequiredForAccount as nn, XApp as no, decodeEventLog$1 as nr, useClaimVetDomain as ns, BridgeContent as nt, DAppKitWalletButton as o, SwapTokenModalProvider as oa, DepositAccount as oc, leftPadWithZeros as oi, SmartAccountReturnType as on, getVot3BalanceQueryKey as oo, useIsPWA as or, getVechainDomainQueryKey as os, AssetsContentProps as ot, WalletSwitchFeedback as p, useWalletModal as pa, formatGasCost as pc, humanNumber as pi, getIsDeployedQueryKey as pn, getErc20BalanceQueryKey as po, getCallClauseQueryKeyWithArgs as pr, AccountMainContent as ps, AccountCustomizationContentProps as pt, DisconnectConfirmContent as q, useWalletStorage as qa, UpgradeSmartAccountModalProvider as qi, useSyncableLocalStorage as qn, useGetAvatar as qo, XNodeStrengthLevelToName as qr, usePrivyWalletProvider as qs, getEventLogs as qt, AccountModalOptions as r, useNotificationsModal as ra, LegalDocumentSource as rc, compareAddresses as ri, getUpgradeRequired as rn, useMostVotedAppsInRound as ro, getEventsKey as rr, useClaimVeWorldSubdomain as rs, ManageCustomTokenContent as rt, LegalDocumentItem as s, useSwapTokenModal as sa, EstimatedGas as sc, regexPattern as si, getSmartAccount as sn, useGetVot3Balance as so, useGetNodeUrl as sr, useVechainDomain as ss, UpgradeSmartAccountContent as st, AppConfig as t, useFAQModal as ta, EnrichedLegalDocument as tc, uploadBlobToIPFS as ti, getUpgradeRequiredForAccountQueryKey as tn, MostVotedAppsInRoundReturnType as to, UseEventsParams as tr, buildVetDomainClauses as ts, ChangeCurrencyContentProps as tt, UpgradeSmartAccountModal as u, ChooseNameModalProvider as ua, TransactionCost as uc, getPicassoImage as ui, useRefreshSmartAccountQueries as un, getTokenUsdPrice as uo, useCurrentLanguage as ur, fetchPrivyAppInfo as us, ProfileContentProps as ut, TransactionButtonAndStatus as v, AccountModalProvider as va, GasTokenType as vc, NON_TRANSFERABLE_TOKEN_SYMBOLS as vi, getAccountVersionQueryKey as vn, TokenWithBalance as vo, getLocalStorageItem as vr, TransactionModalProps as vs, ChooseNameSearchContent as vt, AssetButton as w, useSingleImageUpload as wa, ConnectionSource as wc, VECHAIN_KIT_COOKIES_CONFIG as wi, getCurrentAccountImplementationVersionQueryKey as wn, getCurrentAllocationsRoundIdQueryKey as wo, safeQuerySelector as wr, LoginWithGithubButton as ws, SelectTokenContent as wt, ScrollToTopWrapper as x, useConnectModal as xa, TextRecords as xc, TOKEN_LOGOS as xi, getAccountAddressQueryKey as xn, getB3trBalanceQueryKey as xo, isBrowser as xr, WalletButtonProps as xs, ChooseNameContentProps as xt, TransactionButtonAndStatusProps as y, useAccountModal as ya, TransactionSpeed as yc, PrivyEcosystemApp as yi, useGetAccountVersion as yn, getCustomTokenBalanceQueryKey as yo, getWindowOrigin as yr, SocialIcons as ys, ChooseNameSearchContentProps as yt, ActionButton as z, getXAppsSharesQueryKey as za, useSignMessage as zi, estimateAndBuildTxBody as zn, getResolverAddressQueryKey as zo, removePrefix as zr, ConnectModalContentsTypes as zs, buildVETClauses as zt };
|
|
4295
|
-
//# sourceMappingURL=index-
|
|
4295
|
+
//# sourceMappingURL=index-CpmIWCFY.d.mts.map
|