@vechain/vechain-kit 2.8.2 → 2.9.0

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.
@@ -2,26 +2,26 @@ import { BoxProps, ButtonProps, IconButtonProps, ImageProps, PropsOf, StackProps
2
2
  import * as react0 from "react";
3
3
  import React$1, { ElementType, ReactElement, ReactNode } from "react";
4
4
  import * as react_jsx_runtime0 from "react/jsx-runtime";
5
- import * as _vechain_sdk_network0 from "@vechain/sdk-network";
6
- import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
7
- import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy, useSetWalletRecovery } from "@privy-io/react-auth";
5
+ import { Account } from "viem/accounts";
8
6
  import * as _vechain_sdk_core0 from "@vechain/sdk-core";
9
7
  import { Address, Certificate, CertificateData, Clause, Revision, Transaction, TransactionClause } from "@vechain/sdk-core";
10
- import { LogLevel, WalletSource } from "@vechain/dapp-kit";
11
- import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
12
- import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
13
- import { IconType } from "react-icons";
14
- import * as _tanstack_react_query8 from "@tanstack/react-query";
8
+ import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy as usePrivy$1, useSetWalletRecovery } from "@privy-io/react-auth";
9
+ import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor as useThor$1, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
10
+ import * as _tanstack_react_query28 from "@tanstack/react-query";
15
11
  import { UseQueryOptions } from "@tanstack/react-query";
16
- import { z } from "zod";
17
12
  import { CustomTokenInfo } from "@vechain/contract-getters";
13
+ import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
14
+ import { z } from "zod";
18
15
  import { Options } from "browser-image-compression";
19
- import * as _tanstack_query_core0 from "@tanstack/query-core";
20
- import { Account } from "viem/accounts";
16
+ import { UseFormRegister } from "react-hook-form";
17
+ import * as _vechain_sdk_network2 from "@vechain/sdk-network";
18
+ import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
19
+ import { LogLevel, WalletSource } from "@vechain/dapp-kit";
20
+ import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
21
+ import { IconType } from "react-icons";
22
+ import * as _tanstack_query_core2 from "@tanstack/query-core";
21
23
  import * as abitype0 from "abitype";
22
24
  import { AbiParametersToPrimitiveTypes, ExtractAbiFunction, ExtractAbiFunctionNames } from "abitype";
23
- import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
24
- import { UseFormRegister } from "react-hook-form";
25
25
 
26
26
  //#region src/config/network.d.ts
27
27
  /**
@@ -96,6 +96,7 @@ type AppConfig = {
96
96
  navigatorRegistryContractAddress: string;
97
97
  betterSwapFactoryAddress: string;
98
98
  juicyPoolAddress: string;
99
+ nftBlacklistContractAddress?: string;
99
100
  vetDomainAvatarUrl: string;
100
101
  nodeUrl: string;
101
102
  indexerUrl: string;
@@ -1237,7 +1238,7 @@ declare const AccountMainContent: ({
1237
1238
  //#region src/hooks/api/privy/useFetchAppInfo.d.ts
1238
1239
  declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
1239
1240
  declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
1240
- declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
1241
+ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query28.UseQueryResult<{
1241
1242
  [k: string]: {
1242
1243
  website: string | undefined;
1243
1244
  id: string;
@@ -1258,7 +1259,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
1258
1259
  //#endregion
1259
1260
  //#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
1260
1261
  declare const fetchPrivyStatus: () => Promise<string>;
1261
- declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
1262
+ declare const useFetchPrivyStatus: () => _tanstack_react_query28.UseQueryResult<string, Error>;
1262
1263
  //#endregion
1263
1264
  //#region src/hooks/api/vetDomains/useVechainDomain.d.ts
1264
1265
  interface VeChainDomainResult {
@@ -1268,11 +1269,11 @@ interface VeChainDomainResult {
1268
1269
  isPrimaryDomain: boolean;
1269
1270
  }
1270
1271
  declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
1271
- declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
1272
+ declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query28.UseQueryResult<VeChainDomainResult, Error>;
1272
1273
  //#endregion
1273
1274
  //#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
1274
1275
  declare const getEnsRecordExistsQueryKey: (name: string) => string[];
1275
- declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1276
+ declare const useEnsRecordExists: (name: string) => _tanstack_react_query28.UseQueryResult<boolean, Error>;
1276
1277
  //#endregion
1277
1278
  //#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
1278
1279
  type useClaimVeWorldSubdomainProps = {
@@ -1334,7 +1335,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
1334
1335
  * @param {boolean} [enabled=true] - Flag to enable or disable the hook.
1335
1336
  * @returns The result of the useQuery hook, with the protection status.
1336
1337
  */
1337
- declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1338
+ declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query28.UseQueryResult<boolean, Error>;
1338
1339
  //#endregion
1339
1340
  //#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
