@vechain/vechain-kit 2.1.0 → 2.1.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/{index-C29c--c1.d.mts → index-9Nctr1tw.d.mts} +70 -47
- package/dist/index-9Nctr1tw.d.mts.map +1 -0
- package/dist/{index-BqitwzCD.d.cts → index-CoM8jwiv.d.cts} +171 -148
- package/dist/index-CoM8jwiv.d.cts.map +1 -0
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.cts +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/package.json +1 -1
- package/dist/index-BqitwzCD.d.cts.map +0 -1
- package/dist/index-C29c--c1.d.mts.map +0 -1
|
@@ -7,7 +7,7 @@ import * as _vechain_sdk_core0 from "@vechain/sdk-core";
|
|
|
7
7
|
import { Address, Certificate, CertificateData, Clause, 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_query21 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";
|
|
@@ -343,22 +343,30 @@ interface ThemeTokens {
|
|
|
343
343
|
color: string;
|
|
344
344
|
border: string;
|
|
345
345
|
hoverBg?: string;
|
|
346
|
+
backdropFilter?: string;
|
|
347
|
+
rounded?: string | number;
|
|
346
348
|
};
|
|
347
349
|
primaryButton: {
|
|
348
350
|
bg: string;
|
|
349
351
|
color: string;
|
|
350
352
|
border: string;
|
|
351
353
|
hoverBg?: string;
|
|
354
|
+
backdropFilter?: string;
|
|
355
|
+
rounded?: string | number;
|
|
352
356
|
};
|
|
353
357
|
tertiaryButton: {
|
|
354
358
|
bg: string;
|
|
355
359
|
color: string;
|
|
356
360
|
border: string;
|
|
361
|
+
backdropFilter?: string;
|
|
362
|
+
rounded?: string | number;
|
|
357
363
|
};
|
|
358
364
|
loginButton: {
|
|
359
365
|
bg: string;
|
|
360
366
|
color: string;
|
|
361
367
|
border: string;
|
|
368
|
+
backdropFilter?: string;
|
|
369
|
+
rounded?: string | number;
|
|
362
370
|
};
|
|
363
371
|
};
|
|
364
372
|
effects: {
|
|
@@ -394,8 +402,12 @@ interface ThemeTokens {
|
|
|
394
402
|
large: string;
|
|
395
403
|
xl: string;
|
|
396
404
|
full: string;
|
|
405
|
+
modal: string;
|
|
397
406
|
};
|
|
398
407
|
};
|
|
408
|
+
modal: {
|
|
409
|
+
rounded?: string | number;
|
|
410
|
+
};
|
|
399
411
|
}
|
|
400
412
|
/**
|
|
401
413
|
* Developer-facing theme configuration
|
|
@@ -411,6 +423,9 @@ interface VechainKitThemeConfig {
|
|
|
411
423
|
modal?: {
|
|
412
424
|
backgroundColor?: string;
|
|
413
425
|
border?: string;
|
|
426
|
+
backdropFilter?: string;
|
|
427
|
+
borderRadius?: string;
|
|
428
|
+
rounded?: string | number;
|
|
414
429
|
};
|
|
415
430
|
buttons?: {
|
|
416
431
|
secondaryButton?: {
|
|
@@ -418,22 +433,30 @@ interface VechainKitThemeConfig {
|
|
|
418
433
|
color?: string;
|
|
419
434
|
border?: string;
|
|
420
435
|
hoverBg?: string;
|
|
436
|
+
backdropFilter?: string;
|
|
437
|
+
rounded?: string | number;
|
|
421
438
|
};
|
|
422
439
|
primaryButton?: {
|
|
423
440
|
bg?: string;
|
|
424
441
|
color?: string;
|
|
425
442
|
border?: string;
|
|
426
443
|
hoverBg?: string;
|
|
444
|
+
backdropFilter?: string;
|
|
445
|
+
rounded?: string | number;
|
|
427
446
|
};
|
|
428
447
|
tertiaryButton?: {
|
|
429
448
|
bg?: string;
|
|
430
449
|
color?: string;
|
|
431
450
|
border?: string;
|
|
451
|
+
backdropFilter?: string;
|
|
452
|
+
rounded?: string | number;
|
|
432
453
|
};
|
|
433
454
|
loginButton?: {
|
|
434
455
|
bg?: string;
|
|
435
456
|
color?: string;
|
|
436
457
|
border?: string;
|
|
458
|
+
backdropFilter?: string;
|
|
459
|
+
rounded?: string | number;
|
|
437
460
|
};
|
|
438
461
|
};
|
|
439
462
|
fonts?: {
|
|
@@ -970,7 +993,7 @@ declare const DisconnectConfirmContent: ({
|
|
|
970
993
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
971
994
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
972
995
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
973
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
996
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query21.UseQueryResult<{
|
|
974
997
|
[k: string]: {
|
|
975
998
|
website: string | undefined;
|
|
976
999
|
id: string;
|
|
@@ -991,7 +1014,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
991
1014
|
//#endregion
|
|
992
1015
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
993
1016
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
994
|
-
declare const useFetchPrivyStatus: () =>
|
|
1017
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query21.UseQueryResult<string, Error>;
|
|
995
1018
|
//#endregion
|
|
996
1019
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
997
1020
|
interface VeChainDomainResult {
|
|
@@ -1001,11 +1024,11 @@ interface VeChainDomainResult {
|
|
|
1001
1024
|
isPrimaryDomain: boolean;
|
|
1002
1025
|
}
|
|
1003
1026
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
1004
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
1027
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query21.UseQueryResult<VeChainDomainResult, Error>;
|
|
1005
1028
|
//#endregion
|
|
1006
1029
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
1007
1030
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
1008
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
1031
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query21.UseQueryResult<boolean, Error>;
|
|
1009
1032
|
//#endregion
|
|
1010
1033
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
1011
1034
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1067,7 +1090,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1067
1090
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1068
1091
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1069
1092
|
*/
|
|
1070
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1093
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query21.UseQueryResult<boolean, Error>;
|
|
1071
1094
|
//#endregion
|
|
1072
1095
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1073
1096
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1095,7 +1118,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1095
1118
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1096
1119
|
* @returns The domains owned by the address
|
|
1097
1120
|
*/
|
|
1098
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1121
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query21.UseQueryResult<{
|
|
1099
1122
|
domains: {
|
|
1100
1123
|
name: string;
|
|
1101
1124
|
}[];
|
|
@@ -1108,7 +1131,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1108
1131
|
* @param name - The VET domain name
|
|
1109
1132
|
* @returns The resolved avatar URL
|
|
1110
1133
|
*/
|
|
1111
|
-
declare const useGetAvatar: (name: string) =>
|
|
1134
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query21.UseQueryResult<string | null, Error>;
|
|
1112
1135
|
//#endregion
|
|
1113
1136
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1114
1137
|
/**
|
|
@@ -1120,7 +1143,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query37.UseQueryRe
|
|
|
1120
1143
|
*/
|
|
1121
1144
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1122
1145
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1123
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1146
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query21.UseQueryResult<TextRecords, Error>;
|
|
1124
1147
|
//#endregion
|
|
1125
1148
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1126
1149
|
type UpdateTextRecordVariables = {
|
|
@@ -1153,7 +1176,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1153
1176
|
* @param domain The domain to get resolver for
|
|
1154
1177
|
* @returns The resolver address for the domain
|
|
1155
1178
|
*/
|
|
1156
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1179
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query21.UseQueryResult<`0x${string}`, unknown>;
|
|
1157
1180
|
//#endregion
|
|
1158
1181
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1159
1182
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1163,7 +1186,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1163
1186
|
* @param address The owner's address
|
|
1164
1187
|
* @returns The avatar URL for the address's primary domain
|
|
1165
1188
|
*/
|
|
1166
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1189
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query21.UseQueryResult<string, Error>;
|
|
1167
1190
|
//#endregion
|
|
1168
1191
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1169
1192
|
/**
|
|
@@ -1180,7 +1203,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1180
1203
|
* @param name - The VET domain name
|
|
1181
1204
|
* @returns The resolved avatar URL
|
|
1182
1205
|
*/
|
|
1183
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1206
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query21.UseQueryResult<string | null, Error>;
|
|
1184
1207
|
//#endregion
|
|
1185
1208
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1186
1209
|
type useUnsetDomainProps = {
|
|
@@ -1289,7 +1312,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1289
1312
|
* Hook to get the current roundId of allocations voting
|
|
1290
1313
|
* @returns the current roundId of allocations voting
|
|
1291
1314
|
*/
|
|
1292
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1315
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query21.UseQueryResult<string, unknown>;
|
|
1293
1316
|
//#endregion
|
|
1294
1317
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1295
1318
|
declare const useCustomTokens: () => {
|
|
@@ -1302,7 +1325,7 @@ declare const useCustomTokens: () => {
|
|
|
1302
1325
|
//#endregion
|
|
1303
1326
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1304
1327
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1305
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1328
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query21.UseQueryResult<{
|
|
1306
1329
|
original: string;
|
|
1307
1330
|
scaled: string;
|
|
1308
1331
|
formatted: string;
|
|
@@ -1311,7 +1334,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query37.U
|
|
|
1311
1334
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1312
1335
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1313
1336
|
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
|
|
1314
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1337
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query21.UseQueryResult<{
|
|
1315
1338
|
original: string;
|
|
1316
1339
|
scaled: string;
|
|
1317
1340
|
formatted: string;
|
|
@@ -1324,11 +1347,11 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1324
1347
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1325
1348
|
declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1326
1349
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1327
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1350
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query21.UseQueryResult<CustomTokenInfo, Error>;
|
|
1328
1351
|
//#endregion
|
|
1329
1352
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1330
1353
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1331
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string) =>
|
|
1354
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query21.UseQueryResult<{
|
|
1332
1355
|
original: string;
|
|
1333
1356
|
scaled: string;
|
|
1334
1357
|
formatted: string;
|
|
@@ -1345,11 +1368,11 @@ declare const PRICE_FEED_IDS: {
|
|
|
1345
1368
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1346
1369
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1347
1370
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1348
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1371
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query21.UseQueryResult<number, Error>;
|
|
1349
1372
|
//#endregion
|
|
1350
1373
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1351
1374
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1352
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1375
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query21.UseQueryResult<{
|
|
1353
1376
|
original: string;
|
|
1354
1377
|
scaled: string;
|
|
1355
1378
|
formatted: string;
|
|
@@ -1368,7 +1391,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1368
1391
|
* @param user - The user address.
|
|
1369
1392
|
* @returns The isPerson status.
|
|
1370
1393
|
*/
|
|
1371
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1394
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query21.UseQueryResult<boolean, Error>;
|
|
1372
1395
|
//#endregion
|
|
1373
1396
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1374
1397
|
type XApp = {
|
|
@@ -1406,7 +1429,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1406
1429
|
//#endregion
|
|
1407
1430
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1408
1431
|
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => (string | unknown[])[];
|
|
1409
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1432
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query21.UseQueryResult<{
|
|
1410
1433
|
id: string;
|
|
1411
1434
|
teamWalletAddress: `0x${string}`;
|
|
1412
1435
|
name: string;
|
|
@@ -1489,7 +1512,7 @@ type XAppMetadata = {
|
|
|
1489
1512
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1490
1513
|
*/
|
|
1491
1514
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1492
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1515
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query21.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1493
1516
|
//#endregion
|
|
1494
1517
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1495
1518
|
/**
|
|
@@ -1504,7 +1527,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1504
1527
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1505
1528
|
*
|
|
1506
1529
|
*/
|
|
1507
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1530
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query21.UseQueryResult<{
|
|
1508
1531
|
app: string;
|
|
1509
1532
|
share: number;
|
|
1510
1533
|
unallocatedShare: number;
|
|
@@ -1526,7 +1549,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1526
1549
|
* @param ipfsUri - The IPFS URI
|
|
1527
1550
|
* @returns The metadata from IPFS
|
|
1528
1551
|
*/
|
|
1529
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1552
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query21.UseQueryResult<_tanstack_react_query21.NoInfer<T$1>, Error>;
|
|
1530
1553
|
//#endregion
|
|
1531
1554
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1532
1555
|
interface IpfsImage {
|
|
@@ -1553,14 +1576,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1553
1576
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1554
1577
|
* @returns The NFT media
|
|
1555
1578
|
*/
|
|
1556
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1579
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query21.UseQueryResult<IpfsImage, Error>;
|
|
1557
1580
|
/**
|
|
1558
1581
|
* Custom hook to fetch a list of IPFS images.
|
|
1559
1582
|
*
|
|
1560
1583
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1561
1584
|
* @returns An array of queries for each IPFS image URI.
|
|
1562
1585
|
*/
|
|
1563
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1586
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query21.UseQueryResult<IpfsImage, Error>[];
|
|
1564
1587
|
//#endregion
|
|
1565
1588
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1566
1589
|
/**
|
|
@@ -1568,7 +1591,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1568
1591
|
* @param ipfsUris - The IPFS URIs
|
|
1569
1592
|
* @returns The metadata from IPFS for each URI
|
|
1570
1593
|
*/
|
|
1571
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1594
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query21.UseQueryResult<T$1, Error>[];
|
|
1572
1595
|
//#endregion
|
|
1573
1596
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1574
1597
|
declare const imageCompressionOptions: Options;
|
|
@@ -2122,7 +2145,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2122
2145
|
* );
|
|
2123
2146
|
* ```
|
|
2124
2147
|
*/
|
|
2125
|
-
declare const useAppHubApps: () =>
|
|
2148
|
+
declare const useAppHubApps: () => _tanstack_react_query21.UseQueryResult<AppHubApp[], Error>;
|
|
2126
2149
|
//#endregion
|
|
2127
2150
|
//#region src/utils/constants.d.ts
|
|
2128
2151
|
declare const TOKEN_LOGOS: Record<string, string>;
|
|
@@ -2469,7 +2492,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
2469
2492
|
method: TMethod;
|
|
2470
2493
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2471
2494
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
2472
|
-
}) =>
|
|
2495
|
+
}) => _tanstack_react_query21.UseQueryResult<_tanstack_react_query21.NoInfer<TData>, unknown>;
|
|
2473
2496
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
2474
2497
|
thor,
|
|
2475
2498
|
calls,
|
|
@@ -2480,7 +2503,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
2480
2503
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
2481
2504
|
queryKey: string[];
|
|
2482
2505
|
enabled?: boolean;
|
|
2483
|
-
}) =>
|
|
2506
|
+
}) => _tanstack_react_query21.UseQueryResult<_tanstack_react_query21.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
2484
2507
|
//#endregion
|
|
2485
2508
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
2486
2509
|
/**
|
|
@@ -2604,7 +2627,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
2604
2627
|
filterParams,
|
|
2605
2628
|
mapResponse,
|
|
2606
2629
|
nodeUrl
|
|
2607
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
2630
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query21.UseQueryResult<R[], Error>;
|
|
2608
2631
|
//#endregion
|
|
2609
2632
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
2610
2633
|
interface BuildClausesParams {
|
|
@@ -2755,7 +2778,7 @@ declare const useGasEstimation: ({
|
|
|
2755
2778
|
tokens,
|
|
2756
2779
|
sendingAmount,
|
|
2757
2780
|
sendingTokenSymbol
|
|
2758
|
-
}: UseGasEstimationParams) =>
|
|
2781
|
+
}: UseGasEstimationParams) => _tanstack_react_query21.UseQueryResult<EstimationResponse & {
|
|
2759
2782
|
usedToken: string;
|
|
2760
2783
|
}, Error>;
|
|
2761
2784
|
//#endregion
|
|
@@ -2769,7 +2792,7 @@ declare const useEstimateAllTokens: ({
|
|
|
2769
2792
|
clauses,
|
|
2770
2793
|
tokens,
|
|
2771
2794
|
enabled
|
|
2772
|
-
}: UseEstimateAllTokensParams) =>
|
|
2795
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query21.UseQueryResult<Record<GasTokenType, {
|
|
2773
2796
|
cost: number;
|
|
2774
2797
|
loading: boolean;
|
|
2775
2798
|
error?: string;
|
|
@@ -2786,7 +2809,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
2786
2809
|
* @param address The address of the account to get the balance for
|
|
2787
2810
|
* @returns The account balance
|
|
2788
2811
|
*/
|
|
2789
|
-
declare const useAccountBalance: (address?: string) =>
|
|
2812
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query21.UseQueryResult<{
|
|
2790
2813
|
balance: string;
|
|
2791
2814
|
energy: string;
|
|
2792
2815
|
}, Error>;
|
|
@@ -2799,7 +2822,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
2799
2822
|
* @param version - The version of the smart account implementation
|
|
2800
2823
|
* @returns The address of the smart account implementation
|
|
2801
2824
|
*/
|
|
2802
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
2825
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query21.UseQueryResult<string, Error>;
|
|
2803
2826
|
//#endregion
|
|
2804
2827
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
2805
2828
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -2808,7 +2831,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
2808
2831
|
* Get the current account implementation version used by the smart account factory
|
|
2809
2832
|
* @returns The current account implementation version
|
|
2810
2833
|
*/
|
|
2811
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
2834
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query21.UseQueryResult<number, Error>;
|
|
2812
2835
|
//#endregion
|
|
2813
2836
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
2814
2837
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -2818,7 +2841,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
2818
2841
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2819
2842
|
* @returns The address of the smart account
|
|
2820
2843
|
*/
|
|
2821
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
2844
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query21.UseQueryResult<string, Error>;
|
|
2822
2845
|
//#endregion
|
|
2823
2846
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
2824
2847
|
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => (string | unknown[])[];
|
|
@@ -2828,7 +2851,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2828
2851
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2829
2852
|
* @returns The version of the smart account
|
|
2830
2853
|
*/
|
|
2831
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
2854
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query21.UseQueryResult<{
|
|
2832
2855
|
version: number;
|
|
2833
2856
|
isDeployed: boolean;
|
|
2834
2857
|
}, unknown>;
|
|
@@ -2841,7 +2864,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
2841
2864
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2842
2865
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
2843
2866
|
*/
|
|
2844
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
2867
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query21.UseQueryResult<boolean, Error>;
|
|
2845
2868
|
//#endregion
|
|
2846
2869
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
2847
2870
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -2850,7 +2873,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
2850
2873
|
* Check if a smart account is deployed
|
|
2851
2874
|
* @returns True if the smart account is deployed, false otherwise
|
|
2852
2875
|
*/
|
|
2853
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
2876
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query21.UseQueryResult<boolean, Error>;
|
|
2854
2877
|
//#endregion
|
|
2855
2878
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
2856
2879
|
/**
|
|
@@ -2883,7 +2906,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
2883
2906
|
isDeployed: boolean;
|
|
2884
2907
|
}>;
|
|
2885
2908
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
2886
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
2909
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query21.UseQueryResult<{
|
|
2887
2910
|
address: undefined;
|
|
2888
2911
|
isDeployed?: undefined;
|
|
2889
2912
|
} | {
|
|
@@ -2901,7 +2924,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2901
2924
|
* @param targetVersion - The version of the smart account to check for
|
|
2902
2925
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
2903
2926
|
*/
|
|
2904
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
2927
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query21.UseQueryResult<boolean, Error>;
|
|
2905
2928
|
//#endregion
|
|
2906
2929
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
2907
2930
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -2912,7 +2935,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
2912
2935
|
* @param targetVersion - The target version of the smart account
|
|
2913
2936
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
2914
2937
|
*/
|
|
2915
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
2938
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query21.UseQueryResult<boolean, Error>;
|
|
2916
2939
|
//#endregion
|
|
2917
2940
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
2918
2941
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -2937,7 +2960,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
2937
2960
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
2938
2961
|
* @returns the current block
|
|
2939
2962
|
*/
|
|
2940
|
-
declare const useCurrentBlock: () =>
|
|
2963
|
+
declare const useCurrentBlock: () => _tanstack_react_query21.UseQueryResult<_vechain_sdk_network2.ExpandedBlockDetail, Error>;
|
|
2941
2964
|
//#endregion
|
|
2942
2965
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
2943
2966
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -2946,7 +2969,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
2946
2969
|
* Get the chain id
|
|
2947
2970
|
* @returns The chain id
|
|
2948
2971
|
*/
|
|
2949
|
-
declare const useGetChainId: () =>
|
|
2972
|
+
declare const useGetChainId: () => _tanstack_react_query21.UseQueryResult<string, Error>;
|
|
2950
2973
|
//#endregion
|
|
2951
2974
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
2952
2975
|
/**
|
|
@@ -3187,7 +3210,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
3187
3210
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
3188
3211
|
* @returns Query result containing the transaction receipt
|
|
3189
3212
|
*/
|
|
3190
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
3213
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query21.UseQueryResult<_vechain_sdk_network2.TransactionReceipt, Error>;
|
|
3191
3214
|
//#endregion
|
|
3192
3215
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenContent.d.ts
|
|
3193
3216
|
type SendTokenContentProps = {
|
|
@@ -4057,4 +4080,4 @@ type AppConfig = {
|
|
|
4057
4080
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4058
4081
|
//#endregion
|
|
4059
4082
|
export { AssetsContentProps as $, getErc20BalanceQueryKey as $a, useSendTokenModal as $i, useGetNodeUrl as $n, DisconnectConfirmContent as $o, randomTransactionUser as $r, TransactionCost as $s, getSmartAccount as $t, ModalBackButton as A, useXAppsShares as Aa, useNotificationAlerts as Ai, delegateAuthorized as An, getTextRecordsQueryKey as Ao, normalize as Ar, useLegalDocuments as As, useBuildTransaction as At, AccountModal as B, useRefreshBalances as Ba, AccountCustomizationModalProvider as Bi, LocalStorageKey as Bn, useIsDomainProtected as Bo, buildQueryString as Br, VeChainKitContext as Bs, getChainId as Bt, AddressDisplayCard as C, getIpfsImageQueryKey as Ca, TokenBalance as Cc, getAppHubAppsQueryKey as Ci, useAccountBalance as Cn, getAvatarOfAddressQueryKey as Co, executeCallClause as Cr, VeChainLoginButton as Cs, useMfaEnrollment as Ct, StickyHeaderContainer as D, getIpfsMetadataQueryKey as Da, Wallet as Dc, useLoginWithPasskey$1 as Di, useGasEstimation as Dn, buildClauses as Do, compare as Dr, ConnectModal as Ds, txReceiptQueryKey as Dt, StickyFooterContainer as E, getIpfsMetadata as Ea, VePassportUserStatus as Ec, useLoginWithOAuth$1 as Ei, UseGasEstimationParams as En, useGetResolverAddress as Eo, addPrefix as Er, MainContent as Es, useThor$1 as Et, QuickActionsSection as F, UseWalletReturnType as Fa, UpgradeSmartAccountModalProvider as Fi, useGenericDelegator as Fn, DomainsResponse as Fo, EconomicNodeStrengthLevelToName as Fr, PrivyWalletProviderContextType as Fs, UseSendTransactionReturnValue as Ft, LanguageSettingsContent as G, useIsPerson as Ga, useNotificationsModal as Gi, useBuildClauses as Gn, useEnsRecordExists as Go, toIPFSURL as Gr, LegalDocumentAgreement as Gs, useUpgradeSmartAccount as Gt, TermsAndPrivacyContent as H, XApp as Ha, FAQModalProvider as Hi, BuildClausesParams as Hn, useClaimVetDomain as Ho, xNodeToGMstartingLevel as Hr, VechainKitProviderProps as Hs, useGetChainId as Ht, BalanceSection as I, useWallet$1 as Ia, useUpgradeSmartAccountModal as Ii, useCrossAppConnectionCache as In, getDomainsOfAddress as Io, MinXNodeLevel as Ir, usePrivyWalletProvider as Is, useSendTransaction as It, ChangeCurrencyContentProps as J, PRICE_FEED_IDS as Ja, AccessAndSecurityModalProvider as Ji, decodeEventLog$1 as Jn, fetchPrivyStatus as Jo, compareAddresses as Jr, CostLevel as Js, useUpgradeRequiredForAccount as Jt, GeneralSettingsContent as K, getVot3BalanceQueryKey as Ka, ExploreEcosystemModalProvider as Ki, GetEventsKeyParams as Kn, getVechainDomainQueryKey as Ko, uploadBlobToIPFS as Kr, LegalDocumentSource as Ks, getUpgradeRequiredForAccount as Kt, AccountSelector as L, getRoundXAppsQueryKey as La, useLoginModalContent as Li, EcosystemShortcut as Ln, getDomainsOfAddressQueryKey as Lo, NodeStrengthLevelToImage as Lr, LegalDocument as Ls, GetEventsProps as Lt, DomainRequiredAlert as M, getXAppMetadata as Ma, useAccountModalOptions as Mi, estimateGas as Mn, getAvatarQueryKey as Mo, validate as Mr, VechainKitThemeProvider as Ms, useTransferVET as Mt, ExchangeWarningAlert as N, useXAppMetadata as Na, ProfileModalProvider as Ni, getDepositAccount as Nn, useGetAvatar as No, isRejectionError as Nr, useVechainKitThemeConfig as Ns, buildERC20Clauses as Nt, VersionFooter as O, useIpfsMetadata as Oa, useSignTypedData as Oi, useGasTokenSelection as On, useUpdateTextRecord as Oo, isInvalid as Or, ConnectModalContentsTypes as Os, useTxReceipt as Ot, FeatureAnnouncementCard as P, useWalletMetadata as Pa, useProfileModal as Pi, signVip191Transaction as Pn, Domain as Po, TIME as Pr, PrivyWalletProvider as Ps, useTransferERC20 as Pt, AssetsContent as Q, useGetTokenUsdPrice as Qa, SendTokenModalProvider as Qi, useIsPWA as Qn, useFetchAppInfo as Qo, regexPattern as Qr, Rate as Qs, SmartAccountReturnType as Qt, ActionButton as R, useRoundXApps as Ra, ReceiveModalProvider as Ri, useEcosystemShortcuts as Rn, useGetDomainsOfAddress as Ro, XNodeStrengthLevelToName as Rr, LegalDocumentOptions as Rs, getAllEventLogs as Rt, ModalFAQButton as S, getIpfsImage as Sa, SmartAccount as Sc, fetchAppHubApps as Si, getAccountBalanceQueryKey as Sn, useGetAvatarLegacy as So, buildCallClauses as Sr, EcosystemButton as Ss, useDAppKitWalletModal as St, BaseModal as T, useIpfsImageList as Ta, TransactionStatusErrorType as Tc, useLoginWithVeChain as Ti, useEstimateAllTokens as Tn, getResolverAddressQueryKey as To, isValidUrl as Tr, ConnectionButton as Ts, useSetWalletRecovery as Tt, GasTokenSettingsContent as U, useMostVotedAppsInRound as Ua, useFAQModal as Ui, buildBatchAuthorizationTypedData as Un, useClaimVeWorldSubdomain as Uo, convertUriToUrl as Ur, useVeChainKitConfig as Us, currentBlockQueryKey as Ut, AccountModalContentTypes as V, MostVotedAppsInRoundReturnType as Va, useAccountCustomizationModal as Vi, useLocalStorage as Vn, buildVetDomainClauses as Vo, gmNfts as Vr, VeChainKitProvider as Vs, getChainIdQueryKey as Vt, AppearanceSettingsContent as W, getIsPersonQueryKey as Wa, NotificationsModalProvider as Wi, buildSingleAuthorizationTypedData as Wn, getEnsRecordExistsQueryKey as Wo, resolveMediaTypeFromMimeType as Wr, EnrichedLegalDocument as Ws, useCurrentBlock as Wt, ManageCustomTokenContent as X, getTokenUsdPrice as Xa, SwapTokenModalProvider as Xi, useEvents as Xn, fetchPrivyAppInfo as Xo, isValidAddress as Xr, EstimatedGas as Xs, getUpgradeRequiredQueryKey as Xt, BridgeContent as Y, SupportedToken as Ya, useAccessAndSecurityModal as Yi, getEventsKey as Yn, useFetchPrivyStatus as Yo, compareListOfAddresses as Yr, DepositAccount as Ys, getUpgradeRequired as Yt, ManageCustomTokenContentProps as Z, getTokenUsdPriceQueryKey as Za, useSwapTokenModal as Zi, useScrollToTop as Zn, getPrivyAppInfoQueryKey as Zo, leftPadWithZeros as Zr, EstimationResponse as Zs, useUpgradeRequired as Zt, ModalNotificationButton as _, imageCompressionOptions as _a, ExecuteBatchWithAuthorizationSignData as _c, VECHAIN_PRIVY_APP_ID as _i, useCurrentAccountImplementationVersion as _n, WalletTokenBalance as _o, safeWindowOpen as _r, VeChainWithPrivyLoginButton as _s, SelectTokenContent as _t, useModal as a, useTransactionToast as aa, GasTokenPreferences as ac, isZero as ai, getIsDeployedQueryKey as an, getCustomTokenBalanceQueryKey as ao, getCallClauseQueryKeyWithArgs as ar, AccountMainContent as as, CustomizationSummaryContentProps as at, AccountAvatar as b, IpfsImage as ba, PrivyAppInfo as bc, notFoundImage as bi, useAccountImplementationAddress as bn, getAvatarLegacy as bo, MultipleClausesCallReturnType as br, LoginWithGoogleButton as bs, ThorClient$1 as bt, LegalDocumentsModal as c, AccountModalProvider as ca, TransactionSpeed as cc, ENV as ci, getHasV1SmartAccountQueryKey as cn, useGetB3trBalance as co, copyToClipboard as cr, ShareButtons as cs, FAQContent as ct, UpgradeSmartAccountModalContentsTypes as d, useConnectModal as da, CURRENCY as dc, TOKEN_LOGOS as di, useGetAccountVersion as dn, useCurrentAllocationsRoundId as do, getWindowOrigin as dr, SocialIcons as ds, ChooseNameSearchContent as dt, ChooseNameModalProvider as ea, VthoPerGasAtSpeed as ec, formatTokenBalance as ei, getSmartAccountQueryKey as en, useGetErc20Balance as eo, useFeatureAnnouncement as er, DisconnectConfirmContentProps as es, UpgradeSmartAccountContent as et, UpgradeSmartAccountModalStyle as f, useSwapQuotes as fa, CURRENCY_SYMBOLS as fc, TOKEN_LOGO_COMPONENTS as fi, getAccountAddress as fn, useTotalBalance as fo, hasNavigator as fr, WalletButton as fs, ChooseNameSearchContentProps as ft, GasFeeSummary as g, compressImages as ga, EnhancedClause as gc, VECHAIN_KIT_TERMS_CONFIG as gi, getCurrentAccountImplementationVersionQueryKey as gn, useTokenPrices as go, safeQuerySelector as gr, LoginWithGithubButton as gs, ReceiveTokenContent as gt, GasFeeTokenSelector as h, UploadedImage as ha, ENSRecords as hc, VECHAIN_KIT_STORAGE_KEYS as hi, getCurrentAccountImplementationVersion as hn, ExchangeRates as ho, removeLocalStorageItem as hr, ConnectPopover as hs, SwapTokenContent as ht, ModalProvider as i, TransactionToastProvider as ia, GasTokenInfo as ic, humanNumber as ii, getIsDeployed as in, TokenWithBalance as io, getCallClauseQueryKey as ir, AccessAndSecurityContent as is, CustomizationSummaryContent as it, CrossAppConnectionSecurityCard as j, XAppMetadata as ja, useNotifications as ji, estimateAndBuildTxBody as jn, useGetTextRecords as jo, removePrefix as jr, ColorModeSync as js, buildVETClauses as jt, AddressDisplay as k, getXAppsSharesQueryKey as ka, useSignMessage as ki, decodeRawTx as kn, getTextRecords as ko, isValid as kr, LegalDocumentsProvider as ks, BuildTransactionProps as kt, LegalDocumentsModalContentsTypes as l, useAccountModal as la, ENS_TEXT_RECORDS as lc, PrivyEcosystemApp as li, useHasV1SmartAccount as ln, useCustomTokens as lo, getDocumentTitle as lr, TransactionModal as ls, ChooseNameSummaryContent as lt, LoginLoadingModal as m, useSingleImageUpload as ma, CrossAppConnectionCache as mc, VECHAIN_KIT_COOKIES_CONFIG as mi, useGetAccountAddress as mn, useTokensWithValues as mo, isOnline as mr, WalletDisplayVariant as ms, ChooseNameContentProps as mt, getConfig as n, WalletModalProvider as na, formatGasCost as nc, humanAddress as ni, useRefreshSmartAccountQueries as nn, getTokenInfo$1 as no, useCurrentLanguage as nr, SettingsContent as ns, ProfileContent as nt, DAppKitWalletButton as o, TransactionModalProvider as oa, GasTokenSelection as oc, DEFAULT_GAS_TOKEN_PREFERENCES as oi, useIsSmartAccountDeployed as on, useGetCustomTokenBalances as oo, useCallClause as or, TransactionToast as os, AccountCustomizationContentProps as ot, EcosystemModal as p, useSwapTransaction as pa, ConnectionSource as pc, TogglePassportCheck as pi, getAccountAddressQueryKey as pn, TokenWithValue as po, isBrowser as pr, WalletButtonProps as ps, ChooseNameContent as pt, ChangeCurrencyContent as q, useGetVot3Balance as qa, useExploreEcosystemModal as qi, UseEventsParams as qn, useVechainDomain as qo, validateIpfsUri as qr, LegalDocumentType as qs, getUpgradeRequiredForAccountQueryKey as qt, AccountModalOptions as r, useWalletModal as ra, GasTokenEstimate as rc, humanDomain as ri, useRefreshFactoryQueries as rn, useGetCustomTokenInfo as ro, useCurrency as rr, SettingsContentProps as rs, ProfileContentProps as rt, LegalDocumentItem as s, useTransactionModal as sa, GasTokenType as sc, DEFAULT_PRIVY_ECOSYSTEM_APPS as si, getHasV1SmartAccount as sn, getB3trBalanceQueryKey as so, useMultipleClausesCall as sr, TransactionModalContent as ss, CustomizationContent as st, AppConfig as t, useChooseNameModal as ta, calculateTotalCost as tc, getPicassoImage as ti, useSmartAccount as tn, getCustomTokenInfoQueryKey as to, useCurrentCurrency as tr, EmbeddedWalletContent as ts, UpgradeSmartAccountContentProps as tt, UpgradeSmartAccountModal as u, ConnectModalProvider as ua, TextRecords as uc, SUPPORTED_GAS_TOKENS as ui, getAccountVersionQueryKey as un, getCurrentAllocationsRoundIdQueryKey as uo, getLocalStorageItem as ur, TransactionModalProps as us, ChooseNameSummaryContentProps as ut, TransactionButtonAndStatus as v, useUploadImages as va, ExecuteWithAuthorizationSignData as vc, getENV as vi, getAccountImplementationAddress as vn, useTokenBalances as vo, setLocalStorageItem as vr, DappKitButton as vs, SendTokenSummaryContent as vt, AssetButton as w, useIpfsImage as wa, TransactionStatus as wc, useAppHubApps as wi, UseEstimateAllTokensParams as wn, useGetAvatarOfAddress as wo, executeMultipleClausesCall as wr, EmailLoginButton as ws, usePrivy$1 as wt, ScrollToTopWrapper as x, MAX_IMAGE_SIZE as xa, PrivyLoginMethod as xc, AppHubApp as xi, getAccountBalance as xn, getAvatarLegacyQueryKey as xo, ViewFunctionResult as xr, PrivyButton as xs, useDAppKitWallet as xt, TransactionButtonAndStatusProps as y, useIpfsMetadatas as ya, NFTMediaType as yc, getGenericDelegatorUrl as yi, getAccountImplementationAddressQueryKey as yn, useUnsetDomain as yo, MultipleClausesCallParameters as yr, PasskeyLoginButton as ys, SendTokenContent as yt, AccountDetailsButton as z, useRefreshMetadata as za, useReceiveModal as zi, useSyncableLocalStorage as zn, getIsDomainProtectedQueryKey as zo, allNodeStrengthLevelToName as zr, VeChainKitConfig as zs, getEventLogs as zt };
|
|
4060
|
-
//# sourceMappingURL=index-
|
|
4083
|
+
//# sourceMappingURL=index-9Nctr1tw.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-9Nctr1tw.d.mts","names":[],"sources":["../src/config/network.ts","../src/types/types.ts","../src/types/ensTextRecords.ts","../src/types/gasToken.ts","../src/types/gasEstimation.ts","../src/types/index.ts","../src/theme/tokens.ts","../src/providers/VeChainKitProvider.tsx","../src/providers/PrivyWalletProvider.tsx","../src/providers/VechainKitThemeProvider.tsx","../src/providers/LegalDocumentsProvider.tsx","../src/components/ConnectModal/ConnectModal.tsx","../src/components/ConnectModal/Contents/MainContent.tsx","../src/components/ConnectModal/Components/ConnectionButton.tsx","../src/components/ConnectModal/Components/EmailLoginButton.tsx","../src/components/ConnectModal/Components/VeChainLoginButton.tsx","../src/components/ConnectModal/Components/EcosystemButton.tsx","../src/components/ConnectModal/Components/PrivyButton.tsx","../src/components/ConnectModal/Components/LoginWithGoogleButton.tsx","../src/components/ConnectModal/Components/PasskeyLoginButton.tsx","../src/components/ConnectModal/Components/DappKitButton.tsx","../src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.tsx","../src/components/ConnectModal/Components/LoginWithGithubButton.tsx","../src/components/ConnectModal/ConnectPopover.tsx","../src/components/WalletButton/types.ts","../src/components/WalletButton/WalletButton.tsx","../src/components/WalletButton/SocialIcons.tsx","../src/components/TransactionModal/TransactionModal.tsx","../src/components/TransactionModal/Components/ShareButtons.tsx","../src/components/TransactionModal/TransactionModalContent.tsx","../src/components/TransactionToast/TransactionToast.tsx","../src/components/AccountModal/Contents/Account/AccountMainContent.tsx","../src/components/AccountModal/Contents/Account/AccessAndSecurityContent.tsx","../src/components/AccountModal/Contents/Account/SettingsContent.tsx","../src/components/AccountModal/Contents/Account/EmbeddedWalletContent.tsx","../src/components/AccountModal/Contents/Account/DisconnectConfirmContent.tsx","../src/hooks/api/privy/useFetchAppInfo.ts","../src/hooks/api/privy/useFetchPrivyStatus.ts","../src/hooks/api/vetDomains/useVechainDomain.ts","../src/hooks/api/vetDomains/useEnsRecordExists.ts","../src/hooks/api/vetDomains/useClaimVeWorldSubdomain.ts","../src/hooks/api/vetDomains/useClaimVetDomain.ts","../src/hooks/api/vetDomains/useIsDomainProtected.ts","../src/hooks/api/vetDomains/useGetDomainsOfAddress.ts","../src/hooks/api/vetDomains/useGetAvatar.ts","../src/hooks/api/vetDomains/useGetTextRecords.ts","../src/hooks/api/vetDomains/useUpdateTextRecord.ts","../src/hooks/api/vetDomains/useGetResolverAddress.ts","../src/hooks/api/vetDomains/useGetAvatarOfAddress.ts","../src/hooks/api/vetDomains/useGetAvatarLegacy.ts","../src/hooks/api/vetDomains/useUnsetDomain.ts","../src/hooks/api/wallet/useTokenBalances.ts","../src/hooks/api/wallet/useTokenPrices.ts","../src/hooks/api/wallet/useTokensWithValues.ts","../src/hooks/api/wallet/useTotalBalance.ts","../src/hooks/api/wallet/useCurrentAllocationsRoundId.ts","../src/hooks/api/wallet/useCustomTokens.ts","../src/hooks/api/wallet/useGetB3trBalance.ts","../src/hooks/api/wallet/useGetCustomTokenBalances.ts","../src/hooks/api/wallet/useGetCustomTokenInfo.ts","../src/hooks/api/wallet/useGetErc20Balance.ts","../src/hooks/api/wallet/useGetTokenUsdPrice.ts","../src/hooks/api/wallet/useGetVot3Balance.ts","../src/hooks/api/wallet/useIsPerson.ts","../src/hooks/api/wallet/useMostVotedAppsInRound.ts","../src/hooks/api/wallet/useRefreshBalances.ts","../src/hooks/api/wallet/useRefreshMetadata.ts","../src/hooks/api/wallet/useRoundXApps.ts","../src/hooks/api/wallet/useWallet.ts","../src/hooks/api/wallet/useWalletMetadata.ts","../src/hooks/api/wallet/useXAppMetadata.tsx","../src/hooks/api/wallet/useXAppShares.ts","../src/hooks/api/ipfs/useIpfsMetadata.ts","../src/hooks/api/ipfs/useIpfsImage.ts","../src/hooks/api/ipfs/useIpfsMetadatas.ts","../src/hooks/api/ipfs/useUploadImages.ts","../src/hooks/api/ipfs/useSingleImageUpload.ts","../src/types/swap.ts","../src/hooks/api/swap/useSwapTransaction.ts","../src/hooks/api/swap/useSwapQuotes.ts","../src/hooks/modals/useConnectModal.tsx","../src/hooks/modals/useAccountModal.tsx","../src/hooks/modals/useTransactionModal.tsx","../src/hooks/modals/useTransactionToast.tsx","../src/hooks/modals/useWalletModal.tsx","../src/hooks/modals/useChooseNameModal.tsx","../src/hooks/modals/useSendTokenModal.tsx","../src/hooks/modals/useSwapTokenModal.tsx","../src/hooks/modals/useAccessAndSecurityModal.tsx","../src/hooks/modals/useExploreEcosystemModal.tsx","../src/hooks/modals/useNotificationsModal.tsx","../src/hooks/modals/useFAQModal.tsx","../src/hooks/modals/useAccountCustomizationModal.tsx","../src/hooks/modals/useReceiveModal.tsx","../src/hooks/modals/useLoginModalContent.ts","../src/hooks/modals/useUpgradeSmartAccountModal.tsx","../src/hooks/modals/useProfileModal.tsx","../src/hooks/modals/useAccountModalOptions.tsx","../src/hooks/notifications/types.ts","../src/hooks/notifications/useNotifications.ts","../src/hooks/notifications/useNotificationAlerts.ts","../src/hooks/signing/useSignMessage.ts","../src/hooks/signing/useSignTypedData.ts","../src/hooks/login/useLoginWithPasskey.ts","../src/hooks/login/useLoginWithOAuth.ts","../src/hooks/login/useLoginWithVeChain.ts","../src/components/AccountModal/Contents/Ecosystem/Components/CategoryLabel.tsx","../src/hooks/utils/useAppHubApps.ts","../src/utils/constants.tsx","../src/utils/formattingUtils.tsx","../src/utils/randomTxForwarder.tsx","../src/utils/addressUtils.ts","../src/utils/ipfs.ts","../src/utils/media.ts","../src/utils/uri.ts","../src/utils/gmNfts.ts","../src/utils/buildQueryString.ts","../src/utils/xNode.ts","../src/utils/time.ts","../src/utils/stringUtils.ts","../src/utils/hexUtils.ts","../src/utils/url.ts","../src/utils/thorUtils.ts","../src/utils/ssrUtils.ts","../src/hooks/utils/useCallClause.ts","../src/hooks/utils/useCurrency.ts","../src/hooks/utils/useCurrentLanguage.ts","../src/hooks/utils/useCurrentCurrency.ts","../src/hooks/utils/useFeatureAnnouncement.ts","../src/hooks/utils/useGetNodeUrl.ts","../src/hooks/utils/useIsPwa.ts","../src/hooks/utils/useScrollToTop.ts","../src/hooks/utils/useEvents.ts","../src/hooks/utils/useBuildClauses.ts","../src/hooks/cache/useLocalStorage.ts","../src/hooks/cache/useSyncableLocalStorage.ts","../src/hooks/cache/useEcosystemShortcuts.ts","../src/hooks/cache/useCrossAppConnectionCache.ts","../src/hooks/generic-delegator/useGenericDelegator.ts","../src/hooks/generic-delegator/useGasTokenSelection.ts","../src/hooks/generic-delegator/useGasEstimation.ts","../src/hooks/generic-delegator/useEstimateAllTokens.ts","../src/hooks/thor/accounts/useAccountBalance.ts","../src/hooks/thor/smartAccounts/useAccountImplementationAddress.ts","../src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.ts","../src/hooks/thor/smartAccounts/useGetAccountAddress.ts","../src/hooks/thor/smartAccounts/useGetAccountVersion.ts","../src/hooks/thor/smartAccounts/useHasV1SmartAccount.ts","../src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.ts","../src/hooks/thor/smartAccounts/useRefreshFactoryQueries.ts","../src/hooks/thor/smartAccounts/useRefreshSmartAccountQueries.ts","../src/hooks/thor/smartAccounts/useSmartAccount.ts","../src/hooks/thor/smartAccounts/useUpgradeRequired.ts","../src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.ts","../src/hooks/thor/smartAccounts/useUpgradeSmartAccount.ts","../src/hooks/thor/blocks/useCurrentBlock.ts","../src/hooks/thor/blocks/useGetChainId.ts","../src/hooks/thor/logs/logUtils.ts","../src/hooks/thor/transactions/useSendTransaction.ts","../src/hooks/thor/transactions/useTransferERC20.ts","../src/hooks/thor/transactions/useTransferVET.ts","../src/hooks/thor/transactions/useBuildTransaction.ts","../src/hooks/thor/transactions/useTxReceipt.ts","../src/components/AccountModal/Contents/SendToken/SendTokenContent.tsx","../src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.tsx","../src/components/AccountModal/Contents/SendToken/SelectTokenContent.tsx","../src/components/AccountModal/Contents/Receive/ReceiveTokenContent.tsx","../src/components/AccountModal/Contents/Swap/SwapTokenContent.tsx","../src/components/AccountModal/Contents/ChooseName/ChooseNameContent.tsx","../src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.tsx","../src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.tsx","../src/components/AccountModal/Contents/FAQ/FAQContent.tsx","../src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.tsx","../src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.tsx","../src/components/AccountModal/Contents/Profile/ProfileContent.tsx","../src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.tsx","../src/components/AccountModal/Contents/Assets/AssetsContent.tsx","../src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.tsx","../src/components/AccountModal/Contents/Bridge/BridgeContent.tsx","../src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.tsx","../src/components/AccountModal/Contents/KitSettings/GeneralSettingsContent.tsx","../src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.tsx","../src/components/AccountModal/Contents/KitSettings/AppearanceSettingsContent.tsx","../src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.tsx","../src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.tsx","../src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.tsx","../src/components/AccountModal/Contents/Ecosystem/AppOverviewContent.tsx","../src/components/AccountModal/Contents/SuccessfulOperation/SuccessfulOperationContent.tsx","../src/components/AccountModal/Contents/FailedOperation/FailedOperationContent.tsx","../src/components/AccountModal/Types/Types.ts","../src/components/AccountModal/AccountModal.tsx","../src/components/AccountModal/Components/AccountDetailsButton.tsx","../src/components/AccountModal/Components/ActionButton.tsx","../src/components/AccountModal/Components/AccountSelector.tsx","../src/components/AccountModal/Components/BalanceSection.tsx","../src/components/AccountModal/Components/QuickActionsSection.tsx","../src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.tsx","../src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.tsx","../src/components/AccountModal/Components/Alerts/DomainRequiredAlert.tsx","../src/components/AccountModal/Components/CrossAppConnectionSecurityCard.tsx","../src/components/common/ModalBackButton.tsx","../src/components/common/AddressDisplay.tsx","../src/components/common/VersionFooter.tsx","../src/components/common/StickyHeaderContainer.tsx","../src/components/common/StickyFooterContainer.tsx","../src/components/common/BaseModal.tsx","../src/components/common/AssetButton.tsx","../src/components/common/AddressDisplayCard.tsx","../src/components/common/ModalFAQButton.tsx","../src/components/common/ScrollToTopWrapper.tsx","../src/components/common/AccountAvatar.tsx","../src/components/common/TransactionButtonAndStatus.tsx","../src/components/common/ModalNotificationButton.tsx","../src/components/common/GasFeeSummary.tsx","../src/components/common/GasFeeTokenSelector.tsx","../src/components/LoginLoadingModal/LoginLoadingModal.tsx","../src/components/EcosystemModal/EcosystemModal.tsx","../src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.tsx","../src/components/UpgradeSmartAccountModal/UpgradeSmartAccountModal.tsx","../src/components/LegalDocumentsModal/LegalDocumentsModal.tsx","../src/components/LegalDocumentsModal/Components/LegalDocumentItem.tsx","../src/providers/ModalProvider.tsx","../src/config/index.ts"],"sourcesContent":[],"mappings":"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"}
|