@vechain/vechain-kit 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/index.d.cts +1 -1
- package/dist/assets/index.d.mts +1 -1
- package/dist/{index-CX-PoQpp.d.mts → index-BJiGRuYS.d.mts} +143 -143
- package/dist/index-BJiGRuYS.d.mts.map +1 -0
- package/dist/{index-BB3iebWm.d.mts → index-Bs6t5GxR.d.mts} +4 -4
- package/dist/{index-BB3iebWm.d.mts.map → index-Bs6t5GxR.d.mts.map} +1 -1
- package/dist/{index-DSMUkHcK.d.cts → index-u3CPquCV.d.cts} +4 -4
- package/dist/{index-DSMUkHcK.d.cts.map → index-u3CPquCV.d.cts.map} +1 -1
- package/dist/{index-BSgtiDLw.d.cts → index-wCp9v8PQ.d.cts} +50 -50
- package/dist/{index-CX-PoQpp.d.mts.map → index-wCp9v8PQ.d.cts.map} +1 -1
- package/dist/index.cjs +5 -5
- 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 +4 -4
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.cts +2 -2
- package/dist/utils/index.d.mts +2 -2
- package/package.json +1 -1
- package/dist/index-BSgtiDLw.d.cts.map +0 -1
|
@@ -11,7 +11,7 @@ import { LogLevel, WalletSource } from "@vechain/dapp-kit";
|
|
|
11
11
|
import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
|
|
12
12
|
import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
|
|
13
13
|
import { IconType } from "react-icons";
|
|
14
|
-
import * as
|
|
14
|
+
import * as _tanstack_react_query16 from "@tanstack/react-query";
|
|
15
15
|
import { UseQueryOptions } from "@tanstack/react-query";
|
|
16
16
|
import { z } from "zod";
|
|
17
17
|
import { CustomTokenInfo } from "@vechain/contract-getters";
|
|
@@ -952,7 +952,7 @@ declare const AccountMainContent: ({
|
|
|
952
952
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
953
953
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
954
954
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
955
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
955
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query16.UseQueryResult<{
|
|
956
956
|
[k: string]: {
|
|
957
957
|
website: string | undefined;
|
|
958
958
|
id: string;
|
|
@@ -973,7 +973,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
973
973
|
//#endregion
|
|
974
974
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
975
975
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
976
|
-
declare const useFetchPrivyStatus: () =>
|
|
976
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query16.UseQueryResult<string, Error>;
|
|
977
977
|
//#endregion
|
|
978
978
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
979
979
|
interface VeChainDomainResult {
|
|
@@ -983,11 +983,11 @@ interface VeChainDomainResult {
|
|
|
983
983
|
isPrimaryDomain: boolean;
|
|
984
984
|
}
|
|
985
985
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
986
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
986
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query16.UseQueryResult<VeChainDomainResult, Error>;
|
|
987
987
|
//#endregion
|
|
988
988
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
989
989
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
990
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
990
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
991
991
|
//#endregion
|
|
992
992
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
993
993
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1049,7 +1049,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1049
1049
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1050
1050
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1051
1051
|
*/
|
|
1052
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1052
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
1053
1053
|
//#endregion
|
|
1054
1054
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1055
1055
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1077,7 +1077,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1077
1077
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1078
1078
|
* @returns The domains owned by the address
|
|
1079
1079
|
*/
|
|
1080
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1080
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1081
1081
|
domains: {
|
|
1082
1082
|
name: string;
|
|
1083
1083
|
}[];
|
|
@@ -1090,7 +1090,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1090
1090
|
* @param name - The VET domain name
|
|
1091
1091
|
* @returns The resolved avatar URL
|
|
1092
1092
|
*/
|
|
1093
|
-
declare const useGetAvatar: (name: string) =>
|
|
1093
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query16.UseQueryResult<string | null, Error>;
|
|
1094
1094
|
//#endregion
|
|
1095
1095
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1096
1096
|
/**
|
|
@@ -1102,7 +1102,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryRes
|
|
|
1102
1102
|
*/
|
|
1103
1103
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1104
1104
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1105
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1105
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query16.UseQueryResult<TextRecords, Error>;
|
|
1106
1106
|
//#endregion
|
|
1107
1107
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1108
1108
|
type UpdateTextRecordVariables = {
|
|
@@ -1135,7 +1135,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1135
1135
|
* @param domain The domain to get resolver for
|
|
1136
1136
|
* @returns The resolver address for the domain
|
|
1137
1137
|
*/
|
|
1138
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1138
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query16.UseQueryResult<`0x${string}`, unknown>;
|
|
1139
1139
|
//#endregion
|
|
1140
1140
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1141
1141
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1145,7 +1145,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1145
1145
|
* @param address The owner's address
|
|
1146
1146
|
* @returns The avatar URL for the address's primary domain
|
|
1147
1147
|
*/
|
|
1148
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1148
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query16.UseQueryResult<string, Error>;
|
|
1149
1149
|
//#endregion
|
|
1150
1150
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1151
1151
|
/**
|
|
@@ -1162,7 +1162,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1162
1162
|
* @param name - The VET domain name
|
|
1163
1163
|
* @returns The resolved avatar URL
|
|
1164
1164
|
*/
|
|
1165
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1165
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query16.UseQueryResult<string | null, Error>;
|
|
1166
1166
|
//#endregion
|
|
1167
1167
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1168
1168
|
type useUnsetDomainProps = {
|
|
@@ -1271,7 +1271,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1271
1271
|
* Hook to get the current roundId of allocations voting
|
|
1272
1272
|
* @returns the current roundId of allocations voting
|
|
1273
1273
|
*/
|
|
1274
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1274
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query16.UseQueryResult<string, unknown>;
|
|
1275
1275
|
//#endregion
|
|
1276
1276
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1277
1277
|
declare const useCustomTokens: () => {
|
|
@@ -1284,7 +1284,7 @@ declare const useCustomTokens: () => {
|
|
|
1284
1284
|
//#endregion
|
|
1285
1285
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1286
1286
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1287
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1287
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1288
1288
|
original: string;
|
|
1289
1289
|
scaled: string;
|
|
1290
1290
|
formatted: string;
|
|
@@ -1293,7 +1293,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.Us
|
|
|
1293
1293
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1294
1294
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1295
1295
|
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
|
|
1296
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1296
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1297
1297
|
original: string;
|
|
1298
1298
|
scaled: string;
|
|
1299
1299
|
formatted: string;
|
|
@@ -1306,11 +1306,11 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1306
1306
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1307
1307
|
declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1308
1308
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1309
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1309
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query16.UseQueryResult<CustomTokenInfo, Error>;
|
|
1310
1310
|
//#endregion
|
|
1311
1311
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1312
1312
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1313
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string) =>
|
|
1313
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1314
1314
|
original: string;
|
|
1315
1315
|
scaled: string;
|
|
1316
1316
|
formatted: string;
|
|
@@ -1327,11 +1327,11 @@ declare const PRICE_FEED_IDS: {
|
|
|
1327
1327
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1328
1328
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1329
1329
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1330
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1330
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query16.UseQueryResult<number, Error>;
|
|
1331
1331
|
//#endregion
|
|
1332
1332
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1333
1333
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1334
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1334
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1335
1335
|
original: string;
|
|
1336
1336
|
scaled: string;
|
|
1337
1337
|
formatted: string;
|
|
@@ -1350,7 +1350,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1350
1350
|
* @param user - The user address.
|
|
1351
1351
|
* @returns The isPerson status.
|
|
1352
1352
|
*/
|
|
1353
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1353
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
1354
1354
|
//#endregion
|
|
1355
1355
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1356
1356
|
type XApp = {
|
|
@@ -1387,8 +1387,8 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1387
1387
|
};
|
|
1388
1388
|
//#endregion
|
|
1389
1389
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1390
|
-
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) =>
|
|
1391
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1390
|
+
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
|
|
1391
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1392
1392
|
id: string;
|
|
1393
1393
|
teamWalletAddress: `0x${string}`;
|
|
1394
1394
|
name: string;
|
|
@@ -1471,7 +1471,7 @@ type XAppMetadata = {
|
|
|
1471
1471
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1472
1472
|
*/
|
|
1473
1473
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1474
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1474
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query16.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1475
1475
|
//#endregion
|
|
1476
1476
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1477
1477
|
/**
|
|
@@ -1486,7 +1486,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1486
1486
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1487
1487
|
*
|
|
1488
1488
|
*/
|
|
1489
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1489
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1490
1490
|
app: string;
|
|
1491
1491
|
share: number;
|
|
1492
1492
|
unallocatedShare: number;
|
|
@@ -1508,7 +1508,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1508
1508
|
* @param ipfsUri - The IPFS URI
|
|
1509
1509
|
* @returns The metadata from IPFS
|
|
1510
1510
|
*/
|
|
1511
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1511
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query16.UseQueryResult<_tanstack_react_query16.NoInfer<T$1>, Error>;
|
|
1512
1512
|
//#endregion
|
|
1513
1513
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1514
1514
|
interface IpfsImage {
|
|
@@ -1535,14 +1535,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1535
1535
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1536
1536
|
* @returns The NFT media
|
|
1537
1537
|
*/
|
|
1538
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1538
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query16.UseQueryResult<IpfsImage, Error>;
|
|
1539
1539
|
/**
|
|
1540
1540
|
* Custom hook to fetch a list of IPFS images.
|
|
1541
1541
|
*
|
|
1542
1542
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1543
1543
|
* @returns An array of queries for each IPFS image URI.
|
|
1544
1544
|
*/
|
|
1545
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1545
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query16.UseQueryResult<IpfsImage, Error>[];
|
|
1546
1546
|
//#endregion
|
|
1547
1547
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1548
1548
|
/**
|
|
@@ -1550,7 +1550,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1550
1550
|
* @param ipfsUris - The IPFS URIs
|
|
1551
1551
|
* @returns The metadata from IPFS for each URI
|
|
1552
1552
|
*/
|
|
1553
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1553
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query16.UseQueryResult<T$1, Error>[];
|
|
1554
1554
|
//#endregion
|
|
1555
1555
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1556
1556
|
declare const imageCompressionOptions: Options;
|
|
@@ -2092,7 +2092,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2092
2092
|
* );
|
|
2093
2093
|
* ```
|
|
2094
2094
|
*/
|
|
2095
|
-
declare const useAppHubApps: () =>
|
|
2095
|
+
declare const useAppHubApps: () => _tanstack_react_query16.UseQueryResult<AppHubApp[], Error>;
|
|
2096
2096
|
//#endregion
|
|
2097
2097
|
//#region src/utils/constants.d.ts
|
|
2098
2098
|
declare const TOKEN_LOGOS: Record<string, string>;
|
|
@@ -2426,7 +2426,7 @@ declare const getCallClauseQueryKeyWithArgs: <TAbi extends Abi, TMethod extends
|
|
|
2426
2426
|
address: string;
|
|
2427
2427
|
method: TMethod;
|
|
2428
2428
|
args?: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2429
|
-
}) =>
|
|
2429
|
+
}) => unknown[];
|
|
2430
2430
|
declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFunctionNames<TAbi, "pure" | "view">, TData = ViewFunctionResult<TAbi, TMethod>>({
|
|
2431
2431
|
address,
|
|
2432
2432
|
abi,
|
|
@@ -2439,7 +2439,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
2439
2439
|
method: TMethod;
|
|
2440
2440
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2441
2441
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
2442
|
-
}) =>
|
|
2442
|
+
}) => _tanstack_react_query16.UseQueryResult<_tanstack_react_query16.NoInfer<TData>, unknown>;
|
|
2443
2443
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
2444
2444
|
thor,
|
|
2445
2445
|
calls,
|
|
@@ -2450,7 +2450,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
2450
2450
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
2451
2451
|
queryKey: string[];
|
|
2452
2452
|
enabled?: boolean;
|
|
2453
|
-
}) =>
|
|
2453
|
+
}) => _tanstack_react_query16.UseQueryResult<_tanstack_react_query16.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
2454
2454
|
//#endregion
|
|
2455
2455
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
2456
2456
|
/**
|
|
@@ -2574,7 +2574,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
2574
2574
|
filterParams,
|
|
2575
2575
|
mapResponse,
|
|
2576
2576
|
nodeUrl
|
|
2577
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
2577
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query16.UseQueryResult<R[], Error>;
|
|
2578
2578
|
//#endregion
|
|
2579
2579
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
2580
2580
|
interface BuildClausesParams {
|
|
@@ -2725,7 +2725,7 @@ declare const useGenericDelegatorFeeEstimation: ({
|
|
|
2725
2725
|
tokens,
|
|
2726
2726
|
sendingAmount,
|
|
2727
2727
|
sendingTokenSymbol
|
|
2728
|
-
}: useGenericDelegatorFeeEstimationParams) =>
|
|
2728
|
+
}: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query16.UseQueryResult<EstimationResponse & {
|
|
2729
2729
|
usedToken: string;
|
|
2730
2730
|
}, Error>;
|
|
2731
2731
|
//#endregion
|
|
@@ -2739,7 +2739,7 @@ declare const useEstimateAllTokens: ({
|
|
|
2739
2739
|
clauses,
|
|
2740
2740
|
tokens,
|
|
2741
2741
|
enabled
|
|
2742
|
-
}: UseEstimateAllTokensParams) =>
|
|
2742
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query16.UseQueryResult<Record<GasTokenType, {
|
|
2743
2743
|
cost: number;
|
|
2744
2744
|
loading: boolean;
|
|
2745
2745
|
error?: string;
|
|
@@ -2756,7 +2756,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
2756
2756
|
* @param address The address of the account to get the balance for
|
|
2757
2757
|
* @returns The account balance
|
|
2758
2758
|
*/
|
|
2759
|
-
declare const useAccountBalance: (address?: string) =>
|
|
2759
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
2760
2760
|
balance: string;
|
|
2761
2761
|
energy: string;
|
|
2762
2762
|
}, Error>;
|
|
@@ -2769,7 +2769,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
2769
2769
|
* @param version - The version of the smart account implementation
|
|
2770
2770
|
* @returns The address of the smart account implementation
|
|
2771
2771
|
*/
|
|
2772
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
2772
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query16.UseQueryResult<string, Error>;
|
|
2773
2773
|
//#endregion
|
|
2774
2774
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
2775
2775
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -2778,7 +2778,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
2778
2778
|
* Get the current account implementation version used by the smart account factory
|
|
2779
2779
|
* @returns The current account implementation version
|
|
2780
2780
|
*/
|
|
2781
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
2781
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query16.UseQueryResult<number, Error>;
|
|
2782
2782
|
//#endregion
|
|
2783
2783
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
2784
2784
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -2788,17 +2788,17 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
2788
2788
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2789
2789
|
* @returns The address of the smart account
|
|
2790
2790
|
*/
|
|
2791
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
2791
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query16.UseQueryResult<string, Error>;
|
|
2792
2792
|
//#endregion
|
|
2793
2793
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
2794
|
-
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) =>
|
|
2794
|
+
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
|
|
2795
2795
|
/**
|
|
2796
2796
|
* Check if a smart account has a v1 smart account
|
|
2797
2797
|
* @param accountAddress - The address of the smart account
|
|
2798
2798
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2799
2799
|
* @returns The version of the smart account
|
|
2800
2800
|
*/
|
|
2801
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
2801
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query16.UseQueryResult<{
|
|
2802
2802
|
version: number;
|
|
2803
2803
|
isDeployed: boolean;
|
|
2804
2804
|
}, unknown>;
|
|
@@ -2811,7 +2811,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
2811
2811
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2812
2812
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
2813
2813
|
*/
|
|
2814
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
2814
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
2815
2815
|
//#endregion
|
|
2816
2816
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
2817
2817
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -2820,7 +2820,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
2820
2820
|
* Check if a smart account is deployed
|
|
2821
2821
|
* @returns True if the smart account is deployed, false otherwise
|
|
2822
2822
|
*/
|
|
2823
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
2823
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
2824
2824
|
//#endregion
|
|
2825
2825
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
2826
2826
|
/**
|
|
@@ -2853,7 +2853,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
2853
2853
|
isDeployed: boolean;
|
|
2854
2854
|
}>;
|
|
2855
2855
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
2856
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
2856
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
2857
2857
|
address: undefined;
|
|
2858
2858
|
isDeployed?: undefined;
|
|
2859
2859
|
} | {
|
|
@@ -2871,7 +2871,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2871
2871
|
* @param targetVersion - The version of the smart account to check for
|
|
2872
2872
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
2873
2873
|
*/
|
|
2874
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
2874
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
2875
2875
|
//#endregion
|
|
2876
2876
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
2877
2877
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -2882,7 +2882,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
2882
2882
|
* @param targetVersion - The target version of the smart account
|
|
2883
2883
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
2884
2884
|
*/
|
|
2885
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
2885
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
2886
2886
|
//#endregion
|
|
2887
2887
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
2888
2888
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -2907,7 +2907,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
2907
2907
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
2908
2908
|
* @returns the current block
|
|
2909
2909
|
*/
|
|
2910
|
-
declare const useCurrentBlock: () =>
|
|
2910
|
+
declare const useCurrentBlock: () => _tanstack_react_query16.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
|
|
2911
2911
|
//#endregion
|
|
2912
2912
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
2913
2913
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -2916,7 +2916,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
2916
2916
|
* Get the chain id
|
|
2917
2917
|
* @returns The chain id
|
|
2918
2918
|
*/
|
|
2919
|
-
declare const useGetChainId: () =>
|
|
2919
|
+
declare const useGetChainId: () => _tanstack_react_query16.UseQueryResult<string, Error>;
|
|
2920
2920
|
//#endregion
|
|
2921
2921
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
2922
2922
|
/**
|
|
@@ -3168,7 +3168,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
3168
3168
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
3169
3169
|
* @returns Query result containing the transaction receipt
|
|
3170
3170
|
*/
|
|
3171
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
3171
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query16.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
|
|
3172
3172
|
//#endregion
|
|
3173
3173
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenContent.d.ts
|
|
3174
3174
|
type SendTokenContentProps = {
|
|
@@ -4048,4 +4048,4 @@ type AppConfig = {
|
|
|
4048
4048
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4049
4049
|
//#endregion
|
|
4050
4050
|
export { ManageCustomTokenContentProps as $, getErc20BalanceQueryKey as $a, useSendTokenModal as $i, useScrollToTop as $n, AccountMainContent as $o, leftPadWithZeros as $r, GasTokenPreferences as $s, useUpgradeRequired as $t, ModalBackButton as A, useXAppsShares as Aa, useSignTypedData as Ai, useGasTokenSelection as An, getTextRecordsQueryKey as Ao, isInvalid as Ar, usePrivyWalletProvider as As, useTxReceipt as At, AccountModal as B, useRefreshBalances as Ba, ReceiveModalProvider as Bi, useEcosystemShortcuts as Bn, useIsDomainProtected as Bo, XNodeStrengthLevelToName as Br, LegalDocumentSource as Bs, getAllEventLogs as Bt, AddressDisplayCard as C, getIpfsImageQueryKey as Ca, AppHubApp as Ci, getAccountBalance as Cn, getAvatarOfAddressQueryKey as Co, ViewFunctionResult as Cr, LegalDocumentsProvider as Cs, useDAppKitWallet as Ct, StickyHeaderContainer as D, getIpfsMetadataQueryKey as Da, useLoginWithVeChain as Di, useEstimateAllTokens as Dn, buildClauses as Do, isValidUrl as Dr, useVechainKitThemeConfig as Ds, useSetWalletRecovery as Dt, StickyFooterContainer as E, getIpfsMetadata as Ea, useAppHubApps as Ei, UseEstimateAllTokensParams as En, useGetResolverAddress as Eo, executeMultipleClausesCall as Er, VechainKitThemeProvider as Es, usePrivy as Et, QuickActionsSection as F, UseWalletReturnType as Fa, ProfileModalProvider as Fi, getDepositAccount as Fn, DomainsResponse as Fo, isRejectionError as Fr, VeChainKitProvider as Fs, buildERC20Clauses as Ft, SettingsContent as G, useIsPerson as Ga, useFAQModal as Gi, buildBatchAuthorizationTypedData as Gn, useEnsRecordExists as Go, convertUriToUrl as Gr, EstimationResponse as Gs, currentBlockQueryKey as Gt, DisconnectConfirmContent as H, XApp as Ha, AccountCustomizationModalProvider as Hi, LocalStorageKey as Hn, useClaimVetDomain as Ho, buildQueryString as Hr, CostLevel as Hs, getChainId as Ht, BalanceSection as I, useWallet as Ia, useProfileModal as Ii, signVip191Transaction as In, getDomainsOfAddress as Io, TIME as Ir, VechainKitProviderProps as Is, useTransferERC20 as It, LanguageSettingsContent as J, PRICE_FEED_IDS as Ja, ExploreEcosystemModalProvider as Ji, GetEventsKeyParams as Jn, fetchPrivyStatus as Jo, uploadBlobToIPFS as Jr, VthoPerGasAtSpeed as Js, getUpgradeRequiredForAccount as Jt, SettingsContentProps as K, getVot3BalanceQueryKey as Ka, NotificationsModalProvider as Ki, buildSingleAuthorizationTypedData as Kn, getVechainDomainQueryKey as Ko, resolveMediaTypeFromMimeType as Kr, Rate as Ks, useCurrentBlock as Kt, AccountSelector as L, getRoundXAppsQueryKey as La, UpgradeSmartAccountModalProvider as Li, useGenericDelegator as Ln, getDomainsOfAddressQueryKey as Lo, EconomicNodeStrengthLevelToName as Lr, useVeChainKitConfig as Ls, UseSendTransactionReturnValue as Lt, DomainRequiredAlert as M, getXAppMetadata as Ma, useNotificationAlerts as Mi, delegateAuthorized as Mn, getAvatarQueryKey as Mo, normalize as Mr, LegalDocumentOptions as Ms, useBuildTransaction as Mt, ExchangeWarningAlert as N, useXAppMetadata as Na, useNotifications as Ni, estimateAndBuildTxBody as Nn, useGetAvatar as No, removePrefix as Nr, VeChainKitConfig as Ns, buildVETClauses as Nt, VersionFooter as O, useIpfsMetadata as Oa, useLoginWithOAuth as Oi, useGenericDelegatorFeeEstimation as On, useUpdateTextRecord as Oo, addPrefix as Or, PrivyWalletProvider as Os, useThor as Ot, FeatureAnnouncementCard as P, useWalletMetadata as Pa, useAccountModalOptions as Pi, estimateGas as Pn, Domain as Po, validate as Pr, VeChainKitContext as Ps, useTransferVET as Pt, ManageCustomTokenContent as Q, useGetTokenUsdPrice as Qa, SendTokenModalProvider as Qi, useEvents as Qn, useFetchAppInfo as Qo, isValidAddress as Qr, GasTokenInfo as Qs, getUpgradeRequiredQueryKey as Qt, ActionButton as R, useRoundXApps as Ra, useUpgradeSmartAccountModal as Ri, useCrossAppConnectionCache as Rn, useGetDomainsOfAddress as Ro, MinXNodeLevel as Rr, EnrichedLegalDocument as Rs, useSendTransaction as Rt, ModalFAQButton as S, getIpfsImage as Sa, notFoundImage as Si, useAccountImplementationAddress as Sn, useGetAvatarLegacy as So, MultipleClausesCallReturnType as Sr, ConnectModalContentsTypes as Ss, ThorClient$1 as St, BaseModal as T, useIpfsImageList as Ta, getAppHubAppsQueryKey as Ti, useAccountBalance as Tn, getResolverAddressQueryKey as To, executeCallClause as Tr, ColorModeSync as Ts, useMfaEnrollment as Tt, DisconnectConfirmContentProps as U, useMostVotedAppsInRound as Ua, useAccountCustomizationModal as Ui, useLocalStorage as Un, useClaimVeWorldSubdomain as Uo, gmNfts as Ur, DepositAccount as Us, getChainIdQueryKey as Ut, AccountModalContentTypes as V, MostVotedAppsInRoundReturnType as Va, useReceiveModal as Vi, useSyncableLocalStorage as Vn, buildVetDomainClauses as Vo, allNodeStrengthLevelToName as Vr, LegalDocumentType as Vs, getEventLogs as Vt, TermsAndPrivacyContent as W, getIsPersonQueryKey as Wa, FAQModalProvider as Wi, BuildClausesParams as Wn, getEnsRecordExistsQueryKey as Wo, xNodeToGMstartingLevel as Wr, EstimatedGas as Ws, useGetChainId as Wt, ChangeCurrencyContentProps as X, getTokenUsdPrice as Xa, SwapTokenModalProvider as Xi, decodeEventLog$1 as Xn, fetchPrivyAppInfo as Xo, compareAddresses as Xr, formatGasCost as Xs, useUpgradeRequiredForAccount as Xt, ChangeCurrencyContent as Y, SupportedToken as Ya, useExploreEcosystemModal as Yi, UseEventsParams as Yn, useFetchPrivyStatus as Yo, validateIpfsUri as Yr, calculateTotalCost as Ys, getUpgradeRequiredForAccountQueryKey as Yt, BridgeContent as Z, getTokenUsdPriceQueryKey as Za, useSwapTokenModal as Zi, getEventsKey as Zn, getPrivyAppInfoQueryKey as Zo, compareListOfAddresses as Zr, GasTokenEstimate as Zs, getUpgradeRequired as Zt, ModalNotificationButton as _, imageCompressionOptions as _a, TokenBalance as _c, VECHAIN_KIT_STORAGE_KEYS as _i, getCurrentAccountImplementationVersion as _n, WalletTokenBalance as _o, removeLocalStorageItem as _r, VeChainLoginButton as _s, SwapTokenContent as _t, useModal as a, useTransactionToast as aa, CURRENCY as ac, humanDomain as ai, useRefreshFactoryQueries as an, getCustomTokenBalanceQueryKey as ao, useCurrency as ar, SocialIcons as as, ProfileContentProps as at, AccountAvatar as b, IpfsImage as ba, VePassportUserStatus as bc, getENV as bi, getAccountImplementationAddress as bn, getAvatarLegacy as bo, setLocalStorageItem as br, MainContent as bs, SendTokenSummaryContent as bt, LegalDocumentsModal as c, AccountModalProvider as ca, CrossAppConnectionCache as cc, DEFAULT_GAS_TOKEN_PREFERENCES as ci, useIsSmartAccountDeployed as cn, useGetB3trBalance as co, useCallClause as cr, WalletDisplayVariant as cs, AccountCustomizationContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useConnectModal as da, ExecuteBatchWithAuthorizationSignData as dc, PrivyEcosystemApp as di, useHasV1SmartAccount as dn, useCurrentAllocationsRoundId as do, getDocumentTitle as dr, VeChainWithPrivyLoginButton as ds, ChooseNameSummaryContent as dt, ChooseNameModalProvider as ea, GasTokenSelection as ec, regexPattern as ei, SmartAccountReturnType as en, useGetErc20Balance as eo, useIsPWA as er, TransactionToast as es, AssetsContent as et, UpgradeSmartAccountModalStyle as f, useSwapQuotes as fa, ExecuteWithAuthorizationSignData as fc, SUPPORTED_GAS_TOKENS as fi, getAccountVersionQueryKey as fn, useTotalBalance as fo, getLocalStorageItem as fr, DappKitButton as fs, ChooseNameSummaryContentProps as ft, GasFeeSummary as g, compressImages as ga, SmartAccount as gc, VECHAIN_KIT_COOKIES_CONFIG as gi, useGetAccountAddress as gn, useTokenPrices as go, isOnline as gr, EcosystemButton as gs, ChooseNameContentProps as gt, GasFeeTokenSelector as h, UploadedImage as ha, PrivyLoginMethod as hc, TogglePassportCheck as hi, getAccountAddressQueryKey as hn, ExchangeRates as ho, isBrowser as hr, PrivyButton as hs, ChooseNameContent as ht, ModalProvider as i, TransactionToastProvider as ia, TextRecords as ic, humanAddress as ii, useRefreshSmartAccountQueries as in, TokenWithBalance as io, useCurrentLanguage as ir, TransactionModalProps as is, ProfileContent as it, CrossAppConnectionSecurityCard as j, XAppMetadata as ja, useSignMessage as ji, decodeRawTx as jn, useGetTextRecords as jo, isValid as jr, LegalDocument as js, BuildTransactionProps as jt, AddressDisplay as k, getXAppsSharesQueryKey as ka, useLoginWithPasskey as ki, useGenericDelegatorFeeEstimationParams as kn, getTextRecords as ko, compare as kr, PrivyWalletProviderContextType as ks, txReceiptQueryKey as kt, LegalDocumentsModalContentsTypes as l, useAccountModal as la, ENSRecords as lc, DEFAULT_PRIVY_ECOSYSTEM_APPS as li, getHasV1SmartAccount as ln, useCustomTokens as lo, useMultipleClausesCall as lr, ConnectPopover as ls, CustomizationContent as lt, LoginLoadingModal as m, useSingleImageUpload as ma, PrivyAppInfo as mc, TOKEN_LOGO_COMPONENTS as mi, getAccountAddress as mn, useTokensWithValues as mo, hasNavigator as mr, LoginWithGoogleButton as ms, ChooseNameSearchContentProps as mt, getConfig as n, WalletModalProvider as na, TransactionSpeed as nc, formatTokenBalance as ni, getSmartAccountQueryKey as nn, getTokenInfo as no, useFeatureAnnouncement as nr, ShareButtons as ns, UpgradeSmartAccountContent as nt, DAppKitWalletButton as o, TransactionModalProvider as oa, CURRENCY_SYMBOLS as oc, humanNumber as oi, getIsDeployed as on, useGetCustomTokenBalances as oo, getCallClauseQueryKey as or, WalletButton as os, CustomizationSummaryContent as ot, EcosystemModal as p, useSwapTransaction as pa, NFTMediaType as pc, TOKEN_LOGOS as pi, useGetAccountVersion as pn, TokenWithValue as po, getWindowOrigin as pr, PasskeyLoginButton as ps, ChooseNameSearchContent as pt, GasTokenSettingsContent as q, useGetVot3Balance as qa, useNotificationsModal as qi, useBuildClauses as qn, useVechainDomain as qo, toIPFSURL as qr, TransactionCost as qs, useUpgradeSmartAccount as qt, AccountModalOptions as r, useWalletModal as ra, ENS_TEXT_RECORDS as rc, getPicassoImage as ri, useSmartAccount as rn, useGetCustomTokenInfo as ro, useCurrentCurrency as rr, TransactionModal as rs, UpgradeSmartAccountContentProps as rt, LegalDocumentItem as s, useTransactionModal as sa, ConnectionSource as sc, isZero as si, getIsDeployedQueryKey as sn, getB3trBalanceQueryKey as so, getCallClauseQueryKeyWithArgs as sr, WalletButtonProps as ss, CustomizationSummaryContentProps as st, AppConfig as t, useChooseNameModal as ta, GasTokenType as tc, randomTransactionUser as ti, getSmartAccount as tn, getCustomTokenInfoQueryKey as to, useGetNodeUrl as tr, TransactionModalContent as ts, AssetsContentProps as tt, UpgradeSmartAccountModal as u, ConnectModalProvider as ua, EnhancedClause as uc, ENV as ui, getHasV1SmartAccountQueryKey as un, getCurrentAllocationsRoundIdQueryKey as uo, copyToClipboard as ur, LoginWithGithubButton as us, FAQContent as ut, TransactionButtonAndStatus as v, useUploadImages as va, TransactionStatus as vc, VECHAIN_KIT_TERMS_CONFIG as vi, getCurrentAccountImplementationVersionQueryKey as vn, useTokenBalances as vo, safeQuerySelector as vr, EmailLoginButton as vs, ReceiveTokenContent as vt, AssetButton as w, useIpfsImage as wa, fetchAppHubApps as wi, getAccountBalanceQueryKey as wn, useGetAvatarOfAddress as wo, buildCallClauses as wr, useLegalDocuments as ws, useDAppKitWalletModal as wt, ScrollToTopWrapper as x, MAX_IMAGE_SIZE as xa, Wallet as xc, getGenericDelegatorUrl as xi, getAccountImplementationAddressQueryKey as xn, getAvatarLegacyQueryKey as xo, MultipleClausesCallParameters as xr, ConnectModal as xs, SendTokenContent as xt, TransactionButtonAndStatusProps as y, useIpfsMetadatas as ya, TransactionStatusErrorType as yc, VECHAIN_PRIVY_APP_ID as yi, useCurrentAccountImplementationVersion as yn, useUnsetDomain as yo, safeWindowOpen as yr, ConnectionButton as ys, SelectTokenContent as yt, AccountDetailsButton as z, useRefreshMetadata as za, useLoginModalContent as zi, EcosystemShortcut as zn, getIsDomainProtectedQueryKey as zo, NodeStrengthLevelToImage as zr, LegalDocumentAgreement as zs, GetEventsProps as zt };
|
|
4051
|
-
//# sourceMappingURL=index-
|
|
4051
|
+
//# sourceMappingURL=index-wCp9v8PQ.d.cts.map
|