@vechain/vechain-kit 2.9.0 → 2.10.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/README.md +91 -41
- package/dist/assets/index.cjs +1 -1
- package/dist/assets/index.d.cts +1 -1
- package/dist/assets/index.d.mts +1 -1
- package/dist/assets/index.mjs +1 -1
- package/dist/{assets-BL24r-Yp.mjs → assets-C0RHiZ9a.mjs} +3 -3
- package/dist/{assets-BL24r-Yp.mjs.map → assets-C0RHiZ9a.mjs.map} +1 -1
- package/dist/{assets-DNJsQD7_.cjs → assets-CZs6EVH8.cjs} +2 -2
- package/dist/{assets-DNJsQD7_.cjs.map → assets-CZs6EVH8.cjs.map} +1 -1
- package/dist/{index-DXwqcSci.d.cts → index-BjQrND59.d.mts} +4 -4
- package/dist/{index-DXwqcSci.d.cts.map → index-BjQrND59.d.mts.map} +1 -1
- package/dist/{index-BYfc-9J5.d.mts → index-C8Uj8ple.d.cts} +1 -1
- package/dist/{index-BYfc-9J5.d.mts.map → index-C8Uj8ple.d.cts.map} +1 -1
- package/dist/{index-B93L_AT2.d.mts → index-Gsp1h6d7.d.mts} +265 -74
- package/dist/index-Gsp1h6d7.d.mts.map +1 -0
- package/dist/{index-QQ-9cIOs.d.cts → index-aWHEC3vV.d.cts} +379 -190
- package/dist/index-aWHEC3vV.d.cts.map +1 -0
- package/dist/index.cjs +10 -10
- 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 +10 -10
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.cjs +1 -1
- package/dist/utils/index.d.cts +3 -3
- package/dist/utils/index.d.mts +3 -3
- package/dist/utils/index.mjs +1 -1
- package/dist/utils-C4gc1L9t.cjs +2 -0
- package/dist/utils-C4gc1L9t.cjs.map +1 -0
- package/dist/utils-DPIscp9_.mjs +2 -0
- package/dist/utils-DPIscp9_.mjs.map +1 -0
- package/package.json +2 -2
- package/dist/index-B93L_AT2.d.mts.map +0 -1
- package/dist/index-QQ-9cIOs.d.cts.map +0 -1
- package/dist/utils-B1rpHKZq.mjs +0 -2
- package/dist/utils-B1rpHKZq.mjs.map +0 -1
- package/dist/utils-D0w5dcVX.cjs +0 -2
- package/dist/utils-D0w5dcVX.cjs.map +0 -1
|
@@ -7,14 +7,16 @@ 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_query23 from "@tanstack/react-query";
|
|
11
11
|
import { UseQueryOptions } from "@tanstack/react-query";
|
|
12
|
+
import "wagmi/query";
|
|
12
13
|
import { CustomTokenInfo } from "@vechain/contract-getters";
|
|
13
14
|
import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
|
|
14
15
|
import { z } from "zod";
|
|
16
|
+
import "wagmi";
|
|
15
17
|
import { Options } from "browser-image-compression";
|
|
16
18
|
import { UseFormRegister } from "react-hook-form";
|
|
17
|
-
import * as
|
|
19
|
+
import * as _vechain_sdk_network0 from "@vechain/sdk-network";
|
|
18
20
|
import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
|
|
19
21
|
import { LogLevel, WalletSource } from "@vechain/dapp-kit";
|
|
20
22
|
import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
|
|
@@ -54,7 +56,7 @@ declare const genesises: {
|
|
|
54
56
|
readonly main: CompressedBlockDetail;
|
|
55
57
|
readonly test: CompressedBlockDetail;
|
|
56
58
|
readonly solo: CompressedBlockDetail;
|
|
57
|
-
which(gid: string): "
|
|
59
|
+
which(gid: string): "test" | "main" | "solo" | undefined;
|
|
58
60
|
};
|
|
59
61
|
//#endregion
|
|
60
62
|
//#region src/config/index.d.ts
|
|
@@ -559,6 +561,13 @@ type LoginMethodOrder = {
|
|
|
559
561
|
method: AlwaysAvailableMethods | (VechainKitProviderProps['privy'] extends undefined ? never : PrivyDependentMethods);
|
|
560
562
|
gridColumn?: number;
|
|
561
563
|
allowedApps?: string[];
|
|
564
|
+
/**
|
|
565
|
+
* Mark this method as the recommended primary CTA — filled inverted
|
|
566
|
+
* surface + RecommendedDot. If no entry sets `isPrimary`, the kit falls
|
|
567
|
+
* back to highlighting the first visible method automatically. The
|
|
568
|
+
* `more` method is never primary (it's a footer link).
|
|
569
|
+
*/
|
|
570
|
+
isPrimary?: boolean;
|
|
562
571
|
};
|
|
563
572
|
type LegalDocumentOptions = {
|
|
564
573
|
privacyPolicy?: LegalDocument[];
|
|
@@ -967,6 +976,13 @@ declare const ConnectionButton: ({
|
|
|
967
976
|
}: ConnectionButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
968
977
|
//#endregion
|
|
969
978
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
979
|
+
/**
|
|
980
|
+
* Inline email input + OTP modal flow. Requires a host-supplied privy
|
|
981
|
+
* prop because VeChain's own Privy app has email disabled, so the
|
|
982
|
+
* whitelabel cross-app host can't accept email-based logins. When
|
|
983
|
+
* the consumer dApp has no privy, useLoginModalContent hides this
|
|
984
|
+
* button entirely.
|
|
985
|
+
*/
|
|
970
986
|
declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
|
|
971
987
|
//#endregion
|
|
972
988
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
@@ -1011,23 +1027,30 @@ declare const PrivyButton: ({
|
|
|
1011
1027
|
type Props$33 = {
|
|
1012
1028
|
isDark: boolean;
|
|
1013
1029
|
gridColumn?: number;
|
|
1030
|
+
/** When true, render as the recommended primary CTA. See VeWorldButton. */
|
|
1031
|
+
isPrimary?: boolean;
|
|
1014
1032
|
};
|
|
1015
|
-
/** Secondary outline button
|
|
1033
|
+
/** Secondary outline button by default; recommended primary when `isPrimary`. */
|
|
1016
1034
|
declare const LoginWithGoogleButton: ({
|
|
1017
1035
|
isDark,
|
|
1018
|
-
gridColumn
|
|
1036
|
+
gridColumn,
|
|
1037
|
+
isPrimary
|
|
1019
1038
|
}: Props$33) => react_jsx_runtime0.JSX.Element;
|
|
1020
1039
|
//#endregion
|
|
1021
1040
|
//#region src/components/ConnectModal/Components/LoginWithAppleButton.d.ts
|
|
1022
1041
|
type Props$32 = {
|
|
1023
1042
|
isDark: boolean;
|
|
1024
1043
|
gridColumn?: number;
|
|
1044
|
+
/** When true, render as the recommended primary CTA. See VeWorldButton. */
|
|
1045
|
+
isPrimary?: boolean;
|
|
1025
1046
|
};
|
|
1026
|
-
/** Secondary outline
|
|
1027
|
-
* flips to match the
|
|
1047
|
+
/** Secondary outline by default; recommended primary when `isPrimary`. The
|
|
1048
|
+
* Apple glyph flips to match the surface (text color on outline, inverted
|
|
1049
|
+
* on the filled primary). */
|
|
1028
1050
|
declare const LoginWithAppleButton: ({
|
|
1029
1051
|
isDark,
|
|
1030
|
-
gridColumn
|
|
1052
|
+
gridColumn,
|
|
1053
|
+
isPrimary
|
|
1031
1054
|
}: Props$32) => react_jsx_runtime0.JSX.Element;
|
|
1032
1055
|
//#endregion
|
|
1033
1056
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
@@ -1066,10 +1089,13 @@ declare const VeChainWithPrivyLoginButton: ({
|
|
|
1066
1089
|
type Props$28 = {
|
|
1067
1090
|
isDark: boolean;
|
|
1068
1091
|
gridColumn?: number;
|
|
1092
|
+
/** When true, render as the recommended primary CTA. See VeWorldButton. */
|
|
1093
|
+
isPrimary?: boolean;
|
|
1069
1094
|
};
|
|
1070
1095
|
declare const LoginWithGithubButton: ({
|
|
1071
1096
|
isDark,
|
|
1072
|
-
gridColumn
|
|
1097
|
+
gridColumn,
|
|
1098
|
+
isPrimary
|
|
1073
1099
|
}: Props$28) => react_jsx_runtime0.JSX.Element;
|
|
1074
1100
|
//#endregion
|
|
1075
1101
|
//#region src/components/ConnectModal/Components/VeWorldButton.d.ts
|
|
@@ -1077,20 +1103,19 @@ type Props$27 = {
|
|
|
1077
1103
|
isDark: boolean;
|
|
1078
1104
|
gridColumn?: number;
|
|
1079
1105
|
setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
|
|
1106
|
+
/**
|
|
1107
|
+
* When true, render as the recommended primary CTA: filled inverted
|
|
1108
|
+
* surface + RecommendedDot. When false, render as an outline secondary.
|
|
1109
|
+
* The stack flips this on the first visible login method, so VeWorld
|
|
1110
|
+
* is primary only when it's first in `loginMethods`.
|
|
1111
|
+
*/
|
|
1112
|
+
isPrimary?: boolean;
|
|
1080
1113
|
};
|
|
1081
|
-
/**
|
|
1082
|
-
* Primary CTA — VeWorld brand-locked surface. Always inverted contrast
|
|
1083
|
-
* against the modal: dark in light mode, white in dark mode.
|
|
1084
|
-
*
|
|
1085
|
-
* Intentionally does NOT consume `theme.buttons.primaryButton.{bg,color}`
|
|
1086
|
-
* — devs who themed their primary button (e.g. brand blue) shouldn't end
|
|
1087
|
-
* up with a blue VeWorld button. The VeWorld logo + label have to stay
|
|
1088
|
-
* recognisable.
|
|
1089
|
-
*/
|
|
1090
1114
|
declare const VeWorldButton: ({
|
|
1091
1115
|
isDark,
|
|
1092
1116
|
gridColumn,
|
|
1093
|
-
setCurrentContent
|
|
1117
|
+
setCurrentContent,
|
|
1118
|
+
isPrimary
|
|
1094
1119
|
}: Props$27) => react_jsx_runtime0.JSX.Element;
|
|
1095
1120
|
//#endregion
|
|
1096
1121
|
//#region src/components/ConnectModal/Components/Sync2Button.d.ts
|
|
@@ -1238,7 +1263,7 @@ declare const AccountMainContent: ({
|
|
|
1238
1263
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
1239
1264
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
1240
1265
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
1241
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
1266
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query23.UseQueryResult<{
|
|
1242
1267
|
[k: string]: {
|
|
1243
1268
|
website: string | undefined;
|
|
1244
1269
|
id: string;
|
|
@@ -1259,7 +1284,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
1259
1284
|
//#endregion
|
|
1260
1285
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
1261
1286
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
1262
|
-
declare const useFetchPrivyStatus: () =>
|
|
1287
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query23.UseQueryResult<string, Error>;
|
|
1263
1288
|
//#endregion
|
|
1264
1289
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
1265
1290
|
interface VeChainDomainResult {
|
|
@@ -1269,11 +1294,11 @@ interface VeChainDomainResult {
|
|
|
1269
1294
|
isPrimaryDomain: boolean;
|
|
1270
1295
|
}
|
|
1271
1296
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
1272
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
1297
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query23.UseQueryResult<VeChainDomainResult, Error>;
|
|
1273
1298
|
//#endregion
|
|
1274
1299
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
1275
1300
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
1276
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
1301
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
|
|
1277
1302
|
//#endregion
|
|
1278
1303
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
1279
1304
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1335,7 +1360,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1335
1360
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1336
1361
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1337
1362
|
*/
|
|
1338
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1363
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
|
|
1339
1364
|
//#endregion
|
|
1340
1365
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1341
1366
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1363,7 +1388,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1363
1388
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1364
1389
|
* @returns The domains owned by the address
|
|
1365
1390
|
*/
|
|
1366
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1391
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query23.UseQueryResult<{
|
|
1367
1392
|
domains: {
|
|
1368
1393
|
name: string;
|
|
1369
1394
|
}[];
|
|
@@ -1376,7 +1401,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1376
1401
|
* @param name - The VET domain name
|
|
1377
1402
|
* @returns The resolved avatar URL
|
|
1378
1403
|
*/
|
|
1379
|
-
declare const useGetAvatar: (name: string) =>
|
|
1404
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query23.UseQueryResult<string | null, Error>;
|
|
1380
1405
|
//#endregion
|
|
1381
1406
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1382
1407
|
/**
|
|
@@ -1388,7 +1413,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query28.UseQueryRe
|
|
|
1388
1413
|
*/
|
|
1389
1414
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1390
1415
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1391
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1416
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query23.UseQueryResult<TextRecords, Error>;
|
|
1392
1417
|
//#endregion
|
|
1393
1418
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1394
1419
|
type UpdateTextRecordVariables = {
|
|
@@ -1421,7 +1446,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1421
1446
|
* @param domain The domain to get resolver for
|
|
1422
1447
|
* @returns The resolver address for the domain
|
|
1423
1448
|
*/
|
|
1424
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1449
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query23.UseQueryResult<`0x${string}`, unknown>;
|
|
1425
1450
|
//#endregion
|
|
1426
1451
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1427
1452
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1431,7 +1456,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1431
1456
|
* @param address The owner's address
|
|
1432
1457
|
* @returns The avatar URL for the address's primary domain
|
|
1433
1458
|
*/
|
|
1434
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1459
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query23.UseQueryResult<string, Error>;
|
|
1435
1460
|
//#endregion
|
|
1436
1461
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1437
1462
|
/**
|
|
@@ -1448,7 +1473,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1448
1473
|
* @param name - The VET domain name
|
|
1449
1474
|
* @returns The resolved avatar URL
|
|
1450
1475
|
*/
|
|
1451
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1476
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query23.UseQueryResult<string | null, Error>;
|
|
1452
1477
|
//#endregion
|
|
1453
1478
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1454
1479
|
type useUnsetDomainProps = {
|
|
@@ -1565,7 +1590,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1565
1590
|
* Hook to get the current roundId of allocations voting
|
|
1566
1591
|
* @returns the current roundId of allocations voting
|
|
1567
1592
|
*/
|
|
1568
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1593
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query23.UseQueryResult<string, unknown>;
|
|
1569
1594
|
//#endregion
|
|
1570
1595
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1571
1596
|
declare const useCustomTokens: () => {
|
|
@@ -1578,7 +1603,7 @@ declare const useCustomTokens: () => {
|
|
|
1578
1603
|
//#endregion
|
|
1579
1604
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1580
1605
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1581
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1606
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query23.UseQueryResult<{
|
|
1582
1607
|
original: string;
|
|
1583
1608
|
scaled: string;
|
|
1584
1609
|
formatted: string;
|
|
@@ -1587,7 +1612,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query28.U
|
|
|
1587
1612
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1588
1613
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1589
1614
|
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string, decimals?: number) => (string | number | undefined)[];
|
|
1590
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1615
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query23.UseQueryResult<{
|
|
1591
1616
|
original: string;
|
|
1592
1617
|
scaled: string;
|
|
1593
1618
|
formatted: string;
|
|
@@ -1600,14 +1625,14 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1600
1625
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1601
1626
|
declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1602
1627
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1603
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1628
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query23.UseQueryResult<CustomTokenInfo, Error>;
|
|
1604
1629
|
//#endregion
|
|
1605
1630
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1606
1631
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1607
1632
|
type UseGetErc20BalanceOptions = {
|
|
1608
1633
|
enabled?: boolean;
|
|
1609
1634
|
};
|
|
1610
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) =>
|
|
1635
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query23.UseQueryResult<{
|
|
1611
1636
|
original: string;
|
|
1612
1637
|
scaled: string;
|
|
1613
1638
|
formatted: string;
|
|
@@ -1624,7 +1649,7 @@ declare const PRICE_FEED_IDS: {
|
|
|
1624
1649
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1625
1650
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1626
1651
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1627
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1652
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query23.UseQueryResult<number, Error>;
|
|
1628
1653
|
//#endregion
|
|
1629
1654
|
//#region src/hooks/api/wallet/useOraclePriceChanges24h.d.ts
|
|
1630
1655
|
type PricePoint = {
|
|
@@ -1645,7 +1670,7 @@ type PriceChanges24h = Partial<Record<SupportedToken, number>>;
|
|
|
1645
1670
|
* `useTokenPriceHistory24h`, the portfolio chart) all derive from this single
|
|
1646
1671
|
* query so we never run the same RPC scan twice in a session.
|
|
1647
1672
|
*/
|
|
1648
|
-
declare const useOracleHistory24h: () =>
|
|
1673
|
+
declare const useOracleHistory24h: () => _tanstack_react_query23.UseQueryResult<OracleHistory24h, Error>;
|
|
1649
1674
|
declare const useOraclePriceChanges24h: () => {
|
|
1650
1675
|
data: Partial<Record<"B3TR" | "VET" | "VTHO" | "GBP" | "EUR", number>>;
|
|
1651
1676
|
};
|
|
@@ -1663,7 +1688,7 @@ declare const usePortfolioPriceHistory24h: (address?: string) => {
|
|
|
1663
1688
|
//#endregion
|
|
1664
1689
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1665
1690
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1666
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1691
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query23.UseQueryResult<{
|
|
1667
1692
|
original: string;
|
|
1668
1693
|
scaled: string;
|
|
1669
1694
|
formatted: string;
|
|
@@ -1682,7 +1707,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1682
1707
|
* @param user - The user address.
|
|
1683
1708
|
* @returns The isPerson status.
|
|
1684
1709
|
*/
|
|
1685
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1710
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
|
|
1686
1711
|
//#endregion
|
|
1687
1712
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1688
1713
|
type XApp = {
|
|
@@ -1720,7 +1745,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1720
1745
|
//#endregion
|
|
1721
1746
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1722
1747
|
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
|
|
1723
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1748
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query23.UseQueryResult<{
|
|
1724
1749
|
id: string;
|
|
1725
1750
|
teamWalletAddress: `0x${string}`;
|
|
1726
1751
|
name: string;
|
|
@@ -1834,7 +1859,7 @@ type XAppMetadata = {
|
|
|
1834
1859
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1835
1860
|
*/
|
|
1836
1861
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1837
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1862
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query23.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1838
1863
|
//#endregion
|
|
1839
1864
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1840
1865
|
/**
|
|
@@ -1849,7 +1874,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1849
1874
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1850
1875
|
*
|
|
1851
1876
|
*/
|
|
1852
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1877
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query23.UseQueryResult<{
|
|
1853
1878
|
app: string;
|
|
1854
1879
|
share: number;
|
|
1855
1880
|
unallocatedShare: number;
|
|
@@ -1871,7 +1896,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1871
1896
|
* @param ipfsUri - The IPFS URI
|
|
1872
1897
|
* @returns The metadata from IPFS
|
|
1873
1898
|
*/
|
|
1874
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1899
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query23.UseQueryResult<_tanstack_react_query23.NoInfer<T$1>, Error>;
|
|
1875
1900
|
//#endregion
|
|
1876
1901
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1877
1902
|
interface IpfsImage {
|
|
@@ -1898,14 +1923,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1898
1923
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1899
1924
|
* @returns The NFT media
|
|
1900
1925
|
*/
|
|
1901
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1926
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query23.UseQueryResult<IpfsImage, Error>;
|
|
1902
1927
|
/**
|
|
1903
1928
|
* Custom hook to fetch a list of IPFS images.
|
|
1904
1929
|
*
|
|
1905
1930
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1906
1931
|
* @returns An array of queries for each IPFS image URI.
|
|
1907
1932
|
*/
|
|
1908
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1933
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query23.UseQueryResult<IpfsImage, Error>[];
|
|
1909
1934
|
//#endregion
|
|
1910
1935
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1911
1936
|
/**
|
|
@@ -1913,7 +1938,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1913
1938
|
* @param ipfsUris - The IPFS URIs
|
|
1914
1939
|
* @returns The metadata from IPFS for each URI
|
|
1915
1940
|
*/
|
|
1916
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1941
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query23.UseQueryResult<T$1, Error>[];
|
|
1917
1942
|
//#endregion
|
|
1918
1943
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1919
1944
|
declare const imageCompressionOptions: Options;
|
|
@@ -2094,7 +2119,7 @@ declare const useSwapTransaction: (params: SwapParams | null, quote: SwapQuote |
|
|
|
2094
2119
|
executeSwap: () => Promise<void>;
|
|
2095
2120
|
isTransactionPending: boolean;
|
|
2096
2121
|
isWaitingForWalletConfirmation: boolean;
|
|
2097
|
-
txReceipt:
|
|
2122
|
+
txReceipt: _vechain_sdk_network0.TransactionReceipt | null;
|
|
2098
2123
|
status: TransactionStatus;
|
|
2099
2124
|
resetStatus: () => void;
|
|
2100
2125
|
error: TransactionStatusErrorType | undefined;
|
|
@@ -2172,7 +2197,7 @@ declare const useTransferHistory: (address?: string, {
|
|
|
2172
2197
|
isFetching: boolean;
|
|
2173
2198
|
isFetchingNextPage: boolean;
|
|
2174
2199
|
hasNextPage: boolean;
|
|
2175
|
-
fetchNextPage: (options?:
|
|
2200
|
+
fetchNextPage: (options?: _tanstack_react_query23.FetchNextPageOptions) => Promise<_tanstack_react_query23.InfiniteQueryObserverResult<_tanstack_react_query23.InfiniteData<{
|
|
2176
2201
|
items: TransferHistoryItem[];
|
|
2177
2202
|
hasNext: boolean;
|
|
2178
2203
|
}, unknown>, Error>>;
|
|
@@ -2331,7 +2356,7 @@ declare const useOwnedNfts: (address?: string) => {
|
|
|
2331
2356
|
isFetching: boolean;
|
|
2332
2357
|
isFetchingNextPage: boolean;
|
|
2333
2358
|
hasNextPage: boolean;
|
|
2334
|
-
fetchNextPage: (options?:
|
|
2359
|
+
fetchNextPage: (options?: _tanstack_react_query23.FetchNextPageOptions) => Promise<_tanstack_react_query23.InfiniteQueryObserverResult<_tanstack_react_query23.InfiniteData<OwnedNftsPage, unknown>, Error>>;
|
|
2335
2360
|
isUnsupportedNetwork: boolean;
|
|
2336
2361
|
error: Error | null;
|
|
2337
2362
|
};
|
|
@@ -2657,7 +2682,7 @@ type UseSignMessageReturnValue = {
|
|
|
2657
2682
|
*
|
|
2658
2683
|
* @returns {UseSignMessageReturnValue} Object containing the signing function and status
|
|
2659
2684
|
*/
|
|
2660
|
-
declare const useSignMessage: () => UseSignMessageReturnValue;
|
|
2685
|
+
declare const useSignMessage$1: () => UseSignMessageReturnValue;
|
|
2661
2686
|
//#endregion
|
|
2662
2687
|
//#region src/hooks/signing/useSignTypedData.d.ts
|
|
2663
2688
|
type UseSignTypedDataReturnValue = {
|
|
@@ -2675,7 +2700,7 @@ type UseSignTypedDataReturnValue = {
|
|
|
2675
2700
|
*
|
|
2676
2701
|
* @returns {UseSignTypedDataReturnValue} Object containing the signing function and status
|
|
2677
2702
|
*/
|
|
2678
|
-
declare const useSignTypedData: () => UseSignTypedDataReturnValue;
|
|
2703
|
+
declare const useSignTypedData$1: () => UseSignTypedDataReturnValue;
|
|
2679
2704
|
//#endregion
|
|
2680
2705
|
//#region src/hooks/login/useLoginWithPasskey.d.ts
|
|
2681
2706
|
declare const useLoginWithPasskey$1: () => {
|
|
@@ -2692,9 +2717,30 @@ declare const useLoginWithOAuth$1: () => {
|
|
|
2692
2717
|
}: OAuthOptions) => Promise<void>;
|
|
2693
2718
|
};
|
|
2694
2719
|
//#endregion
|
|
2720
|
+
//#region src/providers/PrivyCrossAppProvider.d.ts
|
|
2721
|
+
/**
|
|
2722
|
+
* Login methods that requester apps can pre-select on the whitelabel
|
|
2723
|
+
* cross-app-connect host. When passed, the host skips its provider picker
|
|
2724
|
+
* and jumps straight into the matching flow.
|
|
2725
|
+
*
|
|
2726
|
+
* Matches the providers enabled in VeChain's Privy dashboard. Email is
|
|
2727
|
+
* intentionally excluded -- VeChain has email disabled, so the host
|
|
2728
|
+
* doesn't surface it. Farcaster is included but currently shows a
|
|
2729
|
+
* "coming soon" placeholder on the host (SIWF flow not yet wired).
|
|
2730
|
+
*/
|
|
2731
|
+
type CrossAppLoginIntent = 'google' | 'apple' | 'twitter' | 'discord' | 'github' | 'tiktok' | 'line' | 'phone' | 'farcaster';
|
|
2732
|
+
//#endregion
|
|
2695
2733
|
//#region src/hooks/login/useLoginWithVeChain.d.ts
|
|
2734
|
+
type UseLoginWithVeChainOptions = {
|
|
2735
|
+
/**
|
|
2736
|
+
* Pre-select a login method on the VeChain whitelabel connect page.
|
|
2737
|
+
* When set, the user skips the provider picker and jumps straight into
|
|
2738
|
+
* the matching OAuth flow (or email form for `'email'`).
|
|
2739
|
+
*/
|
|
2740
|
+
intent?: CrossAppLoginIntent;
|
|
2741
|
+
};
|
|
2696
2742
|
declare const useLoginWithVeChain: () => {
|
|
2697
|
-
login: () => Promise<void>;
|
|
2743
|
+
login: (options?: UseLoginWithVeChainOptions) => Promise<void>;
|
|
2698
2744
|
};
|
|
2699
2745
|
//#endregion
|
|
2700
2746
|
//#region src/hooks/login/useConnectWithDappKitSource.d.ts
|
|
@@ -2759,7 +2805,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2759
2805
|
* );
|
|
2760
2806
|
* ```
|
|
2761
2807
|
*/
|
|
2762
|
-
declare const useAppHubApps: () =>
|
|
2808
|
+
declare const useAppHubApps: () => _tanstack_react_query23.UseQueryResult<AppHubApp[], Error>;
|
|
2763
2809
|
//#endregion
|
|
2764
2810
|
//#region src/utils/constants.d.ts
|
|
2765
2811
|
/** Tokens that cannot be swapped or transferred (e.g. governance voting tokens) */
|
|
@@ -2787,6 +2833,15 @@ declare const ENV: {
|
|
|
2787
2833
|
readonly isProduction: boolean;
|
|
2788
2834
|
};
|
|
2789
2835
|
declare const getGenericDelegatorUrl: () => "https://mainnet.delegator.vechain.org/api/v1/" | "https://testnet.delegator.vechain.org/api/v1/";
|
|
2836
|
+
/**
|
|
2837
|
+
* VeChain-sponsored fee-delegator endpoint used by kit-managed onboarding
|
|
2838
|
+
* transactions (claim a VET domain, set a primary name, update profile
|
|
2839
|
+
* text records, etc.) so first-time users with no gas tokens can still
|
|
2840
|
+
* complete these flows. VeChain pays the gas via the configured
|
|
2841
|
+
* sponsor.vechain.energy endpoint; consumer dApps don't need to set up
|
|
2842
|
+
* their own fee delegation to support these kit features.
|
|
2843
|
+
*/
|
|
2844
|
+
declare const getKitSponsoredDelegatorUrl: () => "https://sponsor.vechain.energy/by/1060" | "https://sponsor-testnet.vechain.energy/by/221";
|
|
2790
2845
|
type PrivyEcosystemApp = {
|
|
2791
2846
|
id: string;
|
|
2792
2847
|
name: string;
|
|
@@ -3114,7 +3169,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
3114
3169
|
method: TMethod;
|
|
3115
3170
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
3116
3171
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
3117
|
-
}) =>
|
|
3172
|
+
}) => _tanstack_react_query23.UseQueryResult<_tanstack_react_query23.NoInfer<TData>, unknown>;
|
|
3118
3173
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
3119
3174
|
thor,
|
|
3120
3175
|
calls,
|
|
@@ -3125,7 +3180,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
3125
3180
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
3126
3181
|
queryKey: string[];
|
|
3127
3182
|
enabled?: boolean;
|
|
3128
|
-
}) =>
|
|
3183
|
+
}) => _tanstack_react_query23.UseQueryResult<_tanstack_react_query23.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
3129
3184
|
//#endregion
|
|
3130
3185
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
3131
3186
|
/**
|
|
@@ -3249,7 +3304,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
3249
3304
|
filterParams,
|
|
3250
3305
|
mapResponse,
|
|
3251
3306
|
nodeUrl
|
|
3252
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
3307
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query23.UseQueryResult<R[], Error>;
|
|
3253
3308
|
//#endregion
|
|
3254
3309
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
3255
3310
|
interface BuildClausesParams {
|
|
@@ -3348,10 +3403,103 @@ declare const useCrossAppConnectionCache: () => {
|
|
|
3348
3403
|
};
|
|
3349
3404
|
//#endregion
|
|
3350
3405
|
//#region src/hooks/generic-delegator/useGenericDelegator.d.ts
|
|
3406
|
+
/**
|
|
3407
|
+
* Safety multiplier applied on top of the locally-estimated gas to absorb
|
|
3408
|
+
* variance between simulation and on-chain execution. Mirrors VeWorld
|
|
3409
|
+
* mobile's heuristic.
|
|
3410
|
+
*/
|
|
3411
|
+
declare const GENERIC_DELEGATOR_GAS_SAFETY_MULTIPLIER = 1.1;
|
|
3412
|
+
/**
|
|
3413
|
+
* Fixed gas cost for the extra transfer clause that pays the generic
|
|
3414
|
+
* delegator's deposit account. VET transfers are bare value transfers
|
|
3415
|
+
* (~21k), ERC-20 transfers (VTHO, B3TR) are ~50-55k depending on the
|
|
3416
|
+
* recipient cold/warm state.
|
|
3417
|
+
*/
|
|
3418
|
+
declare const GENERIC_DELEGATOR_FEE_PAYER_OVERHEAD_GAS: Record<GasTokenType, number>;
|
|
3419
|
+
/**
|
|
3420
|
+
* Gas overhead added on top of the raw user-clause estimate to account for
|
|
3421
|
+
* the smart-account `executeWithAuthorization` / `executeBatchWithAuthorization`
|
|
3422
|
+
* wrapper (signature verification, calldata decoding, per-clause dispatch).
|
|
3423
|
+
*/
|
|
3424
|
+
declare const GENERIC_DELEGATOR_WRAPPER_OVERHEAD_GAS: Record<number, number>;
|
|
3351
3425
|
declare const estimateGas: (signerAddress: string, genericDelegatorUrl: string, clauses: any[], token: GasTokenType, speed: TransactionSpeed) => Promise<any>;
|
|
3352
3426
|
declare const getDepositAccount: (genericDelegatorUrl: string) => Promise<DepositAccount>;
|
|
3353
3427
|
declare const delegateAuthorized: (encodedSignedTx: string, origin: string, token: GasTokenType, genericDelegatorUrl: string) => Promise<any>;
|
|
3354
3428
|
declare const estimateAndBuildTxBody: (clauses: TransactionClause[], thor: ThorClient, randomTransactionUser: Wallet, isDelegated: boolean) => Promise<_vechain_sdk_core0.TransactionBody>;
|
|
3429
|
+
/**
|
|
3430
|
+
* Hard timeout (ms) applied to the local Thor gas estimation. Stops the
|
|
3431
|
+
* fee-estimation UI from hanging if the node is slow or unreachable.
|
|
3432
|
+
*/
|
|
3433
|
+
declare const GENERIC_DELEGATOR_LOCAL_ESTIMATE_TIMEOUT_MS = 6000;
|
|
3434
|
+
/**
|
|
3435
|
+
* Run the local Thor gas estimation for the user's raw clauses (caller =
|
|
3436
|
+
* smart account) and return the gas-token-agnostic total: raw gas + wrapper
|
|
3437
|
+
* overhead, padded by the safety multiplier. Returns `null` if the
|
|
3438
|
+
* simulation reverts, times out, or returns a non-positive number — the
|
|
3439
|
+
* caller should then fall back to a delegator-derived estimate.
|
|
3440
|
+
*
|
|
3441
|
+
* The output is independent of the gas token, so callers iterating over
|
|
3442
|
+
* a token-priority list should call this once and reuse the result.
|
|
3443
|
+
*/
|
|
3444
|
+
declare const computeCorrectedTotalGasNoFeePayer: ({
|
|
3445
|
+
thor,
|
|
3446
|
+
clauses,
|
|
3447
|
+
smartAccountAddress,
|
|
3448
|
+
version,
|
|
3449
|
+
timeoutMs
|
|
3450
|
+
}: {
|
|
3451
|
+
thor: ThorClient;
|
|
3452
|
+
clauses: TransactionClause[];
|
|
3453
|
+
smartAccountAddress: string;
|
|
3454
|
+
version: number;
|
|
3455
|
+
timeoutMs?: number;
|
|
3456
|
+
}) => Promise<number | null>;
|
|
3457
|
+
/**
|
|
3458
|
+
* Convert a gas number (without the fee-payer transfer overhead) into the
|
|
3459
|
+
* gas-token amount required to cover the transaction, using the per-gas
|
|
3460
|
+
* rate returned by the delegator's `/estimate/clauses` response (which is
|
|
3461
|
+
* accurate even when the absolute gas number from the same response is
|
|
3462
|
+
* not). Adds the gas-token-specific fee-payer transfer overhead.
|
|
3463
|
+
*/
|
|
3464
|
+
declare const convertGasToGasTokenAmount: ({
|
|
3465
|
+
totalGasNoFeePayer,
|
|
3466
|
+
gasToken,
|
|
3467
|
+
estimationResponse
|
|
3468
|
+
}: {
|
|
3469
|
+
totalGasNoFeePayer: number;
|
|
3470
|
+
gasToken: GasTokenType;
|
|
3471
|
+
estimationResponse: EstimationResponse;
|
|
3472
|
+
}) => number;
|
|
3473
|
+
/**
|
|
3474
|
+
* Compute the gas-token amount the smart account must transfer to the
|
|
3475
|
+
* generic delegator's deposit account to cover the transaction.
|
|
3476
|
+
*
|
|
3477
|
+
* The delegator's `/estimate/clauses` endpoint simulates the user's raw
|
|
3478
|
+
* clauses as if executed directly by the smart account, with no
|
|
3479
|
+
* `executeWithAuthorization` wrapper and no embedded-wallet signature, so
|
|
3480
|
+
* it under-estimates (and for NFT-heavy clauses can revert outright). We
|
|
3481
|
+
* trust its **rate** information (the gas-token-per-gas ratio is just a
|
|
3482
|
+
* market price and doesn't depend on the gas amount) but recompute the
|
|
3483
|
+
* gas number locally — including the wrapper overhead, fee-payer overhead,
|
|
3484
|
+
* and a 10% safety multiplier — and reapply the rate.
|
|
3485
|
+
*/
|
|
3486
|
+
declare const computeCorrectedGasTokenCost: ({
|
|
3487
|
+
thor,
|
|
3488
|
+
clauses,
|
|
3489
|
+
smartAccountAddress,
|
|
3490
|
+
version,
|
|
3491
|
+
estimationResponse,
|
|
3492
|
+
gasToken,
|
|
3493
|
+
timeoutMs
|
|
3494
|
+
}: {
|
|
3495
|
+
thor: ThorClient;
|
|
3496
|
+
clauses: TransactionClause[];
|
|
3497
|
+
smartAccountAddress: string;
|
|
3498
|
+
version: number;
|
|
3499
|
+
estimationResponse: EstimationResponse;
|
|
3500
|
+
gasToken: GasTokenType;
|
|
3501
|
+
timeoutMs?: number;
|
|
3502
|
+
}) => Promise<number>;
|
|
3355
3503
|
/**
|
|
3356
3504
|
* Sign the final transaction with the given private key and signature
|
|
3357
3505
|
* returned by the generic delegator.
|
|
@@ -3401,7 +3549,7 @@ declare const useGenericDelegatorFeeEstimation: ({
|
|
|
3401
3549
|
tokens,
|
|
3402
3550
|
sendingAmount,
|
|
3403
3551
|
sendingTokenSymbol
|
|
3404
|
-
}: useGenericDelegatorFeeEstimationParams) =>
|
|
3552
|
+
}: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query23.UseQueryResult<EstimationResponse & {
|
|
3405
3553
|
usedToken: string;
|
|
3406
3554
|
}, Error>;
|
|
3407
3555
|
//#endregion
|
|
@@ -3415,7 +3563,7 @@ declare const useEstimateAllTokens: ({
|
|
|
3415
3563
|
clauses,
|
|
3416
3564
|
tokens,
|
|
3417
3565
|
enabled
|
|
3418
|
-
}: UseEstimateAllTokensParams) =>
|
|
3566
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query23.UseQueryResult<Record<GasTokenType, {
|
|
3419
3567
|
cost: number;
|
|
3420
3568
|
loading: boolean;
|
|
3421
3569
|
error?: string;
|
|
@@ -3432,7 +3580,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
3432
3580
|
* @param address The address of the account to get the balance for
|
|
3433
3581
|
* @returns The account balance
|
|
3434
3582
|
*/
|
|
3435
|
-
declare const useAccountBalance: (address?: string) =>
|
|
3583
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query23.UseQueryResult<{
|
|
3436
3584
|
balance: string;
|
|
3437
3585
|
energy: string;
|
|
3438
3586
|
}, Error>;
|
|
@@ -3445,7 +3593,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
3445
3593
|
* @param version - The version of the smart account implementation
|
|
3446
3594
|
* @returns The address of the smart account implementation
|
|
3447
3595
|
*/
|
|
3448
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
3596
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query23.UseQueryResult<string, Error>;
|
|
3449
3597
|
//#endregion
|
|
3450
3598
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
3451
3599
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -3454,7 +3602,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
3454
3602
|
* Get the current account implementation version used by the smart account factory
|
|
3455
3603
|
* @returns The current account implementation version
|
|
3456
3604
|
*/
|
|
3457
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
3605
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query23.UseQueryResult<number, Error>;
|
|
3458
3606
|
//#endregion
|
|
3459
3607
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
3460
3608
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -3464,7 +3612,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
3464
3612
|
* @param ownerAddress - The address of the owner of the smart account
|
|
3465
3613
|
* @returns The address of the smart account
|
|
3466
3614
|
*/
|
|
3467
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
3615
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query23.UseQueryResult<string, Error>;
|
|
3468
3616
|
//#endregion
|
|
3469
3617
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
3470
3618
|
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
|
|
@@ -3474,7 +3622,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
|
|
|
3474
3622
|
* @param ownerAddress - The address of the owner of the smart account
|
|
3475
3623
|
* @returns The version of the smart account
|
|
3476
3624
|
*/
|
|
3477
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
3625
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query23.UseQueryResult<{
|
|
3478
3626
|
version: number;
|
|
3479
3627
|
isDeployed: boolean;
|
|
3480
3628
|
}, unknown>;
|
|
@@ -3487,7 +3635,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
3487
3635
|
* @param ownerAddress - The address of the owner of the smart account
|
|
3488
3636
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
3489
3637
|
*/
|
|
3490
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
3638
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
|
|
3491
3639
|
//#endregion
|
|
3492
3640
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
3493
3641
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -3496,7 +3644,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
3496
3644
|
* Check if a smart account is deployed
|
|
3497
3645
|
* @returns True if the smart account is deployed, false otherwise
|
|
3498
3646
|
*/
|
|
3499
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
3647
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
|
|
3500
3648
|
//#endregion
|
|
3501
3649
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
3502
3650
|
/**
|
|
@@ -3529,7 +3677,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
3529
3677
|
isDeployed: boolean;
|
|
3530
3678
|
}>;
|
|
3531
3679
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
3532
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
3680
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query23.UseQueryResult<{
|
|
3533
3681
|
address: undefined;
|
|
3534
3682
|
isDeployed?: undefined;
|
|
3535
3683
|
} | {
|
|
@@ -3547,7 +3695,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
3547
3695
|
* @param targetVersion - The version of the smart account to check for
|
|
3548
3696
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3549
3697
|
*/
|
|
3550
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
3698
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
|
|
3551
3699
|
//#endregion
|
|
3552
3700
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
3553
3701
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -3558,7 +3706,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
3558
3706
|
* @param targetVersion - The target version of the smart account
|
|
3559
3707
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3560
3708
|
*/
|
|
3561
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
3709
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
|
|
3562
3710
|
//#endregion
|
|
3563
3711
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
3564
3712
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -3583,7 +3731,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
3583
3731
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
3584
3732
|
* @returns the current block
|
|
3585
3733
|
*/
|
|
3586
|
-
declare const useCurrentBlock: () =>
|
|
3734
|
+
declare const useCurrentBlock: () => _tanstack_react_query23.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
|
|
3587
3735
|
//#endregion
|
|
3588
3736
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
3589
3737
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -3592,7 +3740,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
3592
3740
|
* Get the chain id
|
|
3593
3741
|
* @returns The chain id
|
|
3594
3742
|
*/
|
|
3595
|
-
declare const useGetChainId: () =>
|
|
3743
|
+
declare const useGetChainId: () => _tanstack_react_query23.UseQueryResult<string, Error>;
|
|
3596
3744
|
//#endregion
|
|
3597
3745
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
3598
3746
|
/**
|
|
@@ -3857,7 +4005,7 @@ declare const useBuildTransaction: <ClausesParams>({
|
|
|
3857
4005
|
sendTransaction: (props: ClausesParams) => Promise<void>;
|
|
3858
4006
|
isTransactionPending: boolean;
|
|
3859
4007
|
isWaitingForWalletConfirmation: boolean;
|
|
3860
|
-
txReceipt:
|
|
4008
|
+
txReceipt: _vechain_sdk_network0.TransactionReceipt | null;
|
|
3861
4009
|
status: TransactionStatus;
|
|
3862
4010
|
resetStatus: () => void;
|
|
3863
4011
|
error?: TransactionStatusErrorType;
|
|
@@ -3872,7 +4020,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
3872
4020
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
3873
4021
|
* @returns Query result containing the transaction receipt
|
|
3874
4022
|
*/
|
|
3875
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
4023
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query23.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
|
|
3876
4024
|
//#endregion
|
|
3877
4025
|
//#region src/hooks/thor/transactions/useGasEstimate.d.ts
|
|
3878
4026
|
declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
|
|
@@ -4922,6 +5070,49 @@ declare const PriceChart: ({
|
|
|
4922
5070
|
...boxProps
|
|
4923
5071
|
}: Props$3) => react_jsx_runtime0.JSX.Element | null;
|
|
4924
5072
|
//#endregion
|
|
5073
|
+
//#region src/components/common/StatusScreen.d.ts
|
|
5074
|
+
type Status = 'success' | 'error';
|
|
5075
|
+
type StatusScreenProps = {
|
|
5076
|
+
status: Status;
|
|
5077
|
+
/** Heading rendered in the modal header. */
|
|
5078
|
+
title: string;
|
|
5079
|
+
/** Optional supporting copy under the badge. */
|
|
5080
|
+
description?: string;
|
|
5081
|
+
/** Override the default icon (`LuCircleCheckBig` for success,
|
|
5082
|
+
* `LuTriangleAlert` for error). */
|
|
5083
|
+
icon?: IconType | ReactNode;
|
|
5084
|
+
/** Slot for primary CTAs (Done / Try again, …). */
|
|
5085
|
+
actions: ReactNode;
|
|
5086
|
+
/** Optional extra slot under the body — e.g. a "Share on socials" row. */
|
|
5087
|
+
bodyExtras?: ReactNode;
|
|
5088
|
+
/** Optional explorer link rendered below the actions. */
|
|
5089
|
+
footerExtras?: ReactNode;
|
|
5090
|
+
/** Hide the close button (used while a tx is still pending). */
|
|
5091
|
+
hideCloseButton?: boolean;
|
|
5092
|
+
};
|
|
5093
|
+
/**
|
|
5094
|
+
* Shared visual scaffold for end-of-flow status screens — success after a
|
|
5095
|
+
* transaction confirms, error after one fails. Replaces the four
|
|
5096
|
+
* almost-duplicate "100px LuCircleCheck" / "100px LuCircleAlert" surfaces
|
|
5097
|
+
* that used to live in AccountModal, TransactionModal and
|
|
5098
|
+
* UpgradeSmartAccountModal.
|
|
5099
|
+
*
|
|
5100
|
+
* Visual: a soft tinted disc (~88px) holds the status icon (~44px solid),
|
|
5101
|
+
* with a one-shot framer-motion entrance — the disc fades + scales from
|
|
5102
|
+
* 0.92, the icon springs in. No looping animation: the screen should feel
|
|
5103
|
+
* polished, not chatty.
|
|
5104
|
+
*/
|
|
5105
|
+
declare const StatusScreen: ({
|
|
5106
|
+
status,
|
|
5107
|
+
title,
|
|
5108
|
+
description,
|
|
5109
|
+
icon,
|
|
5110
|
+
actions,
|
|
5111
|
+
bodyExtras,
|
|
5112
|
+
footerExtras,
|
|
5113
|
+
hideCloseButton
|
|
5114
|
+
}: StatusScreenProps) => react_jsx_runtime0.JSX.Element;
|
|
5115
|
+
//#endregion
|
|
4925
5116
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
4926
5117
|
type SuccessfulOperationContentProps = {
|
|
4927
5118
|
setCurrentContent: React.Dispatch<React.SetStateAction<UpgradeSmartAccountModalContentsTypes>>;
|
|
@@ -5014,5 +5205,5 @@ declare const ModalProvider: ({
|
|
|
5014
5205
|
children: ReactNode;
|
|
5015
5206
|
}) => react_jsx_runtime0.JSX.Element;
|
|
5016
5207
|
//#endregion
|
|
5017
|
-
export { SendNftContentProps as $, NftMetadata as $a, useLegalDocuments as $c, fetchAppHubApps as $i, getConfig as $l, UseEstimateAllTokensParams as $n, useRefreshBalances as $o, executeMultipleClausesCall as $r, getAvatarQueryKey as $s, useGasEstimate as $t, useStickyHeaderContext as A, SendTokenModalProvider as Aa, ConnectPopover as Ac, formatTokenBalance as Ai, GasTokenSelection as Al, useSmartAccount as An, MAX_IMAGE_SIZE as Ao, useCurrentCurrency as Ar, useCustomTokens as As, CustomizationContent as At, AccountSelector as B, AccountModalProvider as Ba, PrivyButton as Bc, PrivyEcosystemApp as Bi, EnhancedClause as Bl, useGetAccountVersion as Bn, XAppMetadata as Bo, getWindowOrigin as Br, useUnsetDomain as Bs, ReceiveTokenContent as Bt, ScrollToTopWrapper as C, useFAQModal as Ca, ShareButtons as Cc, validateIpfsUri as Ci, TransactionCost as Cl, useUpgradeRequiredForAccount as Cn, useSingleImageUpload as Co, decodeEventLog$1 as Cr, getTokenInfo$1 as Cs, UpgradeSmartAccountContent as Ct, BaseModal as D, useExploreEcosystemModal as Da, WalletButton as Dc, leftPadWithZeros as Di, GasTokenEstimate as Dl, SmartAccountReturnType as Dn, useUploadImages as Do, useIsPWA as Dr, useGetCustomTokenBalances as Ds, CustomizationSummaryContent as Dt, AssetButton as E, ExploreEcosystemModalProvider as Ea, SocialIcons as Ec, isValidAddress as Ei, formatGasCost as El, useUpgradeRequired as En, imageCompressionOptions as Eo, useScrollToTop as Er, getCustomTokenBalanceQueryKey as Es, ProfileContentProps as Et, DomainRequiredAlert as F, useWalletModal as Fa, VeChainWithPrivyLoginButton as Fc, isZero as Fi, CURRENCY as Fl, useIsSmartAccountDeployed as Fn, getIpfsMetadata as Fo, useCallClause as Fr, useTokensWithValues as Fs, ChooseNameSearchContentProps as Ft, SwitchFeedback as G, useNftMetadata as Ga, MoreOptionsContent as Gc, VECHAIN_KIT_COOKIES_CONFIG as Gi, PrivyLoginMethod as Gl, getCurrentAccountImplementationVersionQueryKey as Gn, StoredWallet as Go, safeQuerySelector as Gr, useGetAvatarOfAddress as Gs, ThorClient$1 as Gt, AccountDetailsButton as H, ConnectModalProvider as Ha, VeChainLoginButton as Hc, TOKEN_LOGOS as Hi, ExecuteWithAuthorizationSignData as Hl, getAccountAddressQueryKey as Hn, useXAppMetadata as Ho, isBrowser as Hr, getAvatarLegacyQueryKey as Hs, SelectTokenContent as Ht, ExchangeWarningAlert as I, TransactionToastProvider as Ia, DappKitButton as Ic, DEFAULT_GAS_TOKEN_PREFERENCES as Ii, CURRENCY_SYMBOLS as Il, getHasV1SmartAccount as In, getIpfsMetadataQueryKey as Io, useMultipleClausesCall as Ir, ExchangeRates as Is, ChooseNameContent as It, TransactionHistoryContent as J, useNftBlacklist as Ja, LoadingContent as Jc, VECHAIN_PRIVY_APP_ID as Ji, TransactionStatus as Jl, getAccountImplementationAddressQueryKey as Jn, UseWalletReturnType as Jo, MultipleClausesCallParameters as Jr, buildClauses as Js, useMfaEnrollment as Jt, TransactionDetailContent as K, useOwnedNftsFiltered as Ka, EcosystemContent as Kc, VECHAIN_KIT_STORAGE_KEYS as Ki, SmartAccount as Kl, useCurrentAccountImplementationVersion as Kn, useWalletStorage as Ko, safeWindowOpen as Kr, getResolverAddressQueryKey as Ks, useDAppKitWallet as Kt, FeatureAnnouncementCard as L, useTransactionToast as La, PasskeyLoginButton as Lc, DEFAULT_PRIVY_ECOSYSTEM_APPS as Li, ConnectionSource as Ll, getHasV1SmartAccountQueryKey as Ln, useIpfsMetadata as Lo, copyToClipboard as Lr, useTokenPrices as Ls, ChooseNameContentProps as Lt, AddressDisplay as M, ChooseNameModalProvider as Ma, Sync2Button as Mc, humanAddress as Mi, TransactionSpeed as Ml, useRefreshFactoryQueries as Mn, getIpfsImageQueryKey as Mo, useCurrency as Mr, useCurrentAllocationsRoundId as Ms, ChooseNameSummaryContent as Mt, ModalBackButton as N, useChooseNameModal as Na, VeWorldButton as Nc, humanDomain as Ni, ENS_TEXT_RECORDS as Nl, getIsDeployed as Nn, useIpfsImage as No, getCallClauseQueryKey as Nr, useTotalBalance as Ns, ChooseNameSummaryContentProps as Nt, StickyFooterContainer as O, SwapTokenModalProvider as Oa, WalletButtonProps as Oc, regexPattern as Oi, GasTokenInfo as Ol, getSmartAccount as On, useIpfsMetadatas as Oo, useGetNodeUrl as Or, getB3trBalanceQueryKey as Os, CustomizationSummaryContentProps as Ot, CrossAppConnectionSecurityCard as P, WalletModalProvider as Pa, LoginWithGithubButton as Pc, humanNumber as Pi, TextRecords as Pl, getIsDeployedQueryKey as Pn, useIpfsImageList as Po, getCallClauseQueryKeyWithArgs as Pr, TokenWithValue as Ps, ChooseNameSearchContent as Pt, SendNftContent as Q, NftAttribute as Qa, LegalDocumentsProvider as Qc, AppHubApp as Qi, AppConfig as Ql, useAccountBalance as Qn, useRefreshMetadata as Qo, executeCallClause as Qr, useGetTextRecords as Qs, VECHAIN_KIT_QUERY_KEYS as Qt, QuickActionsSection as R, TransactionModalProvider as Ra, LoginWithAppleButton as Rc, ENV as Ri, CrossAppConnectionCache as Rl, useHasV1SmartAccount as Rn, getXAppsSharesQueryKey as Ro, getDocumentTitle as Rr, WalletTokenBalance as Rs, SwapTokenContent as Rt, AccountAvatar as S, FAQModalProvider as Sa, TransactionModalContent as Sc, uploadBlobToIPFS as Si, Rate as Sl, getUpgradeRequiredForAccountQueryKey as Sn, useSwapTransaction as So, UseEventsParams as Sr, getCustomTokenInfoQueryKey as Ss, AssetsContentProps as St, AddressDisplayCard as T, useNotificationsModal as Ta, TransactionModalProps as Tc, compareListOfAddresses as Ti, calculateTotalCost as Tl, getUpgradeRequiredQueryKey as Tn, compressImages as To, useEvents as Tr, TokenWithBalance as Ts, ProfileContent as Tt, AccountModal as U, useConnectModal as Ua, EmailLoginButton as Uc, TOKEN_LOGO_COMPONENTS as Ui, NFTMediaType as Ul, useGetAccountAddress as Un, UseSwitchWalletReturnType as Uo, isOnline as Ur, useGetAvatarLegacy as Us, SendTokenSummaryContent as Ut, ActionButton as V, useAccountModal as Va, EcosystemButton as Vc, SUPPORTED_GAS_TOKENS as Vi, ExecuteBatchWithAuthorizationSignData as Vl, getAccountAddress as Vn, getXAppMetadata as Vo, hasNavigator as Vr, getAvatarLegacy as Vs, ReceiveTokenContentProps as Vt, AccountModalContentTypes as W, useNftCollectionName as Wa, ConnectionButton as Wc, TogglePassportCheck as Wi, PrivyAppInfo as Wl, getCurrentAccountImplementationVersion as Wn, useSwitchWallet as Wo, removeLocalStorageItem as Wr, getAvatarOfAddressQueryKey as Ws, SendTokenContent as Wt, SendNftSummaryContent as X, useOwnedNfts as Xa, ConnectModal as Xc, getGenericDelegatorUrl as Xi, VePassportUserStatus as Xl, getAccountBalance as Xn, getRoundXAppsQueryKey as Xo, ViewFunctionResult as Xr, getTextRecords as Xs, useSetWalletRecovery as Xt, TransactionHistoryContentProps as Y, getOwnedNftsQueryKey as Ya, MainContent as Yc, getENV as Yi, TransactionStatusErrorType as Yl, useAccountImplementationAddress as Yn, useWallet$1 as Yo, MultipleClausesCallReturnType as Yr, useUpdateTextRecord as Ys, usePrivy$1 as Yt, SendNftSummaryContentProps as Z, IndexerNft as Za, ConnectModalContentsTypes as Zc, notFoundImage as Zi, Wallet as Zl, getAccountBalanceQueryKey as Zn, useRoundXApps as Zo, buildCallClauses as Zr, getTextRecordsQueryKey as Zs, useThor$1 as Zt, GasFeeTokenSelector as _, useLoginModalContent as _a, fetchPrivyAppInfo as _c, gmNfts as _i, LegalDocumentType as _l, useGetChainId as _n, TransferEventType as _o, BuildClausesParams as _r, getTokenUsdPriceQueryKey as _s, ChangeCurrencyContentProps as _t, LegalDocumentItem as a, useLoginWithPasskey$1 as aa, useGetDomainsOfAddress as ac, normalize as ai, AccountQuickAction as al, useTransferVET as an, LpPositionToken as ao, delegateAuthorized as ar, getVot3BalanceQueryKey as as, TokenDetailContentProps as at, TransactionButtonAndStatus as b, AccountCustomizationModalProvider as ba, AccountMainContent as bc, resolveMediaTypeFromMimeType as bi, EstimatedGas as bl, useUpgradeSmartAccount as bn, VTHO_TOKEN_ADDRESS as bo, useBuildClauses as br, getErc20BalanceQueryKey as bs, ManageCustomTokenContentProps as bt, UpgradeSmartAccountModal as c, useNotificationAlerts as ca, buildVetDomainClauses as cc, isRejectionError as ci, VeChainKitConfig as cl, buildERC20Clauses as cn, useNavigatorPosition as co, getDepositAccount as cr, OracleHistory24h as cs, SelectWalletContent as ct, PriceChart as d, useSettingsModal as da, getEnsRecordExistsQueryKey as dc, EconomicNodeStrengthLevelToName as di, VechainKitProviderProps as dl, useSendTransaction as dn, useStargatePositions as do, useCrossAppConnectionCache as dr, useOracleHistory24h as ds, TermsAndPrivacyContent as dt, getAppHubAppsQueryKey as ea, useGetAvatar as ec, isValidUrl as ei, VechainKitThemeProvider as el, txReceiptQueryKey as en, OwnedNft as eo, useEstimateAllTokens as er, MostVotedAppsInRoundReturnType as es, NftCollectionContent as et, CopyIconButton as f, useAccountModalOptions as fa, useEnsRecordExists as fc, MinXNodeLevel as fi, useAppConfig as fl, GetEventsProps as fn, useTokenTransferHistory as fo, EcosystemShortcut as fr, useOraclePriceChanges24h as fs, SettingsContent as ft, InlineFeedback as g, useUpgradeSmartAccountModal as ga, useFetchPrivyStatus as gc, buildQueryString as gi, LegalDocumentSource as gl, getChainIdQueryKey as gn, TransferDirection as go, useLocalStorage as gr, getTokenUsdPrice as gs, ChangeCurrencyContent as gt, WalletSwitchFeedback as h, UpgradeSmartAccountModalProvider as ha, fetchPrivyStatus as hc, allNodeStrengthLevelToName as hi, LegalDocumentAgreement as hl, getChainId as hn, IndexerTransfer as ho, LocalStorageKey as hr, SupportedToken as hs, LanguageSettingsContent as ht, DAppKitWalletButton as i, useLoginWithOAuth$1 as ia, getDomainsOfAddressQueryKey as ic, isValid as ii, usePrivyWalletProvider as il, buildVETClauses as in, LpPosition as io, decodeRawTx as ir, useIsPerson as is, TokenDetailContent as it, VersionFooter as j, useSendTokenModal as ja, WalletConnectButton as jc, getPicassoImage as ji, GasTokenType as jl, useRefreshSmartAccountQueries as jn, getIpfsImage as jo, useCurrentLanguage as jr, getCurrentAllocationsRoundIdQueryKey as js, FAQContent as jt, StickyHeaderContainer as k, useSwapTokenModal as ka, WalletDisplayVariant as kc, randomTransactionUser as ki, GasTokenPreferences as kl, getSmartAccountQueryKey as kn, IpfsImage as ko, useFeatureAnnouncement as kr, useGetB3trBalance as ks, AccountCustomizationContentProps as kt, UpgradeSmartAccountModalContentsTypes as l, useNotifications as la, useClaimVetDomain as lc, simpleHash as li, VeChainKitContext as ll, useTransferERC20 as ln, StargatePosition as lo, signVip191Transaction as lr, PriceChanges24h as ls, DisconnectConfirmContent as lt, PriceChangeBadge as m, useProfileModal as ma, useVechainDomain as mc, XNodeStrengthLevelToName as mi, EnrichedLegalDocument as ml, getEventLogs as mn, useTransferHistory as mo, useSyncableLocalStorage as mr, PRICE_FEED_IDS as ms, GasTokenSettingsContent as mt, ModalProvider as n, useConnectWithDappKitSource as na, DomainsResponse as nc, compare as ni, PrivyWalletProvider as nl, BuildTransactionProps as nn, JuicyPositionResult as no, useGenericDelegatorFeeEstimationParams as nr, useMostVotedAppsInRound as ns, NftDetailContent as nt, LegalDocumentsModal as o, useSignTypedData as oa, getIsDomainProtectedQueryKey as oc, removePrefix as oi, LegalDocument as ol, buildERC721Clauses as on, useBetterSwapLpPositions as oo, estimateAndBuildTxBody as or, useGetVot3Balance as os, RemoveWalletConfirmContent as ot, AddressOrDomainLabel as p, ProfileModalProvider as pa, getVechainDomainQueryKey as pc, NodeStrengthLevelToImage as pi, useVeChainKitConfig as pl, getAllEventLogs as pn, getTransferHistoryQueryKey as po, useEcosystemShortcuts as pr, useTokenPriceHistory24h as ps, SettingsContentProps as pt, TransactionDetailContentProps as q, getNftBlacklistQueryKey as qa, ErrorContent as qc, VECHAIN_KIT_TERMS_CONFIG as qi, TokenBalance as ql, getAccountImplementationAddress as qn, useWalletMetadata as qo, setLocalStorageItem as qr, useGetResolverAddress as qs, useDAppKitWalletModal as qt, useModal as r, useLoginWithVeChain as ra, getDomainsOfAddress as rc, isInvalid as ri, PrivyWalletProviderContextType as rl, useBuildTransaction as rn, useJuicyPosition as ro, useGasTokenSelection as rr, getIsPersonQueryKey as rs, NftDetailContentProps as rt, LegalDocumentsModalContentsTypes as s, useSignMessage as sa, useIsDomainProtected as sc, validate as si, LegalDocumentOptions as sl, useTransferERC721 as sn, NavigatorPosition as so, estimateGas as sr, usePortfolioPriceHistory24h as ss, RemoveWalletConfirmContentProps as st, AccountModalOptions as t, useAppHubApps as ta, Domain as tc, addPrefix as ti, useVechainKitThemeConfig as tl, useTxReceipt as tn, JuicyAssetPosition as to, useGenericDelegatorFeeEstimation as tr, XApp as ts, NftCollectionContentProps as tt, UpgradeSmartAccountModalStyle as u, SettingsModalProvider as ua, useClaimVeWorldSubdomain as uc, TIME as ui, VeChainKitProvider as ul, UseSendTransactionReturnValue as un, StargatePositionsResult as uo, useGenericDelegator as ur, PricePoint as us, DisconnectConfirmContentProps as ut, GasFeeSummary as v, ReceiveModalProvider as va, getPrivyAppInfoQueryKey as vc, xNodeToGMstartingLevel as vi, CostLevel as vl, currentBlockQueryKey as vn, TransferHistoryItem as vo, buildBatchAuthorizationTypedData as vr, useGetTokenUsdPrice as vs, BridgeContent as vt, ModalFAQButton as w, NotificationsModalProvider as wa, TransactionModal as wc, compareAddresses as wi, VthoPerGasAtSpeed as wl, getUpgradeRequired as wn, UploadedImage as wo, getEventsKey as wr, useGetCustomTokenInfo as ws, UpgradeSmartAccountContentProps as wt, TransactionButtonAndStatusProps as x, useAccountCustomizationModal as xa, TransactionToast as xc, toIPFSURL as xi, EstimationResponse as xl, getUpgradeRequiredForAccount as xn, useSwapQuotes as xo, GetEventsKeyParams as xr, useGetErc20Balance as xs, AssetsContent as xt, ModalNotificationButton as y, useReceiveModal as ya, useFetchAppInfo as yc, convertUriToUrl as yi, DepositAccount as yl, useCurrentBlock as yn, VET_TOKEN_SENTINEL as yo, buildSingleAuthorizationTypedData as yr, UseGetErc20BalanceOptions as ys, ManageCustomTokenContent as yt, BalanceSection as z, useTransactionModal as za, LoginWithGoogleButton as zc, NON_TRANSFERABLE_TOKEN_SYMBOLS as zi, ENSRecords as zl, getAccountVersionQueryKey as zn, useXAppsShares as zo, getLocalStorageItem as zr, useTokenBalances as zs, SwapTokenContentProps as zt };
|
|
5018
|
-
//# sourceMappingURL=index-
|
|
5208
|
+
export { SendNftSummaryContentProps as $, useAccountModal as $a, EcosystemButton as $c, TogglePassportCheck as $i, ExecuteBatchWithAuthorizationSignData as $l, getAccountBalanceQueryKey as $n, getXAppMetadata as $o, removeLocalStorageItem as $r, getAvatarLegacy as $s, useThor$1 as $t, StickyFooterContainer as A, ReceiveModalProvider as Aa, getPrivyAppInfoQueryKey as Ac, toIPFSURL as Ai, CostLevel as Al, getSmartAccount as An, TransferHistoryItem as Ao, GetEventsKeyParams as Ar, useGetTokenUsdPrice as As, CustomizationSummaryContentProps as At, QuickActionsSection as B, SwapTokenModalProvider as Ba, WalletButtonProps as Bc, getPicassoImage as Bi, GasTokenInfo as Bl, useHasV1SmartAccount as Bn, useIpfsMetadatas as Bo, useCurrentLanguage as Br, getB3trBalanceQueryKey as Bs, SwapTokenContent as Bt, TransactionButtonAndStatusProps as C, useSettingsModal as Ca, getEnsRecordExistsQueryKey as Cc, XNodeStrengthLevelToName as Ci, VechainKitProviderProps as Cl, getUpgradeRequiredForAccount as Cn, useStargatePositions as Co, useSyncableLocalStorage as Cr, useOracleHistory24h as Cs, AssetsContent as Ct, AddressDisplayCard as D, UpgradeSmartAccountModalProvider as Da, fetchPrivyStatus as Dc, xNodeToGMstartingLevel as Di, LegalDocumentAgreement as Dl, getUpgradeRequiredQueryKey as Dn, IndexerTransfer as Do, buildBatchAuthorizationTypedData as Dr, SupportedToken as Ds, ProfileContent as Dt, ModalFAQButton as E, useProfileModal as Ea, useVechainDomain as Ec, gmNfts as Ei, EnrichedLegalDocument as El, getUpgradeRequired as En, useTransferHistory as Eo, BuildClausesParams as Er, PRICE_FEED_IDS as Es, UpgradeSmartAccountContentProps as Et, ModalBackButton as F, useFAQModal as Fa, ShareButtons as Fc, isValidAddress as Fi, TransactionCost as Fl, getIsDeployed as Fn, useSingleImageUpload as Fo, useScrollToTop as Fr, getTokenInfo$1 as Fs, ChooseNameSummaryContentProps as Ft, AccountModal as G, useChooseNameModal as Ga, VeWorldButton as Gc, DEFAULT_GAS_TOKEN_PREFERENCES as Gi, ENS_TEXT_RECORDS as Gl, useGetAccountAddress as Gn, useIpfsImage as Go, useMultipleClausesCall as Gr, useTotalBalance as Gs, SendTokenSummaryContent as Gt, AccountSelector as H, SendTokenModalProvider as Ha, ConnectPopover as Hc, humanDomain as Hi, GasTokenSelection as Hl, useGetAccountVersion as Hn, MAX_IMAGE_SIZE as Ho, getCallClauseQueryKey as Hr, useCustomTokens as Hs, ReceiveTokenContent as Ht, CrossAppConnectionSecurityCard as I, NotificationsModalProvider as Ia, TransactionModal as Ic, leftPadWithZeros as Ii, VthoPerGasAtSpeed as Il, getIsDeployedQueryKey as In, UploadedImage as Io, useIsPWA as Ir, useGetCustomTokenInfo as Is, ChooseNameSearchContent as It, TransactionDetailContent as J, TransactionToastProvider as Ja, DappKitButton as Jc, NON_TRANSFERABLE_TOKEN_SYMBOLS as Ji, CURRENCY_SYMBOLS as Jl, useCurrentAccountImplementationVersion as Jn, getIpfsMetadataQueryKey as Jo, getLocalStorageItem as Jr, ExchangeRates as Js, useDAppKitWallet as Jt, AccountModalContentTypes as K, WalletModalProvider as Ka, LoginWithGithubButton as Kc, DEFAULT_PRIVY_ECOSYSTEM_APPS as Ki, TextRecords as Kl, getCurrentAccountImplementationVersion as Kn, useIpfsImageList as Ko, copyToClipboard as Kr, TokenWithValue as Ks, SendTokenContent as Kt, DomainRequiredAlert as L, useNotificationsModal as La, TransactionModalProps as Lc, regexPattern as Li, calculateTotalCost as Ll, useIsSmartAccountDeployed as Ln, compressImages as Lo, useGetNodeUrl as Lr, TokenWithBalance as Ls, ChooseNameSearchContentProps as Lt, useStickyHeaderContext as M, AccountCustomizationModalProvider as Ma, AccountMainContent as Mc, validateIpfsUri as Mi, EstimatedGas as Ml, useSmartAccount as Mn, VTHO_TOKEN_ADDRESS as Mo, decodeEventLog$1 as Mr, getErc20BalanceQueryKey as Ms, CustomizationContent as Mt, VersionFooter as N, useAccountCustomizationModal as Na, TransactionToast as Nc, compareAddresses as Ni, EstimationResponse as Nl, useRefreshSmartAccountQueries as Nn, useSwapQuotes as No, getEventsKey as Nr, useGetErc20Balance as Ns, FAQContent as Nt, AssetButton as O, useUpgradeSmartAccountModal as Oa, useFetchPrivyStatus as Oc, convertUriToUrl as Oi, LegalDocumentSource as Ol, useUpgradeRequired as On, TransferDirection as Oo, buildSingleAuthorizationTypedData as Or, getTokenUsdPrice as Os, ProfileContentProps as Ot, AddressDisplay as P, FAQModalProvider as Pa, TransactionModalContent as Pc, compareListOfAddresses as Pi, Rate as Pl, useRefreshFactoryQueries as Pn, useSwapTransaction as Po, useEvents as Pr, getCustomTokenInfoQueryKey as Ps, ChooseNameSummaryContent as Pt, SendNftSummaryContent as Q, AccountModalProvider as Qa, PrivyButton as Qc, TOKEN_LOGO_COMPONENTS as Qi, EnhancedClause as Ql, getAccountBalance as Qn, XAppMetadata as Qo, isOnline as Qr, useUnsetDomain as Qs, useSetWalletRecovery as Qt, ExchangeWarningAlert as R, ExploreEcosystemModalProvider as Ra, SocialIcons as Rc, randomTransactionUser as Ri, formatGasCost as Rl, getHasV1SmartAccount as Rn, imageCompressionOptions as Ro, useFeatureAnnouncement as Rr, getCustomTokenBalanceQueryKey as Rs, ChooseNameContent as Rt, TransactionButtonAndStatus as S, SettingsModalProvider as Sa, useClaimVeWorldSubdomain as Sc, NodeStrengthLevelToImage as Si, VeChainKitProvider as Sl, useUpgradeSmartAccount as Sn, StargatePositionsResult as So, useEcosystemShortcuts as Sr, PricePoint as Ss, ManageCustomTokenContentProps as St, ScrollToTopWrapper as T, ProfileModalProvider as Ta, getVechainDomainQueryKey as Tc, buildQueryString as Ti, useVeChainKitConfig as Tl, useUpgradeRequiredForAccount as Tn, getTransferHistoryQueryKey as To, useLocalStorage as Tr, useTokenPriceHistory24h as Ts, UpgradeSmartAccountContent as Tt, ActionButton as U, useSendTokenModal as Ua, WalletConnectButton as Uc, humanNumber as Ui, GasTokenType as Ul, getAccountAddress as Un, getIpfsImage as Uo, getCallClauseQueryKeyWithArgs as Ur, getCurrentAllocationsRoundIdQueryKey as Us, ReceiveTokenContentProps as Ut, BalanceSection as V, useSwapTokenModal as Va, WalletDisplayVariant as Vc, humanAddress as Vi, GasTokenPreferences as Vl, getAccountVersionQueryKey as Vn, IpfsImage as Vo, useCurrency as Vr, useGetB3trBalance as Vs, SwapTokenContentProps as Vt, AccountDetailsButton as W, ChooseNameModalProvider as Wa, Sync2Button as Wc, isZero as Wi, TransactionSpeed as Wl, getAccountAddressQueryKey as Wn, getIpfsImageQueryKey as Wo, useCallClause as Wr, useCurrentAllocationsRoundId as Ws, SelectTokenContent as Wt, TransactionHistoryContent as X, TransactionModalProvider as Xa, LoginWithAppleButton as Xc, SUPPORTED_GAS_TOKENS as Xi, CrossAppConnectionCache as Xl, getAccountImplementationAddressQueryKey as Xn, getXAppsSharesQueryKey as Xo, hasNavigator as Xr, WalletTokenBalance as Xs, useMfaEnrollment as Xt, TransactionDetailContentProps as Y, useTransactionToast as Ya, PasskeyLoginButton as Yc, PrivyEcosystemApp as Yi, ConnectionSource as Yl, getAccountImplementationAddress as Yn, useIpfsMetadata as Yo, getWindowOrigin as Yr, useTokenPrices as Ys, useDAppKitWalletModal as Yt, TransactionHistoryContentProps as Z, useTransactionModal as Za, LoginWithGoogleButton as Zc, TOKEN_LOGOS as Zi, ENSRecords as Zl, useAccountImplementationAddress as Zn, useXAppsShares as Zo, isBrowser as Zr, useTokenBalances as Zs, usePrivy$1 as Zt, WalletSwitchFeedback as _, useLoginWithPasskey$1 as _a, useGetDomainsOfAddress as _c, isRejectionError as _i, AccountQuickAction as _l, getChainId as _n, LpPositionToken as _o, getDepositAccount as _r, getVot3BalanceQueryKey as _s, LanguageSettingsContent as _t, LegalDocumentItem as a, getGenericDelegatorUrl as aa, useGetResolverAddress as ac, ViewFunctionResult as ai, ErrorContent as al, useBuildTransaction as an, getNftBlacklistQueryKey as ao, useGasTokenSelection as ar, useWalletMetadata as as, NftDetailContentProps as at, TokenBalance as au, GasFeeSummary as b, useNotificationAlerts as ba, buildVetDomainClauses as bc, EconomicNodeStrengthLevelToName as bi, VeChainKitConfig as bl, currentBlockQueryKey as bn, useNavigatorPosition as bo, useCrossAppConnectionCache as br, OracleHistory24h as bs, BridgeContent as bt, UpgradeSmartAccountModal as c, AppHubApp as ca, getTextRecords as cc, executeMultipleClausesCall as ci, ConnectModal as cl, buildERC721Clauses as cn, useOwnedNfts as co, GENERIC_DELEGATOR_LOCAL_ESTIMATE_TIMEOUT_MS as cr, getRoundXAppsQueryKey as cs, RemoveWalletConfirmContent as ct, VePassportUserStatus as cu, StatusScreen as d, useAppHubApps as da, getAvatarQueryKey as dc, compare as di, useLegalDocuments as dl, useTransferERC20 as dn, NftMetadata as do, computeCorrectedTotalGasNoFeePayer as dr, useRefreshBalances as ds, DisconnectConfirmContent as dt, getConfig as du, VECHAIN_KIT_COOKIES_CONFIG as ea, getAvatarLegacyQueryKey as ec, safeQuerySelector as ei, VeChainLoginButton as el, VECHAIN_KIT_QUERY_KEYS as en, ConnectModalProvider as eo, useAccountBalance as er, useXAppMetadata as es, SendNftContent as et, ExecuteWithAuthorizationSignData as eu, StatusScreenProps as f, useConnectWithDappKitSource as fa, useGetAvatar as fc, isInvalid as fi, VechainKitThemeProvider as fl, UseSendTransactionReturnValue as fn, OwnedNft as fo, convertGasToGasTokenAmount as fr, MostVotedAppsInRoundReturnType as fs, DisconnectConfirmContentProps as ft, PriceChangeBadge as g, useLoginWithOAuth$1 as ga, getDomainsOfAddressQueryKey as gc, validate as gi, usePrivyWalletProvider as gl, getEventLogs as gn, LpPosition as go, estimateGas as gr, useIsPerson as gs, GasTokenSettingsContent as gt, AddressOrDomainLabel as h, CrossAppLoginIntent as ha, getDomainsOfAddress as hc, removePrefix as hi, PrivyWalletProviderContextType as hl, getAllEventLogs as hn, useJuicyPosition as ho, estimateAndBuildTxBody as hr, getIsPersonQueryKey as hs, SettingsContentProps as ht, DAppKitWalletButton as i, getENV as ia, getResolverAddressQueryKey as ic, MultipleClausesCallReturnType as ii, EcosystemContent as il, BuildTransactionProps as in, useOwnedNftsFiltered as io, useGenericDelegatorFeeEstimationParams as ir, useWalletStorage as is, NftDetailContent as it, SmartAccount as iu, StickyHeaderContainer as j, useReceiveModal as ja, useFetchAppInfo as jc, uploadBlobToIPFS as ji, DepositAccount as jl, getSmartAccountQueryKey as jn, VET_TOKEN_SENTINEL as jo, UseEventsParams as jr, UseGetErc20BalanceOptions as js, AccountCustomizationContentProps as jt, BaseModal as k, useLoginModalContent as ka, fetchPrivyAppInfo as kc, resolveMediaTypeFromMimeType as ki, LegalDocumentType as kl, SmartAccountReturnType as kn, TransferEventType as ko, useBuildClauses as kr, getTokenUsdPriceQueryKey as ks, CustomizationSummaryContent as kt, UpgradeSmartAccountModalContentsTypes as l, fetchAppHubApps as la, getTextRecordsQueryKey as lc, isValidUrl as li, ConnectModalContentsTypes as ll, useTransferERC721 as ln, IndexerNft as lo, GENERIC_DELEGATOR_WRAPPER_OVERHEAD_GAS as lr, useRoundXApps as ls, RemoveWalletConfirmContentProps as lt, Wallet as lu, CopyIconButton as m, useLoginWithVeChain as ma, DomainsResponse as mc, normalize as mi, PrivyWalletProvider as ml, GetEventsProps as mn, JuicyPositionResult as mo, delegateAuthorized as mr, useMostVotedAppsInRound as ms, SettingsContent as mt, ModalProvider as n, VECHAIN_KIT_TERMS_CONFIG as na, getAvatarOfAddressQueryKey as nc, setLocalStorageItem as ni, ConnectionButton as nl, txReceiptQueryKey as nn, useNftCollectionName as no, useEstimateAllTokens as nr, useSwitchWallet as ns, NftCollectionContent as nt, PrivyAppInfo as nu, LegalDocumentsModal as o, getKitSponsoredDelegatorUrl as oa, buildClauses as oc, buildCallClauses as oi, LoadingContent as ol, buildVETClauses as on, useNftBlacklist as oo, GENERIC_DELEGATOR_FEE_PAYER_OVERHEAD_GAS as or, UseWalletReturnType as os, TokenDetailContent as ot, TransactionStatus as ou, PriceChart as p, UseLoginWithVeChainOptions as pa, Domain as pc, isValid as pi, useVechainKitThemeConfig as pl, useSendTransaction as pn, JuicyAssetPosition as po, decodeRawTx as pr, XApp as ps, TermsAndPrivacyContent as pt, SwitchFeedback as q, useWalletModal as qa, VeChainWithPrivyLoginButton as qc, ENV as qi, CURRENCY as ql, getCurrentAccountImplementationVersionQueryKey as qn, getIpfsMetadata as qo, getDocumentTitle as qr, useTokensWithValues as qs, ThorClient$1 as qt, useModal as r, VECHAIN_PRIVY_APP_ID as ra, useGetAvatarOfAddress as rc, MultipleClausesCallParameters as ri, MoreOptionsContent as rl, useTxReceipt as rn, useNftMetadata as ro, useGenericDelegatorFeeEstimation as rr, StoredWallet as rs, NftCollectionContentProps as rt, PrivyLoginMethod as ru, LegalDocumentsModalContentsTypes as s, notFoundImage as sa, useUpdateTextRecord as sc, executeCallClause as si, MainContent as sl, useTransferVET as sn, getOwnedNftsQueryKey as so, GENERIC_DELEGATOR_GAS_SAFETY_MULTIPLIER as sr, useWallet$1 as ss, TokenDetailContentProps as st, TransactionStatusErrorType as su, AccountModalOptions as t, VECHAIN_KIT_STORAGE_KEYS as ta, useGetAvatarLegacy as tc, safeWindowOpen as ti, EmailLoginButton as tl, useGasEstimate as tn, useConnectModal as to, UseEstimateAllTokensParams as tr, UseSwitchWalletReturnType as ts, SendNftContentProps as tt, NFTMediaType as tu, UpgradeSmartAccountModalStyle as u, getAppHubAppsQueryKey as ua, useGetTextRecords as uc, addPrefix as ui, LegalDocumentsProvider as ul, buildERC20Clauses as un, NftAttribute as uo, computeCorrectedGasTokenCost as ur, useRefreshMetadata as us, SelectWalletContent as ut, AppConfig as uu, InlineFeedback as v, useSignTypedData$1 as va, getIsDomainProtectedQueryKey as vc, simpleHash as vi, LegalDocument as vl, getChainIdQueryKey as vn, useBetterSwapLpPositions as vo, signVip191Transaction as vr, useGetVot3Balance as vs, ChangeCurrencyContent as vt, AccountAvatar as w, useAccountModalOptions as wa, useEnsRecordExists as wc, allNodeStrengthLevelToName as wi, useAppConfig as wl, getUpgradeRequiredForAccountQueryKey as wn, useTokenTransferHistory as wo, LocalStorageKey as wr, useOraclePriceChanges24h as ws, AssetsContentProps as wt, ModalNotificationButton as x, useNotifications as xa, useClaimVetDomain as xc, MinXNodeLevel as xi, VeChainKitContext as xl, useCurrentBlock as xn, StargatePosition as xo, EcosystemShortcut as xr, PriceChanges24h as xs, ManageCustomTokenContent as xt, GasFeeTokenSelector as y, useSignMessage$1 as ya, useIsDomainProtected as yc, TIME as yi, LegalDocumentOptions as yl, useGetChainId as yn, NavigatorPosition as yo, useGenericDelegator as yr, usePortfolioPriceHistory24h as ys, ChangeCurrencyContentProps as yt, FeatureAnnouncementCard as z, useExploreEcosystemModal as za, WalletButton as zc, formatTokenBalance as zi, GasTokenEstimate as zl, getHasV1SmartAccountQueryKey as zn, useUploadImages as zo, useCurrentCurrency as zr, useGetCustomTokenBalances as zs, ChooseNameContentProps as zt };
|
|
5209
|
+
//# sourceMappingURL=index-Gsp1h6d7.d.mts.map
|