@vechain/vechain-kit 2.10.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.d.cts +1 -1
- package/dist/assets/index.d.mts +1 -1
- package/dist/{index-Bekk3wer.d.cts → index-BjQrND59.d.mts} +4 -4
- package/dist/{index-Bekk3wer.d.cts.map → index-BjQrND59.d.mts.map} +1 -1
- package/dist/{index-BvuXDx6d.d.mts → index-C8Uj8ple.d.cts} +4 -4
- package/dist/{index-BvuXDx6d.d.mts.map → index-C8Uj8ple.d.cts.map} +1 -1
- package/dist/{index-DqmXn4Mz.d.mts → index-Gsp1h6d7.d.mts} +51 -51
- package/dist/{index-DqmXn4Mz.d.mts.map → index-Gsp1h6d7.d.mts.map} +1 -1
- package/dist/{index-lFyi52Xi.d.cts → index-aWHEC3vV.d.cts} +51 -51
- package/dist/{index-lFyi52Xi.d.cts.map → index-aWHEC3vV.d.cts.map} +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.cts +2 -2
- package/dist/utils/index.d.mts +2 -2
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ import { LogLevel, WalletSource } from "@vechain/dapp-kit";
|
|
|
11
11
|
import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
|
|
12
12
|
import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
|
|
13
13
|
import { IconType } from "react-icons";
|
|
14
|
-
import * as
|
|
14
|
+
import * as _tanstack_react_query8 from "@tanstack/react-query";
|
|
15
15
|
import { UseQueryOptions } from "@tanstack/react-query";
|
|
16
16
|
import { z } from "zod";
|
|
17
17
|
import { CustomTokenInfo } from "@vechain/contract-getters";
|
|
@@ -54,7 +54,7 @@ declare const genesises: {
|
|
|
54
54
|
readonly main: CompressedBlockDetail;
|
|
55
55
|
readonly test: CompressedBlockDetail;
|
|
56
56
|
readonly solo: CompressedBlockDetail;
|
|
57
|
-
which(gid: string): "
|
|
57
|
+
which(gid: string): "test" | "main" | "solo" | undefined;
|
|
58
58
|
};
|
|
59
59
|
//#endregion
|
|
60
60
|
//#region src/config/index.d.ts
|
|
@@ -1261,7 +1261,7 @@ declare const AccountMainContent: ({
|
|
|
1261
1261
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
1262
1262
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
1263
1263
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
1264
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
1264
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
|
|
1265
1265
|
[k: string]: {
|
|
1266
1266
|
website: string | undefined;
|
|
1267
1267
|
id: string;
|
|
@@ -1282,7 +1282,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
1282
1282
|
//#endregion
|
|
1283
1283
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
1284
1284
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
1285
|
-
declare const useFetchPrivyStatus: () =>
|
|
1285
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1286
1286
|
//#endregion
|
|
1287
1287
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
1288
1288
|
interface VeChainDomainResult {
|
|
@@ -1292,11 +1292,11 @@ interface VeChainDomainResult {
|
|
|
1292
1292
|
isPrimaryDomain: boolean;
|
|
1293
1293
|
}
|
|
1294
1294
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
1295
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
1295
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
|
|
1296
1296
|
//#endregion
|
|
1297
1297
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
1298
1298
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
1299
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
1299
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1300
1300
|
//#endregion
|
|
1301
1301
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
1302
1302
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1358,7 +1358,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1358
1358
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1359
1359
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1360
1360
|
*/
|
|
1361
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1361
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1362
1362
|
//#endregion
|
|
1363
1363
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1364
1364
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1386,7 +1386,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1386
1386
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1387
1387
|
* @returns The domains owned by the address
|
|
1388
1388
|
*/
|
|
1389
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1389
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1390
1390
|
domains: {
|
|
1391
1391
|
name: string;
|
|
1392
1392
|
}[];
|
|
@@ -1399,7 +1399,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1399
1399
|
* @param name - The VET domain name
|
|
1400
1400
|
* @returns The resolved avatar URL
|
|
1401
1401
|
*/
|
|
1402
|
-
declare const useGetAvatar: (name: string) =>
|
|
1402
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1403
1403
|
//#endregion
|
|
1404
1404
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1405
1405
|
/**
|
|
@@ -1411,7 +1411,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query11.UseQueryRe
|
|
|
1411
1411
|
*/
|
|
1412
1412
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1413
1413
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1414
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1414
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
|
|
1415
1415
|
//#endregion
|
|
1416
1416
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1417
1417
|
type UpdateTextRecordVariables = {
|
|
@@ -1444,7 +1444,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1444
1444
|
* @param domain The domain to get resolver for
|
|
1445
1445
|
* @returns The resolver address for the domain
|
|
1446
1446
|
*/
|
|
1447
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1447
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
|
|
1448
1448
|
//#endregion
|
|
1449
1449
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1450
1450
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1454,7 +1454,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1454
1454
|
* @param address The owner's address
|
|
1455
1455
|
* @returns The avatar URL for the address's primary domain
|
|
1456
1456
|
*/
|
|
1457
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1457
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1458
1458
|
//#endregion
|
|
1459
1459
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1460
1460
|
/**
|
|
@@ -1471,7 +1471,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1471
1471
|
* @param name - The VET domain name
|
|
1472
1472
|
* @returns The resolved avatar URL
|
|
1473
1473
|
*/
|
|
1474
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1474
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1475
1475
|
//#endregion
|
|
1476
1476
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1477
1477
|
type useUnsetDomainProps = {
|
|
@@ -1588,7 +1588,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1588
1588
|
* Hook to get the current roundId of allocations voting
|
|
1589
1589
|
* @returns the current roundId of allocations voting
|
|
1590
1590
|
*/
|
|
1591
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1591
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
|
|
1592
1592
|
//#endregion
|
|
1593
1593
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1594
1594
|
declare const useCustomTokens: () => {
|
|
@@ -1601,7 +1601,7 @@ declare const useCustomTokens: () => {
|
|
|
1601
1601
|
//#endregion
|
|
1602
1602
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1603
1603
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1604
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1604
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1605
1605
|
original: string;
|
|
1606
1606
|
scaled: string;
|
|
1607
1607
|
formatted: string;
|
|
@@ -1610,7 +1610,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query11.U
|
|
|
1610
1610
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1611
1611
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1612
1612
|
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string, decimals?: number) => (string | number | undefined)[];
|
|
1613
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1613
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1614
1614
|
original: string;
|
|
1615
1615
|
scaled: string;
|
|
1616
1616
|
formatted: string;
|
|
@@ -1623,14 +1623,14 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1623
1623
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1624
1624
|
declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1625
1625
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1626
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1626
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
|
|
1627
1627
|
//#endregion
|
|
1628
1628
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1629
1629
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1630
1630
|
type UseGetErc20BalanceOptions = {
|
|
1631
1631
|
enabled?: boolean;
|
|
1632
1632
|
};
|
|
1633
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) =>
|
|
1633
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query8.UseQueryResult<{
|
|
1634
1634
|
original: string;
|
|
1635
1635
|
scaled: string;
|
|
1636
1636
|
formatted: string;
|
|
@@ -1647,7 +1647,7 @@ declare const PRICE_FEED_IDS: {
|
|
|
1647
1647
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1648
1648
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1649
1649
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1650
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1650
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
1651
1651
|
//#endregion
|
|
1652
1652
|
//#region src/hooks/api/wallet/useOraclePriceChanges24h.d.ts
|
|
1653
1653
|
type PricePoint = {
|
|
@@ -1668,7 +1668,7 @@ type PriceChanges24h = Partial<Record<SupportedToken, number>>;
|
|
|
1668
1668
|
* `useTokenPriceHistory24h`, the portfolio chart) all derive from this single
|
|
1669
1669
|
* query so we never run the same RPC scan twice in a session.
|
|
1670
1670
|
*/
|
|
1671
|
-
declare const useOracleHistory24h: () =>
|
|
1671
|
+
declare const useOracleHistory24h: () => _tanstack_react_query8.UseQueryResult<OracleHistory24h, Error>;
|
|
1672
1672
|
declare const useOraclePriceChanges24h: () => {
|
|
1673
1673
|
data: Partial<Record<"B3TR" | "VET" | "VTHO" | "GBP" | "EUR", number>>;
|
|
1674
1674
|
};
|
|
@@ -1686,7 +1686,7 @@ declare const usePortfolioPriceHistory24h: (address?: string) => {
|
|
|
1686
1686
|
//#endregion
|
|
1687
1687
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1688
1688
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1689
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1689
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1690
1690
|
original: string;
|
|
1691
1691
|
scaled: string;
|
|
1692
1692
|
formatted: string;
|
|
@@ -1705,7 +1705,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1705
1705
|
* @param user - The user address.
|
|
1706
1706
|
* @returns The isPerson status.
|
|
1707
1707
|
*/
|
|
1708
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1708
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1709
1709
|
//#endregion
|
|
1710
1710
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1711
1711
|
type XApp = {
|
|
@@ -1743,7 +1743,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1743
1743
|
//#endregion
|
|
1744
1744
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1745
1745
|
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
|
|
1746
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1746
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1747
1747
|
id: string;
|
|
1748
1748
|
teamWalletAddress: `0x${string}`;
|
|
1749
1749
|
name: string;
|
|
@@ -1857,7 +1857,7 @@ type XAppMetadata = {
|
|
|
1857
1857
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1858
1858
|
*/
|
|
1859
1859
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1860
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1860
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1861
1861
|
//#endregion
|
|
1862
1862
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1863
1863
|
/**
|
|
@@ -1872,7 +1872,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1872
1872
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1873
1873
|
*
|
|
1874
1874
|
*/
|
|
1875
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1875
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1876
1876
|
app: string;
|
|
1877
1877
|
share: number;
|
|
1878
1878
|
unallocatedShare: number;
|
|
@@ -1894,7 +1894,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1894
1894
|
* @param ipfsUri - The IPFS URI
|
|
1895
1895
|
* @returns The metadata from IPFS
|
|
1896
1896
|
*/
|
|
1897
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1897
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
|
|
1898
1898
|
//#endregion
|
|
1899
1899
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1900
1900
|
interface IpfsImage {
|
|
@@ -1921,14 +1921,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1921
1921
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1922
1922
|
* @returns The NFT media
|
|
1923
1923
|
*/
|
|
1924
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1924
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
|
|
1925
1925
|
/**
|
|
1926
1926
|
* Custom hook to fetch a list of IPFS images.
|
|
1927
1927
|
*
|
|
1928
1928
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1929
1929
|
* @returns An array of queries for each IPFS image URI.
|
|
1930
1930
|
*/
|
|
1931
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1931
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
|
|
1932
1932
|
//#endregion
|
|
1933
1933
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1934
1934
|
/**
|
|
@@ -1936,7 +1936,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1936
1936
|
* @param ipfsUris - The IPFS URIs
|
|
1937
1937
|
* @returns The metadata from IPFS for each URI
|
|
1938
1938
|
*/
|
|
1939
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1939
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
|
|
1940
1940
|
//#endregion
|
|
1941
1941
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1942
1942
|
declare const imageCompressionOptions: Options;
|
|
@@ -2195,7 +2195,7 @@ declare const useTransferHistory: (address?: string, {
|
|
|
2195
2195
|
isFetching: boolean;
|
|
2196
2196
|
isFetchingNextPage: boolean;
|
|
2197
2197
|
hasNextPage: boolean;
|
|
2198
|
-
fetchNextPage: (options?:
|
|
2198
|
+
fetchNextPage: (options?: _tanstack_react_query8.FetchNextPageOptions) => Promise<_tanstack_react_query8.InfiniteQueryObserverResult<_tanstack_react_query8.InfiniteData<{
|
|
2199
2199
|
items: TransferHistoryItem[];
|
|
2200
2200
|
hasNext: boolean;
|
|
2201
2201
|
}, unknown>, Error>>;
|
|
@@ -2354,7 +2354,7 @@ declare const useOwnedNfts: (address?: string) => {
|
|
|
2354
2354
|
isFetching: boolean;
|
|
2355
2355
|
isFetchingNextPage: boolean;
|
|
2356
2356
|
hasNextPage: boolean;
|
|
2357
|
-
fetchNextPage: (options?:
|
|
2357
|
+
fetchNextPage: (options?: _tanstack_react_query8.FetchNextPageOptions) => Promise<_tanstack_react_query8.InfiniteQueryObserverResult<_tanstack_react_query8.InfiniteData<OwnedNftsPage, unknown>, Error>>;
|
|
2358
2358
|
isUnsupportedNetwork: boolean;
|
|
2359
2359
|
error: Error | null;
|
|
2360
2360
|
};
|
|
@@ -2803,7 +2803,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2803
2803
|
* );
|
|
2804
2804
|
* ```
|
|
2805
2805
|
*/
|
|
2806
|
-
declare const useAppHubApps: () =>
|
|
2806
|
+
declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
|
|
2807
2807
|
//#endregion
|
|
2808
2808
|
//#region src/utils/constants.d.ts
|
|
2809
2809
|
/** Tokens that cannot be swapped or transferred (e.g. governance voting tokens) */
|
|
@@ -3167,7 +3167,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
3167
3167
|
method: TMethod;
|
|
3168
3168
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
3169
3169
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
3170
|
-
}) =>
|
|
3170
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
|
|
3171
3171
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
3172
3172
|
thor,
|
|
3173
3173
|
calls,
|
|
@@ -3178,7 +3178,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
3178
3178
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
3179
3179
|
queryKey: string[];
|
|
3180
3180
|
enabled?: boolean;
|
|
3181
|
-
}) =>
|
|
3181
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
3182
3182
|
//#endregion
|
|
3183
3183
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
3184
3184
|
/**
|
|
@@ -3302,7 +3302,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
3302
3302
|
filterParams,
|
|
3303
3303
|
mapResponse,
|
|
3304
3304
|
nodeUrl
|
|
3305
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
3305
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
|
|
3306
3306
|
//#endregion
|
|
3307
3307
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
3308
3308
|
interface BuildClausesParams {
|
|
@@ -3547,7 +3547,7 @@ declare const useGenericDelegatorFeeEstimation: ({
|
|
|
3547
3547
|
tokens,
|
|
3548
3548
|
sendingAmount,
|
|
3549
3549
|
sendingTokenSymbol
|
|
3550
|
-
}: useGenericDelegatorFeeEstimationParams) =>
|
|
3550
|
+
}: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
|
|
3551
3551
|
usedToken: string;
|
|
3552
3552
|
}, Error>;
|
|
3553
3553
|
//#endregion
|
|
@@ -3561,7 +3561,7 @@ declare const useEstimateAllTokens: ({
|
|
|
3561
3561
|
clauses,
|
|
3562
3562
|
tokens,
|
|
3563
3563
|
enabled
|
|
3564
|
-
}: UseEstimateAllTokensParams) =>
|
|
3564
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
|
|
3565
3565
|
cost: number;
|
|
3566
3566
|
loading: boolean;
|
|
3567
3567
|
error?: string;
|
|
@@ -3578,7 +3578,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
3578
3578
|
* @param address The address of the account to get the balance for
|
|
3579
3579
|
* @returns The account balance
|
|
3580
3580
|
*/
|
|
3581
|
-
declare const useAccountBalance: (address?: string) =>
|
|
3581
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
3582
3582
|
balance: string;
|
|
3583
3583
|
energy: string;
|
|
3584
3584
|
}, Error>;
|
|
@@ -3591,7 +3591,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
3591
3591
|
* @param version - The version of the smart account implementation
|
|
3592
3592
|
* @returns The address of the smart account implementation
|
|
3593
3593
|
*/
|
|
3594
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
3594
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
3595
3595
|
//#endregion
|
|
3596
3596
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
3597
3597
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -3600,7 +3600,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
3600
3600
|
* Get the current account implementation version used by the smart account factory
|
|
3601
3601
|
* @returns The current account implementation version
|
|
3602
3602
|
*/
|
|
3603
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
3603
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
3604
3604
|
//#endregion
|
|
3605
3605
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
3606
3606
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -3610,7 +3610,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
3610
3610
|
* @param ownerAddress - The address of the owner of the smart account
|
|
3611
3611
|
* @returns The address of the smart account
|
|
3612
3612
|
*/
|
|
3613
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
3613
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
3614
3614
|
//#endregion
|
|
3615
3615
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
3616
3616
|
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
|
|
@@ -3620,7 +3620,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
|
|
|
3620
3620
|
* @param ownerAddress - The address of the owner of the smart account
|
|
3621
3621
|
* @returns The version of the smart account
|
|
3622
3622
|
*/
|
|
3623
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
3623
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
|
|
3624
3624
|
version: number;
|
|
3625
3625
|
isDeployed: boolean;
|
|
3626
3626
|
}, unknown>;
|
|
@@ -3633,7 +3633,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
3633
3633
|
* @param ownerAddress - The address of the owner of the smart account
|
|
3634
3634
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
3635
3635
|
*/
|
|
3636
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
3636
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3637
3637
|
//#endregion
|
|
3638
3638
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
3639
3639
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -3642,7 +3642,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
3642
3642
|
* Check if a smart account is deployed
|
|
3643
3643
|
* @returns True if the smart account is deployed, false otherwise
|
|
3644
3644
|
*/
|
|
3645
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
3645
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3646
3646
|
//#endregion
|
|
3647
3647
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
3648
3648
|
/**
|
|
@@ -3675,7 +3675,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
3675
3675
|
isDeployed: boolean;
|
|
3676
3676
|
}>;
|
|
3677
3677
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
3678
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
3678
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
3679
3679
|
address: undefined;
|
|
3680
3680
|
isDeployed?: undefined;
|
|
3681
3681
|
} | {
|
|
@@ -3693,7 +3693,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
3693
3693
|
* @param targetVersion - The version of the smart account to check for
|
|
3694
3694
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3695
3695
|
*/
|
|
3696
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
3696
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3697
3697
|
//#endregion
|
|
3698
3698
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
3699
3699
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -3704,7 +3704,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
3704
3704
|
* @param targetVersion - The target version of the smart account
|
|
3705
3705
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3706
3706
|
*/
|
|
3707
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
3707
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3708
3708
|
//#endregion
|
|
3709
3709
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
3710
3710
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -3729,7 +3729,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
3729
3729
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
3730
3730
|
* @returns the current block
|
|
3731
3731
|
*/
|
|
3732
|
-
declare const useCurrentBlock: () =>
|
|
3732
|
+
declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
|
|
3733
3733
|
//#endregion
|
|
3734
3734
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
3735
3735
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -3738,7 +3738,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
3738
3738
|
* Get the chain id
|
|
3739
3739
|
* @returns The chain id
|
|
3740
3740
|
*/
|
|
3741
|
-
declare const useGetChainId: () =>
|
|
3741
|
+
declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
3742
3742
|
//#endregion
|
|
3743
3743
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
3744
3744
|
/**
|
|
@@ -4018,7 +4018,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
4018
4018
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
4019
4019
|
* @returns Query result containing the transaction receipt
|
|
4020
4020
|
*/
|
|
4021
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
4021
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
|
|
4022
4022
|
//#endregion
|
|
4023
4023
|
//#region src/hooks/thor/transactions/useGasEstimate.d.ts
|
|
4024
4024
|
declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
|
|
@@ -5204,4 +5204,4 @@ declare const ModalProvider: ({
|
|
|
5204
5204
|
}) => react_jsx_runtime0.JSX.Element;
|
|
5205
5205
|
//#endregion
|
|
5206
5206
|
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 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 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 as Zt, WalletSwitchFeedback as _, useLoginWithPasskey 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 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 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 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 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 };
|
|
5207
|
-
//# sourceMappingURL=index-
|
|
5207
|
+
//# sourceMappingURL=index-aWHEC3vV.d.cts.map
|