1340
1341
  declare const DomainSchema: z.ZodObject<{
@@ -1362,7 +1363,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
1362
1363
  * @param parentDomain The parent domain (e.g., "veworld.vet")
1363
1364
  * @returns The domains owned by the address
1364
1365
  */
1365
- declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
1366
+ declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query28.UseQueryResult<{
1366
1367
  domains: {
1367
1368
  name: string;
1368
1369
  }[];
@@ -1375,7 +1376,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
1375
1376
  * @param name - The VET domain name
1376
1377
  * @returns The resolved avatar URL
1377
1378
  */
1378
- declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1379
+ declare const useGetAvatar: (name: string) => _tanstack_react_query28.UseQueryResult<string | null, Error>;
1379
1380
  //#endregion
1380
1381
  //#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
1381
1382
  /**
@@ -1387,7 +1388,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryRes
1387
1388
  */
1388
1389
  declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
1389
1390
  declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
1390
- declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
1391
+ declare const useGetTextRecords: (domain?: string) => _tanstack_react_query28.UseQueryResult<TextRecords, Error>;
1391
1392
  //#endregion
1392
1393
  //#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
1393
1394
  type UpdateTextRecordVariables = {
@@ -1420,7 +1421,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
1420
1421
  * @param domain The domain to get resolver for
1421
1422
  * @returns The resolver address for the domain
1422
1423
  */
1423
- declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
1424
+ declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query28.UseQueryResult<`0x${string}`, unknown>;
1424
1425
  //#endregion
1425
1426
  //#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
1426
1427
  declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
@@ -1430,7 +1431,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
1430
1431
  * @param address The owner's address
1431
1432
  * @returns The avatar URL for the address's primary domain
1432
1433
  */
1433
- declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
1434
+ declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query28.UseQueryResult<string, Error>;
1434
1435
  //#endregion
1435
1436
  //#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
1436
1437
  /**
@@ -1447,7 +1448,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
1447
1448
  * @param name - The VET domain name
1448
1449
  * @returns The resolved avatar URL
1449
1450
  */
1450
- declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
1451
+ declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query28.UseQueryResult<string | null, Error>;
1451
1452
  //#endregion
1452
1453
  //#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
1453
1454
  type useUnsetDomainProps = {
@@ -1564,7 +1565,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
1564
1565
  * Hook to get the current roundId of allocations voting
1565
1566
  * @returns the current roundId of allocations voting
1566
1567
  */
1567
- declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
1568
+ declare const useCurrentAllocationsRoundId: () => _tanstack_react_query28.UseQueryResult<string, unknown>;
1568
1569
  //#endregion
1569
1570
  //#region src/hooks/api/wallet/useCustomTokens.d.ts
1570
1571
  declare const useCustomTokens: () => {
@@ -1577,7 +1578,7 @@ declare const useCustomTokens: () => {
1577
1578
  //#endregion
1578
1579
  //#region src/hooks/api/wallet/useGetB3trBalance.d.ts
1579
1580
  declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
1580
- declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1581
+ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query28.UseQueryResult<{
1581
1582
  original: string;
1582
1583
  scaled: string;
1583
1584
  formatted: string;
@@ -1586,7 +1587,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.Us
1586
1587
  //#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
1587
1588
  type TokenWithBalance = CustomTokenInfo & TokenBalance;
1588
1589
  declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string, decimals?: number) => (string | number | undefined)[];
1589
- declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1590
+ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query28.UseQueryResult<{
1590
1591
  original: string;
1591
1592
  scaled: string;
1592
1593
  formatted: string;
@@ -1597,16 +1598,16 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
1597
1598
  }, Error>[];
1598
1599
  //#endregion
1599
1600
  //#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
1600
- declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1601
+ declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1601
1602
  declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
1602
- declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
1603
+ declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query28.UseQueryResult<CustomTokenInfo, Error>;
1603
1604
  //#endregion
1604
1605
  //#region src/hooks/api/wallet/useGetErc20Balance.d.ts
1605
1606
  declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
1606
1607
  type UseGetErc20BalanceOptions = {
1607
1608
  enabled?: boolean;
1608
1609
  };
1609
- declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query8.UseQueryResult<{
1610
+ declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query28.UseQueryResult<{
1610
1611
  original: string;
1611
1612
  scaled: string;
1612
1613
  formatted: string;
@@ -1623,7 +1624,7 @@ declare const PRICE_FEED_IDS: {
1623
1624
  type SupportedToken = keyof typeof PRICE_FEED_IDS;
1624
1625
  declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
1625
1626
  declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
1626
- declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
1627
+ declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query28.UseQueryResult<number, Error>;
1627
1628
  //#endregion
1628
1629
  //#region src/hooks/api/wallet/useOraclePriceChanges24h.d.ts
1629
1630
  type PricePoint = {
@@ -1644,7 +1645,7 @@ type PriceChanges24h = Partial<Record<SupportedToken, number>>;
1644
1645
  * `useTokenPriceHistory24h`, the portfolio chart) all derive from this single
1645
1646
  * query so we never run the same RPC scan twice in a session.
1646
1647
  */
1647
- declare const useOracleHistory24h: () => _tanstack_react_query8.UseQueryResult<OracleHistory24h, Error>;
1648
+ declare const useOracleHistory24h: () => _tanstack_react_query28.UseQueryResult<OracleHistory24h, Error>;
1648
1649
  declare const useOraclePriceChanges24h: () => {
1649
1650
  data: Partial<Record<"B3TR" | "VET" | "VTHO" | "GBP" | "EUR", number>>;
1650
1651
  };
@@ -1662,7 +1663,7 @@ declare const usePortfolioPriceHistory24h: (address?: string) => {
1662
1663
  //#endregion
1663
1664
  //#region src/hooks/api/wallet/useGetVot3Balance.d.ts
1664
1665
  declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
1665
- declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
1666
+ declare const useGetVot3Balance: (address?: string) => _tanstack_react_query28.UseQueryResult<{
1666
1667
  original: string;
1667
1668
  scaled: string;
1668
1669
  formatted: string;
@@ -1681,7 +1682,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
1681
1682
  * @param user - The user address.
1682
1683
  * @returns The isPerson status.
1683
1684
  */
1684
- declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
1685
+ declare const useIsPerson: (user?: string | null) => _tanstack_react_query28.UseQueryResult<boolean, Error>;
1685
1686
  //#endregion
1686
1687
  //#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
1687
1688
  type XApp = {
@@ -1719,7 +1720,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
1719
1720
  //#endregion
1720
1721
  //#region src/hooks/api/wallet/useRoundXApps.d.ts
1721
1722
  declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
1722
- declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1723
+ declare const useRoundXApps: (roundId?: string) => _tanstack_react_query28.UseQueryResult<{
1723
1724
  id: string;
1724
1725
  teamWalletAddress: `0x${string}`;
1725
1726
  name: string;
@@ -1750,7 +1751,7 @@ type UseWalletReturnType = {
1750
1751
  };
1751
1752
  disconnect: () => Promise<void>;
1752
1753
  };
1753
- declare const useWallet: () => UseWalletReturnType;
1754
+ declare const useWallet$1: () => UseWalletReturnType;
1754
1755
  //#endregion
1755
1756
  //#region src/hooks/api/wallet/useWalletMetadata.d.ts
1756
1757
  declare const useWalletMetadata: (address: string, networkType: NETWORK_TYPE) => {
@@ -1833,7 +1834,7 @@ type XAppMetadata = {
1833
1834
  * @returns The metadata of the xApp see {@link XAppMetadata}
1834
1835
  */
1835
1836
  declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
1836
- declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
1837
+ declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query28.UseQueryResult<XAppMetadata | undefined, Error>;
1837
1838
  //#endregion
1838
1839
  //#region src/hooks/api/wallet/useXAppShares.d.ts
1839
1840
  /**
@@ -1848,7 +1849,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
1848
1849
  * @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
1849
1850
  *
1850
1851
  */
1851
- declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
1852
+ declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query28.UseQueryResult<{
1852
1853
  app: string;
1853
1854
  share: number;
1854
1855
  unallocatedShare: number;
@@ -1870,7 +1871,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
1870
1871
  * @param ipfsUri - The IPFS URI
1871
1872
  * @returns The metadata from IPFS
1872
1873
  */
1873
- declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
1874
+ declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query28.UseQueryResult<_tanstack_react_query28.NoInfer<T$1>, Error>;
1874
1875
  //#endregion
1875
1876
  //#region src/hooks/api/ipfs/useIpfsImage.d.ts
1876
1877
  interface IpfsImage {
@@ -1897,14 +1898,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
1897
1898
  * @param imageIpfsUri - The IPFS URI of the NFT media
1898
1899
  * @returns The NFT media
1899
1900
  */
1900
- declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
1901
+ declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query28.UseQueryResult<IpfsImage, Error>;
1901
1902
  /**
1902
1903
  * Custom hook to fetch a list of IPFS images.
1903
1904
  *
1904
1905
  * @param imageIpfsUriList - An array of IPFS URIs for the images.
1905
1906
  * @returns An array of queries for each IPFS image URI.
1906
1907
  */
1907
- declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
1908
+ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query28.UseQueryResult<IpfsImage, Error>[];
1908
1909
  //#endregion
1909
1910
  //#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
1910
1911
  /**
@@ -1912,7 +1913,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
1912
1913
  * @param ipfsUris - The IPFS URIs
1913
1914
  * @returns The metadata from IPFS for each URI
1914
1915
  */
1915
- declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
1916
+ declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query28.UseQueryResult<T$1, Error>[];
1916
1917
  //#endregion
1917
1918
  //#region src/hooks/api/ipfs/useUploadImages.d.ts
1918
1919
  declare const imageCompressionOptions: Options;
@@ -2093,7 +2094,7 @@ declare const useSwapTransaction: (params: SwapParams | null, quote: SwapQuote |
2093
2094
  executeSwap: () => Promise<void>;
2094
2095
  isTransactionPending: boolean;
2095
2096
  isWaitingForWalletConfirmation: boolean;
2096
- txReceipt: _vechain_sdk_network0.TransactionReceipt | null;
2097
+ txReceipt: _vechain_sdk_network2.TransactionReceipt | null;
2097
2098
  status: TransactionStatus;
2098
2099
  resetStatus: () => void;
2099
2100
  error: TransactionStatusErrorType | undefined;
@@ -2171,7 +2172,7 @@ declare const useTransferHistory: (address?: string, {
2171
2172
  isFetching: boolean;
2172
2173
  isFetchingNextPage: boolean;
2173
2174
  hasNextPage: boolean;
2174
- fetchNextPage: (options?: _tanstack_react_query8.FetchNextPageOptions) => Promise<_tanstack_react_query8.InfiniteQueryObserverResult<_tanstack_react_query8.InfiniteData<{
2175
+ fetchNextPage: (options?: _tanstack_react_query28.FetchNextPageOptions) => Promise<_tanstack_react_query28.InfiniteQueryObserverResult<_tanstack_react_query28.InfiniteData<{
2175
2176
  items: TransferHistoryItem[];
2176
2177
  hasNext: boolean;
2177
2178
  }, unknown>, Error>>;
@@ -2188,7 +2189,7 @@ declare const useTokenTransferHistory: (address?: string, tokenAddress?: string
2188
2189
  isFetching: boolean;
2189
2190
  isFetchingNextPage: boolean;
2190
2191
  hasNextPage: boolean;
2191
- fetchNextPage: (options?: _tanstack_query_core0.FetchNextPageOptions) => Promise<_tanstack_query_core0.InfiniteQueryObserverResult<_tanstack_query_core0.InfiniteData<{
2192
+ fetchNextPage: (options?: _tanstack_query_core2.FetchNextPageOptions) => Promise<_tanstack_query_core2.InfiniteQueryObserverResult<_tanstack_query_core2.InfiniteData<{
2192
2193
  items: TransferHistoryItem[];
2193
2194
  hasNext: boolean;
2194
2195
  }, unknown>, Error>>;
@@ -2281,6 +2282,118 @@ type JuicyPositionResult = {
2281
2282
  };
2282
2283
  declare const useJuicyPosition: (address?: string) => JuicyPositionResult;
2283
2284
  //#endregion
2285
+ //#region src/hooks/api/nfts/types.d.ts
2286
+ type IndexerNft = {
2287
+ id?: string;
2288
+ contractAddress: string;
2289
+ tokenId: string;
2290
+ owner?: string;
2291
+ txId?: string;
2292
+ blockNumber?: number;
2293
+ blockId?: string;
2294
+ blockTimestamp?: number;
2295
+ };
2296
+ type OwnedNft = {
2297
+ id: string;
2298
+ collectionAddress: string;
2299
+ tokenId: string;
2300
+ lastTransferTimestamp?: number;
2301
+ lastTransferTxId?: string;
2302
+ };
2303
+ type NftAttribute = {
2304
+ trait_type?: string;
2305
+ value?: string | number | boolean;
2306
+ display_type?: string;
2307
+ };
2308
+ type NftMetadata = {
2309
+ name?: string;
2310
+ description?: string;
2311
+ image?: string;
2312
+ external_url?: string;
2313
+ animation_url?: string;
2314
+ attributes?: NftAttribute[];
2315
+ };
2316
+ //#endregion
2317
+ //#region src/hooks/api/nfts/useOwnedNfts.d.ts
2318
+ type OwnedNftsPage = {
2319
+ items: OwnedNft[];
2320
+ hasNext: boolean;
2321
+ };
2322
+ declare const getOwnedNftsQueryKey: (address?: string, networkType?: NETWORK_TYPE) => (string | undefined)[];
2323
+ /**
2324
+ * Lists NFTs owned by an address using the indexer at
2325
+ * `GET ${indexerUrl}/nfts?address=<addr>&page=<n>`, returning
2326
+ * `{ data: IndexerNft[], pagination?: { hasNext?: boolean } }`.
2327
+ */
2328
+ declare const useOwnedNfts: (address?: string) => {
2329
+ items: OwnedNft[];
2330
+ isLoading: boolean;
2331
+ isFetching: boolean;
2332
+ isFetchingNextPage: boolean;
2333
+ hasNextPage: boolean;
2334
+ fetchNextPage: (options?: _tanstack_react_query28.FetchNextPageOptions) => Promise<_tanstack_react_query28.InfiniteQueryObserverResult<_tanstack_react_query28.InfiniteData<OwnedNftsPage, unknown>, Error>>;
2335
+ isUnsupportedNetwork: boolean;
2336
+ error: Error | null;
2337
+ };
2338
+ //#endregion
2339
+ //#region src/hooks/api/nfts/useNftBlacklist.d.ts
2340
+ declare const getNftBlacklistQueryKey: (networkType: string, blacklistAddress?: string, collections?: string[]) => (string | null)[];
2341
+ /**
2342
+ * Reads `isBlacklisted(address)` on the on-chain blacklist contract for each
2343
+ * unique collection. Returns a Set of lowercased collection addresses that are
2344
+ * blacklisted. If the network has no blacklist contract configured, returns
2345
+ * an empty Set (everything passes).
2346
+ */
2347
+ declare const useNftBlacklist: (collectionAddresses: string[]) => {
2348
+ blacklist: Set<string>;
2349
+ isLoading: boolean;
2350
+ error: Error | null;
2351
+ };
2352
+ //#endregion
2353
+ //#region src/hooks/api/nfts/useOwnedNftsFiltered.d.ts
2354
+ /**
2355
+ * Composes useOwnedNfts + useNftBlacklist: returns the user's NFTs with any
2356
+ * collection blacklisted by the on-chain registry removed.
2357
+ */
2358
+ declare const useOwnedNftsFiltered: (address?: string) => {
2359
+ items: OwnedNft[];
2360
+ rawItems: OwnedNft[];
2361
+ isLoading: boolean;
2362
+ isBlacklistLoading: boolean;
2363
+ isFetching: boolean;
2364
+ isFetchingNextPage: boolean;
2365
+ hasNextPage: boolean;
2366
+ fetchNextPage: (options?: _tanstack_query_core2.FetchNextPageOptions) => Promise<_tanstack_query_core2.InfiniteQueryObserverResult<_tanstack_query_core2.InfiniteData<{
2367
+ items: OwnedNft[];
2368
+ hasNext: boolean;
2369
+ }, unknown>, Error>>;
2370
+ isUnsupportedNetwork: boolean;
2371
+ error: Error | null;
2372
+ };
2373
+ //#endregion
2374
+ //#region src/hooks/api/nfts/useNftMetadata.d.ts
2375
+ /**
2376
+ * Resolves the on-chain `tokenURI` for an ERC721 token, then fetches & parses
2377
+ * its JSON metadata from IPFS (or any HTTP gateway).
2378
+ */
2379
+ declare const useNftMetadata: (collectionAddress?: string, tokenId?: string) => {
2380
+ tokenURI: string | undefined;
2381
+ metadata: NftMetadata | undefined;
2382
+ isLoading: boolean;
2383
+ error: {} | null;
2384
+ };
2385
+ //#endregion
2386
+ //#region src/hooks/api/nfts/useNftCollectionName.d.ts
2387
+ /**
2388
+ * Reads ERC721 `name()` for a collection. Returns undefined while loading or
2389
+ * if the contract doesn't implement it (some collections don't).
2390
+ */
2391
+ declare const useNftCollectionName: (collectionAddress?: string) => {
2392
+ name: string | undefined;
2393
+ isLoading: boolean;
2394
+ error: unknown;
2395
+ };
2396
+ //#endregion
2284
2397
  //#region src/hooks/modals/useConnectModal.d.ts
2285
2398
  declare const useConnectModal: () => {
2286
2399
  open: (initialContent?: ConnectModalContentsTypes) => void;
@@ -2565,7 +2678,7 @@ type UseSignTypedDataReturnValue = {
2565
2678
  declare const useSignTypedData: () => UseSignTypedDataReturnValue;
2566
2679
  //#endregion
2567
2680
  //#region src/hooks/login/useLoginWithPasskey.d.ts
2568
- declare const useLoginWithPasskey: () => {
2681
+ declare const useLoginWithPasskey$1: () => {
2569
2682
  loginWithPasskey: () => Promise<void>;
2570
2683
  };
2571
2684
  //#endregion
@@ -2573,7 +2686,7 @@ declare const useLoginWithPasskey: () => {
2573
2686
  interface OAuthOptions {
2574
2687
  provider: OAuthProviderType;
2575
2688
  }
2576
- declare const useLoginWithOAuth: () => {
2689
+ declare const useLoginWithOAuth$1: () => {
2577
2690
  initOAuth: ({
2578
2691
  provider
2579
2692
  }: OAuthOptions) => Promise<void>;
@@ -2646,7 +2759,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
2646
2759
  * );
2647
2760
  * ```
2648
2761
  */
2649
- declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
2762
+ declare const useAppHubApps: () => _tanstack_react_query28.UseQueryResult<AppHubApp[], Error>;
2650
2763
  //#endregion
2651
2764
  //#region src/utils/constants.d.ts
2652
2765
  /** Tokens that cannot be swapped or transferred (e.g. governance voting tokens) */
@@ -3001,7 +3114,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
3001
3114
  method: TMethod;
3002
3115
  args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
3003
3116
  queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
3004
- }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
3117
+ }) => _tanstack_react_query28.UseQueryResult<_tanstack_react_query28.NoInfer<TData>, unknown>;
3005
3118
  declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
3006
3119
  thor,
3007
3120
  calls,
@@ -3012,7 +3125,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
3012
3125
  calls: MultipleClausesCallParameters<contracts, allowFailure>;
3013
3126
  queryKey: string[];
3014
3127
  enabled?: boolean;
3015
- }) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
3128
+ }) => _tanstack_react_query28.UseQueryResult<_tanstack_react_query28.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
3016
3129
  //#endregion
3017
3130
  //#region src/hooks/utils/useCurrency.d.ts
3018
3131
  /**
@@ -3136,7 +3249,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
3136
3249
  filterParams,
3137
3250
  mapResponse,
3138
3251
  nodeUrl
3139
- }: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
3252
+ }: UseEventsParams<T$1, K, R>) => _tanstack_react_query28.UseQueryResult<R[], Error>;
3140
3253
  //#endregion
3141
3254
  //#region src/hooks/utils/useBuildClauses.d.ts
3142
3255
  interface BuildClausesParams {
@@ -3288,7 +3401,7 @@ declare const useGenericDelegatorFeeEstimation: ({
3288
3401
  tokens,
3289
3402
  sendingAmount,
3290
3403
  sendingTokenSymbol
3291
- }: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
3404
+ }: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query28.UseQueryResult<EstimationResponse & {
3292
3405
  usedToken: string;
3293
3406
  }, Error>;
3294
3407
  //#endregion
@@ -3302,7 +3415,7 @@ declare const useEstimateAllTokens: ({
3302
3415
  clauses,
3303
3416
  tokens,
3304
3417
  enabled
3305
- }: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
3418
+ }: UseEstimateAllTokensParams) => _tanstack_react_query28.UseQueryResult<Record<GasTokenType, {
3306
3419
  cost: number;
3307
3420
  loading: boolean;
3308
3421
  error?: string;
@@ -3319,7 +3432,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
3319
3432
  * @param address The address of the account to get the balance for
3320
3433
  * @returns The account balance
3321
3434
  */
3322
- declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
3435
+ declare const useAccountBalance: (address?: string) => _tanstack_react_query28.UseQueryResult<{
3323
3436
  balance: string;
3324
3437
  energy: string;
3325
3438
  }, Error>;
@@ -3332,7 +3445,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
3332
3445
  * @param version - The version of the smart account implementation
3333
3446
  * @returns The address of the smart account implementation
3334
3447
  */
3335
- declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
3448
+ declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query28.UseQueryResult<string, Error>;
3336
3449
  //#endregion
3337
3450
  //#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
3338
3451
  declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
@@ -3341,7 +3454,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
3341
3454
  * Get the current account implementation version used by the smart account factory
3342
3455
  * @returns The current account implementation version
3343
3456
  */
3344
- declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
3457
+ declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query28.UseQueryResult<number, Error>;
3345
3458
  //#endregion
3346
3459
  //#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
3347
3460
  declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
@@ -3351,7 +3464,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
3351
3464
  * @param ownerAddress - The address of the owner of the smart account
3352
3465
  * @returns The address of the smart account
3353
3466
  */
3354
- declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
3467
+ declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query28.UseQueryResult<string, Error>;
3355
3468
  //#endregion
3356
3469
  //#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
3357
3470
  declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
@@ -3361,7 +3474,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
3361
3474
  * @param ownerAddress - The address of the owner of the smart account
3362
3475
  * @returns The version of the smart account
3363
3476
  */
3364
- declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
3477
+ declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query28.UseQueryResult<{
3365
3478
  version: number;
3366
3479
  isDeployed: boolean;
3367
3480
  }, unknown>;
@@ -3374,7 +3487,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
3374
3487
  * @param ownerAddress - The address of the owner of the smart account
3375
3488
  * @returns True if the smart account has a v1 smart account, false otherwise
3376
3489
  */
3377
- declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3490
+ declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query28.UseQueryResult<boolean, Error>;
3378
3491
  //#endregion
3379
3492
  //#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
3380
3493
  declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
@@ -3383,7 +3496,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
3383
3496
  * Check if a smart account is deployed
3384
3497
  * @returns True if the smart account is deployed, false otherwise
3385
3498
  */
3386
- declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3499
+ declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query28.UseQueryResult<boolean, Error>;
3387
3500
  //#endregion
3388
3501
  //#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
3389
3502
  /**
@@ -3416,7 +3529,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
3416
3529
  isDeployed: boolean;
3417
3530
  }>;
3418
3531
  declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
3419
- declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
3532
+ declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query28.UseQueryResult<{
3420
3533
  address: undefined;
3421
3534
  isDeployed?: undefined;
3422
3535
  } | {
@@ -3434,7 +3547,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
3434
3547
  * @param targetVersion - The version of the smart account to check for
3435
3548
  * @returns True if the smart account needs an upgrade, false otherwise
3436
3549
  */
3437
- declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3550
+ declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query28.UseQueryResult<boolean, Error>;
3438
3551
  //#endregion
3439
3552
  //#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
3440
3553
  declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
@@ -3445,7 +3558,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
3445
3558
  * @param targetVersion - The target version of the smart account
3446
3559
  * @returns True if the smart account needs an upgrade, false otherwise
3447
3560
  */
3448
- declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
3561
+ declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query28.UseQueryResult<boolean, Error>;
3449
3562
  //#endregion
3450
3563
  //#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
3451
3564
  type UseUpgradeSmartAccountVersionProps = {
@@ -3470,7 +3583,7 @@ declare const currentBlockQueryKey: () => string[];
3470
3583
  * Fetches the current block from the blockchain. The block is refetched every 10 seconds.
3471
3584
  * @returns the current block
3472
3585
  */
3473
- declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
3586
+ declare const useCurrentBlock: () => _tanstack_react_query28.UseQueryResult<_vechain_sdk_network2.ExpandedBlockDetail, Error>;
3474
3587
  //#endregion
3475
3588
  //#region src/hooks/thor/blocks/useGetChainId.d.ts
3476
3589
  declare const getChainId: (thor: ThorClient) => Promise<string>;
@@ -3479,7 +3592,7 @@ declare const getChainIdQueryKey: () => string[];
3479
3592
  * Get the chain id
3480
3593
  * @returns The chain id
3481
3594
  */
3482
- declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
3595
+ declare const useGetChainId: () => _tanstack_react_query28.UseQueryResult<string, Error>;
3483
3596
  //#endregion
3484
3597
  //#region src/hooks/thor/logs/logUtils.d.ts
3485
3598
  /**
@@ -3662,6 +3775,31 @@ declare const useTransferERC20: ({
3662
3775
  onError
3663
3776
  }: useTransferERC20Props) => useTransferERC20ReturnValue;
3664
3777
  //#endregion
3778
+ //#region src/hooks/thor/transactions/useTransferERC721.d.ts
3779
+ type UseTransferERC721Props = {
3780
+ fromAddress: string;
3781
+ receiverAddress: string;
3782
+ collectionAddress: string;
3783
+ tokenId: string;
3784
+ collectionName?: string;
3785
+ onSuccess?: () => void;
3786
+ onError?: (error?: string) => void;
3787
+ };
3788
+ type UseTransferERC721ReturnValue = {
3789
+ sendTransaction: () => Promise<void>;
3790
+ clauses: EnhancedClause[];
3791
+ } & Omit<UseSendTransactionReturnValue, 'sendTransaction'>;
3792
+ declare const buildERC721Clauses: (fromAddress: string, receiverAddress: string, collectionAddress: string, tokenId: string, collectionName?: string) => EnhancedClause[];
3793
+ declare const useTransferERC721: ({
3794
+ fromAddress,
3795
+ receiverAddress,
3796
+ collectionAddress,
3797
+ tokenId,
3798
+ collectionName,
3799
+ onSuccess,
3800
+ onError
3801
+ }: UseTransferERC721Props) => UseTransferERC721ReturnValue;
3802
+ //#endregion
3665
3803
  //#region src/hooks/thor/transactions/useTransferVET.d.ts
3666
3804
  type useTransferVETProps = {
3667
3805
  fromAddress: string;
@@ -3719,7 +3857,7 @@ declare const useBuildTransaction: <ClausesParams>({
3719
3857
  sendTransaction: (props: ClausesParams) => Promise<void>;
3720
3858
  isTransactionPending: boolean;
3721
3859
  isWaitingForWalletConfirmation: boolean;
3722
- txReceipt: _vechain_sdk_network0.TransactionReceipt | null;
3860
+ txReceipt: _vechain_sdk_network2.TransactionReceipt | null;
3723
3861
  status: TransactionStatus;
3724
3862
  resetStatus: () => void;
3725
3863
  error?: TransactionStatusErrorType;
@@ -3734,7 +3872,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
3734
3872
  * @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
3735
3873
  * @returns Query result containing the transaction receipt
3736
3874
  */
3737
- declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3875
+ declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query28.UseQueryResult<_vechain_sdk_network2.TransactionReceipt, Error>;
3738
3876
  //#endregion
3739
3877
  //#region src/hooks/thor/transactions/useGasEstimate.d.ts
3740
3878
  declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
@@ -4067,6 +4205,68 @@ declare const TokenDetailContent: ({
4067
4205
  token
4068
4206
  }: TokenDetailContentProps) => react_jsx_runtime0.JSX.Element;
4069
4207
  //#endregion
4208
+ //#region src/components/AccountModal/Contents/NftDetail/NftDetailContent.d.ts
4209
+ type NftDetailContentProps = {
4210
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
4211
+ nft: OwnedNft;
4212
+ onBack?: () => void;
4213
+ };
4214
+ declare const NftDetailContent: ({
4215
+ setCurrentContent,
4216
+ nft,
4217
+ onBack
4218
+ }: NftDetailContentProps) => react_jsx_runtime0.JSX.Element;
4219
+ //#endregion
4220
+ //#region src/components/AccountModal/Contents/NftCollection/NftCollectionContent.d.ts
4221
+ type NftCollectionContentProps = {
4222
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
4223
+ collectionAddress: string;
4224
+ onBack?: () => void;
4225
+ };
4226
+ declare const NftCollectionContent: ({
4227
+ setCurrentContent,
4228
+ collectionAddress,
4229
+ onBack
4230
+ }: NftCollectionContentProps) => react_jsx_runtime0.JSX.Element;
4231
+ //#endregion
4232
+ //#region src/components/AccountModal/Contents/SendNft/SendNftContent.d.ts
4233
+ type SendNftContentProps = {
4234
+ setCurrentContent: React$1.Dispatch<React$1.SetStateAction<AccountModalContentTypes>>;
4235
+ nft: OwnedNft;
4236
+ collectionName?: string;
4237
+ imageUrl?: string;
4238
+ initialToAddressOrDomain?: string;
4239
+ onBack?: () => void;
4240
+ };
4241
+ declare const SendNftContent: ({
4242
+ setCurrentContent,
4243
+ nft,
4244
+ collectionName,
4245
+ imageUrl,
4246
+ initialToAddressOrDomain,
4247
+ onBack
4248
+ }: SendNftContentProps) => react_jsx_runtime0.JSX.Element;
4249
+ //#endregion
4250
+ //#region src/components/AccountModal/Contents/SendNft/SendNftSummaryContent.d.ts
4251
+ type SendNftSummaryContentProps = {
4252
+ setCurrentContent: React$1.Dispatch<React$1.SetStateAction<AccountModalContentTypes>>;
4253
+ nft: OwnedNft;
4254
+ collectionName?: string;
4255
+ imageUrl?: string;
4256
+ toAddressOrDomain: string;
4257
+ resolvedDomain?: string;
4258
+ resolvedAddress?: string;
4259
+ };
4260
+ declare const SendNftSummaryContent: ({
4261
+ setCurrentContent,
4262
+ nft,
4263
+ collectionName,
4264
+ imageUrl,
4265
+ toAddressOrDomain,
4266
+ resolvedDomain,
4267
+ resolvedAddress
4268
+ }: SendNftSummaryContentProps) => react_jsx_runtime0.JSX.Element;
4269
+ //#endregion
4070
4270
  //#region src/components/AccountModal/Contents/TransactionHistory/TransactionHistoryContent.d.ts
4071
4271
  type TransactionHistoryContentProps = {
4072
4272
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -4188,9 +4388,21 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | {
4188
4388
  } | {
4189
4389
  type: 'send-token-summary';
4190
4390
  props: SendTokenSummaryContentProps;
4391
+ } | {
4392
+ type: 'send-nft';
4393
+ props: SendNftContentProps;
4394
+ } | {
4395
+ type: 'send-nft-summary';
4396
+ props: SendNftSummaryContentProps;
4191
4397
  } | {
4192
4398
  type: 'token-detail';
4193
4399
  props: TokenDetailContentProps;
4400
+ } | {
4401
+ type: 'nft-detail';
4402
+ props: NftDetailContentProps;
4403
+ } | {
4404
+ type: 'nft-collection';
4405
+ props: NftCollectionContentProps;
4194
4406
  } | {
4195
4407
  type: 'transaction-history';
4196
4408
  props: TransactionHistoryContentProps;
@@ -4802,5 +5014,5 @@ declare const ModalProvider: ({
4802
5014
  children: ReactNode;
4803
5015
  }) => react_jsx_runtime0.JSX.Element;
4804
5016
  //#endregion
4805
- export { RemoveWalletConfirmContentProps as $, VTHO_TOKEN_ADDRESS as $a, EstimatedGas as $c, useNotifications as $i, signVip191Transaction as $n, getErc20BalanceQueryKey as $o, simpleHash as $r, AccountMainContent as $s, useTransferERC20 as $t, useStickyHeaderContext as A, AccountModalProvider as Aa, ConnectModalContentsTypes as Ac, PrivyEcosystemApp as Ai, Wallet as Al, useGetAccountVersion as An, useRoundXApps as Ao, getWindowOrigin as Ar, getTextRecordsQueryKey as As, SwapTokenContent as At, AccountSelector as B, NavigatorPosition as Ba, LegalDocumentOptions as Bc, getGenericDelegatorUrl as Bi, getAccountBalance as Bn, usePortfolioPriceHistory24h as Bo, ViewFunctionResult as Br, useIsDomainProtected as Bs, useMfaEnrollment as Bt, ScrollToTopWrapper as C, useChooseNameModal as Ca, ConnectionButton as Cc, humanDomain as Ci, PrivyAppInfo as Cl, getIsDeployed as Cn, useSwitchWallet as Co, getCallClauseQueryKey as Cr, getAvatarOfAddressQueryKey as Cs, FAQContent as Ct, BaseModal as D, useTransactionToast as Da, LoadingContent as Dc, DEFAULT_PRIVY_ECOSYSTEM_APPS as Di, TransactionStatus as Dl, getHasV1SmartAccountQueryKey as Dn, UseWalletReturnType as Do, copyToClipboard as Dr, buildClauses as Ds, ChooseNameSearchContentProps as Dt, AssetButton as E, TransactionToastProvider as Ea, ErrorContent as Ec, DEFAULT_GAS_TOKEN_PREFERENCES as Ei, TokenBalance as El, getHasV1SmartAccount as En, useWalletMetadata as Eo, useMultipleClausesCall as Er, useGetResolverAddress as Es, ChooseNameSearchContent as Et, DomainRequiredAlert as F, JuicyPositionResult as Fa, PrivyWalletProvider as Fc, VECHAIN_KIT_COOKIES_CONFIG as Fi, getCurrentAccountImplementationVersionQueryKey as Fn, useMostVotedAppsInRound as Fo, safeQuerySelector as Fr, DomainsResponse as Fs, SendTokenSummaryContent as Ft, SwitchFeedback as G, useTokenTransferHistory as Ga, useAppConfig as Gc, useAppHubApps as Gi, useGenericDelegatorFeeEstimation as Gn, useOraclePriceChanges24h as Go, addPrefix as Gr, useEnsRecordExists as Gs, useGasEstimate as Gt, AccountDetailsButton as H, StargatePosition as Ha, VeChainKitContext as Hc, AppHubApp as Hi, useAccountBalance as Hn, PriceChanges24h as Ho, executeCallClause as Hr, useClaimVetDomain as Hs, useSetWalletRecovery as Ht, ExchangeWarningAlert as I, useJuicyPosition as Ia, PrivyWalletProviderContextType as Ic, VECHAIN_KIT_STORAGE_KEYS as Ii, useCurrentAccountImplementationVersion as In, getIsPersonQueryKey as Io, safeWindowOpen as Ir, getDomainsOfAddress as Is, SendTokenContent as It, TransactionHistoryContent as J, IndexerTransfer as Ja, LegalDocumentAgreement as Jc, useLoginWithOAuth as Ji, decodeRawTx as Jn, SupportedToken as Jo, isValid as Jr, fetchPrivyStatus as Js, BuildTransactionProps as Jt, TransactionDetailContent as K, getTransferHistoryQueryKey as Ka, useVeChainKitConfig as Kc, useConnectWithDappKitSource as Ki, useGenericDelegatorFeeEstimationParams as Kn, useTokenPriceHistory24h as Ko, compare as Kr, getVechainDomainQueryKey as Ks, txReceiptQueryKey as Kt, FeatureAnnouncementCard as L, LpPosition as La, usePrivyWalletProvider as Lc, VECHAIN_KIT_TERMS_CONFIG as Li, getAccountImplementationAddress as Ln, useIsPerson as Lo, setLocalStorageItem as Lr, getDomainsOfAddressQueryKey as Ls, ThorClient$1 as Lt, AddressDisplay as M, ConnectModalProvider as Ma, useLegalDocuments as Mc, TOKEN_LOGOS as Mi, getConfig as Ml, getAccountAddressQueryKey as Mn, useRefreshBalances as Mo, isBrowser as Mr, getAvatarQueryKey as Ms, ReceiveTokenContent as Mt, ModalBackButton as N, useConnectModal as Na, VechainKitThemeProvider as Nc, TOKEN_LOGO_COMPONENTS as Ni, useGetAccountAddress as Nn, MostVotedAppsInRoundReturnType as No, isOnline as Nr, useGetAvatar as Ns, ReceiveTokenContentProps as Nt, StickyFooterContainer as O, TransactionModalProvider as Oa, MainContent as Oc, ENV as Oi, TransactionStatusErrorType as Ol, useHasV1SmartAccount as On, useWallet as Oo, getDocumentTitle as Or, useUpdateTextRecord as Os, ChooseNameContent as Ot, CrossAppConnectionSecurityCard as P, JuicyAssetPosition as Pa, useVechainKitThemeConfig as Pc, TogglePassportCheck as Pi, getCurrentAccountImplementationVersion as Pn, XApp as Po, removeLocalStorageItem as Pr, Domain as Ps, SelectTokenContent as Pt, RemoveWalletConfirmContent as Q, VET_TOKEN_SENTINEL as Qa, DepositAccount as Qc, useNotificationAlerts as Qi, getDepositAccount as Qn, UseGetErc20BalanceOptions as Qo, isRejectionError as Qr, useFetchAppInfo as Qs, buildERC20Clauses as Qt, QuickActionsSection as R, LpPositionToken as Ra, AccountQuickAction as Rc, VECHAIN_PRIVY_APP_ID as Ri, getAccountImplementationAddressQueryKey as Rn, getVot3BalanceQueryKey as Ro, MultipleClausesCallParameters as Rr, useGetDomainsOfAddress as Rs, useDAppKitWallet as Rt, AccountAvatar as S, ChooseNameModalProvider as Sa, EmailLoginButton as Sc, humanAddress as Si, NFTMediaType as Sl, useRefreshFactoryQueries as Sn, UseSwitchWalletReturnType as So, useCurrency as Sr, useGetAvatarLegacy as Ss, CustomizationContent as St, AddressDisplayCard as T, useWalletModal as Ta, EcosystemContent as Tc, isZero as Ti, SmartAccount as Tl, useIsSmartAccountDeployed as Tn, useWalletStorage as To, useCallClause as Tr, getResolverAddressQueryKey as Ts, ChooseNameSummaryContentProps as Tt, AccountModal as U, StargatePositionsResult as Ua, VeChainKitProvider as Uc, fetchAppHubApps as Ui, UseEstimateAllTokensParams as Un, PricePoint as Uo, executeMultipleClausesCall as Ur, useClaimVeWorldSubdomain as Us, useThor as Ut, ActionButton as V, useNavigatorPosition as Va, VeChainKitConfig as Vc, notFoundImage as Vi, getAccountBalanceQueryKey as Vn, OracleHistory24h as Vo, buildCallClauses as Vr, buildVetDomainClauses as Vs, usePrivy as Vt, AccountModalContentTypes as W, useStargatePositions as Wa, VechainKitProviderProps as Wc, getAppHubAppsQueryKey as Wi, useEstimateAllTokens as Wn, useOracleHistory24h as Wo, isValidUrl as Wr, getEnsRecordExistsQueryKey as Ws, VECHAIN_KIT_QUERY_KEYS as Wt, TokenDetailContent as X, TransferEventType as Xa, LegalDocumentType as Xc, useSignTypedData as Xi, estimateAndBuildTxBody as Xn, getTokenUsdPriceQueryKey as Xo, removePrefix as Xr, fetchPrivyAppInfo as Xs, buildVETClauses as Xt, TransactionHistoryContentProps as Y, TransferDirection as Ya, LegalDocumentSource as Yc, useLoginWithPasskey as Yi, delegateAuthorized as Yn, getTokenUsdPrice as Yo, normalize as Yr, useFetchPrivyStatus as Ys, useBuildTransaction as Yt, TokenDetailContentProps as Z, TransferHistoryItem as Za, CostLevel as Zc, useSignMessage as Zi, estimateGas as Zn, useGetTokenUsdPrice as Zo, validate as Zr, getPrivyAppInfoQueryKey as Zs, useTransferVET as Zt, GasFeeTokenSelector as _, useExploreEcosystemModal as _a, LoginWithAppleButton as _c, leftPadWithZeros as _i, CrossAppConnectionCache as _l, SmartAccountReturnType as _n, getXAppsSharesQueryKey as _o, useIsPWA as _r, WalletTokenBalance as _s, ProfileContent as _t, LegalDocumentItem as a, UpgradeSmartAccountModalProvider as aa, SocialIcons as ac, allNodeStrengthLevelToName as ai, formatGasCost as al, getChainId as an, imageCompressionOptions as ao, LocalStorageKey as ar, getCustomTokenBalanceQueryKey as as, SettingsContentProps as at, TransactionButtonAndStatus as b, SendTokenModalProvider as ba, EcosystemButton as bc, formatTokenBalance as bi, ExecuteBatchWithAuthorizationSignData as bl, useSmartAccount as bn, getXAppMetadata as bo, useCurrentCurrency as br, getAvatarLegacy as bs, CustomizationSummaryContentProps as bt, UpgradeSmartAccountModal as c, ReceiveModalProvider as ca, WalletDisplayVariant as cc, xNodeToGMstartingLevel as ci, GasTokenPreferences as cl, currentBlockQueryKey as cn, IpfsImage as co, buildBatchAuthorizationTypedData as cr, useGetB3trBalance as cs, ChangeCurrencyContent as ct, PriceChart as d, useAccountCustomizationModal as da, Sync2Button as dc, toIPFSURL as di, TransactionSpeed as dl, getUpgradeRequiredForAccount as dn, getIpfsImageQueryKey as do, GetEventsKeyParams as dr, useCurrentAllocationsRoundId as ds, ManageCustomTokenContent as dt, SettingsModalProvider as ea, TransactionToast as ec, TIME as ei, EstimationResponse as el, UseSendTransactionReturnValue as en, useSwapQuotes as eo, useGenericDelegator as er, useGetErc20Balance as es, SelectWalletContent as et, CopyIconButton as f, FAQModalProvider as fa, VeWorldButton as fc, uploadBlobToIPFS as fi, ENS_TEXT_RECORDS as fl, getUpgradeRequiredForAccountQueryKey as fn, useIpfsImage as fo, UseEventsParams as fr, useTotalBalance as fs, ManageCustomTokenContentProps as ft, InlineFeedback as g, ExploreEcosystemModalProvider as ga, PasskeyLoginButton as gc, isValidAddress as gi, ConnectionSource as gl, useUpgradeRequired as gn, useIpfsMetadata as go, useScrollToTop as gr, useTokenPrices as gs, UpgradeSmartAccountContentProps as gt, WalletSwitchFeedback as h, useNotificationsModal as ha, DappKitButton as hc, compareListOfAddresses as hi, CURRENCY_SYMBOLS as hl, getUpgradeRequiredQueryKey as hn, getIpfsMetadataQueryKey as ho, useEvents as hr, ExchangeRates as hs, UpgradeSmartAccountContent as ht, DAppKitWalletButton as i, useProfileModal as ia, TransactionModalProps as ic, XNodeStrengthLevelToName as ii, calculateTotalCost as il, getEventLogs as in, compressImages as io, useSyncableLocalStorage as ir, TokenWithBalance as is, SettingsContent as it, VersionFooter as j, useAccountModal as ja, LegalDocumentsProvider as jc, SUPPORTED_GAS_TOKENS as ji, AppConfig as jl, getAccountAddress as jn, useRefreshMetadata as jo, hasNavigator as jr, useGetTextRecords as js, SwapTokenContentProps as jt, StickyHeaderContainer as k, useTransactionModal as ka, ConnectModal as kc, NON_TRANSFERABLE_TOKEN_SYMBOLS as ki, VePassportUserStatus as kl, getAccountVersionQueryKey as kn, getRoundXAppsQueryKey as ko, getLocalStorageItem as kr, getTextRecords as ks, ChooseNameContentProps as kt, UpgradeSmartAccountModalContentsTypes as l, useReceiveModal as la, ConnectPopover as lc, convertUriToUrl as li, GasTokenSelection as ll, useCurrentBlock as ln, MAX_IMAGE_SIZE as lo, buildSingleAuthorizationTypedData as lr, useCustomTokens as ls, ChangeCurrencyContentProps as lt, PriceChangeBadge as m, NotificationsModalProvider as ma, VeChainWithPrivyLoginButton as mc, compareAddresses as mi, CURRENCY as ml, getUpgradeRequired as mn, getIpfsMetadata as mo, getEventsKey as mr, useTokensWithValues as ms, AssetsContentProps as mt, ModalProvider as n, useAccountModalOptions as na, ShareButtons as nc, MinXNodeLevel as ni, TransactionCost as nl, GetEventsProps as nn, useSingleImageUpload as no, EcosystemShortcut as nr, getTokenInfo as ns, DisconnectConfirmContentProps as nt, LegalDocumentsModal as o, useUpgradeSmartAccountModal as oa, WalletButton as oc, buildQueryString as oi, GasTokenEstimate as ol, getChainIdQueryKey as on, useUploadImages as oo, useLocalStorage as or, useGetCustomTokenBalances as os, GasTokenSettingsContent as ot, AddressOrDomainLabel as p, useFAQModal as pa, LoginWithGithubButton as pc, validateIpfsUri as pi, TextRecords as pl, useUpgradeRequiredForAccount as pn, useIpfsImageList as po, decodeEventLog$1 as pr, TokenWithValue as ps, AssetsContent as pt, TransactionDetailContentProps as q, useTransferHistory as qa, EnrichedLegalDocument as qc, useLoginWithVeChain as qi, useGasTokenSelection as qn, PRICE_FEED_IDS as qo, isInvalid as qr, useVechainDomain as qs, useTxReceipt as qt, useModal as r, ProfileModalProvider as ra, TransactionModal as rc, NodeStrengthLevelToImage as ri, VthoPerGasAtSpeed as rl, getAllEventLogs as rn, UploadedImage as ro, useEcosystemShortcuts as rr, useGetCustomTokenInfo as rs, TermsAndPrivacyContent as rt, LegalDocumentsModalContentsTypes as s, useLoginModalContent as sa, WalletButtonProps as sc, gmNfts as si, GasTokenInfo as sl, useGetChainId as sn, useIpfsMetadatas as so, BuildClausesParams as sr, getB3trBalanceQueryKey as ss, LanguageSettingsContent as st, AccountModalOptions as t, useSettingsModal as ta, TransactionModalContent as tc, EconomicNodeStrengthLevelToName as ti, Rate as tl, useSendTransaction as tn, useSwapTransaction as to, useCrossAppConnectionCache as tr, getCustomTokenInfoQueryKey as ts, DisconnectConfirmContent as tt, UpgradeSmartAccountModalStyle as u, AccountCustomizationModalProvider as ua, WalletConnectButton as uc, resolveMediaTypeFromMimeType as ui, GasTokenType as ul, useUpgradeSmartAccount as un, getIpfsImage as uo, useBuildClauses as ur, getCurrentAllocationsRoundIdQueryKey as us, BridgeContent as ut, GasFeeSummary as v, SwapTokenModalProvider as va, LoginWithGoogleButton as vc, regexPattern as vi, ENSRecords as vl, getSmartAccount as vn, useXAppsShares as vo, useGetNodeUrl as vr, useTokenBalances as vs, ProfileContentProps as vt, ModalFAQButton as w, WalletModalProvider as wa, MoreOptionsContent as wc, humanNumber as wi, PrivyLoginMethod as wl, getIsDeployedQueryKey as wn, StoredWallet as wo, getCallClauseQueryKeyWithArgs as wr, useGetAvatarOfAddress as ws, ChooseNameSummaryContent as wt, TransactionButtonAndStatusProps as x, useSendTokenModal as xa, VeChainLoginButton as xc, getPicassoImage as xi, ExecuteWithAuthorizationSignData as xl, useRefreshSmartAccountQueries as xn, useXAppMetadata as xo, useCurrentLanguage as xr, getAvatarLegacyQueryKey as xs, AccountCustomizationContentProps as xt, ModalNotificationButton as y, useSwapTokenModal as ya, PrivyButton as yc, randomTransactionUser as yi, EnhancedClause as yl, getSmartAccountQueryKey as yn, XAppMetadata as yo, useFeatureAnnouncement as yr, useUnsetDomain as ys, CustomizationSummaryContent as yt, BalanceSection as z, useBetterSwapLpPositions as za, LegalDocument as zc, getENV as zi, useAccountImplementationAddress as zn, useGetVot3Balance as zo, MultipleClausesCallReturnType as zr, getIsDomainProtectedQueryKey as zs, useDAppKitWalletModal as zt };
4806
- //# sourceMappingURL=index-CakR5Xyt.d.cts.map
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-B93L_AT2.d.mts.map