@vechain/vechain-kit 2.6.6 → 2.6.8
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-Y0ktF0Lw.d.cts → index--hSO7Xv4.d.mts} +4 -4
- package/dist/{index-CWViOs1U.d.mts.map → index--hSO7Xv4.d.mts.map} +1 -1
- package/dist/{index-CWViOs1U.d.mts → index-I8fe7GR2.d.cts} +1 -1
- package/dist/{index-Y0ktF0Lw.d.cts.map → index-I8fe7GR2.d.cts.map} +1 -1
- package/dist/{index-hEPoYu2o.d.cts → index-d7QJmcUK.d.cts} +25 -6
- package/dist/index-d7QJmcUK.d.cts.map +1 -0
- package/dist/{index-DwvqIQlc.d.mts → index-kNQk5OHF.d.mts} +71 -52
- package/dist/index-kNQk5OHF.d.mts.map +1 -0
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +8 -8
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.cjs +1 -1
- package/dist/utils/index.d.cts +2 -2
- package/dist/utils/index.d.mts +2 -2
- package/dist/utils/index.mjs +1 -1
- package/dist/{utils-CzaSErgL.cjs → utils-B3mmhtVy.cjs} +2 -2
- package/dist/utils-B3mmhtVy.cjs.map +1 -0
- package/dist/{utils-D6wgzl57.mjs → utils-fXJ3K1K6.mjs} +2 -2
- package/dist/utils-fXJ3K1K6.mjs.map +1 -0
- package/package.json +2 -1
- package/dist/index-DwvqIQlc.d.mts.map +0 -1
- package/dist/index-hEPoYu2o.d.cts.map +0 -1
- package/dist/utils-CzaSErgL.cjs.map +0 -1
- package/dist/utils-D6wgzl57.mjs.map +0 -1
|
@@ -7,7 +7,7 @@ import * as _vechain_sdk_core0 from "@vechain/sdk-core";
|
|
|
7
7
|
import { Address, Certificate, CertificateData, Clause, Revision, Transaction, TransactionClause } from "@vechain/sdk-core";
|
|
8
8
|
import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy as usePrivy$1, useSetWalletRecovery } from "@privy-io/react-auth";
|
|
9
9
|
import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor as useThor$1, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
|
|
10
|
-
import * as
|
|
10
|
+
import * as _tanstack_react_query8 from "@tanstack/react-query";
|
|
11
11
|
import { UseQueryOptions } from "@tanstack/react-query";
|
|
12
12
|
import { CustomTokenInfo } from "@vechain/contract-getters";
|
|
13
13
|
import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
|
|
@@ -53,7 +53,7 @@ declare const genesises: {
|
|
|
53
53
|
readonly main: CompressedBlockDetail;
|
|
54
54
|
readonly test: CompressedBlockDetail;
|
|
55
55
|
readonly solo: CompressedBlockDetail;
|
|
56
|
-
which(gid: string): "
|
|
56
|
+
which(gid: string): "test" | "main" | "solo" | undefined;
|
|
57
57
|
};
|
|
58
58
|
//#endregion
|
|
59
59
|
//#region src/types/types.d.ts
|
|
@@ -1054,7 +1054,7 @@ declare const AccountMainContent: ({
|
|
|
1054
1054
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
1055
1055
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
1056
1056
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
1057
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
1057
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
|
|
1058
1058
|
[k: string]: {
|
|
1059
1059
|
website: string | undefined;
|
|
1060
1060
|
id: string;
|
|
@@ -1075,7 +1075,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
1075
1075
|
//#endregion
|
|
1076
1076
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
1077
1077
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
1078
|
-
declare const useFetchPrivyStatus: () =>
|
|
1078
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1079
1079
|
//#endregion
|
|
1080
1080
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
1081
1081
|
interface VeChainDomainResult {
|
|
@@ -1085,11 +1085,11 @@ interface VeChainDomainResult {
|
|
|
1085
1085
|
isPrimaryDomain: boolean;
|
|
1086
1086
|
}
|
|
1087
1087
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
1088
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
1088
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
|
|
1089
1089
|
//#endregion
|
|
1090
1090
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
1091
1091
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
1092
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
1092
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1093
1093
|
//#endregion
|
|
1094
1094
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
1095
1095
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1151,7 +1151,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1151
1151
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1152
1152
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1153
1153
|
*/
|
|
1154
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1154
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1155
1155
|
//#endregion
|
|
1156
1156
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1157
1157
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1179,7 +1179,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1179
1179
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1180
1180
|
* @returns The domains owned by the address
|
|
1181
1181
|
*/
|
|
1182
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1182
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1183
1183
|
domains: {
|
|
1184
1184
|
name: string;
|
|
1185
1185
|
}[];
|
|
@@ -1192,7 +1192,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1192
1192
|
* @param name - The VET domain name
|
|
1193
1193
|
* @returns The resolved avatar URL
|
|
1194
1194
|
*/
|
|
1195
|
-
declare const useGetAvatar: (name: string) =>
|
|
1195
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1196
1196
|
//#endregion
|
|
1197
1197
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1198
1198
|
/**
|
|
@@ -1204,7 +1204,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query33.UseQueryRe
|
|
|
1204
1204
|
*/
|
|
1205
1205
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1206
1206
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1207
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1207
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
|
|
1208
1208
|
//#endregion
|
|
1209
1209
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1210
1210
|
type UpdateTextRecordVariables = {
|
|
@@ -1237,7 +1237,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1237
1237
|
* @param domain The domain to get resolver for
|
|
1238
1238
|
* @returns The resolver address for the domain
|
|
1239
1239
|
*/
|
|
1240
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1240
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
|
|
1241
1241
|
//#endregion
|
|
1242
1242
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1243
1243
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1247,7 +1247,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1247
1247
|
* @param address The owner's address
|
|
1248
1248
|
* @returns The avatar URL for the address's primary domain
|
|
1249
1249
|
*/
|
|
1250
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1250
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1251
1251
|
//#endregion
|
|
1252
1252
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1253
1253
|
/**
|
|
@@ -1264,7 +1264,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1264
1264
|
* @param name - The VET domain name
|
|
1265
1265
|
* @returns The resolved avatar URL
|
|
1266
1266
|
*/
|
|
1267
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1267
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1268
1268
|
//#endregion
|
|
1269
1269
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1270
1270
|
type useUnsetDomainProps = {
|
|
@@ -1373,7 +1373,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1373
1373
|
* Hook to get the current roundId of allocations voting
|
|
1374
1374
|
* @returns the current roundId of allocations voting
|
|
1375
1375
|
*/
|
|
1376
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1376
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
|
|
1377
1377
|
//#endregion
|
|
1378
1378
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1379
1379
|
declare const useCustomTokens: () => {
|
|
@@ -1386,7 +1386,7 @@ declare const useCustomTokens: () => {
|
|
|
1386
1386
|
//#endregion
|
|
1387
1387
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1388
1388
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1389
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1389
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1390
1390
|
original: string;
|
|
1391
1391
|
scaled: string;
|
|
1392
1392
|
formatted: string;
|
|
@@ -1394,8 +1394,8 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query33.U
|
|
|
1394
1394
|
//#endregion
|
|
1395
1395
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1396
1396
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1397
|
-
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
|
|
1398
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1397
|
+
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string, decimals?: number) => (string | number | undefined)[];
|
|
1398
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1399
1399
|
original: string;
|
|
1400
1400
|
scaled: string;
|
|
1401
1401
|
formatted: string;
|
|
@@ -1408,14 +1408,14 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1408
1408
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1409
1409
|
declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1410
1410
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1411
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1411
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
|
|
1412
1412
|
//#endregion
|
|
1413
1413
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1414
1414
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1415
1415
|
type UseGetErc20BalanceOptions = {
|
|
1416
1416
|
enabled?: boolean;
|
|
1417
1417
|
};
|
|
1418
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) =>
|
|
1418
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query8.UseQueryResult<{
|
|
1419
1419
|
original: string;
|
|
1420
1420
|
scaled: string;
|
|
1421
1421
|
formatted: string;
|
|
@@ -1432,11 +1432,11 @@ declare const PRICE_FEED_IDS: {
|
|
|
1432
1432
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1433
1433
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1434
1434
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1435
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1435
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
1436
1436
|
//#endregion
|
|
1437
1437
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1438
1438
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1439
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1439
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1440
1440
|
original: string;
|
|
1441
1441
|
scaled: string;
|
|
1442
1442
|
formatted: string;
|
|
@@ -1455,7 +1455,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1455
1455
|
* @param user - The user address.
|
|
1456
1456
|
* @returns The isPerson status.
|
|
1457
1457
|
*/
|
|
1458
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1458
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1459
1459
|
//#endregion
|
|
1460
1460
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1461
1461
|
type XApp = {
|
|
@@ -1493,7 +1493,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1493
1493
|
//#endregion
|
|
1494
1494
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1495
1495
|
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
|
|
1496
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1496
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1497
1497
|
id: string;
|
|
1498
1498
|
teamWalletAddress: `0x${string}`;
|
|
1499
1499
|
name: string;
|
|
@@ -1607,7 +1607,7 @@ type XAppMetadata = {
|
|
|
1607
1607
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1608
1608
|
*/
|
|
1609
1609
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1610
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1610
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1611
1611
|
//#endregion
|
|
1612
1612
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1613
1613
|
/**
|
|
@@ -1622,7 +1622,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1622
1622
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1623
1623
|
*
|
|
1624
1624
|
*/
|
|
1625
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1625
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1626
1626
|
app: string;
|
|
1627
1627
|
share: number;
|
|
1628
1628
|
unallocatedShare: number;
|
|
@@ -1644,7 +1644,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1644
1644
|
* @param ipfsUri - The IPFS URI
|
|
1645
1645
|
* @returns The metadata from IPFS
|
|
1646
1646
|
*/
|
|
1647
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1647
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
|
|
1648
1648
|
//#endregion
|
|
1649
1649
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1650
1650
|
interface IpfsImage {
|
|
@@ -1671,14 +1671,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1671
1671
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1672
1672
|
* @returns The NFT media
|
|
1673
1673
|
*/
|
|
1674
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1674
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
|
|
1675
1675
|
/**
|
|
1676
1676
|
* Custom hook to fetch a list of IPFS images.
|
|
1677
1677
|
*
|
|
1678
1678
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1679
1679
|
* @returns An array of queries for each IPFS image URI.
|
|
1680
1680
|
*/
|
|
1681
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1681
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
|
|
1682
1682
|
//#endregion
|
|
1683
1683
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1684
1684
|
/**
|
|
@@ -1686,7 +1686,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1686
1686
|
* @param ipfsUris - The IPFS URIs
|
|
1687
1687
|
* @returns The metadata from IPFS for each URI
|
|
1688
1688
|
*/
|
|
1689
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1689
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
|
|
1690
1690
|
//#endregion
|
|
1691
1691
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1692
1692
|
declare const imageCompressionOptions: Options;
|
|
@@ -2240,7 +2240,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2240
2240
|
* );
|
|
2241
2241
|
* ```
|
|
2242
2242
|
*/
|
|
2243
|
-
declare const useAppHubApps: () =>
|
|
2243
|
+
declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
|
|
2244
2244
|
//#endregion
|
|
2245
2245
|
//#region src/utils/constants.d.ts
|
|
2246
2246
|
/** Tokens that cannot be swapped or transferred (e.g. governance voting tokens) */
|
|
@@ -2300,7 +2300,7 @@ declare const getPicassoImage: (address: string, base64?: boolean) => string;
|
|
|
2300
2300
|
* @param balance - balance in bigint
|
|
2301
2301
|
* @returns the formatted balance in the form of {@link TokenBalance} (original, scaled down and formatted)
|
|
2302
2302
|
*/
|
|
2303
|
-
declare const formatTokenBalance: (balance: bigint) => {
|
|
2303
|
+
declare const formatTokenBalance: (balance: bigint, decimals?: number) => {
|
|
2304
2304
|
original: string;
|
|
2305
2305
|
scaled: string;
|
|
2306
2306
|
formatted: string;
|
|
@@ -2595,7 +2595,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
2595
2595
|
method: TMethod;
|
|
2596
2596
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2597
2597
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
2598
|
-
}) =>
|
|
2598
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
|
|
2599
2599
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
2600
2600
|
thor,
|
|
2601
2601
|
calls,
|
|
@@ -2606,7 +2606,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
2606
2606
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
2607
2607
|
queryKey: string[];
|
|
2608
2608
|
enabled?: boolean;
|
|
2609
|
-
}) =>
|
|
2609
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
2610
2610
|
//#endregion
|
|
2611
2611
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
2612
2612
|
/**
|
|
@@ -2730,7 +2730,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
2730
2730
|
filterParams,
|
|
2731
2731
|
mapResponse,
|
|
2732
2732
|
nodeUrl
|
|
2733
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
2733
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
|
|
2734
2734
|
//#endregion
|
|
2735
2735
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
2736
2736
|
interface BuildClausesParams {
|
|
@@ -2882,7 +2882,7 @@ declare const useGenericDelegatorFeeEstimation: ({
|
|
|
2882
2882
|
tokens,
|
|
2883
2883
|
sendingAmount,
|
|
2884
2884
|
sendingTokenSymbol
|
|
2885
|
-
}: useGenericDelegatorFeeEstimationParams) =>
|
|
2885
|
+
}: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
|
|
2886
2886
|
usedToken: string;
|
|
2887
2887
|
}, Error>;
|
|
2888
2888
|
//#endregion
|
|
@@ -2896,7 +2896,7 @@ declare const useEstimateAllTokens: ({
|
|
|
2896
2896
|
clauses,
|
|
2897
2897
|
tokens,
|
|
2898
2898
|
enabled
|
|
2899
|
-
}: UseEstimateAllTokensParams) =>
|
|
2899
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
|
|
2900
2900
|
cost: number;
|
|
2901
2901
|
loading: boolean;
|
|
2902
2902
|
error?: string;
|
|
@@ -2913,7 +2913,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
2913
2913
|
* @param address The address of the account to get the balance for
|
|
2914
2914
|
* @returns The account balance
|
|
2915
2915
|
*/
|
|
2916
|
-
declare const useAccountBalance: (address?: string) =>
|
|
2916
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
2917
2917
|
balance: string;
|
|
2918
2918
|
energy: string;
|
|
2919
2919
|
}, Error>;
|
|
@@ -2926,7 +2926,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
2926
2926
|
* @param version - The version of the smart account implementation
|
|
2927
2927
|
* @returns The address of the smart account implementation
|
|
2928
2928
|
*/
|
|
2929
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
2929
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2930
2930
|
//#endregion
|
|
2931
2931
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
2932
2932
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -2935,7 +2935,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
2935
2935
|
* Get the current account implementation version used by the smart account factory
|
|
2936
2936
|
* @returns The current account implementation version
|
|
2937
2937
|
*/
|
|
2938
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
2938
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
2939
2939
|
//#endregion
|
|
2940
2940
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
2941
2941
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -2945,7 +2945,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
2945
2945
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2946
2946
|
* @returns The address of the smart account
|
|
2947
2947
|
*/
|
|
2948
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
2948
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2949
2949
|
//#endregion
|
|
2950
2950
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
2951
2951
|
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
|
|
@@ -2955,7 +2955,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2955
2955
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2956
2956
|
* @returns The version of the smart account
|
|
2957
2957
|
*/
|
|
2958
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
2958
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
|
|
2959
2959
|
version: number;
|
|
2960
2960
|
isDeployed: boolean;
|
|
2961
2961
|
}, unknown>;
|
|
@@ -2968,7 +2968,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
2968
2968
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2969
2969
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
2970
2970
|
*/
|
|
2971
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
2971
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2972
2972
|
//#endregion
|
|
2973
2973
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
2974
2974
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -2977,7 +2977,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
2977
2977
|
* Check if a smart account is deployed
|
|
2978
2978
|
* @returns True if the smart account is deployed, false otherwise
|
|
2979
2979
|
*/
|
|
2980
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
2980
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2981
2981
|
//#endregion
|
|
2982
2982
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
2983
2983
|
/**
|
|
@@ -3010,7 +3010,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
3010
3010
|
isDeployed: boolean;
|
|
3011
3011
|
}>;
|
|
3012
3012
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
3013
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
3013
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
3014
3014
|
address: undefined;
|
|
3015
3015
|
isDeployed?: undefined;
|
|
3016
3016
|
} | {
|
|
@@ -3028,7 +3028,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
3028
3028
|
* @param targetVersion - The version of the smart account to check for
|
|
3029
3029
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3030
3030
|
*/
|
|
3031
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
3031
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3032
3032
|
//#endregion
|
|
3033
3033
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
3034
3034
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -3039,7 +3039,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
3039
3039
|
* @param targetVersion - The target version of the smart account
|
|
3040
3040
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3041
3041
|
*/
|
|
3042
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
3042
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3043
3043
|
//#endregion
|
|
3044
3044
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
3045
3045
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -3064,7 +3064,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
3064
3064
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
3065
3065
|
* @returns the current block
|
|
3066
3066
|
*/
|
|
3067
|
-
declare const useCurrentBlock: () =>
|
|
3067
|
+
declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
|
|
3068
3068
|
//#endregion
|
|
3069
3069
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
3070
3070
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -3073,7 +3073,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
3073
3073
|
* Get the chain id
|
|
3074
3074
|
* @returns The chain id
|
|
3075
3075
|
*/
|
|
3076
|
-
declare const useGetChainId: () =>
|
|
3076
|
+
declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
3077
3077
|
//#endregion
|
|
3078
3078
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
3079
3079
|
/**
|
|
@@ -3234,6 +3234,7 @@ type useTransferERC20Props = {
|
|
|
3234
3234
|
amount: string;
|
|
3235
3235
|
tokenAddress: string;
|
|
3236
3236
|
tokenName: string;
|
|
3237
|
+
tokenDecimals?: number;
|
|
3237
3238
|
onSuccess?: () => void;
|
|
3238
3239
|
onSuccessMessageTitle?: number;
|
|
3239
3240
|
onError?: (error?: string) => void;
|
|
@@ -3241,14 +3242,16 @@ type useTransferERC20Props = {
|
|
|
3241
3242
|
type useTransferERC20ReturnValue = {
|
|
3242
3243
|
sendTransaction: () => Promise<void>;
|
|
3243
3244
|
clauses: EnhancedClause[];
|
|
3245
|
+
isLoadingTokenInfo: boolean;
|
|
3244
3246
|
} & Omit<UseSendTransactionReturnValue, 'sendTransaction'>;
|
|
3245
|
-
declare const buildERC20Clauses: (receiverAddress: string, amount: string, tokenAddress: string, tokenName: string) => EnhancedClause[];
|
|
3247
|
+
declare const buildERC20Clauses: (receiverAddress: string, amount: string, tokenAddress: string, tokenName: string, tokenDecimals: number) => EnhancedClause[];
|
|
3246
3248
|
declare const useTransferERC20: ({
|
|
3247
3249
|
fromAddress,
|
|
3248
3250
|
receiverAddress,
|
|
3249
3251
|
amount,
|
|
3250
3252
|
tokenAddress,
|
|
3251
3253
|
tokenName,
|
|
3254
|
+
tokenDecimals,
|
|
3252
3255
|
onSuccess,
|
|
3253
3256
|
onError
|
|
3254
3257
|
}: useTransferERC20Props) => useTransferERC20ReturnValue;
|
|
@@ -3325,7 +3328,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
3325
3328
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
3326
3329
|
* @returns Query result containing the transaction receipt
|
|
3327
3330
|
*/
|
|
3328
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
3331
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
|
|
3329
3332
|
//#endregion
|
|
3330
3333
|
//#region src/hooks/thor/transactions/useGasEstimate.d.ts
|
|
3331
3334
|
declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
|
|
@@ -3333,6 +3336,22 @@ declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], c
|
|
|
3333
3336
|
gasPadding?: number;
|
|
3334
3337
|
}) => Promise<number>;
|
|
3335
3338
|
//#endregion
|
|
3339
|
+
//#region src/constants/queryKeys.d.ts
|
|
3340
|
+
declare const VECHAIN_KIT_QUERY_KEYS: {
|
|
3341
|
+
balance: {
|
|
3342
|
+
all: string[];
|
|
3343
|
+
native: (address?: string) => (string | undefined)[];
|
|
3344
|
+
b3tr: (address?: string) => (string | undefined)[];
|
|
3345
|
+
vot3: (address?: string) => (string | undefined)[];
|
|
3346
|
+
erc20: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
3347
|
+
customToken: (tokenAddress?: string, address?: string, decimals?: number) => (string | number | undefined)[];
|
|
3348
|
+
};
|
|
3349
|
+
price: {
|
|
3350
|
+
all: string[];
|
|
3351
|
+
token: (token: string) => string[];
|
|
3352
|
+
};
|
|
3353
|
+
};
|
|
3354
|
+
//#endregion
|
|
3336
3355
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenContent.d.ts
|
|
3337
3356
|
type SendTokenContentProps = {
|
|
3338
3357
|
setCurrentContent: React$1.Dispatch<React$1.SetStateAction<AccountModalContentTypes>>;
|
|
@@ -4296,5 +4315,5 @@ type AppConfig = {
|
|
|
4296
4315
|
};
|
|
4297
4316
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4298
4317
|
//#endregion
|
|
4299
|
-
export { LanguageSettingsContent as $, useRefreshMetadata as $a, useAccountCustomizationModal as $i, useBuildClauses as $n, useGetDomainsOfAddress as $o, resolveMediaTypeFromMimeType as $r, VeChainKitContext as $s, useUpgradeSmartAccount as $t, AddressDisplay as A, IpfsImage as Aa, ExecuteBatchWithAuthorizationSignData as Ac, notFoundImage as Ai, getAccountBalanceQueryKey as An, ExchangeRates as Ao, buildCallClauses as Ar, PrivyButton as As, useMfaEnrollment as At, AccountDetailsButton as B, useXAppsShares as Ba, Wallet as Bc, useNotificationAlerts as Bi, estimateGas as Bn, getResolverAddressQueryKey as Bo, validate as Br, ConnectModalContentsTypes as Bs, useTransferVET as Bt, AddressDisplayCard as C, useSwapTransaction as Ca, TextRecords as Cc, TogglePassportCheck as Ci, getCurrentAccountImplementationVersion as Cn, useGetB3trBalance as Co, removeLocalStorageItem as Cr, WalletDisplayVariant as Cs, ReceiveTokenContent as Ct, StickyHeaderContainer as D, imageCompressionOptions as Da, CrossAppConnectionCache as Dc, VECHAIN_PRIVY_APP_ID as Di, getAccountImplementationAddressQueryKey as Dn, useTotalBalance as Do, MultipleClausesCallParameters as Dr, DappKitButton as Ds, ThorClient$1 as Dt, StickyFooterContainer as E, compressImages as Ea, ConnectionSource as Ec, VECHAIN_KIT_TERMS_CONFIG as Ei, getAccountImplementationAddress as En, useCurrentAllocationsRoundId as Eo, setLocalStorageItem as Er, VeChainWithPrivyLoginButton as Es, SendTokenContent as Et, FeatureAnnouncementCard as F, useIpfsImageList as Fa, SmartAccount as Fc, useLoginWithVeChain as Fi, useGenericDelegatorFeeEstimationParams as Fn, getAvatarLegacy as Fo, compare as Fr, EcosystemContent as Fs, txReceiptQueryKey as Ft, RemoveWalletConfirmContentProps as G, useSwitchWallet as Ga, ProfileModalProvider as Gi, EcosystemShortcut as Gn, getTextRecordsQueryKey as Go, MinXNodeLevel as Gr, useVechainKitThemeConfig as Gs, GetEventsProps as Gt, AccountModalContentTypes as H, getXAppMetadata as Ha, SettingsModalProvider as Hi, signVip191Transaction as Hn, buildClauses as Ho, simpleHash as Hr, useLegalDocuments as Hs, useTransferERC20 as Ht, QuickActionsSection as I, getIpfsMetadata as Ia, TokenBalance as Ic, useLoginWithOAuth$1 as Ii, useGasTokenSelection as In, getAvatarLegacyQueryKey as Io, isInvalid as Ir, ErrorContent as Is, useTxReceipt as It, DisconnectConfirmContentProps as J, useWalletMetadata as Ja, useUpgradeSmartAccountModal as Ji, LocalStorageKey as Jn, useGetAvatar as Jo, allNodeStrengthLevelToName as Jr, usePrivyWalletProvider as Js, getChainId as Jt, SelectWalletContent as K, StoredWallet as Ka, useProfileModal as Ki, useEcosystemShortcuts as Kn, useGetTextRecords as Ko, NodeStrengthLevelToImage as Kr, PrivyWalletProvider as Ks, getAllEventLogs as Kt, BalanceSection as L, getIpfsMetadataQueryKey as La, TransactionStatus as Lc, useLoginWithPasskey$1 as Li, decodeRawTx as Ln, useGetAvatarLegacy as Lo, isValid as Lr, LoadingContent as Ls, BuildTransactionProps as Lt, CrossAppConnectionSecurityCard as M, getIpfsImage as Ma, NFTMediaType as Mc, fetchAppHubApps as Mi, UseEstimateAllTokensParams as Mn, WalletTokenBalance as Mo, executeMultipleClausesCall as Mr, VeChainLoginButton as Ms, useSetWalletRecovery as Mt, DomainRequiredAlert as N, getIpfsImageQueryKey as Na, PrivyAppInfo as Nc, getAppHubAppsQueryKey as Ni, useEstimateAllTokens as Nn, useTokenBalances as No, isValidUrl as Nr, EmailLoginButton as Ns, useThor$1 as Nt, useStickyHeaderContext as O, useUploadImages as Oa, ENSRecords as Oc, getENV as Oi, useAccountImplementationAddress as On, TokenWithValue as Oo, MultipleClausesCallReturnType as Or, PasskeyLoginButton as Os, useDAppKitWallet as Ot, ExchangeWarningAlert as P, useIpfsImage as Pa, PrivyLoginMethod as Pc, useAppHubApps as Pi, useGenericDelegatorFeeEstimation as Pn, useUnsetDomain as Po, addPrefix as Pr, ConnectionButton as Ps, useGasEstimate as Pt, GasTokenSettingsContent as Q, useRoundXApps as Qa, AccountCustomizationModalProvider as Qi, buildSingleAuthorizationTypedData as Qn, getDomainsOfAddressQueryKey as Qo, convertUriToUrl as Qr, VeChainKitConfig as Qs, useCurrentBlock as Qt, AccountSelector as R, useIpfsMetadata as Ra, TransactionStatusErrorType as Rc, useSignTypedData as Ri, delegateAuthorized as Rn, getAvatarOfAddressQueryKey as Ro, normalize as Rr, MainContent as Rs, useBuildTransaction as Rt, ModalFAQButton as S, useSwapQuotes as Sa, ENS_TEXT_RECORDS as Sc, TOKEN_LOGO_COMPONENTS as Si, useGetAccountAddress as Sn, getB3trBalanceQueryKey as So, isOnline as Sr, WalletButtonProps as Ss, SwapTokenContent as St, BaseModal as T, UploadedImage as Ta, CURRENCY_SYMBOLS as Tc, VECHAIN_KIT_STORAGE_KEYS as Ti, useCurrentAccountImplementationVersion as Tn, getCurrentAllocationsRoundIdQueryKey as To, safeWindowOpen as Tr, LoginWithGithubButton as Ts, SendTokenSummaryContent as Tt, SwitchFeedback as U, useXAppMetadata as Ua, useSettingsModal as Ui, useGenericDelegator as Un, useUpdateTextRecord as Uo, TIME as Ur, ColorModeSync as Us, UseSendTransactionReturnValue as Ut, AccountModal as V, XAppMetadata as Va, useNotifications as Vi, getDepositAccount as Vn, useGetResolverAddress as Vo, isRejectionError as Vr, LegalDocumentsProvider as Vs, buildERC20Clauses as Vt, RemoveWalletConfirmContent as W, UseSwitchWalletReturnType as Wa, useAccountModalOptions as Wi, useCrossAppConnectionCache as Wn, getTextRecords as Wo, EconomicNodeStrengthLevelToName as Wr, VechainKitThemeProvider as Ws, useSendTransaction as Wt, SettingsContent as X, useWallet$1 as Xa, ReceiveModalProvider as Xi, BuildClausesParams as Xn, DomainsResponse as Xo, gmNfts as Xr, LegalDocument as Xs, useGetChainId as Xt, TermsAndPrivacyContent as Y, UseWalletReturnType as Ya, useLoginModalContent as Yi, useLocalStorage as Yn, Domain as Yo, buildQueryString as Yr, AccountQuickAction as Ys, getChainIdQueryKey as Yt, SettingsContentProps as Z, getRoundXAppsQueryKey as Za, useReceiveModal as Zi, buildBatchAuthorizationTypedData as Zn, getDomainsOfAddress as Zo, xNodeToGMstartingLevel as Zr, LegalDocumentOptions as Zs, currentBlockQueryKey as Zt, ModalNotificationButton as _, useTransactionModal as _a, GasTokenInfo as _c, ENV as _i, useHasV1SmartAccount as _n, getTokenInfo$1 as _o, getDocumentTitle as _r, ShareButtons as _s, ChooseNameSummaryContentProps as _t, useModal as a, useExploreEcosystemModal as aa, LegalDocumentSource as ac, isValidAddress as ai, useUpgradeRequired as an, useIsPerson as ao, useScrollToTop as ar, getEnsRecordExistsQueryKey as as, AssetsContent as at, AccountAvatar as b, ConnectModalProvider as ba, GasTokenType as bc, SUPPORTED_GAS_TOKENS as bi, getAccountAddress as bn, getCustomTokenBalanceQueryKey as bo, hasNavigator as br, SocialIcons as bs, ChooseNameContent as bt, LegalDocumentsModal as c, SendTokenModalProvider as ca, DepositAccount as cc, randomTransactionUser as ci, getSmartAccountQueryKey as cn, PRICE_FEED_IDS as co, useFeatureAnnouncement as cr, useVechainDomain as cs, UpgradeSmartAccountContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useChooseNameModal as da, Rate as dc, humanAddress as di, useRefreshFactoryQueries as dn, getTokenUsdPriceQueryKey as do, useCurrency as dr, fetchPrivyAppInfo as ds, CustomizationSummaryContent as dt, FAQModalProvider as ea, VeChainKitProvider as ec, toIPFSURL as ei, getUpgradeRequiredForAccount as en, useRefreshBalances as eo, GetEventsKeyParams as er, getIsDomainProtectedQueryKey as es, ChangeCurrencyContent as et, UpgradeSmartAccountModalStyle as f, WalletModalProvider as fa, TransactionCost as fc, humanDomain as fi, getIsDeployed as fn, useGetTokenUsdPrice as fo, getCallClauseQueryKey as fr, getPrivyAppInfoQueryKey as fs, CustomizationSummaryContentProps as ft, GasFeeSummary as g, TransactionModalProvider as ga, GasTokenEstimate as gc, DEFAULT_PRIVY_ECOSYSTEM_APPS as gi, getHasV1SmartAccountQueryKey as gn, getCustomTokenInfoQueryKey as go, copyToClipboard as gr, TransactionModalContent as gs, ChooseNameSummaryContent as gt, GasFeeTokenSelector as h, useTransactionToast as ha, formatGasCost as hc, DEFAULT_GAS_TOKEN_PREFERENCES as hi, getHasV1SmartAccount as hn, useGetErc20Balance as ho, useMultipleClausesCall as hr, TransactionToast as hs, FAQContent as ht, ModalProvider as i, ExploreEcosystemModalProvider as ia, LegalDocumentAgreement as ic, compareListOfAddresses as ii, getUpgradeRequiredQueryKey as in, getIsPersonQueryKey as io, useEvents as ir, useClaimVeWorldSubdomain as is, ManageCustomTokenContentProps as it, ModalBackButton as j, MAX_IMAGE_SIZE as ja, ExecuteWithAuthorizationSignData as jc, AppHubApp as ji, useAccountBalance as jn, useTokenPrices as jo, executeCallClause as jr, EcosystemButton as js, usePrivy$1 as jt, VersionFooter as k, useIpfsMetadatas as ka, EnhancedClause as kc, getGenericDelegatorUrl as ki, getAccountBalance as kn, useTokensWithValues as ko, ViewFunctionResult as kr, LoginWithGoogleButton as ks, useDAppKitWalletModal as kt, LegalDocumentsModalContentsTypes as l, useSendTokenModal as la, EstimatedGas as lc, formatTokenBalance as li, useSmartAccount as ln, SupportedToken as lo, useCurrentCurrency as lr, fetchPrivyStatus as ls, ProfileContent as lt, InlineFeedback as m, TransactionToastProvider as ma, calculateTotalCost as mc, isZero as mi, useIsSmartAccountDeployed as mn, getErc20BalanceQueryKey as mo, useCallClause as mr, AccountMainContent as ms, CustomizationContent as mt, getConfig as n, NotificationsModalProvider as na, useVeChainKitConfig as nc, validateIpfsUri as ni, useUpgradeRequiredForAccount as nn, XApp as no, decodeEventLog$1 as nr, buildVetDomainClauses as ns, BridgeContent as nt, DAppKitWalletButton as o, SwapTokenModalProvider as oa, LegalDocumentType as oc, leftPadWithZeros as oi, SmartAccountReturnType as on, getVot3BalanceQueryKey as oo, useIsPWA as or, useEnsRecordExists as os, AssetsContentProps as ot, WalletSwitchFeedback as p, useWalletModal as pa, VthoPerGasAtSpeed as pc, humanNumber as pi, getIsDeployedQueryKey as pn, UseGetErc20BalanceOptions as po, getCallClauseQueryKeyWithArgs as pr, useFetchAppInfo as ps, AccountCustomizationContentProps as pt, DisconnectConfirmContent as q, useWalletStorage as qa, UpgradeSmartAccountModalProvider as qi, useSyncableLocalStorage as qn, getAvatarQueryKey as qo, XNodeStrengthLevelToName as qr, PrivyWalletProviderContextType as qs, getEventLogs as qt, AccountModalOptions as r, useNotificationsModal as ra, EnrichedLegalDocument as rc, compareAddresses as ri, getUpgradeRequired as rn, useMostVotedAppsInRound as ro, getEventsKey as rr, useClaimVetDomain as rs, ManageCustomTokenContent as rt, LegalDocumentItem as s, useSwapTokenModal as sa, CostLevel as sc, regexPattern as si, getSmartAccount as sn, useGetVot3Balance as so, useGetNodeUrl as sr, getVechainDomainQueryKey as ss, UpgradeSmartAccountContent as st, AppConfig as t, useFAQModal as ta, VechainKitProviderProps as tc, uploadBlobToIPFS as ti, getUpgradeRequiredForAccountQueryKey as tn, MostVotedAppsInRoundReturnType as to, UseEventsParams as tr, useIsDomainProtected as ts, ChangeCurrencyContentProps as tt, UpgradeSmartAccountModal as u, ChooseNameModalProvider as ua, EstimationResponse as uc, getPicassoImage as ui, useRefreshSmartAccountQueries as un, getTokenUsdPrice as uo, useCurrentLanguage as ur, useFetchPrivyStatus as us, ProfileContentProps as ut, TransactionButtonAndStatus as v, AccountModalProvider as va, GasTokenPreferences as vc, NON_TRANSFERABLE_TOKEN_SYMBOLS as vi, getAccountVersionQueryKey as vn, useGetCustomTokenInfo as vo, getLocalStorageItem as vr, TransactionModal as vs, ChooseNameSearchContent as vt, AssetButton as w, useSingleImageUpload as wa, CURRENCY as wc, VECHAIN_KIT_COOKIES_CONFIG as wi, getCurrentAccountImplementationVersionQueryKey as wn, useCustomTokens as wo, safeQuerySelector as wr, ConnectPopover as ws, SelectTokenContent as wt, ScrollToTopWrapper as x, useConnectModal as xa, TransactionSpeed as xc, TOKEN_LOGOS as xi, getAccountAddressQueryKey as xn, useGetCustomTokenBalances as xo, isBrowser as xr, WalletButton as xs, ChooseNameContentProps as xt, TransactionButtonAndStatusProps as y, useAccountModal as ya, GasTokenSelection as yc, PrivyEcosystemApp as yi, useGetAccountVersion as yn, TokenWithBalance as yo, getWindowOrigin as yr, TransactionModalProps as ys, ChooseNameSearchContentProps as yt, ActionButton as z, getXAppsSharesQueryKey as za, VePassportUserStatus as zc, useSignMessage as zi, estimateAndBuildTxBody as zn, useGetAvatarOfAddress as zo, removePrefix as zr, ConnectModal as zs, buildVETClauses as zt };
|
|
4300
|
-
//# sourceMappingURL=index-
|
|
4318
|
+
export { LanguageSettingsContent as $, useRoundXApps as $a, AccountCustomizationModalProvider as $i, buildSingleAuthorizationTypedData as $n, getDomainsOfAddressQueryKey as $o, convertUriToUrl as $r, VeChainKitConfig as $s, useCurrentBlock as $t, AddressDisplay as A, useIpfsMetadatas as Aa, EnhancedClause as Ac, getGenericDelegatorUrl as Ai, getAccountBalance as An, useTokensWithValues as Ao, ViewFunctionResult as Ar, LoginWithGoogleButton as As, useMfaEnrollment as At, AccountDetailsButton as B, getXAppsSharesQueryKey as Ba, VePassportUserStatus as Bc, useSignMessage as Bi, estimateAndBuildTxBody as Bn, useGetAvatarOfAddress as Bo, removePrefix as Br, ConnectModal as Bs, buildVETClauses as Bt, AddressDisplayCard as C, useSwapQuotes as Ca, ENS_TEXT_RECORDS as Cc, TOKEN_LOGO_COMPONENTS as Ci, useGetAccountAddress as Cn, getB3trBalanceQueryKey as Co, isOnline as Cr, WalletButtonProps as Cs, ReceiveTokenContent as Ct, StickyHeaderContainer as D, compressImages as Da, ConnectionSource as Dc, VECHAIN_KIT_TERMS_CONFIG as Di, getAccountImplementationAddress as Dn, useCurrentAllocationsRoundId as Do, setLocalStorageItem as Dr, VeChainWithPrivyLoginButton as Ds, ThorClient$1 as Dt, StickyFooterContainer as E, UploadedImage as Ea, CURRENCY_SYMBOLS as Ec, VECHAIN_KIT_STORAGE_KEYS as Ei, useCurrentAccountImplementationVersion as En, getCurrentAllocationsRoundIdQueryKey as Eo, safeWindowOpen as Er, LoginWithGithubButton as Es, SendTokenContent as Et, FeatureAnnouncementCard as F, useIpfsImage as Fa, PrivyLoginMethod as Fc, useAppHubApps as Fi, useGenericDelegatorFeeEstimation as Fn, useUnsetDomain as Fo, addPrefix as Fr, ConnectionButton as Fs, useGasEstimate as Ft, RemoveWalletConfirmContentProps as G, UseSwitchWalletReturnType as Ga, useAccountModalOptions as Gi, useCrossAppConnectionCache as Gn, getTextRecords as Go, EconomicNodeStrengthLevelToName as Gr, VechainKitThemeProvider as Gs, useSendTransaction as Gt, AccountModalContentTypes as H, XAppMetadata as Ha, useNotifications as Hi, getDepositAccount as Hn, useGetResolverAddress as Ho, isRejectionError as Hr, LegalDocumentsProvider as Hs, buildERC20Clauses as Ht, QuickActionsSection as I, useIpfsImageList as Ia, SmartAccount as Ic, useLoginWithVeChain as Ii, useGenericDelegatorFeeEstimationParams as In, getAvatarLegacy as Io, compare as Ir, EcosystemContent as Is, txReceiptQueryKey as It, DisconnectConfirmContentProps as J, useWalletStorage as Ja, UpgradeSmartAccountModalProvider as Ji, useSyncableLocalStorage as Jn, getAvatarQueryKey as Jo, XNodeStrengthLevelToName as Jr, PrivyWalletProviderContextType as Js, getEventLogs as Jt, SelectWalletContent as K, useSwitchWallet as Ka, ProfileModalProvider as Ki, EcosystemShortcut as Kn, getTextRecordsQueryKey as Ko, MinXNodeLevel as Kr, useVechainKitThemeConfig as Ks, GetEventsProps as Kt, BalanceSection as L, getIpfsMetadata as La, TokenBalance as Lc, useLoginWithOAuth$1 as Li, useGasTokenSelection as Ln, getAvatarLegacyQueryKey as Lo, isInvalid as Lr, ErrorContent as Ls, useTxReceipt as Lt, CrossAppConnectionSecurityCard as M, MAX_IMAGE_SIZE as Ma, ExecuteWithAuthorizationSignData as Mc, AppHubApp as Mi, useAccountBalance as Mn, useTokenPrices as Mo, executeCallClause as Mr, EcosystemButton as Ms, useSetWalletRecovery as Mt, DomainRequiredAlert as N, getIpfsImage as Na, NFTMediaType as Nc, fetchAppHubApps as Ni, UseEstimateAllTokensParams as Nn, WalletTokenBalance as No, executeMultipleClausesCall as Nr, VeChainLoginButton as Ns, useThor$1 as Nt, useStickyHeaderContext as O, imageCompressionOptions as Oa, CrossAppConnectionCache as Oc, VECHAIN_PRIVY_APP_ID as Oi, getAccountImplementationAddressQueryKey as On, useTotalBalance as Oo, MultipleClausesCallParameters as Or, DappKitButton as Os, useDAppKitWallet as Ot, ExchangeWarningAlert as P, getIpfsImageQueryKey as Pa, PrivyAppInfo as Pc, getAppHubAppsQueryKey as Pi, useEstimateAllTokens as Pn, useTokenBalances as Po, isValidUrl as Pr, EmailLoginButton as Ps, VECHAIN_KIT_QUERY_KEYS as Pt, GasTokenSettingsContent as Q, getRoundXAppsQueryKey as Qa, useReceiveModal as Qi, buildBatchAuthorizationTypedData as Qn, getDomainsOfAddress as Qo, xNodeToGMstartingLevel as Qr, LegalDocumentOptions as Qs, currentBlockQueryKey as Qt, AccountSelector as R, getIpfsMetadataQueryKey as Ra, TransactionStatus as Rc, useLoginWithPasskey$1 as Ri, decodeRawTx as Rn, useGetAvatarLegacy as Ro, isValid as Rr, LoadingContent as Rs, BuildTransactionProps as Rt, ModalFAQButton as S, useConnectModal as Sa, TransactionSpeed as Sc, TOKEN_LOGOS as Si, getAccountAddressQueryKey as Sn, useGetCustomTokenBalances as So, isBrowser as Sr, WalletButton as Ss, SwapTokenContent as St, BaseModal as T, useSingleImageUpload as Ta, CURRENCY as Tc, VECHAIN_KIT_COOKIES_CONFIG as Ti, getCurrentAccountImplementationVersionQueryKey as Tn, useCustomTokens as To, safeQuerySelector as Tr, ConnectPopover as Ts, SendTokenSummaryContent as Tt, SwitchFeedback as U, getXAppMetadata as Ua, SettingsModalProvider as Ui, signVip191Transaction as Un, buildClauses as Uo, simpleHash as Ur, useLegalDocuments as Us, useTransferERC20 as Ut, AccountModal as V, useXAppsShares as Va, Wallet as Vc, useNotificationAlerts as Vi, estimateGas as Vn, getResolverAddressQueryKey as Vo, validate as Vr, ConnectModalContentsTypes as Vs, useTransferVET as Vt, RemoveWalletConfirmContent as W, useXAppMetadata as Wa, useSettingsModal as Wi, useGenericDelegator as Wn, useUpdateTextRecord as Wo, TIME as Wr, ColorModeSync as Ws, UseSendTransactionReturnValue as Wt, SettingsContent as X, UseWalletReturnType as Xa, useLoginModalContent as Xi, useLocalStorage as Xn, Domain as Xo, buildQueryString as Xr, AccountQuickAction as Xs, getChainIdQueryKey as Xt, TermsAndPrivacyContent as Y, useWalletMetadata as Ya, useUpgradeSmartAccountModal as Yi, LocalStorageKey as Yn, useGetAvatar as Yo, allNodeStrengthLevelToName as Yr, usePrivyWalletProvider as Ys, getChainId as Yt, SettingsContentProps as Z, useWallet$1 as Za, ReceiveModalProvider as Zi, BuildClausesParams as Zn, DomainsResponse as Zo, gmNfts as Zr, LegalDocument as Zs, useGetChainId as Zt, ModalNotificationButton as _, TransactionModalProvider as _a, GasTokenEstimate as _c, DEFAULT_PRIVY_ECOSYSTEM_APPS as _i, getHasV1SmartAccountQueryKey as _n, getCustomTokenInfoQueryKey as _o, copyToClipboard as _r, TransactionModalContent as _s, ChooseNameSummaryContentProps as _t, useModal as a, ExploreEcosystemModalProvider as aa, LegalDocumentAgreement as ac, compareListOfAddresses as ai, getUpgradeRequiredQueryKey as an, getIsPersonQueryKey as ao, useEvents as ar, useClaimVeWorldSubdomain as as, AssetsContent as at, AccountAvatar as b, useAccountModal as ba, GasTokenSelection as bc, PrivyEcosystemApp as bi, useGetAccountVersion as bn, TokenWithBalance as bo, getWindowOrigin as br, TransactionModalProps as bs, ChooseNameContent as bt, LegalDocumentsModal as c, useSwapTokenModal as ca, CostLevel as cc, regexPattern as ci, getSmartAccount as cn, useGetVot3Balance as co, useGetNodeUrl as cr, getVechainDomainQueryKey as cs, UpgradeSmartAccountContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, ChooseNameModalProvider as da, EstimationResponse as dc, getPicassoImage as di, useRefreshSmartAccountQueries as dn, getTokenUsdPrice as do, useCurrentLanguage as dr, useFetchPrivyStatus as ds, CustomizationSummaryContent as dt, useAccountCustomizationModal as ea, VeChainKitContext as ec, resolveMediaTypeFromMimeType as ei, useUpgradeSmartAccount as en, useRefreshMetadata as eo, useBuildClauses as er, useGetDomainsOfAddress as es, ChangeCurrencyContent as et, UpgradeSmartAccountModalStyle as f, useChooseNameModal as fa, Rate as fc, humanAddress as fi, useRefreshFactoryQueries as fn, getTokenUsdPriceQueryKey as fo, useCurrency as fr, fetchPrivyAppInfo as fs, CustomizationSummaryContentProps as ft, GasFeeSummary as g, useTransactionToast as ga, formatGasCost as gc, DEFAULT_GAS_TOKEN_PREFERENCES as gi, getHasV1SmartAccount as gn, useGetErc20Balance as go, useMultipleClausesCall as gr, TransactionToast as gs, ChooseNameSummaryContent as gt, GasFeeTokenSelector as h, TransactionToastProvider as ha, calculateTotalCost as hc, isZero as hi, useIsSmartAccountDeployed as hn, getErc20BalanceQueryKey as ho, useCallClause as hr, AccountMainContent as hs, FAQContent as ht, ModalProvider as i, useNotificationsModal as ia, EnrichedLegalDocument as ic, compareAddresses as ii, getUpgradeRequired as in, useMostVotedAppsInRound as io, getEventsKey as ir, useClaimVetDomain as is, ManageCustomTokenContentProps as it, ModalBackButton as j, IpfsImage as ja, ExecuteBatchWithAuthorizationSignData as jc, notFoundImage as ji, getAccountBalanceQueryKey as jn, ExchangeRates as jo, buildCallClauses as jr, PrivyButton as js, usePrivy$1 as jt, VersionFooter as k, useUploadImages as ka, ENSRecords as kc, getENV as ki, useAccountImplementationAddress as kn, TokenWithValue as ko, MultipleClausesCallReturnType as kr, PasskeyLoginButton as ks, useDAppKitWalletModal as kt, LegalDocumentsModalContentsTypes as l, SendTokenModalProvider as la, DepositAccount as lc, randomTransactionUser as li, getSmartAccountQueryKey as ln, PRICE_FEED_IDS as lo, useFeatureAnnouncement as lr, useVechainDomain as ls, ProfileContent as lt, InlineFeedback as m, useWalletModal as ma, VthoPerGasAtSpeed as mc, humanNumber as mi, getIsDeployedQueryKey as mn, UseGetErc20BalanceOptions as mo, getCallClauseQueryKeyWithArgs as mr, useFetchAppInfo as ms, CustomizationContent as mt, getConfig as n, useFAQModal as na, VechainKitProviderProps as nc, uploadBlobToIPFS as ni, getUpgradeRequiredForAccountQueryKey as nn, MostVotedAppsInRoundReturnType as no, UseEventsParams as nr, useIsDomainProtected as ns, BridgeContent as nt, DAppKitWalletButton as o, useExploreEcosystemModal as oa, LegalDocumentSource as oc, isValidAddress as oi, useUpgradeRequired as on, useIsPerson as oo, useScrollToTop as or, getEnsRecordExistsQueryKey as os, AssetsContentProps as ot, WalletSwitchFeedback as p, WalletModalProvider as pa, TransactionCost as pc, humanDomain as pi, getIsDeployed as pn, useGetTokenUsdPrice as po, getCallClauseQueryKey as pr, getPrivyAppInfoQueryKey as ps, AccountCustomizationContentProps as pt, DisconnectConfirmContent as q, StoredWallet as qa, useProfileModal as qi, useEcosystemShortcuts as qn, useGetTextRecords as qo, NodeStrengthLevelToImage as qr, PrivyWalletProvider as qs, getAllEventLogs as qt, AccountModalOptions as r, NotificationsModalProvider as ra, useVeChainKitConfig as rc, validateIpfsUri as ri, useUpgradeRequiredForAccount as rn, XApp as ro, decodeEventLog$1 as rr, buildVetDomainClauses as rs, ManageCustomTokenContent as rt, LegalDocumentItem as s, SwapTokenModalProvider as sa, LegalDocumentType as sc, leftPadWithZeros as si, SmartAccountReturnType as sn, getVot3BalanceQueryKey as so, useIsPWA as sr, useEnsRecordExists as ss, UpgradeSmartAccountContent as st, AppConfig as t, FAQModalProvider as ta, VeChainKitProvider as tc, toIPFSURL as ti, getUpgradeRequiredForAccount as tn, useRefreshBalances as to, GetEventsKeyParams as tr, getIsDomainProtectedQueryKey as ts, ChangeCurrencyContentProps as tt, UpgradeSmartAccountModal as u, useSendTokenModal as ua, EstimatedGas as uc, formatTokenBalance as ui, useSmartAccount as un, SupportedToken as uo, useCurrentCurrency as ur, fetchPrivyStatus as us, ProfileContentProps as ut, TransactionButtonAndStatus as v, useTransactionModal as va, GasTokenInfo as vc, ENV as vi, useHasV1SmartAccount as vn, getTokenInfo$1 as vo, getDocumentTitle as vr, ShareButtons as vs, ChooseNameSearchContent as vt, AssetButton as w, useSwapTransaction as wa, TextRecords as wc, TogglePassportCheck as wi, getCurrentAccountImplementationVersion as wn, useGetB3trBalance as wo, removeLocalStorageItem as wr, WalletDisplayVariant as ws, SelectTokenContent as wt, ScrollToTopWrapper as x, ConnectModalProvider as xa, GasTokenType as xc, SUPPORTED_GAS_TOKENS as xi, getAccountAddress as xn, getCustomTokenBalanceQueryKey as xo, hasNavigator as xr, SocialIcons as xs, ChooseNameContentProps as xt, TransactionButtonAndStatusProps as y, AccountModalProvider as ya, GasTokenPreferences as yc, NON_TRANSFERABLE_TOKEN_SYMBOLS as yi, getAccountVersionQueryKey as yn, useGetCustomTokenInfo as yo, getLocalStorageItem as yr, TransactionModal as ys, ChooseNameSearchContentProps as yt, ActionButton as z, useIpfsMetadata as za, TransactionStatusErrorType as zc, useSignTypedData as zi, delegateAuthorized as zn, getAvatarOfAddressQueryKey as zo, normalize as zr, MainContent as zs, useBuildTransaction as zt };
|
|
4319
|
+
//# sourceMappingURL=index-kNQk5OHF.d.mts.map
|