@vechain/vechain-kit 2.10.0 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +91 -41
- package/dist/assets/index.d.cts +1 -1
- package/dist/assets/index.d.mts +1 -1
- package/dist/{index-lFyi52Xi.d.cts → index-3NLPTwiP.d.cts} +184 -175
- package/dist/index-3NLPTwiP.d.cts.map +1 -0
- package/dist/{index-Bekk3wer.d.cts → index-BYfc-9J5.d.mts} +4 -4
- package/dist/{index-BvuXDx6d.d.mts.map → index-BYfc-9J5.d.mts.map} +1 -1
- package/dist/{index-DqmXn4Mz.d.mts → index-CxZnepbh.d.mts} +187 -178
- package/dist/{index-DqmXn4Mz.d.mts.map → index-CxZnepbh.d.mts.map} +1 -1
- package/dist/{index-BvuXDx6d.d.mts → index-_BVsv12E.d.cts} +4 -4
- package/dist/{index-Bekk3wer.d.cts.map → index-_BVsv12E.d.cts.map} +1 -1
- package/dist/index.cjs +9 -9
- 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 +9 -9
- 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 +3 -3
- package/dist/index-lFyi52Xi.d.cts.map +0 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { BoxProps, ButtonProps, IconButtonProps, ImageProps, PropsOf, StackProps, TextProps, 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_runtime3 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 "wagmi/query";
|
|
13
13
|
import { CustomTokenInfo } from "@vechain/contract-getters";
|
|
@@ -21,7 +21,7 @@ import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, T
|
|
|
21
21
|
import { LogLevel, WalletSource } from "@vechain/dapp-kit";
|
|
22
22
|
import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
|
|
23
23
|
import { IconType } from "react-icons";
|
|
24
|
-
import * as
|
|
24
|
+
import * as _tanstack_query_core0 from "@tanstack/query-core";
|
|
25
25
|
import * as abitype0 from "abitype";
|
|
26
26
|
import { AbiParametersToPrimitiveTypes, ExtractAbiFunction, ExtractAbiFunctionNames } from "abitype";
|
|
27
27
|
|
|
@@ -56,7 +56,7 @@ declare const genesises: {
|
|
|
56
56
|
readonly main: CompressedBlockDetail;
|
|
57
57
|
readonly test: CompressedBlockDetail;
|
|
58
58
|
readonly solo: CompressedBlockDetail;
|
|
59
|
-
which(gid: string): "
|
|
59
|
+
which(gid: string): "test" | "main" | "solo" | undefined;
|
|
60
60
|
};
|
|
61
61
|
//#endregion
|
|
62
62
|
//#region src/config/index.d.ts
|
|
@@ -739,7 +739,7 @@ declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
|
739
739
|
* ```
|
|
740
740
|
*/
|
|
741
741
|
declare const useAppConfig: () => AppConfig;
|
|
742
|
-
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) =>
|
|
742
|
+
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime3.JSX.Element;
|
|
743
743
|
//#endregion
|
|
744
744
|
//#region src/providers/PrivyWalletProvider.d.ts
|
|
745
745
|
interface PrivyWalletProviderContextType {
|
|
@@ -782,7 +782,7 @@ declare const PrivyWalletProvider: ({
|
|
|
782
782
|
delegatorUrl?: string;
|
|
783
783
|
delegateAllTransactions: boolean;
|
|
784
784
|
genericDelegator?: boolean;
|
|
785
|
-
}) =>
|
|
785
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
786
786
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
787
787
|
//#endregion
|
|
788
788
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
@@ -800,7 +800,7 @@ declare const VechainKitThemeProvider: ({
|
|
|
800
800
|
children,
|
|
801
801
|
darkMode,
|
|
802
802
|
theme: customTheme
|
|
803
|
-
}: Props$42) =>
|
|
803
|
+
}: Props$42) => react_jsx_runtime3.JSX.Element;
|
|
804
804
|
//#endregion
|
|
805
805
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
806
806
|
type Props$41 = {
|
|
@@ -816,7 +816,7 @@ type LegalDocumentsContextType = {
|
|
|
816
816
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
817
817
|
declare const LegalDocumentsProvider: ({
|
|
818
818
|
children
|
|
819
|
-
}: Props$41) =>
|
|
819
|
+
}: Props$41) => react_jsx_runtime3.JSX.Element;
|
|
820
820
|
//#endregion
|
|
821
821
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
822
822
|
type Props$40 = {
|
|
@@ -857,7 +857,7 @@ declare const ConnectModal: ({
|
|
|
857
857
|
onClose,
|
|
858
858
|
initialContent,
|
|
859
859
|
preventAutoClose
|
|
860
|
-
}: Props$40) =>
|
|
860
|
+
}: Props$40) => react_jsx_runtime3.JSX.Element;
|
|
861
861
|
//#endregion
|
|
862
862
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
863
863
|
type Props$39 = {
|
|
@@ -865,7 +865,7 @@ type Props$39 = {
|
|
|
865
865
|
};
|
|
866
866
|
declare const MainContent: ({
|
|
867
867
|
setCurrentContent
|
|
868
|
-
}: Props$39) =>
|
|
868
|
+
}: Props$39) => react_jsx_runtime3.JSX.Element;
|
|
869
869
|
//#endregion
|
|
870
870
|
//#region src/components/ConnectModal/Contents/LoadingContent.d.ts
|
|
871
871
|
type LoadingContentProps = {
|
|
@@ -894,7 +894,7 @@ declare const LoadingContent: ({
|
|
|
894
894
|
onGoBack,
|
|
895
895
|
showBackButton,
|
|
896
896
|
providerIcon
|
|
897
|
-
}: LoadingContentProps) =>
|
|
897
|
+
}: LoadingContentProps) => react_jsx_runtime3.JSX.Element;
|
|
898
898
|
//#endregion
|
|
899
899
|
//#region src/components/ConnectModal/Contents/ErrorContent.d.ts
|
|
900
900
|
type ErrorContentProps = {
|
|
@@ -915,7 +915,7 @@ declare const ErrorContent: ({
|
|
|
915
915
|
onClose,
|
|
916
916
|
onTryAgain,
|
|
917
917
|
onGoBack
|
|
918
|
-
}: ErrorContentProps) =>
|
|
918
|
+
}: ErrorContentProps) => react_jsx_runtime3.JSX.Element;
|
|
919
919
|
//#endregion
|
|
920
920
|
//#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
|
|
921
921
|
type Props$38 = {
|
|
@@ -931,7 +931,7 @@ declare const EcosystemContent: ({
|
|
|
931
931
|
isLoading,
|
|
932
932
|
setCurrentContent,
|
|
933
933
|
showBackButton
|
|
934
|
-
}: Props$38) =>
|
|
934
|
+
}: Props$38) => react_jsx_runtime3.JSX.Element;
|
|
935
935
|
//#endregion
|
|
936
936
|
//#region src/components/ConnectModal/Contents/MoreOptionsContent.d.ts
|
|
937
937
|
type Props$37 = {
|
|
@@ -943,7 +943,7 @@ declare const MoreOptionsContent: ({
|
|
|
943
943
|
onClose,
|
|
944
944
|
setCurrentContent,
|
|
945
945
|
showBackButton
|
|
946
|
-
}: Props$37) =>
|
|
946
|
+
}: Props$37) => react_jsx_runtime3.JSX.Element;
|
|
947
947
|
//#endregion
|
|
948
948
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
949
949
|
interface ConnectionButtonProps {
|
|
@@ -973,7 +973,7 @@ declare const ConnectionButton: ({
|
|
|
973
973
|
style,
|
|
974
974
|
variant,
|
|
975
975
|
iconWidth
|
|
976
|
-
}: ConnectionButtonProps) =>
|
|
976
|
+
}: ConnectionButtonProps) => react_jsx_runtime3.JSX.Element;
|
|
977
977
|
//#endregion
|
|
978
978
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
979
979
|
/**
|
|
@@ -983,7 +983,7 @@ declare const ConnectionButton: ({
|
|
|
983
983
|
* the consumer dApp has no privy, useLoginModalContent hides this
|
|
984
984
|
* button entirely.
|
|
985
985
|
*/
|
|
986
|
-
declare const EmailLoginButton: () =>
|
|
986
|
+
declare const EmailLoginButton: () => react_jsx_runtime3.JSX.Element;
|
|
987
987
|
//#endregion
|
|
988
988
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
989
989
|
type Props$36 = {
|
|
@@ -995,7 +995,7 @@ declare const VeChainLoginButton: ({
|
|
|
995
995
|
isDark,
|
|
996
996
|
gridColumn,
|
|
997
997
|
setCurrentContent
|
|
998
|
-
}: Props$36) =>
|
|
998
|
+
}: Props$36) => react_jsx_runtime3.JSX.Element;
|
|
999
999
|
//#endregion
|
|
1000
1000
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
1001
1001
|
type Props$35 = {
|
|
@@ -1009,7 +1009,7 @@ declare const EcosystemButton: ({
|
|
|
1009
1009
|
appsInfo,
|
|
1010
1010
|
isLoading,
|
|
1011
1011
|
setCurrentContent
|
|
1012
|
-
}: Props$35) =>
|
|
1012
|
+
}: Props$35) => react_jsx_runtime3.JSX.Element;
|
|
1013
1013
|
//#endregion
|
|
1014
1014
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
1015
1015
|
type Props$34 = {
|
|
@@ -1021,7 +1021,7 @@ declare const PrivyButton: ({
|
|
|
1021
1021
|
isDark,
|
|
1022
1022
|
onViewMoreLogin,
|
|
1023
1023
|
gridColumn
|
|
1024
|
-
}: Props$34) =>
|
|
1024
|
+
}: Props$34) => react_jsx_runtime3.JSX.Element;
|
|
1025
1025
|
//#endregion
|
|
1026
1026
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
1027
1027
|
type Props$33 = {
|
|
@@ -1035,7 +1035,7 @@ declare const LoginWithGoogleButton: ({
|
|
|
1035
1035
|
isDark,
|
|
1036
1036
|
gridColumn,
|
|
1037
1037
|
isPrimary
|
|
1038
|
-
}: Props$33) =>
|
|
1038
|
+
}: Props$33) => react_jsx_runtime3.JSX.Element;
|
|
1039
1039
|
//#endregion
|
|
1040
1040
|
//#region src/components/ConnectModal/Components/LoginWithAppleButton.d.ts
|
|
1041
1041
|
type Props$32 = {
|
|
@@ -1051,7 +1051,7 @@ declare const LoginWithAppleButton: ({
|
|
|
1051
1051
|
isDark,
|
|
1052
1052
|
gridColumn,
|
|
1053
1053
|
isPrimary
|
|
1054
|
-
}: Props$32) =>
|
|
1054
|
+
}: Props$32) => react_jsx_runtime3.JSX.Element;
|
|
1055
1055
|
//#endregion
|
|
1056
1056
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
1057
1057
|
type Props$31 = {
|
|
@@ -1063,7 +1063,7 @@ declare const PasskeyLoginButton: ({
|
|
|
1063
1063
|
isDark,
|
|
1064
1064
|
gridColumn,
|
|
1065
1065
|
setCurrentContent
|
|
1066
|
-
}: Props$31) =>
|
|
1066
|
+
}: Props$31) => react_jsx_runtime3.JSX.Element;
|
|
1067
1067
|
//#endregion
|
|
1068
1068
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
1069
1069
|
type Props$30 = {
|
|
@@ -1073,7 +1073,7 @@ type Props$30 = {
|
|
|
1073
1073
|
declare const DappKitButton: ({
|
|
1074
1074
|
isDark,
|
|
1075
1075
|
gridColumn
|
|
1076
|
-
}: Props$30) =>
|
|
1076
|
+
}: Props$30) => react_jsx_runtime3.JSX.Element;
|
|
1077
1077
|
//#endregion
|
|
1078
1078
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
1079
1079
|
type Props$29 = {
|
|
@@ -1083,7 +1083,7 @@ type Props$29 = {
|
|
|
1083
1083
|
declare const VeChainWithPrivyLoginButton: ({
|
|
1084
1084
|
isDark,
|
|
1085
1085
|
gridColumn
|
|
1086
|
-
}: Props$29) =>
|
|
1086
|
+
}: Props$29) => react_jsx_runtime3.JSX.Element;
|
|
1087
1087
|
//#endregion
|
|
1088
1088
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
1089
1089
|
type Props$28 = {
|
|
@@ -1096,7 +1096,7 @@ declare const LoginWithGithubButton: ({
|
|
|
1096
1096
|
isDark,
|
|
1097
1097
|
gridColumn,
|
|
1098
1098
|
isPrimary
|
|
1099
|
-
}: Props$28) =>
|
|
1099
|
+
}: Props$28) => react_jsx_runtime3.JSX.Element;
|
|
1100
1100
|
//#endregion
|
|
1101
1101
|
//#region src/components/ConnectModal/Components/VeWorldButton.d.ts
|
|
1102
1102
|
type Props$27 = {
|
|
@@ -1116,7 +1116,7 @@ declare const VeWorldButton: ({
|
|
|
1116
1116
|
gridColumn,
|
|
1117
1117
|
setCurrentContent,
|
|
1118
1118
|
isPrimary
|
|
1119
|
-
}: Props$27) =>
|
|
1119
|
+
}: Props$27) => react_jsx_runtime3.JSX.Element;
|
|
1120
1120
|
//#endregion
|
|
1121
1121
|
//#region src/components/ConnectModal/Components/Sync2Button.d.ts
|
|
1122
1122
|
type Props$26 = {
|
|
@@ -1128,7 +1128,7 @@ declare const Sync2Button: ({
|
|
|
1128
1128
|
isDark,
|
|
1129
1129
|
gridColumn,
|
|
1130
1130
|
setCurrentContent
|
|
1131
|
-
}: Props$26) =>
|
|
1131
|
+
}: Props$26) => react_jsx_runtime3.JSX.Element;
|
|
1132
1132
|
//#endregion
|
|
1133
1133
|
//#region src/components/ConnectModal/Components/WalletConnectButton.d.ts
|
|
1134
1134
|
type Props$25 = {
|
|
@@ -1140,7 +1140,7 @@ declare const WalletConnectButton: ({
|
|
|
1140
1140
|
isDark,
|
|
1141
1141
|
gridColumn,
|
|
1142
1142
|
setCurrentContent
|
|
1143
|
-
}: Props$25) =>
|
|
1143
|
+
}: Props$25) => react_jsx_runtime3.JSX.Element;
|
|
1144
1144
|
//#endregion
|
|
1145
1145
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
1146
1146
|
type ConnectPopoverProps = {
|
|
@@ -1150,7 +1150,7 @@ type ConnectPopoverProps = {
|
|
|
1150
1150
|
declare const ConnectPopover: ({
|
|
1151
1151
|
isLoading,
|
|
1152
1152
|
buttonStyle
|
|
1153
|
-
}: ConnectPopoverProps) =>
|
|
1153
|
+
}: ConnectPopoverProps) => react_jsx_runtime3.JSX.Element;
|
|
1154
1154
|
//#endregion
|
|
1155
1155
|
//#region src/components/WalletButton/types.d.ts
|
|
1156
1156
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
@@ -1169,10 +1169,10 @@ declare const WalletButton: ({
|
|
|
1169
1169
|
buttonStyle,
|
|
1170
1170
|
connectionVariant,
|
|
1171
1171
|
label
|
|
1172
|
-
}: WalletButtonProps) =>
|
|
1172
|
+
}: WalletButtonProps) => react_jsx_runtime3.JSX.Element;
|
|
1173
1173
|
//#endregion
|
|
1174
1174
|
//#region src/components/WalletButton/SocialIcons.d.ts
|
|
1175
|
-
declare const SocialIcons: () =>
|
|
1175
|
+
declare const SocialIcons: () => react_jsx_runtime3.JSX.Element;
|
|
1176
1176
|
//#endregion
|
|
1177
1177
|
//#region src/components/TransactionModal/TransactionModal.d.ts
|
|
1178
1178
|
type TransactionModalProps = {
|
|
@@ -1202,7 +1202,7 @@ declare const TransactionModal: ({
|
|
|
1202
1202
|
txReceipt,
|
|
1203
1203
|
txError,
|
|
1204
1204
|
onTryAgain
|
|
1205
|
-
}: TransactionModalProps) =>
|
|
1205
|
+
}: TransactionModalProps) => react_jsx_runtime3.JSX.Element | null;
|
|
1206
1206
|
//#endregion
|
|
1207
1207
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
1208
1208
|
type Props$24 = {
|
|
@@ -1212,7 +1212,7 @@ type Props$24 = {
|
|
|
1212
1212
|
};
|
|
1213
1213
|
declare const ShareButtons: ({
|
|
1214
1214
|
description
|
|
1215
|
-
}: Props$24) =>
|
|
1215
|
+
}: Props$24) => react_jsx_runtime3.JSX.Element;
|
|
1216
1216
|
//#endregion
|
|
1217
1217
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
1218
1218
|
declare const TransactionModalContent: ({
|
|
@@ -1222,7 +1222,7 @@ declare const TransactionModalContent: ({
|
|
|
1222
1222
|
txReceipt,
|
|
1223
1223
|
txError,
|
|
1224
1224
|
onClose
|
|
1225
|
-
}: Omit<TransactionModalProps, "isOpen">) =>
|
|
1225
|
+
}: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime3.JSX.Element;
|
|
1226
1226
|
//#endregion
|
|
1227
1227
|
//#region src/components/TransactionToast/TransactionToast.d.ts
|
|
1228
1228
|
type TransactionToastProps = {
|
|
@@ -1242,7 +1242,7 @@ declare const TransactionToast: ({
|
|
|
1242
1242
|
txError,
|
|
1243
1243
|
onTryAgain,
|
|
1244
1244
|
description
|
|
1245
|
-
}: TransactionToastProps) =>
|
|
1245
|
+
}: TransactionToastProps) => react_jsx_runtime3.JSX.Element | null;
|
|
1246
1246
|
//#endregion
|
|
1247
1247
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
1248
1248
|
type Props$23 = {
|
|
@@ -1258,12 +1258,12 @@ declare const AccountMainContent: ({
|
|
|
1258
1258
|
wallet,
|
|
1259
1259
|
onClose,
|
|
1260
1260
|
switchFeedback
|
|
1261
|
-
}: Props$23) =>
|
|
1261
|
+
}: Props$23) => react_jsx_runtime3.JSX.Element;
|
|
1262
1262
|
//#endregion
|
|
1263
1263
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
1264
1264
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
1265
1265
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
1266
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
1266
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
|
|
1267
1267
|
[k: string]: {
|
|
1268
1268
|
website: string | undefined;
|
|
1269
1269
|
id: string;
|
|
@@ -1284,7 +1284,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
1284
1284
|
//#endregion
|
|
1285
1285
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
1286
1286
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
1287
|
-
declare const useFetchPrivyStatus: () =>
|
|
1287
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1288
1288
|
//#endregion
|
|
1289
1289
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
1290
1290
|
interface VeChainDomainResult {
|
|
@@ -1294,11 +1294,11 @@ interface VeChainDomainResult {
|
|
|
1294
1294
|
isPrimaryDomain: boolean;
|
|
1295
1295
|
}
|
|
1296
1296
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
1297
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
1297
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
|
|
1298
1298
|
//#endregion
|
|
1299
1299
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
1300
1300
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
1301
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
1301
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1302
1302
|
//#endregion
|
|
1303
1303
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
1304
1304
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1360,7 +1360,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1360
1360
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1361
1361
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1362
1362
|
*/
|
|
1363
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1363
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1364
1364
|
//#endregion
|
|
1365
1365
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1366
1366
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1388,7 +1388,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1388
1388
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1389
1389
|
* @returns The domains owned by the address
|
|
1390
1390
|
*/
|
|
1391
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1391
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1392
1392
|
domains: {
|
|
1393
1393
|
name: string;
|
|
1394
1394
|
}[];
|
|
@@ -1401,7 +1401,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1401
1401
|
* @param name - The VET domain name
|
|
1402
1402
|
* @returns The resolved avatar URL
|
|
1403
1403
|
*/
|
|
1404
|
-
declare const useGetAvatar: (name: string) =>
|
|
1404
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1405
1405
|
//#endregion
|
|
1406
1406
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1407
1407
|
/**
|
|
@@ -1413,7 +1413,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query20.UseQueryRe
|
|
|
1413
1413
|
*/
|
|
1414
1414
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1415
1415
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1416
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1416
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
|
|
1417
1417
|
//#endregion
|
|
1418
1418
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1419
1419
|
type UpdateTextRecordVariables = {
|
|
@@ -1446,7 +1446,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1446
1446
|
* @param domain The domain to get resolver for
|
|
1447
1447
|
* @returns The resolver address for the domain
|
|
1448
1448
|
*/
|
|
1449
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1449
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
|
|
1450
1450
|
//#endregion
|
|
1451
1451
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1452
1452
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1456,7 +1456,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1456
1456
|
* @param address The owner's address
|
|
1457
1457
|
* @returns The avatar URL for the address's primary domain
|
|
1458
1458
|
*/
|
|
1459
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1459
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1460
1460
|
//#endregion
|
|
1461
1461
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1462
1462
|
/**
|
|
@@ -1473,7 +1473,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1473
1473
|
* @param name - The VET domain name
|
|
1474
1474
|
* @returns The resolved avatar URL
|
|
1475
1475
|
*/
|
|
1476
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1476
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1477
1477
|
//#endregion
|
|
1478
1478
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1479
1479
|
type useUnsetDomainProps = {
|
|
@@ -1590,7 +1590,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1590
1590
|
* Hook to get the current roundId of allocations voting
|
|
1591
1591
|
* @returns the current roundId of allocations voting
|
|
1592
1592
|
*/
|
|
1593
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1593
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
|
|
1594
1594
|
//#endregion
|
|
1595
1595
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1596
1596
|
declare const useCustomTokens: () => {
|
|
@@ -1603,7 +1603,7 @@ declare const useCustomTokens: () => {
|
|
|
1603
1603
|
//#endregion
|
|
1604
1604
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1605
1605
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1606
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1606
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1607
1607
|
original: string;
|
|
1608
1608
|
scaled: string;
|
|
1609
1609
|
formatted: string;
|
|
@@ -1612,7 +1612,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query20.U
|
|
|
1612
1612
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1613
1613
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1614
1614
|
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string, decimals?: number) => (string | number | undefined)[];
|
|
1615
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1615
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1616
1616
|
original: string;
|
|
1617
1617
|
scaled: string;
|
|
1618
1618
|
formatted: string;
|
|
@@ -1625,14 +1625,14 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1625
1625
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1626
1626
|
declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1627
1627
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1628
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1628
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
|
|
1629
1629
|
//#endregion
|
|
1630
1630
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1631
1631
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1632
1632
|
type UseGetErc20BalanceOptions = {
|
|
1633
1633
|
enabled?: boolean;
|
|
1634
1634
|
};
|
|
1635
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) =>
|
|
1635
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query8.UseQueryResult<{
|
|
1636
1636
|
original: string;
|
|
1637
1637
|
scaled: string;
|
|
1638
1638
|
formatted: string;
|
|
@@ -1649,7 +1649,7 @@ declare const PRICE_FEED_IDS: {
|
|
|
1649
1649
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1650
1650
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1651
1651
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1652
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1652
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
1653
1653
|
//#endregion
|
|
1654
1654
|
//#region src/hooks/api/wallet/useOraclePriceChanges24h.d.ts
|
|
1655
1655
|
type PricePoint = {
|
|
@@ -1670,7 +1670,7 @@ type PriceChanges24h = Partial<Record<SupportedToken, number>>;
|
|
|
1670
1670
|
* `useTokenPriceHistory24h`, the portfolio chart) all derive from this single
|
|
1671
1671
|
* query so we never run the same RPC scan twice in a session.
|
|
1672
1672
|
*/
|
|
1673
|
-
declare const useOracleHistory24h: () =>
|
|
1673
|
+
declare const useOracleHistory24h: () => _tanstack_react_query8.UseQueryResult<OracleHistory24h, Error>;
|
|
1674
1674
|
declare const useOraclePriceChanges24h: () => {
|
|
1675
1675
|
data: Partial<Record<"B3TR" | "VET" | "VTHO" | "GBP" | "EUR", number>>;
|
|
1676
1676
|
};
|
|
@@ -1688,7 +1688,7 @@ declare const usePortfolioPriceHistory24h: (address?: string) => {
|
|
|
1688
1688
|
//#endregion
|
|
1689
1689
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1690
1690
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1691
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1691
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1692
1692
|
original: string;
|
|
1693
1693
|
scaled: string;
|
|
1694
1694
|
formatted: string;
|
|
@@ -1707,7 +1707,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1707
1707
|
* @param user - The user address.
|
|
1708
1708
|
* @returns The isPerson status.
|
|
1709
1709
|
*/
|
|
1710
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1710
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1711
1711
|
//#endregion
|
|
1712
1712
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1713
1713
|
type XApp = {
|
|
@@ -1745,7 +1745,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1745
1745
|
//#endregion
|
|
1746
1746
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1747
1747
|
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
|
|
1748
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1748
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1749
1749
|
id: string;
|
|
1750
1750
|
teamWalletAddress: `0x${string}`;
|
|
1751
1751
|
name: string;
|
|
@@ -1757,6 +1757,12 @@ declare const useRoundXApps: (roundId?: string) => _tanstack_react_query20.UseQu
|
|
|
1757
1757
|
type UseWalletReturnType = {
|
|
1758
1758
|
account: Wallet;
|
|
1759
1759
|
connectedWallet: Wallet;
|
|
1760
|
+
/** All accounts approved by the wallet (dapp-kit multi-account); single
|
|
1761
|
+
* entry for Privy / cross-app. The active one is `account`. */
|
|
1762
|
+
accounts: NonNullable<Wallet>[];
|
|
1763
|
+
/** Switch active account without reopening the wallet picker. No-op for
|
|
1764
|
+
* Privy / cross-app. */
|
|
1765
|
+
setActiveAccount: (address: string) => void;
|
|
1760
1766
|
smartAccount: SmartAccount;
|
|
1761
1767
|
privyUser: User | null;
|
|
1762
1768
|
connection: {
|
|
@@ -1809,6 +1815,17 @@ type UseSwitchWalletReturnType = {
|
|
|
1809
1815
|
setActiveWallet: (address: string) => void;
|
|
1810
1816
|
removeWallet: (address: string) => void;
|
|
1811
1817
|
isInAppBrowser: boolean;
|
|
1818
|
+
/**
|
|
1819
|
+
* Whether the wallet-switch UI should be exposed to the user.
|
|
1820
|
+
* - VeWorld in-app browser: requires the wallet to advertise
|
|
1821
|
+
* `thor_switchWallet` (`isSwitchWalletEnabled`).
|
|
1822
|
+
* - External browser (desktop or mobile) on dapp-kit: always true except
|
|
1823
|
+
* for WalletConnect, where the session exposes a single account and
|
|
1824
|
+
* doesn't support `wallet_requestPermissions` / `thor_switchWallet`,
|
|
1825
|
+
* so "Switch" would only trigger a full reconnect.
|
|
1826
|
+
* - Privy / social-login / cross-app: false (no dapp-kit connection).
|
|
1827
|
+
*/
|
|
1828
|
+
canSwitchWallet: boolean;
|
|
1812
1829
|
};
|
|
1813
1830
|
/**
|
|
1814
1831
|
* Hook for switching wallets
|
|
@@ -1859,7 +1876,7 @@ type XAppMetadata = {
|
|
|
1859
1876
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1860
1877
|
*/
|
|
1861
1878
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1862
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1879
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1863
1880
|
//#endregion
|
|
1864
1881
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1865
1882
|
/**
|
|
@@ -1874,7 +1891,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1874
1891
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1875
1892
|
*
|
|
1876
1893
|
*/
|
|
1877
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1894
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1878
1895
|
app: string;
|
|
1879
1896
|
share: number;
|
|
1880
1897
|
unallocatedShare: number;
|
|
@@ -1896,7 +1913,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1896
1913
|
* @param ipfsUri - The IPFS URI
|
|
1897
1914
|
* @returns The metadata from IPFS
|
|
1898
1915
|
*/
|
|
1899
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1916
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
|
|
1900
1917
|
//#endregion
|
|
1901
1918
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1902
1919
|
interface IpfsImage {
|
|
@@ -1923,14 +1940,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1923
1940
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1924
1941
|
* @returns The NFT media
|
|
1925
1942
|
*/
|
|
1926
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1943
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
|
|
1927
1944
|
/**
|
|
1928
1945
|
* Custom hook to fetch a list of IPFS images.
|
|
1929
1946
|
*
|
|
1930
1947
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1931
1948
|
* @returns An array of queries for each IPFS image URI.
|
|
1932
1949
|
*/
|
|
1933
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1950
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
|
|
1934
1951
|
//#endregion
|
|
1935
1952
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1936
1953
|
/**
|
|
@@ -1938,7 +1955,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1938
1955
|
* @param ipfsUris - The IPFS URIs
|
|
1939
1956
|
* @returns The metadata from IPFS for each URI
|
|
1940
1957
|
*/
|
|
1941
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1958
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
|
|
1942
1959
|
//#endregion
|
|
1943
1960
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1944
1961
|
declare const imageCompressionOptions: Options;
|
|
@@ -2197,7 +2214,7 @@ declare const useTransferHistory: (address?: string, {
|
|
|
2197
2214
|
isFetching: boolean;
|
|
2198
2215
|
isFetchingNextPage: boolean;
|
|
2199
2216
|
hasNextPage: boolean;
|
|
2200
|
-
fetchNextPage: (options?:
|
|
2217
|
+
fetchNextPage: (options?: _tanstack_react_query8.FetchNextPageOptions) => Promise<_tanstack_react_query8.InfiniteQueryObserverResult<_tanstack_react_query8.InfiniteData<{
|
|
2201
2218
|
items: TransferHistoryItem[];
|
|
2202
2219
|
hasNext: boolean;
|
|
2203
2220
|
}, unknown>, Error>>;
|
|
@@ -2214,7 +2231,7 @@ declare const useTokenTransferHistory: (address?: string, tokenAddress?: string
|
|
|
2214
2231
|
isFetching: boolean;
|
|
2215
2232
|
isFetchingNextPage: boolean;
|
|
2216
2233
|
hasNextPage: boolean;
|
|
2217
|
-
fetchNextPage: (options?:
|
|
2234
|
+
fetchNextPage: (options?: _tanstack_query_core0.FetchNextPageOptions) => Promise<_tanstack_query_core0.InfiniteQueryObserverResult<_tanstack_query_core0.InfiniteData<{
|
|
2218
2235
|
items: TransferHistoryItem[];
|
|
2219
2236
|
hasNext: boolean;
|
|
2220
2237
|
}, unknown>, Error>>;
|
|
@@ -2356,7 +2373,7 @@ declare const useOwnedNfts: (address?: string) => {
|
|
|
2356
2373
|
isFetching: boolean;
|
|
2357
2374
|
isFetchingNextPage: boolean;
|
|
2358
2375
|
hasNextPage: boolean;
|
|
2359
|
-
fetchNextPage: (options?:
|
|
2376
|
+
fetchNextPage: (options?: _tanstack_react_query8.FetchNextPageOptions) => Promise<_tanstack_react_query8.InfiniteQueryObserverResult<_tanstack_react_query8.InfiniteData<OwnedNftsPage, unknown>, Error>>;
|
|
2360
2377
|
isUnsupportedNetwork: boolean;
|
|
2361
2378
|
error: Error | null;
|
|
2362
2379
|
};
|
|
@@ -2388,7 +2405,7 @@ declare const useOwnedNftsFiltered: (address?: string) => {
|
|
|
2388
2405
|
isFetching: boolean;
|
|
2389
2406
|
isFetchingNextPage: boolean;
|
|
2390
2407
|
hasNextPage: boolean;
|
|
2391
|
-
fetchNextPage: (options?:
|
|
2408
|
+
fetchNextPage: (options?: _tanstack_query_core0.FetchNextPageOptions) => Promise<_tanstack_query_core0.InfiniteQueryObserverResult<_tanstack_query_core0.InfiniteData<{
|
|
2392
2409
|
items: OwnedNft[];
|
|
2393
2410
|
hasNext: boolean;
|
|
2394
2411
|
}, unknown>, Error>>;
|
|
@@ -2429,7 +2446,7 @@ declare const ConnectModalProvider: ({
|
|
|
2429
2446
|
children
|
|
2430
2447
|
}: {
|
|
2431
2448
|
children: ReactNode;
|
|
2432
|
-
}) =>
|
|
2449
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2433
2450
|
//#endregion
|
|
2434
2451
|
//#region src/hooks/modals/useAccountModal.d.ts
|
|
2435
2452
|
declare const useAccountModal: () => {
|
|
@@ -2441,7 +2458,7 @@ declare const AccountModalProvider: ({
|
|
|
2441
2458
|
children
|
|
2442
2459
|
}: {
|
|
2443
2460
|
children: ReactNode;
|
|
2444
|
-
}) =>
|
|
2461
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2445
2462
|
//#endregion
|
|
2446
2463
|
//#region src/hooks/modals/useTransactionModal.d.ts
|
|
2447
2464
|
declare const useTransactionModal: () => {
|
|
@@ -2453,7 +2470,7 @@ declare const TransactionModalProvider: ({
|
|
|
2453
2470
|
children
|
|
2454
2471
|
}: {
|
|
2455
2472
|
children: ReactNode;
|
|
2456
|
-
}) =>
|
|
2473
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2457
2474
|
//#endregion
|
|
2458
2475
|
//#region src/hooks/modals/useTransactionToast.d.ts
|
|
2459
2476
|
declare const useTransactionToast: () => {
|
|
@@ -2465,7 +2482,7 @@ declare const TransactionToastProvider: ({
|
|
|
2465
2482
|
children
|
|
2466
2483
|
}: {
|
|
2467
2484
|
children: ReactNode;
|
|
2468
|
-
}) =>
|
|
2485
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2469
2486
|
//#endregion
|
|
2470
2487
|
//#region src/hooks/modals/useWalletModal.d.ts
|
|
2471
2488
|
declare const useWalletModal: () => {
|
|
@@ -2477,7 +2494,7 @@ declare const WalletModalProvider: ({
|
|
|
2477
2494
|
children
|
|
2478
2495
|
}: {
|
|
2479
2496
|
children: ReactNode;
|
|
2480
|
-
}) =>
|
|
2497
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2481
2498
|
//#endregion
|
|
2482
2499
|
//#region src/hooks/modals/useChooseNameModal.d.ts
|
|
2483
2500
|
declare const useChooseNameModal: () => {
|
|
@@ -2489,7 +2506,7 @@ declare const ChooseNameModalProvider: ({
|
|
|
2489
2506
|
children
|
|
2490
2507
|
}: {
|
|
2491
2508
|
children: ReactNode;
|
|
2492
|
-
}) =>
|
|
2509
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2493
2510
|
//#endregion
|
|
2494
2511
|
//#region src/hooks/modals/useSendTokenModal.d.ts
|
|
2495
2512
|
declare const useSendTokenModal: () => {
|
|
@@ -2501,7 +2518,7 @@ declare const SendTokenModalProvider: ({
|
|
|
2501
2518
|
children
|
|
2502
2519
|
}: {
|
|
2503
2520
|
children: ReactNode;
|
|
2504
|
-
}) =>
|
|
2521
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2505
2522
|
//#endregion
|
|
2506
2523
|
//#region src/hooks/modals/useSwapTokenModal.d.ts
|
|
2507
2524
|
type SwapTokenModalOptions = {
|
|
@@ -2518,7 +2535,7 @@ declare const SwapTokenModalProvider: ({
|
|
|
2518
2535
|
children
|
|
2519
2536
|
}: {
|
|
2520
2537
|
children: ReactNode;
|
|
2521
|
-
}) =>
|
|
2538
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2522
2539
|
//#endregion
|
|
2523
2540
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
2524
2541
|
declare const useExploreEcosystemModal: () => {
|
|
@@ -2530,7 +2547,7 @@ declare const ExploreEcosystemModalProvider: ({
|
|
|
2530
2547
|
children
|
|
2531
2548
|
}: {
|
|
2532
2549
|
children: ReactNode;
|
|
2533
|
-
}) =>
|
|
2550
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2534
2551
|
//#endregion
|
|
2535
2552
|
//#region src/hooks/modals/useNotificationsModal.d.ts
|
|
2536
2553
|
declare const useNotificationsModal: () => {
|
|
@@ -2542,7 +2559,7 @@ declare const NotificationsModalProvider: ({
|
|
|
2542
2559
|
children
|
|
2543
2560
|
}: {
|
|
2544
2561
|
children: ReactNode;
|
|
2545
|
-
}) =>
|
|
2562
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2546
2563
|
//#endregion
|
|
2547
2564
|
//#region src/hooks/modals/useFAQModal.d.ts
|
|
2548
2565
|
declare const useFAQModal: () => {
|
|
@@ -2554,7 +2571,7 @@ declare const FAQModalProvider: ({
|
|
|
2554
2571
|
children
|
|
2555
2572
|
}: {
|
|
2556
2573
|
children: ReactNode;
|
|
2557
|
-
}) =>
|
|
2574
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2558
2575
|
//#endregion
|
|
2559
2576
|
//#region src/hooks/modals/useAccountCustomizationModal.d.ts
|
|
2560
2577
|
declare const useAccountCustomizationModal: () => {
|
|
@@ -2566,7 +2583,7 @@ declare const AccountCustomizationModalProvider: ({
|
|
|
2566
2583
|
children
|
|
2567
2584
|
}: {
|
|
2568
2585
|
children: ReactNode;
|
|
2569
|
-
}) =>
|
|
2586
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2570
2587
|
//#endregion
|
|
2571
2588
|
//#region src/hooks/modals/useReceiveModal.d.ts
|
|
2572
2589
|
declare const useReceiveModal: () => {
|
|
@@ -2578,7 +2595,7 @@ declare const ReceiveModalProvider: ({
|
|
|
2578
2595
|
children
|
|
2579
2596
|
}: {
|
|
2580
2597
|
children: ReactNode;
|
|
2581
|
-
}) =>
|
|
2598
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2582
2599
|
//#endregion
|
|
2583
2600
|
//#region src/hooks/modals/useLoginModalContent.d.ts
|
|
2584
2601
|
type LoginModalContentConfig = {
|
|
@@ -2608,7 +2625,7 @@ declare const UpgradeSmartAccountModalProvider: ({
|
|
|
2608
2625
|
children
|
|
2609
2626
|
}: {
|
|
2610
2627
|
children: ReactNode;
|
|
2611
|
-
}) =>
|
|
2628
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2612
2629
|
//#endregion
|
|
2613
2630
|
//#region src/hooks/modals/useProfileModal.d.ts
|
|
2614
2631
|
declare const useProfileModal: () => {
|
|
@@ -2620,7 +2637,7 @@ declare const ProfileModalProvider: ({
|
|
|
2620
2637
|
children
|
|
2621
2638
|
}: {
|
|
2622
2639
|
children: ReactNode;
|
|
2623
|
-
}) =>
|
|
2640
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2624
2641
|
//#endregion
|
|
2625
2642
|
//#region src/hooks/modals/useAccountModalOptions.d.ts
|
|
2626
2643
|
declare const useAccountModalOptions: () => {
|
|
@@ -2638,7 +2655,7 @@ declare const SettingsModalProvider: ({
|
|
|
2638
2655
|
children
|
|
2639
2656
|
}: {
|
|
2640
2657
|
children: ReactNode;
|
|
2641
|
-
}) =>
|
|
2658
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
2642
2659
|
//#endregion
|
|
2643
2660
|
//#region src/hooks/notifications/types.d.ts
|
|
2644
2661
|
type NotificationAction = {
|
|
@@ -2748,12 +2765,6 @@ type SetCurrentContent = React.Dispatch<React.SetStateAction<ConnectModalContent
|
|
|
2748
2765
|
/**
|
|
2749
2766
|
* Drives a dapp-kit wallet connection (setSource + connect) while reflecting
|
|
2750
2767
|
* progress in the ConnectModal's local sub-content state (loading/error).
|
|
2751
|
-
*
|
|
2752
|
-
* Uses the legacy `connect()` API rather than `connectV2()` because:
|
|
2753
|
-
* - WalletConnect's signer throws "not implemented" for V2.
|
|
2754
|
-
* - The VeWorld desktop extension also rejects V2 ("Attempt failed").
|
|
2755
|
-
* V2 is only reliable inside the VeWorld mobile in-app browser, which is
|
|
2756
|
-
* handled separately in ModalProvider.
|
|
2757
2768
|
*/
|
|
2758
2769
|
declare const useConnectWithDappKitSource: (source: WalletSource, setCurrentContent: SetCurrentContent) => {
|
|
2759
2770
|
connect: () => Promise<void>;
|
|
@@ -2805,7 +2816,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2805
2816
|
* );
|
|
2806
2817
|
* ```
|
|
2807
2818
|
*/
|
|
2808
|
-
declare const useAppHubApps: () =>
|
|
2819
|
+
declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
|
|
2809
2820
|
//#endregion
|
|
2810
2821
|
//#region src/utils/constants.d.ts
|
|
2811
2822
|
/** Tokens that cannot be swapped or transferred (e.g. governance voting tokens) */
|
|
@@ -3169,7 +3180,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
3169
3180
|
method: TMethod;
|
|
3170
3181
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
3171
3182
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
3172
|
-
}) =>
|
|
3183
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
|
|
3173
3184
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
3174
3185
|
thor,
|
|
3175
3186
|
calls,
|
|
@@ -3180,7 +3191,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
3180
3191
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
3181
3192
|
queryKey: string[];
|
|
3182
3193
|
enabled?: boolean;
|
|
3183
|
-
}) =>
|
|
3194
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
3184
3195
|
//#endregion
|
|
3185
3196
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
3186
3197
|
/**
|
|
@@ -3304,7 +3315,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
3304
3315
|
filterParams,
|
|
3305
3316
|
mapResponse,
|
|
3306
3317
|
nodeUrl
|
|
3307
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
3318
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
|
|
3308
3319
|
//#endregion
|
|
3309
3320
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
3310
3321
|
interface BuildClausesParams {
|
|
@@ -3549,7 +3560,7 @@ declare const useGenericDelegatorFeeEstimation: ({
|
|
|
3549
3560
|
tokens,
|
|
3550
3561
|
sendingAmount,
|
|
3551
3562
|
sendingTokenSymbol
|
|
3552
|
-
}: useGenericDelegatorFeeEstimationParams) =>
|
|
3563
|
+
}: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
|
|
3553
3564
|
usedToken: string;
|
|
3554
3565
|
}, Error>;
|
|
3555
3566
|
//#endregion
|
|
@@ -3563,7 +3574,7 @@ declare const useEstimateAllTokens: ({
|
|
|
3563
3574
|
clauses,
|
|
3564
3575
|
tokens,
|
|
3565
3576
|
enabled
|
|
3566
|
-
}: UseEstimateAllTokensParams) =>
|
|
3577
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
|
|
3567
3578
|
cost: number;
|
|
3568
3579
|
loading: boolean;
|
|
3569
3580
|
error?: string;
|
|
@@ -3580,7 +3591,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
3580
3591
|
* @param address The address of the account to get the balance for
|
|
3581
3592
|
* @returns The account balance
|
|
3582
3593
|
*/
|
|
3583
|
-
declare const useAccountBalance: (address?: string) =>
|
|
3594
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
3584
3595
|
balance: string;
|
|
3585
3596
|
energy: string;
|
|
3586
3597
|
}, Error>;
|
|
@@ -3593,7 +3604,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
3593
3604
|
* @param version - The version of the smart account implementation
|
|
3594
3605
|
* @returns The address of the smart account implementation
|
|
3595
3606
|
*/
|
|
3596
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
3607
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
3597
3608
|
//#endregion
|
|
3598
3609
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
3599
3610
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -3602,7 +3613,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
3602
3613
|
* Get the current account implementation version used by the smart account factory
|
|
3603
3614
|
* @returns The current account implementation version
|
|
3604
3615
|
*/
|
|
3605
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
3616
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
3606
3617
|
//#endregion
|
|
3607
3618
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
3608
3619
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -3612,7 +3623,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
3612
3623
|
* @param ownerAddress - The address of the owner of the smart account
|
|
3613
3624
|
* @returns The address of the smart account
|
|
3614
3625
|
*/
|
|
3615
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
3626
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
3616
3627
|
//#endregion
|
|
3617
3628
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
3618
3629
|
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
|
|
@@ -3622,7 +3633,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
|
|
|
3622
3633
|
* @param ownerAddress - The address of the owner of the smart account
|
|
3623
3634
|
* @returns The version of the smart account
|
|
3624
3635
|
*/
|
|
3625
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
3636
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
|
|
3626
3637
|
version: number;
|
|
3627
3638
|
isDeployed: boolean;
|
|
3628
3639
|
}, unknown>;
|
|
@@ -3635,7 +3646,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
3635
3646
|
* @param ownerAddress - The address of the owner of the smart account
|
|
3636
3647
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
3637
3648
|
*/
|
|
3638
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
3649
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3639
3650
|
//#endregion
|
|
3640
3651
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
3641
3652
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -3644,7 +3655,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
3644
3655
|
* Check if a smart account is deployed
|
|
3645
3656
|
* @returns True if the smart account is deployed, false otherwise
|
|
3646
3657
|
*/
|
|
3647
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
3658
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3648
3659
|
//#endregion
|
|
3649
3660
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
3650
3661
|
/**
|
|
@@ -3677,7 +3688,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
3677
3688
|
isDeployed: boolean;
|
|
3678
3689
|
}>;
|
|
3679
3690
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
3680
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
3691
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
3681
3692
|
address: undefined;
|
|
3682
3693
|
isDeployed?: undefined;
|
|
3683
3694
|
} | {
|
|
@@ -3695,7 +3706,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
3695
3706
|
* @param targetVersion - The version of the smart account to check for
|
|
3696
3707
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3697
3708
|
*/
|
|
3698
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
3709
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3699
3710
|
//#endregion
|
|
3700
3711
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
3701
3712
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -3706,7 +3717,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
3706
3717
|
* @param targetVersion - The target version of the smart account
|
|
3707
3718
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3708
3719
|
*/
|
|
3709
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
3720
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3710
3721
|
//#endregion
|
|
3711
3722
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
3712
3723
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -3731,7 +3742,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
3731
3742
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
3732
3743
|
* @returns the current block
|
|
3733
3744
|
*/
|
|
3734
|
-
declare const useCurrentBlock: () =>
|
|
3745
|
+
declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
|
|
3735
3746
|
//#endregion
|
|
3736
3747
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
3737
3748
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -3740,7 +3751,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
3740
3751
|
* Get the chain id
|
|
3741
3752
|
* @returns The chain id
|
|
3742
3753
|
*/
|
|
3743
|
-
declare const useGetChainId: () =>
|
|
3754
|
+
declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
3744
3755
|
//#endregion
|
|
3745
3756
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
3746
3757
|
/**
|
|
@@ -4020,7 +4031,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
4020
4031
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
4021
4032
|
* @returns Query result containing the transaction receipt
|
|
4022
4033
|
*/
|
|
4023
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
4034
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
|
|
4024
4035
|
//#endregion
|
|
4025
4036
|
//#region src/hooks/thor/transactions/useGasEstimate.d.ts
|
|
4026
4037
|
declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
|
|
@@ -4058,7 +4069,7 @@ declare const SendTokenContent: ({
|
|
|
4058
4069
|
initialAmount,
|
|
4059
4070
|
initialToAddressOrDomain,
|
|
4060
4071
|
onBack: parentOnBack
|
|
4061
|
-
}: SendTokenContentProps) =>
|
|
4072
|
+
}: SendTokenContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4062
4073
|
//#endregion
|
|
4063
4074
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
|
|
4064
4075
|
type SendTokenSummaryContentProps = {
|
|
@@ -4078,7 +4089,7 @@ declare const SendTokenSummaryContent: ({
|
|
|
4078
4089
|
amount,
|
|
4079
4090
|
selectedToken,
|
|
4080
4091
|
formattedTotalAmount
|
|
4081
|
-
}: SendTokenSummaryContentProps) =>
|
|
4092
|
+
}: SendTokenSummaryContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4082
4093
|
//#endregion
|
|
4083
4094
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
4084
4095
|
type Props$20 = {
|
|
@@ -4099,7 +4110,7 @@ declare const SelectTokenContent: ({
|
|
|
4099
4110
|
onBack,
|
|
4100
4111
|
showAllTokens,
|
|
4101
4112
|
excludedTokenSymbols
|
|
4102
|
-
}: Props$20) =>
|
|
4113
|
+
}: Props$20) => react_jsx_runtime3.JSX.Element;
|
|
4103
4114
|
//#endregion
|
|
4104
4115
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
4105
4116
|
type ReceiveTokenContentProps = {
|
|
@@ -4109,7 +4120,7 @@ type ReceiveTokenContentProps = {
|
|
|
4109
4120
|
declare const ReceiveTokenContent: ({
|
|
4110
4121
|
setCurrentContent,
|
|
4111
4122
|
onBack
|
|
4112
|
-
}: ReceiveTokenContentProps) =>
|
|
4123
|
+
}: ReceiveTokenContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4113
4124
|
//#endregion
|
|
4114
4125
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
4115
4126
|
type SwapTokenContentProps = {
|
|
@@ -4123,7 +4134,7 @@ declare const SwapTokenContent: ({
|
|
|
4123
4134
|
fromTokenAddress,
|
|
4124
4135
|
toTokenAddress,
|
|
4125
4136
|
onBack
|
|
4126
|
-
}: SwapTokenContentProps) =>
|
|
4137
|
+
}: SwapTokenContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4127
4138
|
//#endregion
|
|
4128
4139
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
4129
4140
|
type ChooseNameContentProps = {
|
|
@@ -4135,7 +4146,7 @@ declare const ChooseNameContent: ({
|
|
|
4135
4146
|
setCurrentContent,
|
|
4136
4147
|
onBack,
|
|
4137
4148
|
initialContentSource
|
|
4138
|
-
}: ChooseNameContentProps) =>
|
|
4149
|
+
}: ChooseNameContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4139
4150
|
//#endregion
|
|
4140
4151
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
|
|
4141
4152
|
type ChooseNameSearchContentProps = {
|
|
@@ -4147,7 +4158,7 @@ declare const ChooseNameSearchContent: ({
|
|
|
4147
4158
|
name: initialName,
|
|
4148
4159
|
setCurrentContent,
|
|
4149
4160
|
initialContentSource
|
|
4150
|
-
}: ChooseNameSearchContentProps) =>
|
|
4161
|
+
}: ChooseNameSearchContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4151
4162
|
//#endregion
|
|
4152
4163
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
|
|
4153
4164
|
type ChooseNameSummaryContentProps = {
|
|
@@ -4165,7 +4176,7 @@ declare const ChooseNameSummaryContent: ({
|
|
|
4165
4176
|
isOwnDomain,
|
|
4166
4177
|
isUnsetting,
|
|
4167
4178
|
initialContentSource
|
|
4168
|
-
}: ChooseNameSummaryContentProps) =>
|
|
4179
|
+
}: ChooseNameSummaryContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4169
4180
|
//#endregion
|
|
4170
4181
|
//#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
|
|
4171
4182
|
type FAQContentProps = {
|
|
@@ -4175,7 +4186,7 @@ type FAQContentProps = {
|
|
|
4175
4186
|
declare const FAQContent: ({
|
|
4176
4187
|
onGoBack,
|
|
4177
4188
|
showLanguageSelector
|
|
4178
|
-
}: FAQContentProps) =>
|
|
4189
|
+
}: FAQContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4179
4190
|
//#endregion
|
|
4180
4191
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
|
|
4181
4192
|
type AccountCustomizationContentProps = {
|
|
@@ -4185,7 +4196,7 @@ type AccountCustomizationContentProps = {
|
|
|
4185
4196
|
declare const CustomizationContent: ({
|
|
4186
4197
|
setCurrentContent,
|
|
4187
4198
|
initialContentSource
|
|
4188
|
-
}: AccountCustomizationContentProps) =>
|
|
4199
|
+
}: AccountCustomizationContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4189
4200
|
//#endregion
|
|
4190
4201
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
|
|
4191
4202
|
type CustomizationSummaryContentProps = {
|
|
@@ -4204,7 +4215,7 @@ declare const CustomizationSummaryContent: ({
|
|
|
4204
4215
|
setCurrentContent,
|
|
4205
4216
|
changes,
|
|
4206
4217
|
onDoneRedirectContent
|
|
4207
|
-
}: CustomizationSummaryContentProps) =>
|
|
4218
|
+
}: CustomizationSummaryContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4208
4219
|
//#endregion
|
|
4209
4220
|
//#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
|
|
4210
4221
|
type ProfileContentProps = {
|
|
@@ -4218,7 +4229,7 @@ declare const ProfileContent: ({
|
|
|
4218
4229
|
setCurrentContent,
|
|
4219
4230
|
onLogoutSuccess,
|
|
4220
4231
|
switchFeedback
|
|
4221
|
-
}: ProfileContentProps) =>
|
|
4232
|
+
}: ProfileContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4222
4233
|
//#endregion
|
|
4223
4234
|
//#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
|
|
4224
4235
|
type UpgradeSmartAccountContentProps = {
|
|
@@ -4230,7 +4241,7 @@ declare const UpgradeSmartAccountContent: ({
|
|
|
4230
4241
|
setCurrentContent,
|
|
4231
4242
|
handleClose,
|
|
4232
4243
|
initialContent
|
|
4233
|
-
}: UpgradeSmartAccountContentProps) =>
|
|
4244
|
+
}: UpgradeSmartAccountContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4234
4245
|
//#endregion
|
|
4235
4246
|
//#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
|
|
4236
4247
|
type AssetsContentProps = {
|
|
@@ -4238,7 +4249,7 @@ type AssetsContentProps = {
|
|
|
4238
4249
|
};
|
|
4239
4250
|
declare const AssetsContent: ({
|
|
4240
4251
|
setCurrentContent
|
|
4241
|
-
}: AssetsContentProps) =>
|
|
4252
|
+
}: AssetsContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4242
4253
|
//#endregion
|
|
4243
4254
|
//#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
|
|
4244
4255
|
type ManageCustomTokenContentProps = {
|
|
@@ -4246,7 +4257,7 @@ type ManageCustomTokenContentProps = {
|
|
|
4246
4257
|
};
|
|
4247
4258
|
declare const ManageCustomTokenContent: ({
|
|
4248
4259
|
setCurrentContent
|
|
4249
|
-
}: ManageCustomTokenContentProps) =>
|
|
4260
|
+
}: ManageCustomTokenContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4250
4261
|
//#endregion
|
|
4251
4262
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
4252
4263
|
type Props$19 = {
|
|
@@ -4254,7 +4265,7 @@ type Props$19 = {
|
|
|
4254
4265
|
};
|
|
4255
4266
|
declare const BridgeContent: ({
|
|
4256
4267
|
setCurrentContent
|
|
4257
|
-
}: Props$19) =>
|
|
4268
|
+
}: Props$19) => react_jsx_runtime3.JSX.Element;
|
|
4258
4269
|
//#endregion
|
|
4259
4270
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
4260
4271
|
type ChangeCurrencyContentProps = {
|
|
@@ -4262,7 +4273,7 @@ type ChangeCurrencyContentProps = {
|
|
|
4262
4273
|
};
|
|
4263
4274
|
declare const ChangeCurrencyContent: ({
|
|
4264
4275
|
setCurrentContent
|
|
4265
|
-
}: ChangeCurrencyContentProps) =>
|
|
4276
|
+
}: ChangeCurrencyContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4266
4277
|
//#endregion
|
|
4267
4278
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
4268
4279
|
type Props$18 = {
|
|
@@ -4270,7 +4281,7 @@ type Props$18 = {
|
|
|
4270
4281
|
};
|
|
4271
4282
|
declare const LanguageSettingsContent: ({
|
|
4272
4283
|
setCurrentContent
|
|
4273
|
-
}: Props$18) =>
|
|
4284
|
+
}: Props$18) => react_jsx_runtime3.JSX.Element;
|
|
4274
4285
|
//#endregion
|
|
4275
4286
|
//#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
|
|
4276
4287
|
type Props$17 = {
|
|
@@ -4278,7 +4289,7 @@ type Props$17 = {
|
|
|
4278
4289
|
};
|
|
4279
4290
|
declare const GasTokenSettingsContent: ({
|
|
4280
4291
|
setCurrentContent
|
|
4281
|
-
}: Props$17) =>
|
|
4292
|
+
}: Props$17) => react_jsx_runtime3.JSX.Element;
|
|
4282
4293
|
//#endregion
|
|
4283
4294
|
//#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
|
|
4284
4295
|
type SettingsContentProps = {
|
|
@@ -4288,7 +4299,7 @@ type SettingsContentProps = {
|
|
|
4288
4299
|
declare const SettingsContent: ({
|
|
4289
4300
|
setCurrentContent,
|
|
4290
4301
|
onLogoutSuccess
|
|
4291
|
-
}: SettingsContentProps) =>
|
|
4302
|
+
}: SettingsContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4292
4303
|
//#endregion
|
|
4293
4304
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
4294
4305
|
type TermsAndPrivacyContentProps = {
|
|
@@ -4296,7 +4307,7 @@ type TermsAndPrivacyContentProps = {
|
|
|
4296
4307
|
};
|
|
4297
4308
|
declare const TermsAndPrivacyContent: ({
|
|
4298
4309
|
onGoBack
|
|
4299
|
-
}: TermsAndPrivacyContentProps) =>
|
|
4310
|
+
}: TermsAndPrivacyContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4300
4311
|
//#endregion
|
|
4301
4312
|
//#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
|
|
4302
4313
|
type DisconnectConfirmContentProps = {
|
|
@@ -4312,7 +4323,7 @@ declare const DisconnectConfirmContent: ({
|
|
|
4312
4323
|
onClose,
|
|
4313
4324
|
showCloseButton,
|
|
4314
4325
|
text
|
|
4315
|
-
}: DisconnectConfirmContentProps) =>
|
|
4326
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4316
4327
|
//#endregion
|
|
4317
4328
|
//#region src/components/AccountModal/Contents/SelectWallet/SelectWalletContent.d.ts
|
|
4318
4329
|
type Props$16 = {
|
|
@@ -4325,7 +4336,7 @@ declare const SelectWalletContent: ({
|
|
|
4325
4336
|
setCurrentContent,
|
|
4326
4337
|
returnTo,
|
|
4327
4338
|
onLogoutSuccess: _onLogoutSuccess
|
|
4328
|
-
}: Props$16) =>
|
|
4339
|
+
}: Props$16) => react_jsx_runtime3.JSX.Element;
|
|
4329
4340
|
//#endregion
|
|
4330
4341
|
//#region src/components/AccountModal/Contents/SelectWallet/RemoveWalletConfirmContent.d.ts
|
|
4331
4342
|
type RemoveWalletConfirmContentProps = {
|
|
@@ -4341,7 +4352,7 @@ declare const RemoveWalletConfirmContent: ({
|
|
|
4341
4352
|
onConfirm,
|
|
4342
4353
|
onBack,
|
|
4343
4354
|
onClose
|
|
4344
|
-
}: RemoveWalletConfirmContentProps) =>
|
|
4355
|
+
}: RemoveWalletConfirmContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4345
4356
|
//#endregion
|
|
4346
4357
|
//#region src/components/AccountModal/Contents/TokenDetail/TokenDetailContent.d.ts
|
|
4347
4358
|
type TokenDetailContentProps = {
|
|
@@ -4351,7 +4362,7 @@ type TokenDetailContentProps = {
|
|
|
4351
4362
|
declare const TokenDetailContent: ({
|
|
4352
4363
|
setCurrentContent,
|
|
4353
4364
|
token
|
|
4354
|
-
}: TokenDetailContentProps) =>
|
|
4365
|
+
}: TokenDetailContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4355
4366
|
//#endregion
|
|
4356
4367
|
//#region src/components/AccountModal/Contents/NftDetail/NftDetailContent.d.ts
|
|
4357
4368
|
type NftDetailContentProps = {
|
|
@@ -4363,7 +4374,7 @@ declare const NftDetailContent: ({
|
|
|
4363
4374
|
setCurrentContent,
|
|
4364
4375
|
nft,
|
|
4365
4376
|
onBack
|
|
4366
|
-
}: NftDetailContentProps) =>
|
|
4377
|
+
}: NftDetailContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4367
4378
|
//#endregion
|
|
4368
4379
|
//#region src/components/AccountModal/Contents/NftCollection/NftCollectionContent.d.ts
|
|
4369
4380
|
type NftCollectionContentProps = {
|
|
@@ -4375,7 +4386,7 @@ declare const NftCollectionContent: ({
|
|
|
4375
4386
|
setCurrentContent,
|
|
4376
4387
|
collectionAddress,
|
|
4377
4388
|
onBack
|
|
4378
|
-
}: NftCollectionContentProps) =>
|
|
4389
|
+
}: NftCollectionContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4379
4390
|
//#endregion
|
|
4380
4391
|
//#region src/components/AccountModal/Contents/SendNft/SendNftContent.d.ts
|
|
4381
4392
|
type SendNftContentProps = {
|
|
@@ -4393,7 +4404,7 @@ declare const SendNftContent: ({
|
|
|
4393
4404
|
imageUrl,
|
|
4394
4405
|
initialToAddressOrDomain,
|
|
4395
4406
|
onBack
|
|
4396
|
-
}: SendNftContentProps) =>
|
|
4407
|
+
}: SendNftContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4397
4408
|
//#endregion
|
|
4398
4409
|
//#region src/components/AccountModal/Contents/SendNft/SendNftSummaryContent.d.ts
|
|
4399
4410
|
type SendNftSummaryContentProps = {
|
|
@@ -4413,7 +4424,7 @@ declare const SendNftSummaryContent: ({
|
|
|
4413
4424
|
toAddressOrDomain,
|
|
4414
4425
|
resolvedDomain,
|
|
4415
4426
|
resolvedAddress
|
|
4416
|
-
}: SendNftSummaryContentProps) =>
|
|
4427
|
+
}: SendNftSummaryContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4417
4428
|
//#endregion
|
|
4418
4429
|
//#region src/components/AccountModal/Contents/TransactionHistory/TransactionHistoryContent.d.ts
|
|
4419
4430
|
type TransactionHistoryContentProps = {
|
|
@@ -4428,7 +4439,7 @@ declare const TransactionHistoryContent: ({
|
|
|
4428
4439
|
setCurrentContent,
|
|
4429
4440
|
tokenFilter,
|
|
4430
4441
|
onBack
|
|
4431
|
-
}: TransactionHistoryContentProps) =>
|
|
4442
|
+
}: TransactionHistoryContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4432
4443
|
//#endregion
|
|
4433
4444
|
//#region src/components/AccountModal/Contents/TransactionHistory/TransactionDetailContent.d.ts
|
|
4434
4445
|
type TransactionDetailContentProps = {
|
|
@@ -4440,7 +4451,7 @@ declare const TransactionDetailContent: ({
|
|
|
4440
4451
|
setCurrentContent,
|
|
4441
4452
|
item,
|
|
4442
4453
|
onBack
|
|
4443
|
-
}: TransactionDetailContentProps) =>
|
|
4454
|
+
}: TransactionDetailContentProps) => react_jsx_runtime3.JSX.Element;
|
|
4444
4455
|
//#endregion
|
|
4445
4456
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
4446
4457
|
type CategoryFilter = string | null;
|
|
@@ -4593,7 +4604,7 @@ declare const AccountModal: ({
|
|
|
4593
4604
|
isOpen,
|
|
4594
4605
|
onClose,
|
|
4595
4606
|
initialContent
|
|
4596
|
-
}: Props$15) =>
|
|
4607
|
+
}: Props$15) => react_jsx_runtime3.JSX.Element;
|
|
4597
4608
|
//#endregion
|
|
4598
4609
|
//#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
|
|
4599
4610
|
interface AccountDetailsButtonProps {
|
|
@@ -4615,7 +4626,7 @@ declare const AccountDetailsButton: ({
|
|
|
4615
4626
|
onClick,
|
|
4616
4627
|
leftImage,
|
|
4617
4628
|
isActive
|
|
4618
|
-
}: AccountDetailsButtonProps) =>
|
|
4629
|
+
}: AccountDetailsButtonProps) => react_jsx_runtime3.JSX.Element;
|
|
4619
4630
|
//#endregion
|
|
4620
4631
|
//#region src/components/AccountModal/Components/ActionButton.d.ts
|
|
4621
4632
|
type ActionButtonProps = {
|
|
@@ -4657,7 +4668,7 @@ declare const ActionButton: ({
|
|
|
4657
4668
|
extraContent,
|
|
4658
4669
|
dataTestId,
|
|
4659
4670
|
variant
|
|
4660
|
-
}: ActionButtonProps) =>
|
|
4671
|
+
}: ActionButtonProps) => react_jsx_runtime3.JSX.Element;
|
|
4661
4672
|
//#endregion
|
|
4662
4673
|
//#region src/components/AccountModal/Components/AccountSelector.d.ts
|
|
4663
4674
|
type Props$14 = {
|
|
@@ -4677,7 +4688,7 @@ declare const AccountSelector: ({
|
|
|
4677
4688
|
onClose,
|
|
4678
4689
|
mt,
|
|
4679
4690
|
style
|
|
4680
|
-
}: Props$14) =>
|
|
4691
|
+
}: Props$14) => react_jsx_runtime3.JSX.Element;
|
|
4681
4692
|
//#endregion
|
|
4682
4693
|
//#region src/components/AccountModal/Components/BalanceSection.d.ts
|
|
4683
4694
|
declare const BalanceSection: ({
|
|
@@ -4688,7 +4699,7 @@ declare const BalanceSection: ({
|
|
|
4688
4699
|
mb?: number;
|
|
4689
4700
|
mt?: number;
|
|
4690
4701
|
onAssetsClick?: () => void;
|
|
4691
|
-
}) =>
|
|
4702
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
4692
4703
|
//#endregion
|
|
4693
4704
|
//#region src/components/AccountModal/Components/QuickActionsSection.d.ts
|
|
4694
4705
|
type Props$13 = {
|
|
@@ -4698,7 +4709,7 @@ type Props$13 = {
|
|
|
4698
4709
|
declare const QuickActionsSection: ({
|
|
4699
4710
|
mt,
|
|
4700
4711
|
setCurrentContent
|
|
4701
|
-
}: Props$13) =>
|
|
4712
|
+
}: Props$13) => react_jsx_runtime3.JSX.Element | null;
|
|
4702
4713
|
//#endregion
|
|
4703
4714
|
//#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
|
|
4704
4715
|
type FeatureAnnouncementCardProps = {
|
|
@@ -4706,16 +4717,16 @@ type FeatureAnnouncementCardProps = {
|
|
|
4706
4717
|
};
|
|
4707
4718
|
declare const FeatureAnnouncementCard: ({
|
|
4708
4719
|
setCurrentContent
|
|
4709
|
-
}: FeatureAnnouncementCardProps) =>
|
|
4720
|
+
}: FeatureAnnouncementCardProps) => react_jsx_runtime3.JSX.Element;
|
|
4710
4721
|
//#endregion
|
|
4711
4722
|
//#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
|
|
4712
|
-
declare const ExchangeWarningAlert: () =>
|
|
4723
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime3.JSX.Element;
|
|
4713
4724
|
//#endregion
|
|
4714
4725
|
//#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
|
|
4715
|
-
declare const DomainRequiredAlert: () =>
|
|
4726
|
+
declare const DomainRequiredAlert: () => react_jsx_runtime3.JSX.Element;
|
|
4716
4727
|
//#endregion
|
|
4717
4728
|
//#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
|
|
4718
|
-
declare const CrossAppConnectionSecurityCard: () =>
|
|
4729
|
+
declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime3.JSX.Element;
|
|
4719
4730
|
//#endregion
|
|
4720
4731
|
//#region src/components/common/ModalBackButton.d.ts
|
|
4721
4732
|
type BackButtonProps = {
|
|
@@ -4724,7 +4735,7 @@ type BackButtonProps = {
|
|
|
4724
4735
|
declare const ModalBackButton: ({
|
|
4725
4736
|
onClick,
|
|
4726
4737
|
...props
|
|
4727
|
-
}: BackButtonProps) =>
|
|
4738
|
+
}: BackButtonProps) => react_jsx_runtime3.JSX.Element;
|
|
4728
4739
|
//#endregion
|
|
4729
4740
|
//#region src/components/common/AddressDisplay.d.ts
|
|
4730
4741
|
type Props$12 = {
|
|
@@ -4733,22 +4744,20 @@ type Props$12 = {
|
|
|
4733
4744
|
style?: PropsOf<typeof VStack>;
|
|
4734
4745
|
showHumanAddress?: boolean;
|
|
4735
4746
|
setCurrentContent?: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
4736
|
-
onLogout?: () => void;
|
|
4737
4747
|
};
|
|
4738
4748
|
declare const AddressDisplay: ({
|
|
4739
4749
|
wallet,
|
|
4740
4750
|
label,
|
|
4741
4751
|
style,
|
|
4742
4752
|
showHumanAddress,
|
|
4743
|
-
setCurrentContent
|
|
4744
|
-
|
|
4745
|
-
}: Props$12) => react_jsx_runtime0.JSX.Element;
|
|
4753
|
+
setCurrentContent
|
|
4754
|
+
}: Props$12) => react_jsx_runtime3.JSX.Element;
|
|
4746
4755
|
//#endregion
|
|
4747
4756
|
//#region src/components/common/VersionFooter.d.ts
|
|
4748
4757
|
type Props$11 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
4749
4758
|
declare const VersionFooter: ({
|
|
4750
4759
|
...props
|
|
4751
|
-
}: Props$11) =>
|
|
4760
|
+
}: Props$11) => react_jsx_runtime3.JSX.Element;
|
|
4752
4761
|
//#endregion
|
|
4753
4762
|
//#region src/components/common/StickyHeaderContainer.d.ts
|
|
4754
4763
|
type Props$10 = {
|
|
@@ -4759,7 +4768,7 @@ declare const useStickyHeaderContext: () => {
|
|
|
4759
4768
|
};
|
|
4760
4769
|
declare const StickyHeaderContainer: ({
|
|
4761
4770
|
children
|
|
4762
|
-
}: Props$10) =>
|
|
4771
|
+
}: Props$10) => react_jsx_runtime3.JSX.Element;
|
|
4763
4772
|
//#endregion
|
|
4764
4773
|
//#region src/components/common/StickyFooterContainer.d.ts
|
|
4765
4774
|
type Props$9 = {
|
|
@@ -4767,7 +4776,7 @@ type Props$9 = {
|
|
|
4767
4776
|
};
|
|
4768
4777
|
declare const StickyFooterContainer: ({
|
|
4769
4778
|
children
|
|
4770
|
-
}: Props$9) =>
|
|
4779
|
+
}: Props$9) => react_jsx_runtime3.JSX.Element;
|
|
4771
4780
|
//#endregion
|
|
4772
4781
|
//#region src/components/common/BaseModal.d.ts
|
|
4773
4782
|
type BaseModalProps = {
|
|
@@ -4816,7 +4825,7 @@ declare const BaseModal: ({
|
|
|
4816
4825
|
mobileMaxHeight,
|
|
4817
4826
|
desktopMinHeight,
|
|
4818
4827
|
desktopMaxHeight
|
|
4819
|
-
}: BaseModalProps) =>
|
|
4828
|
+
}: BaseModalProps) => react_jsx_runtime3.JSX.Element;
|
|
4820
4829
|
//#endregion
|
|
4821
4830
|
//#region src/components/common/AssetButton.d.ts
|
|
4822
4831
|
type AssetButtonProps = ButtonProps & {
|
|
@@ -4837,7 +4846,7 @@ declare const AssetButton: ({
|
|
|
4837
4846
|
onClick,
|
|
4838
4847
|
priceChange24hPct,
|
|
4839
4848
|
...buttonProps
|
|
4840
|
-
}: AssetButtonProps) =>
|
|
4849
|
+
}: AssetButtonProps) => react_jsx_runtime3.JSX.Element;
|
|
4841
4850
|
//#endregion
|
|
4842
4851
|
//#region src/components/common/AddressDisplayCard.d.ts
|
|
4843
4852
|
type AddressDisplayCardProps = {
|
|
@@ -4857,7 +4866,7 @@ declare const AddressDisplayCard: ({
|
|
|
4857
4866
|
hideAddress,
|
|
4858
4867
|
balance,
|
|
4859
4868
|
tokenAddress
|
|
4860
|
-
}: AddressDisplayCardProps) =>
|
|
4869
|
+
}: AddressDisplayCardProps) => react_jsx_runtime3.JSX.Element;
|
|
4861
4870
|
//#endregion
|
|
4862
4871
|
//#region src/components/common/ModalFAQButton.d.ts
|
|
4863
4872
|
type FAQButtonProps = {
|
|
@@ -4866,13 +4875,13 @@ type FAQButtonProps = {
|
|
|
4866
4875
|
declare const ModalFAQButton: ({
|
|
4867
4876
|
onClick,
|
|
4868
4877
|
...props
|
|
4869
|
-
}: FAQButtonProps) =>
|
|
4878
|
+
}: FAQButtonProps) => react_jsx_runtime3.JSX.Element;
|
|
4870
4879
|
//#endregion
|
|
4871
4880
|
//#region src/components/common/ScrollToTopWrapper.d.ts
|
|
4872
4881
|
declare const ScrollToTopWrapper: ({
|
|
4873
4882
|
children,
|
|
4874
4883
|
...props
|
|
4875
|
-
}: StackProps) =>
|
|
4884
|
+
}: StackProps) => react_jsx_runtime3.JSX.Element;
|
|
4876
4885
|
//#endregion
|
|
4877
4886
|
//#region src/components/common/AccountAvatar.d.ts
|
|
4878
4887
|
type AccountAvatarProps = {
|
|
@@ -4882,7 +4891,7 @@ type AccountAvatarProps = {
|
|
|
4882
4891
|
declare const AccountAvatar: ({
|
|
4883
4892
|
wallet,
|
|
4884
4893
|
props
|
|
4885
|
-
}: AccountAvatarProps) =>
|
|
4894
|
+
}: AccountAvatarProps) => react_jsx_runtime3.JSX.Element;
|
|
4886
4895
|
//#endregion
|
|
4887
4896
|
//#region src/components/common/TransactionButtonAndStatus.d.ts
|
|
4888
4897
|
type TransactionButtonAndStatusProps = {
|
|
@@ -4924,7 +4933,7 @@ declare const TransactionButtonAndStatus: ({
|
|
|
4924
4933
|
isLoadingGasEstimation,
|
|
4925
4934
|
showGasEstimationError,
|
|
4926
4935
|
context
|
|
4927
|
-
}: TransactionButtonAndStatusProps) =>
|
|
4936
|
+
}: TransactionButtonAndStatusProps) => react_jsx_runtime3.JSX.Element;
|
|
4928
4937
|
//#endregion
|
|
4929
4938
|
//#region src/components/common/ModalNotificationButton.d.ts
|
|
4930
4939
|
type NotificationButtonProps = {
|
|
@@ -4935,7 +4944,7 @@ declare const ModalNotificationButton: ({
|
|
|
4935
4944
|
onClick,
|
|
4936
4945
|
hasUnreadNotifications,
|
|
4937
4946
|
...props
|
|
4938
|
-
}: NotificationButtonProps) =>
|
|
4947
|
+
}: NotificationButtonProps) => react_jsx_runtime3.JSX.Element;
|
|
4939
4948
|
//#endregion
|
|
4940
4949
|
//#region src/components/common/GasFeeSummary.d.ts
|
|
4941
4950
|
interface GasFeeSummaryProps {
|
|
@@ -4971,7 +4980,7 @@ declare const GasFeeTokenSelector: ({
|
|
|
4971
4980
|
availableTokens,
|
|
4972
4981
|
tokenEstimations,
|
|
4973
4982
|
walletAddress
|
|
4974
|
-
}: GasFeeTokenSelectorProps) =>
|
|
4983
|
+
}: GasFeeTokenSelectorProps) => react_jsx_runtime3.JSX.Element;
|
|
4975
4984
|
//#endregion
|
|
4976
4985
|
//#region src/components/common/InlineFeedback.d.ts
|
|
4977
4986
|
type Props$8 = {
|
|
@@ -4983,7 +4992,7 @@ declare const InlineFeedback: ({
|
|
|
4983
4992
|
message,
|
|
4984
4993
|
duration,
|
|
4985
4994
|
onClose
|
|
4986
|
-
}: Props$8) =>
|
|
4995
|
+
}: Props$8) => react_jsx_runtime3.JSX.Element;
|
|
4987
4996
|
//#endregion
|
|
4988
4997
|
//#region src/components/common/WalletSwitchFeedback.d.ts
|
|
4989
4998
|
type Props$7 = {
|
|
@@ -5000,7 +5009,7 @@ type Props$7 = {
|
|
|
5000
5009
|
*/
|
|
5001
5010
|
declare const WalletSwitchFeedback: ({
|
|
5002
5011
|
showFeedback
|
|
5003
|
-
}: Props$7) =>
|
|
5012
|
+
}: Props$7) => react_jsx_runtime3.JSX.Element | null;
|
|
5004
5013
|
//#endregion
|
|
5005
5014
|
//#region src/components/common/PriceChangeBadge.d.ts
|
|
5006
5015
|
type Props$6 = TextProps & {
|
|
@@ -5011,7 +5020,7 @@ declare const PriceChangeBadge: ({
|
|
|
5011
5020
|
valuePct,
|
|
5012
5021
|
showSuffix,
|
|
5013
5022
|
...textProps
|
|
5014
|
-
}: Props$6) =>
|
|
5023
|
+
}: Props$6) => react_jsx_runtime3.JSX.Element | null;
|
|
5015
5024
|
//#endregion
|
|
5016
5025
|
//#region src/components/common/AddressOrDomainLabel.d.ts
|
|
5017
5026
|
type Props$5 = TextProps & {
|
|
@@ -5028,7 +5037,7 @@ declare const AddressOrDomainLabel: ({
|
|
|
5028
5037
|
headLen,
|
|
5029
5038
|
tailLen,
|
|
5030
5039
|
...textProps
|
|
5031
|
-
}: Props$5) =>
|
|
5040
|
+
}: Props$5) => react_jsx_runtime3.JSX.Element;
|
|
5032
5041
|
//#endregion
|
|
5033
5042
|
//#region src/components/common/CopyIconButton.d.ts
|
|
5034
5043
|
type Props$4 = Omit<IconButtonProps, 'aria-label' | 'icon' | 'onClick'> & {
|
|
@@ -5041,7 +5050,7 @@ declare const CopyIconButton: ({
|
|
|
5041
5050
|
size,
|
|
5042
5051
|
variant,
|
|
5043
5052
|
...rest
|
|
5044
|
-
}: Props$4) =>
|
|
5053
|
+
}: Props$4) => react_jsx_runtime3.JSX.Element;
|
|
5045
5054
|
//#endregion
|
|
5046
5055
|
//#region src/components/common/PriceChart.d.ts
|
|
5047
5056
|
type Props$3 = BoxProps & {
|
|
@@ -5068,7 +5077,7 @@ declare const PriceChart: ({
|
|
|
5068
5077
|
interactive,
|
|
5069
5078
|
formatValue,
|
|
5070
5079
|
...boxProps
|
|
5071
|
-
}: Props$3) =>
|
|
5080
|
+
}: Props$3) => react_jsx_runtime3.JSX.Element | null;
|
|
5072
5081
|
//#endregion
|
|
5073
5082
|
//#region src/components/common/StatusScreen.d.ts
|
|
5074
5083
|
type Status = 'success' | 'error';
|
|
@@ -5111,7 +5120,7 @@ declare const StatusScreen: ({
|
|
|
5111
5120
|
bodyExtras,
|
|
5112
5121
|
footerExtras,
|
|
5113
5122
|
hideCloseButton
|
|
5114
|
-
}: StatusScreenProps) =>
|
|
5123
|
+
}: StatusScreenProps) => react_jsx_runtime3.JSX.Element;
|
|
5115
5124
|
//#endregion
|
|
5116
5125
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
5117
5126
|
type SuccessfulOperationContentProps = {
|
|
@@ -5141,7 +5150,7 @@ declare const UpgradeSmartAccountModal: ({
|
|
|
5141
5150
|
isOpen,
|
|
5142
5151
|
onClose,
|
|
5143
5152
|
style
|
|
5144
|
-
}: Props$2) =>
|
|
5153
|
+
}: Props$2) => react_jsx_runtime3.JSX.Element;
|
|
5145
5154
|
//#endregion
|
|
5146
5155
|
//#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
|
|
5147
5156
|
type Props$1 = {
|
|
@@ -5156,7 +5165,7 @@ declare const LegalDocumentsModal: ({
|
|
|
5156
5165
|
onAgree,
|
|
5157
5166
|
handleLogout,
|
|
5158
5167
|
onlyOptionalDocuments
|
|
5159
|
-
}: Props$1) =>
|
|
5168
|
+
}: Props$1) => react_jsx_runtime3.JSX.Element;
|
|
5160
5169
|
//#endregion
|
|
5161
5170
|
//#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
|
|
5162
5171
|
type Props = {
|
|
@@ -5168,7 +5177,7 @@ declare const LegalDocumentItem: ({
|
|
|
5168
5177
|
document,
|
|
5169
5178
|
register,
|
|
5170
5179
|
isText
|
|
5171
|
-
}: Props) =>
|
|
5180
|
+
}: Props) => react_jsx_runtime3.JSX.Element;
|
|
5172
5181
|
//#endregion
|
|
5173
5182
|
//#region src/providers/ModalProvider.d.ts
|
|
5174
5183
|
type AccountModalOptions = {
|
|
@@ -5203,7 +5212,7 @@ declare const ModalProvider: ({
|
|
|
5203
5212
|
children
|
|
5204
5213
|
}: {
|
|
5205
5214
|
children: ReactNode;
|
|
5206
|
-
}) =>
|
|
5215
|
+
}) => react_jsx_runtime3.JSX.Element;
|
|
5207
5216
|
//#endregion
|
|
5208
5217
|
export { SendNftSummaryContentProps as $, useAccountModal as $a, EcosystemButton as $c, TogglePassportCheck as $i, ExecuteBatchWithAuthorizationSignData as $l, getAccountBalanceQueryKey as $n, getXAppMetadata as $o, removeLocalStorageItem as $r, getAvatarLegacy as $s, useThor$1 as $t, StickyFooterContainer as A, ReceiveModalProvider as Aa, getPrivyAppInfoQueryKey as Ac, toIPFSURL as Ai, CostLevel as Al, getSmartAccount as An, TransferHistoryItem as Ao, GetEventsKeyParams as Ar, useGetTokenUsdPrice as As, CustomizationSummaryContentProps as At, QuickActionsSection as B, SwapTokenModalProvider as Ba, WalletButtonProps as Bc, getPicassoImage as Bi, GasTokenInfo as Bl, useHasV1SmartAccount as Bn, useIpfsMetadatas as Bo, useCurrentLanguage as Br, getB3trBalanceQueryKey as Bs, SwapTokenContent as Bt, TransactionButtonAndStatusProps as C, useSettingsModal as Ca, getEnsRecordExistsQueryKey as Cc, XNodeStrengthLevelToName as Ci, VechainKitProviderProps as Cl, getUpgradeRequiredForAccount as Cn, useStargatePositions as Co, useSyncableLocalStorage as Cr, useOracleHistory24h as Cs, AssetsContent as Ct, AddressDisplayCard as D, UpgradeSmartAccountModalProvider as Da, fetchPrivyStatus as Dc, xNodeToGMstartingLevel as Di, LegalDocumentAgreement as Dl, getUpgradeRequiredQueryKey as Dn, IndexerTransfer as Do, buildBatchAuthorizationTypedData as Dr, SupportedToken as Ds, ProfileContent as Dt, ModalFAQButton as E, useProfileModal as Ea, useVechainDomain as Ec, gmNfts as Ei, EnrichedLegalDocument as El, getUpgradeRequired as En, useTransferHistory as Eo, BuildClausesParams as Er, PRICE_FEED_IDS as Es, UpgradeSmartAccountContentProps as Et, ModalBackButton as F, useFAQModal as Fa, ShareButtons as Fc, isValidAddress as Fi, TransactionCost as Fl, getIsDeployed as Fn, useSingleImageUpload as Fo, useScrollToTop as Fr, getTokenInfo$1 as Fs, ChooseNameSummaryContentProps as Ft, AccountModal as G, useChooseNameModal as Ga, VeWorldButton as Gc, DEFAULT_GAS_TOKEN_PREFERENCES as Gi, ENS_TEXT_RECORDS as Gl, useGetAccountAddress as Gn, useIpfsImage as Go, useMultipleClausesCall as Gr, useTotalBalance as Gs, SendTokenSummaryContent as Gt, AccountSelector as H, SendTokenModalProvider as Ha, ConnectPopover as Hc, humanDomain as Hi, GasTokenSelection as Hl, useGetAccountVersion as Hn, MAX_IMAGE_SIZE as Ho, getCallClauseQueryKey as Hr, useCustomTokens as Hs, ReceiveTokenContent as Ht, CrossAppConnectionSecurityCard as I, NotificationsModalProvider as Ia, TransactionModal as Ic, leftPadWithZeros as Ii, VthoPerGasAtSpeed as Il, getIsDeployedQueryKey as In, UploadedImage as Io, useIsPWA as Ir, useGetCustomTokenInfo as Is, ChooseNameSearchContent as It, TransactionDetailContent as J, TransactionToastProvider as Ja, DappKitButton as Jc, NON_TRANSFERABLE_TOKEN_SYMBOLS as Ji, CURRENCY_SYMBOLS as Jl, useCurrentAccountImplementationVersion as Jn, getIpfsMetadataQueryKey as Jo, getLocalStorageItem as Jr, ExchangeRates as Js, useDAppKitWallet as Jt, AccountModalContentTypes as K, WalletModalProvider as Ka, LoginWithGithubButton as Kc, DEFAULT_PRIVY_ECOSYSTEM_APPS as Ki, TextRecords as Kl, getCurrentAccountImplementationVersion as Kn, useIpfsImageList as Ko, copyToClipboard as Kr, TokenWithValue as Ks, SendTokenContent as Kt, DomainRequiredAlert as L, useNotificationsModal as La, TransactionModalProps as Lc, regexPattern as Li, calculateTotalCost as Ll, useIsSmartAccountDeployed as Ln, compressImages as Lo, useGetNodeUrl as Lr, TokenWithBalance as Ls, ChooseNameSearchContentProps as Lt, useStickyHeaderContext as M, AccountCustomizationModalProvider as Ma, AccountMainContent as Mc, validateIpfsUri as Mi, EstimatedGas as Ml, useSmartAccount as Mn, VTHO_TOKEN_ADDRESS as Mo, decodeEventLog$1 as Mr, getErc20BalanceQueryKey as Ms, CustomizationContent as Mt, VersionFooter as N, useAccountCustomizationModal as Na, TransactionToast as Nc, compareAddresses as Ni, EstimationResponse as Nl, useRefreshSmartAccountQueries as Nn, useSwapQuotes as No, getEventsKey as Nr, useGetErc20Balance as Ns, FAQContent as Nt, AssetButton as O, useUpgradeSmartAccountModal as Oa, useFetchPrivyStatus as Oc, convertUriToUrl as Oi, LegalDocumentSource as Ol, useUpgradeRequired as On, TransferDirection as Oo, buildSingleAuthorizationTypedData as Or, getTokenUsdPrice as Os, ProfileContentProps as Ot, AddressDisplay as P, FAQModalProvider as Pa, TransactionModalContent as Pc, compareListOfAddresses as Pi, Rate as Pl, useRefreshFactoryQueries as Pn, useSwapTransaction as Po, useEvents as Pr, getCustomTokenInfoQueryKey as Ps, ChooseNameSummaryContent as Pt, SendNftSummaryContent as Q, AccountModalProvider as Qa, PrivyButton as Qc, TOKEN_LOGO_COMPONENTS as Qi, EnhancedClause as Ql, getAccountBalance as Qn, XAppMetadata as Qo, isOnline as Qr, useUnsetDomain as Qs, useSetWalletRecovery as Qt, ExchangeWarningAlert as R, ExploreEcosystemModalProvider as Ra, SocialIcons as Rc, randomTransactionUser as Ri, formatGasCost as Rl, getHasV1SmartAccount as Rn, imageCompressionOptions as Ro, useFeatureAnnouncement as Rr, getCustomTokenBalanceQueryKey as Rs, ChooseNameContent as Rt, TransactionButtonAndStatus as S, SettingsModalProvider as Sa, useClaimVeWorldSubdomain as Sc, NodeStrengthLevelToImage as Si, VeChainKitProvider as Sl, useUpgradeSmartAccount as Sn, StargatePositionsResult as So, useEcosystemShortcuts as Sr, PricePoint as Ss, ManageCustomTokenContentProps as St, ScrollToTopWrapper as T, ProfileModalProvider as Ta, getVechainDomainQueryKey as Tc, buildQueryString as Ti, useVeChainKitConfig as Tl, useUpgradeRequiredForAccount as Tn, getTransferHistoryQueryKey as To, useLocalStorage as Tr, useTokenPriceHistory24h as Ts, UpgradeSmartAccountContent as Tt, ActionButton as U, useSendTokenModal as Ua, WalletConnectButton as Uc, humanNumber as Ui, GasTokenType as Ul, getAccountAddress as Un, getIpfsImage as Uo, getCallClauseQueryKeyWithArgs as Ur, getCurrentAllocationsRoundIdQueryKey as Us, ReceiveTokenContentProps as Ut, BalanceSection as V, useSwapTokenModal as Va, WalletDisplayVariant as Vc, humanAddress as Vi, GasTokenPreferences as Vl, getAccountVersionQueryKey as Vn, IpfsImage as Vo, useCurrency as Vr, useGetB3trBalance as Vs, SwapTokenContentProps as Vt, AccountDetailsButton as W, ChooseNameModalProvider as Wa, Sync2Button as Wc, isZero as Wi, TransactionSpeed as Wl, getAccountAddressQueryKey as Wn, getIpfsImageQueryKey as Wo, useCallClause as Wr, useCurrentAllocationsRoundId as Ws, SelectTokenContent as Wt, TransactionHistoryContent as X, TransactionModalProvider as Xa, LoginWithAppleButton as Xc, SUPPORTED_GAS_TOKENS as Xi, CrossAppConnectionCache as Xl, getAccountImplementationAddressQueryKey as Xn, getXAppsSharesQueryKey as Xo, hasNavigator as Xr, WalletTokenBalance as Xs, useMfaEnrollment as Xt, TransactionDetailContentProps as Y, useTransactionToast as Ya, PasskeyLoginButton as Yc, PrivyEcosystemApp as Yi, ConnectionSource as Yl, getAccountImplementationAddress as Yn, useIpfsMetadata as Yo, getWindowOrigin as Yr, useTokenPrices as Ys, useDAppKitWalletModal as Yt, TransactionHistoryContentProps as Z, useTransactionModal as Za, LoginWithGoogleButton as Zc, TOKEN_LOGOS as Zi, ENSRecords as Zl, useAccountImplementationAddress as Zn, useXAppsShares as Zo, isBrowser as Zr, useTokenBalances as Zs, usePrivy$1 as Zt, WalletSwitchFeedback as _, useLoginWithPasskey$1 as _a, useGetDomainsOfAddress as _c, isRejectionError as _i, AccountQuickAction as _l, getChainId as _n, LpPositionToken as _o, getDepositAccount as _r, getVot3BalanceQueryKey as _s, LanguageSettingsContent as _t, LegalDocumentItem as a, getGenericDelegatorUrl as aa, useGetResolverAddress as ac, ViewFunctionResult as ai, ErrorContent as al, useBuildTransaction as an, getNftBlacklistQueryKey as ao, useGasTokenSelection as ar, useWalletMetadata as as, NftDetailContentProps as at, TokenBalance as au, GasFeeSummary as b, useNotificationAlerts as ba, buildVetDomainClauses as bc, EconomicNodeStrengthLevelToName as bi, VeChainKitConfig as bl, currentBlockQueryKey as bn, useNavigatorPosition as bo, useCrossAppConnectionCache as br, OracleHistory24h as bs, BridgeContent as bt, UpgradeSmartAccountModal as c, AppHubApp as ca, getTextRecords as cc, executeMultipleClausesCall as ci, ConnectModal as cl, buildERC721Clauses as cn, useOwnedNfts as co, GENERIC_DELEGATOR_LOCAL_ESTIMATE_TIMEOUT_MS as cr, getRoundXAppsQueryKey as cs, RemoveWalletConfirmContent as ct, VePassportUserStatus as cu, StatusScreen as d, useAppHubApps as da, getAvatarQueryKey as dc, compare as di, useLegalDocuments as dl, useTransferERC20 as dn, NftMetadata as do, computeCorrectedTotalGasNoFeePayer as dr, useRefreshBalances as ds, DisconnectConfirmContent as dt, getConfig as du, VECHAIN_KIT_COOKIES_CONFIG as ea, getAvatarLegacyQueryKey as ec, safeQuerySelector as ei, VeChainLoginButton as el, VECHAIN_KIT_QUERY_KEYS as en, ConnectModalProvider as eo, useAccountBalance as er, useXAppMetadata as es, SendNftContent as et, ExecuteWithAuthorizationSignData as eu, StatusScreenProps as f, useConnectWithDappKitSource as fa, useGetAvatar as fc, isInvalid as fi, VechainKitThemeProvider as fl, UseSendTransactionReturnValue as fn, OwnedNft as fo, convertGasToGasTokenAmount as fr, MostVotedAppsInRoundReturnType as fs, DisconnectConfirmContentProps as ft, PriceChangeBadge as g, useLoginWithOAuth$1 as ga, getDomainsOfAddressQueryKey as gc, validate as gi, usePrivyWalletProvider as gl, getEventLogs as gn, LpPosition as go, estimateGas as gr, useIsPerson as gs, GasTokenSettingsContent as gt, AddressOrDomainLabel as h, CrossAppLoginIntent as ha, getDomainsOfAddress as hc, removePrefix as hi, PrivyWalletProviderContextType as hl, getAllEventLogs as hn, useJuicyPosition as ho, estimateAndBuildTxBody as hr, getIsPersonQueryKey as hs, SettingsContentProps as ht, DAppKitWalletButton as i, getENV as ia, getResolverAddressQueryKey as ic, MultipleClausesCallReturnType as ii, EcosystemContent as il, BuildTransactionProps as in, useOwnedNftsFiltered as io, useGenericDelegatorFeeEstimationParams as ir, useWalletStorage as is, NftDetailContent as it, SmartAccount as iu, StickyHeaderContainer as j, useReceiveModal as ja, useFetchAppInfo as jc, uploadBlobToIPFS as ji, DepositAccount as jl, getSmartAccountQueryKey as jn, VET_TOKEN_SENTINEL as jo, UseEventsParams as jr, UseGetErc20BalanceOptions as js, AccountCustomizationContentProps as jt, BaseModal as k, useLoginModalContent as ka, fetchPrivyAppInfo as kc, resolveMediaTypeFromMimeType as ki, LegalDocumentType as kl, SmartAccountReturnType as kn, TransferEventType as ko, useBuildClauses as kr, getTokenUsdPriceQueryKey as ks, CustomizationSummaryContent as kt, UpgradeSmartAccountModalContentsTypes as l, fetchAppHubApps as la, getTextRecordsQueryKey as lc, isValidUrl as li, ConnectModalContentsTypes as ll, useTransferERC721 as ln, IndexerNft as lo, GENERIC_DELEGATOR_WRAPPER_OVERHEAD_GAS as lr, useRoundXApps as ls, RemoveWalletConfirmContentProps as lt, Wallet as lu, CopyIconButton as m, useLoginWithVeChain as ma, DomainsResponse as mc, normalize as mi, PrivyWalletProvider as ml, GetEventsProps as mn, JuicyPositionResult as mo, delegateAuthorized as mr, useMostVotedAppsInRound as ms, SettingsContent as mt, ModalProvider as n, VECHAIN_KIT_TERMS_CONFIG as na, getAvatarOfAddressQueryKey as nc, setLocalStorageItem as ni, ConnectionButton as nl, txReceiptQueryKey as nn, useNftCollectionName as no, useEstimateAllTokens as nr, useSwitchWallet as ns, NftCollectionContent as nt, PrivyAppInfo as nu, LegalDocumentsModal as o, getKitSponsoredDelegatorUrl as oa, buildClauses as oc, buildCallClauses as oi, LoadingContent as ol, buildVETClauses as on, useNftBlacklist as oo, GENERIC_DELEGATOR_FEE_PAYER_OVERHEAD_GAS as or, UseWalletReturnType as os, TokenDetailContent as ot, TransactionStatus as ou, PriceChart as p, UseLoginWithVeChainOptions as pa, Domain as pc, isValid as pi, useVechainKitThemeConfig as pl, useSendTransaction as pn, JuicyAssetPosition as po, decodeRawTx as pr, XApp as ps, TermsAndPrivacyContent as pt, SwitchFeedback as q, useWalletModal as qa, VeChainWithPrivyLoginButton as qc, ENV as qi, CURRENCY as ql, getCurrentAccountImplementationVersionQueryKey as qn, getIpfsMetadata as qo, getDocumentTitle as qr, useTokensWithValues as qs, ThorClient$1 as qt, useModal as r, VECHAIN_PRIVY_APP_ID as ra, useGetAvatarOfAddress as rc, MultipleClausesCallParameters as ri, MoreOptionsContent as rl, useTxReceipt as rn, useNftMetadata as ro, useGenericDelegatorFeeEstimation as rr, StoredWallet as rs, NftCollectionContentProps as rt, PrivyLoginMethod as ru, LegalDocumentsModalContentsTypes as s, notFoundImage as sa, useUpdateTextRecord as sc, executeCallClause as si, MainContent as sl, useTransferVET as sn, getOwnedNftsQueryKey as so, GENERIC_DELEGATOR_GAS_SAFETY_MULTIPLIER as sr, useWallet$1 as ss, TokenDetailContentProps as st, TransactionStatusErrorType as su, AccountModalOptions as t, VECHAIN_KIT_STORAGE_KEYS as ta, useGetAvatarLegacy as tc, safeWindowOpen as ti, EmailLoginButton as tl, useGasEstimate as tn, useConnectModal as to, UseEstimateAllTokensParams as tr, UseSwitchWalletReturnType as ts, SendNftContentProps as tt, NFTMediaType as tu, UpgradeSmartAccountModalStyle as u, getAppHubAppsQueryKey as ua, useGetTextRecords as uc, addPrefix as ui, LegalDocumentsProvider as ul, buildERC20Clauses as un, NftAttribute as uo, computeCorrectedGasTokenCost as ur, useRefreshMetadata as us, SelectWalletContent as ut, AppConfig as uu, InlineFeedback as v, useSignTypedData$1 as va, getIsDomainProtectedQueryKey as vc, simpleHash as vi, LegalDocument as vl, getChainIdQueryKey as vn, useBetterSwapLpPositions as vo, signVip191Transaction as vr, useGetVot3Balance as vs, ChangeCurrencyContent as vt, AccountAvatar as w, useAccountModalOptions as wa, useEnsRecordExists as wc, allNodeStrengthLevelToName as wi, useAppConfig as wl, getUpgradeRequiredForAccountQueryKey as wn, useTokenTransferHistory as wo, LocalStorageKey as wr, useOraclePriceChanges24h as ws, AssetsContentProps as wt, ModalNotificationButton as x, useNotifications as xa, useClaimVetDomain as xc, MinXNodeLevel as xi, VeChainKitContext as xl, useCurrentBlock as xn, StargatePosition as xo, EcosystemShortcut as xr, PriceChanges24h as xs, ManageCustomTokenContent as xt, GasFeeTokenSelector as y, useSignMessage$1 as ya, useIsDomainProtected as yc, TIME as yi, LegalDocumentOptions as yl, useGetChainId as yn, NavigatorPosition as yo, useGenericDelegator as yr, usePortfolioPriceHistory24h as ys, ChangeCurrencyContentProps as yt, FeatureAnnouncementCard as z, useExploreEcosystemModal as za, WalletButton as zc, formatTokenBalance as zi, GasTokenEstimate as zl, getHasV1SmartAccountQueryKey as zn, useUploadImages as zo, useCurrentCurrency as zr, useGetCustomTokenBalances as zs, ChooseNameContentProps as zt };
|
|
5209
|
-
//# sourceMappingURL=index-
|
|
5218
|
+
//# sourceMappingURL=index-CxZnepbh.d.mts.map
|