@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.
@@ -7,7 +7,7 @@ import * as _vechain_sdk_core0 from "@vechain/sdk-core";
7
7
  import { Address, Certificate, CertificateData, Clause, Revision, Transaction, TransactionClause } from "@vechain/sdk-core";
8
8
  import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy as usePrivy$1, useSetWalletRecovery } from "@privy-io/react-auth";
9
9
  import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor as useThor$1, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
10
- import * as _tanstack_react_query20 from "@tanstack/react-query";
10
+ import * as _tanstack_react_query23 from "@tanstack/react-query";
11
11
  import { UseQueryOptions } from "@tanstack/react-query";
12
12
  import "wagmi/query";
13
13
  import { CustomTokenInfo } from "@vechain/contract-getters";
@@ -56,7 +56,7 @@ declare const genesises: {
56
56
  readonly main: CompressedBlockDetail;
57
57
  readonly test: CompressedBlockDetail;
58
58
  readonly solo: CompressedBlockDetail;
59
- which(gid: string): "main" | "test" | "solo" | undefined;
59
+ which(gid: string): "test" | "main" | "solo" | undefined;
60
60
  };
61
61
  //#endregion
62
62
  //#region src/config/index.d.ts
@@ -1263,7 +1263,7 @@ declare const AccountMainContent: ({
1263
1263
  //#region src/hooks/api/privy/useFetchAppInfo.d.ts
1264
1264
  declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
1265
1265
  declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
1266
- declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query20.UseQueryResult<{
1266
+ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query23.UseQueryResult<{
1267
1267
  [k: string]: {
1268
1268
  website: string | undefined;
1269
1269
  id: string;
@@ -1284,7 +1284,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
1284
1284
  //#endregion
1285
1285
  //#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
1286
1286
  declare const fetchPrivyStatus: () => Promise<string>;
1287
- declare const useFetchPrivyStatus: () => _tanstack_react_query20.UseQueryResult<string, Error>;
1287
+ declare const useFetchPrivyStatus: () => _tanstack_react_query23.UseQueryResult<string, Error>;
1288
1288
  //#endregion
1289
1289
  //#region src/hooks/api/vetDomains/useVechainDomain.d.ts
1290
1290
  interface VeChainDomainResult {
@@ -1294,11 +1294,11 @@ interface VeChainDomainResult {
1294
1294
  isPrimaryDomain: boolean;
1295
1295
  }
1296
1296
  declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
1297
- declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query20.UseQueryResult<VeChainDomainResult, Error>;
1297
+ declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query23.UseQueryResult<VeChainDomainResult, Error>;
1298
1298
  //#endregion
1299
1299
  //#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
1300
1300
  declare const getEnsRecordExistsQueryKey: (name: string) => string[];
1301
- declare const useEnsRecordExists: (name: string) => _tanstack_react_query20.UseQueryResult<boolean, Error>;
1301
+ declare const useEnsRecordExists: (name: string) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
1302
1302
  //#endregion
1303
1303
  //#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
1304
1304
  type useClaimVeWorldSubdomainProps = {
@@ -1360,7 +1360,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
1360
1360
  * @param {boolean} [enabled=true] - Flag to enable or disable the hook.
1361
1361
  * @returns The result of the useQuery hook, with the protection status.
1362
1362
  */
1363
- declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query20.UseQueryResult<boolean, Error>;
1363
+ declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
1364
1364
  //#endregion
1365
1365
  //#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
1366
1366
  declare const DomainSchema: z.ZodObject<{
@@ -1388,7 +1388,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
1388
1388
  * @param parentDomain The parent domain (e.g., "veworld.vet")
1389
1389
  * @returns The domains owned by the address
1390
1390
  */
1391
- declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query20.UseQueryResult<{
1391
+ declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query23.UseQueryResult<{
1392
1392
  domains: {
1393
1393
  name: string;
1394
1394
  }[];
@@ -1401,7 +1401,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
1401
1401
  * @param name - The VET domain name
1402
1402
  * @returns The resolved avatar URL
1403
1403
  */
1404
- declare const useGetAvatar: (name: string) => _tanstack_react_query20.UseQueryResult<string | null, Error>;
1404
+ declare const useGetAvatar: (name: string) => _tanstack_react_query23.UseQueryResult<string | null, Error>;
1405
1405
  //#endregion
1406
1406
  //#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
1407
1407
  /**
@@ -1413,7 +1413,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query20.UseQueryRe
1413
1413
  */
1414
1414
  declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
1415
1415
  declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
1416
- declare const useGetTextRecords: (domain?: string) => _tanstack_react_query20.UseQueryResult<TextRecords, Error>;
1416
+ declare const useGetTextRecords: (domain?: string) => _tanstack_react_query23.UseQueryResult<TextRecords, Error>;
1417
1417
  //#endregion
1418
1418
  //#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
1419
1419
  type UpdateTextRecordVariables = {
@@ -1446,7 +1446,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
1446
1446
  * @param domain The domain to get resolver for
1447
1447
  * @returns The resolver address for the domain
1448
1448
  */
1449
- declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query20.UseQueryResult<`0x${string}`, unknown>;
1449
+ declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query23.UseQueryResult<`0x${string}`, unknown>;
1450
1450
  //#endregion
1451
1451
  //#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
1452
1452
  declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
@@ -1456,7 +1456,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
1456
1456
  * @param address The owner's address
1457
1457
  * @returns The avatar URL for the address's primary domain
1458
1458
  */
1459
- declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query20.UseQueryResult<string, Error>;
1459
+ declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query23.UseQueryResult<string, Error>;
1460
1460
  //#endregion
1461
1461
  //#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
1462
1462
  /**
@@ -1473,7 +1473,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
1473
1473
  * @param name - The VET domain name
1474
1474
  * @returns The resolved avatar URL
1475
1475
  */
1476
- declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query20.UseQueryResult<string | null, Error>;
1476
+ declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query23.UseQueryResult<string | null, Error>;
1477
1477
  //#endregion
1478
1478
  //#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
1479
1479
  type useUnsetDomainProps = {
@@ -1590,7 +1590,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
1590
1590
  * Hook to get the current roundId of allocations voting
1591
1591
  * @returns the current roundId of allocations voting
1592
1592
  */
1593
- declare const useCurrentAllocationsRoundId: () => _tanstack_react_query20.UseQueryResult<string, unknown>;
1593
+ declare const useCurrentAllocationsRoundId: () => _tanstack_react_query23.UseQueryResult<string, unknown>;
1594
1594
  //#endregion
1595
1595
  //#region src/hooks/api/wallet/useCustomTokens.d.ts
1596
1596
  declare const useCustomTokens: () => {
@@ -1603,7 +1603,7 @@ declare const useCustomTokens: () => {
1603
1603
  //#endregion
1604
1604
  //#region src/hooks/api/wallet/useGetB3trBalance.d.ts
1605
1605
  declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
1606
- declare const useGetB3trBalance: (address?: string) => _tanstack_react_query20.UseQueryResult<{
1606
+ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query23.UseQueryResult<{
1607
1607
  original: string;
1608
1608
  scaled: string;
1609
1609
  formatted: string;
@@ -1612,7 +1612,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query20.U
1612
1612
  //#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
1613
1613
  type TokenWithBalance = CustomTokenInfo & TokenBalance;
1614
1614
  declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string, decimals?: number) => (string | number | undefined)[];
1615
- declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query20.UseQueryResult<{
1615
+ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query23.UseQueryResult<{
1616
1616
  original: string;
1617
1617
  scaled: string;
1618
1618
  formatted: string;
@@ -1625,14 +1625,14 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
1625
1625
  //#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
1626
1626
  declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1627
1627
  declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
1628
- declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query20.UseQueryResult<CustomTokenInfo, Error>;
1628
+ declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query23.UseQueryResult<CustomTokenInfo, Error>;
1629
1629
  //#endregion
1630
1630
  //#region src/hooks/api/wallet/useGetErc20Balance.d.ts
1631
1631
  declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
1632
1632
  type UseGetErc20BalanceOptions = {
1633
1633
  enabled?: boolean;
1634
1634
  };
1635
- declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query20.UseQueryResult<{
1635
+ declare const useGetErc20Balance: (tokenAddress: string, address?: string, options?: UseGetErc20BalanceOptions) => _tanstack_react_query23.UseQueryResult<{
1636
1636
  original: string;
1637
1637
  scaled: string;
1638
1638
  formatted: string;
@@ -1649,7 +1649,7 @@ declare const PRICE_FEED_IDS: {
1649
1649
  type SupportedToken = keyof typeof PRICE_FEED_IDS;
1650
1650
  declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
1651
1651
  declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
1652
- declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query20.UseQueryResult<number, Error>;
1652
+ declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query23.UseQueryResult<number, Error>;
1653
1653
  //#endregion
1654
1654
  //#region src/hooks/api/wallet/useOraclePriceChanges24h.d.ts
1655
1655
  type PricePoint = {
@@ -1670,7 +1670,7 @@ type PriceChanges24h = Partial<Record<SupportedToken, number>>;
1670
1670
  * `useTokenPriceHistory24h`, the portfolio chart) all derive from this single
1671
1671
  * query so we never run the same RPC scan twice in a session.
1672
1672
  */
1673
- declare const useOracleHistory24h: () => _tanstack_react_query20.UseQueryResult<OracleHistory24h, Error>;
1673
+ declare const useOracleHistory24h: () => _tanstack_react_query23.UseQueryResult<OracleHistory24h, Error>;
1674
1674
  declare const useOraclePriceChanges24h: () => {
1675
1675
  data: Partial<Record<"B3TR" | "VET" | "VTHO" | "GBP" | "EUR", number>>;
1676
1676
  };
@@ -1688,7 +1688,7 @@ declare const usePortfolioPriceHistory24h: (address?: string) => {
1688
1688
  //#endregion
1689
1689
  //#region src/hooks/api/wallet/useGetVot3Balance.d.ts
1690
1690
  declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
1691
- declare const useGetVot3Balance: (address?: string) => _tanstack_react_query20.UseQueryResult<{
1691
+ declare const useGetVot3Balance: (address?: string) => _tanstack_react_query23.UseQueryResult<{
1692
1692
  original: string;
1693
1693
  scaled: string;
1694
1694
  formatted: string;
@@ -1707,7 +1707,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
1707
1707
  * @param user - The user address.
1708
1708
  * @returns The isPerson status.
1709
1709
  */
1710
- declare const useIsPerson: (user?: string | null) => _tanstack_react_query20.UseQueryResult<boolean, Error>;
1710
+ declare const useIsPerson: (user?: string | null) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
1711
1711
  //#endregion
1712
1712
  //#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
1713
1713
  type XApp = {
@@ -1745,7 +1745,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
1745
1745
  //#endregion
1746
1746
  //#region src/hooks/api/wallet/useRoundXApps.d.ts
1747
1747
  declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
1748
- declare const useRoundXApps: (roundId?: string) => _tanstack_react_query20.UseQueryResult<{
1748
+ declare const useRoundXApps: (roundId?: string) => _tanstack_react_query23.UseQueryResult<{
1749
1749
  id: string;
1750
1750
  teamWalletAddress: `0x${string}`;
1751
1751
  name: string;
@@ -1859,7 +1859,7 @@ type XAppMetadata = {
1859
1859
  * @returns The metadata of the xApp see {@link XAppMetadata}
1860
1860
  */
1861
1861
  declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
1862
- declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query20.UseQueryResult<XAppMetadata | undefined, Error>;
1862
+ declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query23.UseQueryResult<XAppMetadata | undefined, Error>;
1863
1863
  //#endregion
1864
1864
  //#region src/hooks/api/wallet/useXAppShares.d.ts
1865
1865
  /**
@@ -1874,7 +1874,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
1874
1874
  * @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
1875
1875
  *
1876
1876
  */
1877
- declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query20.UseQueryResult<{
1877
+ declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query23.UseQueryResult<{
1878
1878
  app: string;
1879
1879
  share: number;
1880
1880
  unallocatedShare: number;
@@ -1896,7 +1896,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
1896
1896
  * @param ipfsUri - The IPFS URI
1897
1897
  * @returns The metadata from IPFS
1898
1898
  */
1899
- declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query20.UseQueryResult<_tanstack_react_query20.NoInfer<T$1>, Error>;
1899
+ declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query23.UseQueryResult<_tanstack_react_query23.NoInfer<T$1>, Error>;
1900
1900
  //#endregion
1901
1901
  //#region src/hooks/api/ipfs/useIpfsImage.d.ts
1902
1902
  interface IpfsImage {
@@ -1923,14 +1923,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
1923
1923
  * @param imageIpfsUri - The IPFS URI of the NFT media
1924
1924
  * @returns The NFT media
1925
1925
  */
1926
- declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query20.UseQueryResult<IpfsImage, Error>;
1926
+ declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query23.UseQueryResult<IpfsImage, Error>;
1927
1927
  /**
1928
1928
  * Custom hook to fetch a list of IPFS images.
1929
1929
  *
1930
1930
  * @param imageIpfsUriList - An array of IPFS URIs for the images.
1931
1931
  * @returns An array of queries for each IPFS image URI.
1932
1932
  */
1933
- declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query20.UseQueryResult<IpfsImage, Error>[];
1933
+ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query23.UseQueryResult<IpfsImage, Error>[];
1934
1934
  //#endregion
1935
1935
  //#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
1936
1936
  /**
@@ -1938,7 +1938,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
1938
1938
  * @param ipfsUris - The IPFS URIs
1939
1939
  * @returns The metadata from IPFS for each URI
1940
1940
  */
1941
- declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query20.UseQueryResult<T$1, Error>[];
1941
+ declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query23.UseQueryResult<T$1, Error>[];
1942
1942
  //#endregion
1943
1943
  //#region src/hooks/api/ipfs/useUploadImages.d.ts
1944
1944
  declare const imageCompressionOptions: Options;
@@ -2197,7 +2197,7 @@ declare const useTransferHistory: (address?: string, {
2197
2197
  isFetching: boolean;
2198
2198
  isFetchingNextPage: boolean;
2199
2199
  hasNextPage: boolean;
2200
- fetchNextPage: (options?: _tanstack_react_query20.FetchNextPageOptions) => Promise<_tanstack_react_query20.InfiniteQueryObserverResult<_tanstack_react_query20.InfiniteData<{
2200
+ fetchNextPage: (options?: _tanstack_react_query23.FetchNextPageOptions) => Promise<_tanstack_react_query23.InfiniteQueryObserverResult<_tanstack_react_query23.InfiniteData<{
2201
2201
  items: TransferHistoryItem[];
2202
2202
  hasNext: boolean;
2203
2203
  }, unknown>, Error>>;
@@ -2356,7 +2356,7 @@ declare const useOwnedNfts: (address?: string) => {
2356
2356
  isFetching: boolean;
2357
2357
  isFetchingNextPage: boolean;
2358
2358
  hasNextPage: boolean;
2359
- fetchNextPage: (options?: _tanstack_react_query20.FetchNextPageOptions) => Promise<_tanstack_react_query20.InfiniteQueryObserverResult<_tanstack_react_query20.InfiniteData<OwnedNftsPage, unknown>, Error>>;
2359
+ fetchNextPage: (options?: _tanstack_react_query23.FetchNextPageOptions) => Promise<_tanstack_react_query23.InfiniteQueryObserverResult<_tanstack_react_query23.InfiniteData<OwnedNftsPage, unknown>, Error>>;
2360
2360
  isUnsupportedNetwork: boolean;
2361
2361
  error: Error | null;
2362
2362
  };
@@ -2805,7 +2805,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
2805
2805
  * );
2806
2806
  * ```
2807
2807
  */
2808
- declare const useAppHubApps: () => _tanstack_react_query20.UseQueryResult<AppHubApp[], Error>;
2808
+ declare const useAppHubApps: () => _tanstack_react_query23.UseQueryResult<AppHubApp[], Error>;
2809
2809
  //#endregion
2810
2810
  //#region src/utils/constants.d.ts
2811
2811
  /** Tokens that cannot be swapped or transferred (e.g. governance voting tokens) */
@@ -3169,7 +3169,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
3169
3169
  method: TMethod;
3170
3170
  args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
3171
3171
  queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
3172
- }) => _tanstack_react_query20.UseQueryResult<_tanstack_react_query20.NoInfer<TData>, unknown>;
3172
+ }) => _tanstack_react_query23.UseQueryResult<_tanstack_react_query23.NoInfer<TData>, unknown>;
3173
3173
  declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
3174
3174
  thor,
3175
3175
  calls,
@@ -3180,7 +3180,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
3180
3180
  calls: MultipleClausesCallParameters<contracts, allowFailure>;
3181
3181
  queryKey: string[];
3182
3182
  enabled?: boolean;
3183
- }) => _tanstack_react_query20.UseQueryResult<_tanstack_react_query20.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
3183
+ }) => _tanstack_react_query23.UseQueryResult<_tanstack_react_query23.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
3184
3184
  //#endregion
3185
3185
  //#region src/hooks/utils/useCurrency.d.ts
3186
3186
  /**
@@ -3304,7 +3304,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
3304
3304
  filterParams,
3305
3305
  mapResponse,
3306
3306
  nodeUrl
3307
- }: UseEventsParams<T$1, K, R>) => _tanstack_react_query20.UseQueryResult<R[], Error>;
3307
+ }: UseEventsParams<T$1, K, R>) => _tanstack_react_query23.UseQueryResult<R[], Error>;
3308
3308
  //#endregion
3309
3309
  //#region src/hooks/utils/useBuildClauses.d.ts
3310
3310
  interface BuildClausesParams {
@@ -3549,7 +3549,7 @@ declare const useGenericDelegatorFeeEstimation: ({
3549
3549
  tokens,
3550
3550
  sendingAmount,
3551
3551
  sendingTokenSymbol
3552
- }: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query20.UseQueryResult<EstimationResponse & {
3552
+ }: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query23.UseQueryResult<EstimationResponse & {
3553
3553
  usedToken: string;
3554
3554
  }, Error>;
3555
3555
  //#endregion
@@ -3563,7 +3563,7 @@ declare const useEstimateAllTokens: ({
3563
3563
  clauses,
3564
3564
  tokens,
3565
3565
  enabled
3566
- }: UseEstimateAllTokensParams) => _tanstack_react_query20.UseQueryResult<Record<GasTokenType, {
3566
+ }: UseEstimateAllTokensParams) => _tanstack_react_query23.UseQueryResult<Record<GasTokenType, {
3567
3567
  cost: number;
3568
3568
  loading: boolean;
3569
3569
  error?: string;
@@ -3580,7 +3580,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
3580
3580
  * @param address The address of the account to get the balance for
3581
3581
  * @returns The account balance
3582
3582
  */
3583
- declare const useAccountBalance: (address?: string) => _tanstack_react_query20.UseQueryResult<{
3583
+ declare const useAccountBalance: (address?: string) => _tanstack_react_query23.UseQueryResult<{
3584
3584
  balance: string;
3585
3585
  energy: string;
3586
3586
  }, Error>;
@@ -3593,7 +3593,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
3593
3593
  * @param version - The version of the smart account implementation
3594
3594
  * @returns The address of the smart account implementation
3595
3595
  */
3596
- declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query20.UseQueryResult<string, Error>;
3596
+ declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query23.UseQueryResult<string, Error>;
3597
3597
  //#endregion
3598
3598
  //#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
3599
3599
  declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
@@ -3602,7 +3602,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
3602
3602
  * Get the current account implementation version used by the smart account factory
3603
3603
  * @returns The current account implementation version
3604
3604
  */
3605
- declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query20.UseQueryResult<number, Error>;
3605
+ declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query23.UseQueryResult<number, Error>;
3606
3606
  //#endregion
3607
3607
  //#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
3608
3608
  declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
@@ -3612,7 +3612,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
3612
3612
  * @param ownerAddress - The address of the owner of the smart account
3613
3613
  * @returns The address of the smart account
3614
3614
  */
3615
- declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query20.UseQueryResult<string, Error>;
3615
+ declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query23.UseQueryResult<string, Error>;
3616
3616
  //#endregion
3617
3617
  //#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
3618
3618
  declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
@@ -3622,7 +3622,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
3622
3622
  * @param ownerAddress - The address of the owner of the smart account
3623
3623
  * @returns The version of the smart account
3624
3624
  */
3625
- declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query20.UseQueryResult<{
3625
+ declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query23.UseQueryResult<{
3626
3626
  version: number;
3627
3627
  isDeployed: boolean;
3628
3628
  }, unknown>;
@@ -3635,7 +3635,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
3635
3635
  * @param ownerAddress - The address of the owner of the smart account
3636
3636
  * @returns True if the smart account has a v1 smart account, false otherwise
3637
3637
  */
3638
- declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query20.UseQueryResult<boolean, Error>;
3638
+ declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
3639
3639
  //#endregion
3640
3640
  //#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
3641
3641
  declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
@@ -3644,7 +3644,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
3644
3644
  * Check if a smart account is deployed
3645
3645
  * @returns True if the smart account is deployed, false otherwise
3646
3646
  */
3647
- declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query20.UseQueryResult<boolean, Error>;
3647
+ declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
3648
3648
  //#endregion
3649
3649
  //#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
3650
3650
  /**
@@ -3677,7 +3677,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
3677
3677
  isDeployed: boolean;
3678
3678
  }>;
3679
3679
  declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
3680
- declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query20.UseQueryResult<{
3680
+ declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query23.UseQueryResult<{
3681
3681
  address: undefined;
3682
3682
  isDeployed?: undefined;
3683
3683
  } | {
@@ -3695,7 +3695,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
3695
3695
  * @param targetVersion - The version of the smart account to check for
3696
3696
  * @returns True if the smart account needs an upgrade, false otherwise
3697
3697
  */
3698
- declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query20.UseQueryResult<boolean, Error>;
3698
+ declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
3699
3699
  //#endregion
3700
3700
  //#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
3701
3701
  declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
@@ -3706,7 +3706,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
3706
3706
  * @param targetVersion - The target version of the smart account
3707
3707
  * @returns True if the smart account needs an upgrade, false otherwise
3708
3708
  */
3709
- declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query20.UseQueryResult<boolean, Error>;
3709
+ declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query23.UseQueryResult<boolean, Error>;
3710
3710
  //#endregion
3711
3711
  //#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
3712
3712
  type UseUpgradeSmartAccountVersionProps = {
@@ -3731,7 +3731,7 @@ declare const currentBlockQueryKey: () => string[];
3731
3731
  * Fetches the current block from the blockchain. The block is refetched every 10 seconds.
3732
3732
  * @returns the current block
3733
3733
  */
3734
- declare const useCurrentBlock: () => _tanstack_react_query20.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
3734
+ declare const useCurrentBlock: () => _tanstack_react_query23.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
3735
3735
  //#endregion
3736
3736
  //#region src/hooks/thor/blocks/useGetChainId.d.ts
3737
3737
  declare const getChainId: (thor: ThorClient) => Promise<string>;
@@ -3740,7 +3740,7 @@ declare const getChainIdQueryKey: () => string[];
3740
3740
  * Get the chain id
3741
3741
  * @returns The chain id
3742
3742
  */
3743
- declare const useGetChainId: () => _tanstack_react_query20.UseQueryResult<string, Error>;
3743
+ declare const useGetChainId: () => _tanstack_react_query23.UseQueryResult<string, Error>;
3744
3744
  //#endregion
3745
3745
  //#region src/hooks/thor/logs/logUtils.d.ts
3746
3746
  /**
@@ -4020,7 +4020,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
4020
4020
  * @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
4021
4021
  * @returns Query result containing the transaction receipt
4022
4022
  */
4023
- declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query20.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
4023
+ declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query23.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
4024
4024
  //#endregion
4025
4025
  //#region src/hooks/thor/transactions/useGasEstimate.d.ts
4026
4026
  declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
@@ -5206,4 +5206,4 @@ declare const ModalProvider: ({
5206
5206
  }) => react_jsx_runtime0.JSX.Element;
5207
5207
  //#endregion
5208
5208
  export { SendNftSummaryContentProps as $, useAccountModal as $a, EcosystemButton as $c, TogglePassportCheck as $i, ExecuteBatchWithAuthorizationSignData as $l, getAccountBalanceQueryKey as $n, getXAppMetadata as $o, removeLocalStorageItem as $r, getAvatarLegacy as $s, useThor$1 as $t, StickyFooterContainer as A, ReceiveModalProvider as Aa, getPrivyAppInfoQueryKey as Ac, toIPFSURL as Ai, CostLevel as Al, getSmartAccount as An, TransferHistoryItem as Ao, GetEventsKeyParams as Ar, useGetTokenUsdPrice as As, CustomizationSummaryContentProps as At, QuickActionsSection as B, SwapTokenModalProvider as Ba, WalletButtonProps as Bc, getPicassoImage as Bi, GasTokenInfo as Bl, useHasV1SmartAccount as Bn, useIpfsMetadatas as Bo, useCurrentLanguage as Br, getB3trBalanceQueryKey as Bs, SwapTokenContent as Bt, TransactionButtonAndStatusProps as C, useSettingsModal as Ca, getEnsRecordExistsQueryKey as Cc, XNodeStrengthLevelToName as Ci, VechainKitProviderProps as Cl, getUpgradeRequiredForAccount as Cn, useStargatePositions as Co, useSyncableLocalStorage as Cr, useOracleHistory24h as Cs, AssetsContent as Ct, AddressDisplayCard as D, UpgradeSmartAccountModalProvider as Da, fetchPrivyStatus as Dc, xNodeToGMstartingLevel as Di, LegalDocumentAgreement as Dl, getUpgradeRequiredQueryKey as Dn, IndexerTransfer as Do, buildBatchAuthorizationTypedData as Dr, SupportedToken as Ds, ProfileContent as Dt, ModalFAQButton as E, useProfileModal as Ea, useVechainDomain as Ec, gmNfts as Ei, EnrichedLegalDocument as El, getUpgradeRequired as En, useTransferHistory as Eo, BuildClausesParams as Er, PRICE_FEED_IDS as Es, UpgradeSmartAccountContentProps as Et, ModalBackButton as F, useFAQModal as Fa, ShareButtons as Fc, isValidAddress as Fi, TransactionCost as Fl, getIsDeployed as Fn, useSingleImageUpload as Fo, useScrollToTop as Fr, getTokenInfo$1 as Fs, ChooseNameSummaryContentProps as Ft, AccountModal as G, useChooseNameModal as Ga, VeWorldButton as Gc, DEFAULT_GAS_TOKEN_PREFERENCES as Gi, ENS_TEXT_RECORDS as Gl, useGetAccountAddress as Gn, useIpfsImage as Go, useMultipleClausesCall as Gr, useTotalBalance as Gs, SendTokenSummaryContent as Gt, AccountSelector as H, SendTokenModalProvider as Ha, ConnectPopover as Hc, humanDomain as Hi, GasTokenSelection as Hl, useGetAccountVersion as Hn, MAX_IMAGE_SIZE as Ho, getCallClauseQueryKey as Hr, useCustomTokens as Hs, ReceiveTokenContent as Ht, CrossAppConnectionSecurityCard as I, NotificationsModalProvider as Ia, TransactionModal as Ic, leftPadWithZeros as Ii, VthoPerGasAtSpeed as Il, getIsDeployedQueryKey as In, UploadedImage as Io, useIsPWA as Ir, useGetCustomTokenInfo as Is, ChooseNameSearchContent as It, TransactionDetailContent as J, TransactionToastProvider as Ja, DappKitButton as Jc, NON_TRANSFERABLE_TOKEN_SYMBOLS as Ji, CURRENCY_SYMBOLS as Jl, useCurrentAccountImplementationVersion as Jn, getIpfsMetadataQueryKey as Jo, getLocalStorageItem as Jr, ExchangeRates as Js, useDAppKitWallet as Jt, AccountModalContentTypes as K, WalletModalProvider as Ka, LoginWithGithubButton as Kc, DEFAULT_PRIVY_ECOSYSTEM_APPS as Ki, TextRecords as Kl, getCurrentAccountImplementationVersion as Kn, useIpfsImageList as Ko, copyToClipboard as Kr, TokenWithValue as Ks, SendTokenContent as Kt, DomainRequiredAlert as L, useNotificationsModal as La, TransactionModalProps as Lc, regexPattern as Li, calculateTotalCost as Ll, useIsSmartAccountDeployed as Ln, compressImages as Lo, useGetNodeUrl as Lr, TokenWithBalance as Ls, ChooseNameSearchContentProps as Lt, useStickyHeaderContext as M, AccountCustomizationModalProvider as Ma, AccountMainContent as Mc, validateIpfsUri as Mi, EstimatedGas as Ml, useSmartAccount as Mn, VTHO_TOKEN_ADDRESS as Mo, decodeEventLog$1 as Mr, getErc20BalanceQueryKey as Ms, CustomizationContent as Mt, VersionFooter as N, useAccountCustomizationModal as Na, TransactionToast as Nc, compareAddresses as Ni, EstimationResponse as Nl, useRefreshSmartAccountQueries as Nn, useSwapQuotes as No, getEventsKey as Nr, useGetErc20Balance as Ns, FAQContent as Nt, AssetButton as O, useUpgradeSmartAccountModal as Oa, useFetchPrivyStatus as Oc, convertUriToUrl as Oi, LegalDocumentSource as Ol, useUpgradeRequired as On, TransferDirection as Oo, buildSingleAuthorizationTypedData as Or, getTokenUsdPrice as Os, ProfileContentProps as Ot, AddressDisplay as P, FAQModalProvider as Pa, TransactionModalContent as Pc, compareListOfAddresses as Pi, Rate as Pl, useRefreshFactoryQueries as Pn, useSwapTransaction as Po, useEvents as Pr, getCustomTokenInfoQueryKey as Ps, ChooseNameSummaryContent as Pt, SendNftSummaryContent as Q, AccountModalProvider as Qa, PrivyButton as Qc, TOKEN_LOGO_COMPONENTS as Qi, EnhancedClause as Ql, getAccountBalance as Qn, XAppMetadata as Qo, isOnline as Qr, useUnsetDomain as Qs, useSetWalletRecovery as Qt, ExchangeWarningAlert as R, ExploreEcosystemModalProvider as Ra, SocialIcons as Rc, randomTransactionUser as Ri, formatGasCost as Rl, getHasV1SmartAccount as Rn, imageCompressionOptions as Ro, useFeatureAnnouncement as Rr, getCustomTokenBalanceQueryKey as Rs, ChooseNameContent as Rt, TransactionButtonAndStatus as S, SettingsModalProvider as Sa, useClaimVeWorldSubdomain as Sc, NodeStrengthLevelToImage as Si, VeChainKitProvider as Sl, useUpgradeSmartAccount as Sn, StargatePositionsResult as So, useEcosystemShortcuts as Sr, PricePoint as Ss, ManageCustomTokenContentProps as St, ScrollToTopWrapper as T, ProfileModalProvider as Ta, getVechainDomainQueryKey as Tc, buildQueryString as Ti, useVeChainKitConfig as Tl, useUpgradeRequiredForAccount as Tn, getTransferHistoryQueryKey as To, useLocalStorage as Tr, useTokenPriceHistory24h as Ts, UpgradeSmartAccountContent as Tt, ActionButton as U, useSendTokenModal as Ua, WalletConnectButton as Uc, humanNumber as Ui, GasTokenType as Ul, getAccountAddress as Un, getIpfsImage as Uo, getCallClauseQueryKeyWithArgs as Ur, getCurrentAllocationsRoundIdQueryKey as Us, ReceiveTokenContentProps as Ut, BalanceSection as V, useSwapTokenModal as Va, WalletDisplayVariant as Vc, humanAddress as Vi, GasTokenPreferences as Vl, getAccountVersionQueryKey as Vn, IpfsImage as Vo, useCurrency as Vr, useGetB3trBalance as Vs, SwapTokenContentProps as Vt, AccountDetailsButton as W, ChooseNameModalProvider as Wa, Sync2Button as Wc, isZero as Wi, TransactionSpeed as Wl, getAccountAddressQueryKey as Wn, getIpfsImageQueryKey as Wo, useCallClause as Wr, useCurrentAllocationsRoundId as Ws, SelectTokenContent as Wt, TransactionHistoryContent as X, TransactionModalProvider as Xa, LoginWithAppleButton as Xc, SUPPORTED_GAS_TOKENS as Xi, CrossAppConnectionCache as Xl, getAccountImplementationAddressQueryKey as Xn, getXAppsSharesQueryKey as Xo, hasNavigator as Xr, WalletTokenBalance as Xs, useMfaEnrollment as Xt, TransactionDetailContentProps as Y, useTransactionToast as Ya, PasskeyLoginButton as Yc, PrivyEcosystemApp as Yi, ConnectionSource as Yl, getAccountImplementationAddress as Yn, useIpfsMetadata as Yo, getWindowOrigin as Yr, useTokenPrices as Ys, useDAppKitWalletModal as Yt, TransactionHistoryContentProps as Z, useTransactionModal as Za, LoginWithGoogleButton as Zc, TOKEN_LOGOS as Zi, ENSRecords as Zl, useAccountImplementationAddress as Zn, useXAppsShares as Zo, isBrowser as Zr, useTokenBalances as Zs, usePrivy$1 as Zt, WalletSwitchFeedback as _, useLoginWithPasskey$1 as _a, useGetDomainsOfAddress as _c, isRejectionError as _i, AccountQuickAction as _l, getChainId as _n, LpPositionToken as _o, getDepositAccount as _r, getVot3BalanceQueryKey as _s, LanguageSettingsContent as _t, LegalDocumentItem as a, getGenericDelegatorUrl as aa, useGetResolverAddress as ac, ViewFunctionResult as ai, ErrorContent as al, useBuildTransaction as an, getNftBlacklistQueryKey as ao, useGasTokenSelection as ar, useWalletMetadata as as, NftDetailContentProps as at, TokenBalance as au, GasFeeSummary as b, useNotificationAlerts as ba, buildVetDomainClauses as bc, EconomicNodeStrengthLevelToName as bi, VeChainKitConfig as bl, currentBlockQueryKey as bn, useNavigatorPosition as bo, useCrossAppConnectionCache as br, OracleHistory24h as bs, BridgeContent as bt, UpgradeSmartAccountModal as c, AppHubApp as ca, getTextRecords as cc, executeMultipleClausesCall as ci, ConnectModal as cl, buildERC721Clauses as cn, useOwnedNfts as co, GENERIC_DELEGATOR_LOCAL_ESTIMATE_TIMEOUT_MS as cr, getRoundXAppsQueryKey as cs, RemoveWalletConfirmContent as ct, VePassportUserStatus as cu, StatusScreen as d, useAppHubApps as da, getAvatarQueryKey as dc, compare as di, useLegalDocuments as dl, useTransferERC20 as dn, NftMetadata as do, computeCorrectedTotalGasNoFeePayer as dr, useRefreshBalances as ds, DisconnectConfirmContent as dt, getConfig as du, VECHAIN_KIT_COOKIES_CONFIG as ea, getAvatarLegacyQueryKey as ec, safeQuerySelector as ei, VeChainLoginButton as el, VECHAIN_KIT_QUERY_KEYS as en, ConnectModalProvider as eo, useAccountBalance as er, useXAppMetadata as es, SendNftContent as et, ExecuteWithAuthorizationSignData as eu, StatusScreenProps as f, useConnectWithDappKitSource as fa, useGetAvatar as fc, isInvalid as fi, VechainKitThemeProvider as fl, UseSendTransactionReturnValue as fn, OwnedNft as fo, convertGasToGasTokenAmount as fr, MostVotedAppsInRoundReturnType as fs, DisconnectConfirmContentProps as ft, PriceChangeBadge as g, useLoginWithOAuth$1 as ga, getDomainsOfAddressQueryKey as gc, validate as gi, usePrivyWalletProvider as gl, getEventLogs as gn, LpPosition as go, estimateGas as gr, useIsPerson as gs, GasTokenSettingsContent as gt, AddressOrDomainLabel as h, CrossAppLoginIntent as ha, getDomainsOfAddress as hc, removePrefix as hi, PrivyWalletProviderContextType as hl, getAllEventLogs as hn, useJuicyPosition as ho, estimateAndBuildTxBody as hr, getIsPersonQueryKey as hs, SettingsContentProps as ht, DAppKitWalletButton as i, getENV as ia, getResolverAddressQueryKey as ic, MultipleClausesCallReturnType as ii, EcosystemContent as il, BuildTransactionProps as in, useOwnedNftsFiltered as io, useGenericDelegatorFeeEstimationParams as ir, useWalletStorage as is, NftDetailContent as it, SmartAccount as iu, StickyHeaderContainer as j, useReceiveModal as ja, useFetchAppInfo as jc, uploadBlobToIPFS as ji, DepositAccount as jl, getSmartAccountQueryKey as jn, VET_TOKEN_SENTINEL as jo, UseEventsParams as jr, UseGetErc20BalanceOptions as js, AccountCustomizationContentProps as jt, BaseModal as k, useLoginModalContent as ka, fetchPrivyAppInfo as kc, resolveMediaTypeFromMimeType as ki, LegalDocumentType as kl, SmartAccountReturnType as kn, TransferEventType as ko, useBuildClauses as kr, getTokenUsdPriceQueryKey as ks, CustomizationSummaryContent as kt, UpgradeSmartAccountModalContentsTypes as l, fetchAppHubApps as la, getTextRecordsQueryKey as lc, isValidUrl as li, ConnectModalContentsTypes as ll, useTransferERC721 as ln, IndexerNft as lo, GENERIC_DELEGATOR_WRAPPER_OVERHEAD_GAS as lr, useRoundXApps as ls, RemoveWalletConfirmContentProps as lt, Wallet as lu, CopyIconButton as m, useLoginWithVeChain as ma, DomainsResponse as mc, normalize as mi, PrivyWalletProvider as ml, GetEventsProps as mn, JuicyPositionResult as mo, delegateAuthorized as mr, useMostVotedAppsInRound as ms, SettingsContent as mt, ModalProvider as n, VECHAIN_KIT_TERMS_CONFIG as na, getAvatarOfAddressQueryKey as nc, setLocalStorageItem as ni, ConnectionButton as nl, txReceiptQueryKey as nn, useNftCollectionName as no, useEstimateAllTokens as nr, useSwitchWallet as ns, NftCollectionContent as nt, PrivyAppInfo as nu, LegalDocumentsModal as o, getKitSponsoredDelegatorUrl as oa, buildClauses as oc, buildCallClauses as oi, LoadingContent as ol, buildVETClauses as on, useNftBlacklist as oo, GENERIC_DELEGATOR_FEE_PAYER_OVERHEAD_GAS as or, UseWalletReturnType as os, TokenDetailContent as ot, TransactionStatus as ou, PriceChart as p, UseLoginWithVeChainOptions as pa, Domain as pc, isValid as pi, useVechainKitThemeConfig as pl, useSendTransaction as pn, JuicyAssetPosition as po, decodeRawTx as pr, XApp as ps, TermsAndPrivacyContent as pt, SwitchFeedback as q, useWalletModal as qa, VeChainWithPrivyLoginButton as qc, ENV as qi, CURRENCY as ql, getCurrentAccountImplementationVersionQueryKey as qn, getIpfsMetadata as qo, getDocumentTitle as qr, useTokensWithValues as qs, ThorClient$1 as qt, useModal as r, VECHAIN_PRIVY_APP_ID as ra, useGetAvatarOfAddress as rc, MultipleClausesCallParameters as ri, MoreOptionsContent as rl, useTxReceipt as rn, useNftMetadata as ro, useGenericDelegatorFeeEstimation as rr, StoredWallet as rs, NftCollectionContentProps as rt, PrivyLoginMethod as ru, LegalDocumentsModalContentsTypes as s, notFoundImage as sa, useUpdateTextRecord as sc, executeCallClause as si, MainContent as sl, useTransferVET as sn, getOwnedNftsQueryKey as so, GENERIC_DELEGATOR_GAS_SAFETY_MULTIPLIER as sr, useWallet$1 as ss, TokenDetailContentProps as st, TransactionStatusErrorType as su, AccountModalOptions as t, VECHAIN_KIT_STORAGE_KEYS as ta, useGetAvatarLegacy as tc, safeWindowOpen as ti, EmailLoginButton as tl, useGasEstimate as tn, useConnectModal as to, UseEstimateAllTokensParams as tr, UseSwitchWalletReturnType as ts, SendNftContentProps as tt, NFTMediaType as tu, UpgradeSmartAccountModalStyle as u, getAppHubAppsQueryKey as ua, useGetTextRecords as uc, addPrefix as ui, LegalDocumentsProvider as ul, buildERC20Clauses as un, NftAttribute as uo, computeCorrectedGasTokenCost as ur, useRefreshMetadata as us, SelectWalletContent as ut, AppConfig as uu, InlineFeedback as v, useSignTypedData$1 as va, getIsDomainProtectedQueryKey as vc, simpleHash as vi, LegalDocument as vl, getChainIdQueryKey as vn, useBetterSwapLpPositions as vo, signVip191Transaction as vr, useGetVot3Balance as vs, ChangeCurrencyContent as vt, AccountAvatar as w, useAccountModalOptions as wa, useEnsRecordExists as wc, allNodeStrengthLevelToName as wi, useAppConfig as wl, getUpgradeRequiredForAccountQueryKey as wn, useTokenTransferHistory as wo, LocalStorageKey as wr, useOraclePriceChanges24h as ws, AssetsContentProps as wt, ModalNotificationButton as x, useNotifications as xa, useClaimVetDomain as xc, MinXNodeLevel as xi, VeChainKitContext as xl, useCurrentBlock as xn, StargatePosition as xo, EcosystemShortcut as xr, PriceChanges24h as xs, ManageCustomTokenContent as xt, GasFeeTokenSelector as y, useSignMessage$1 as ya, useIsDomainProtected as yc, TIME as yi, LegalDocumentOptions as yl, useGetChainId as yn, NavigatorPosition as yo, useGenericDelegator as yr, usePortfolioPriceHistory24h as ys, ChangeCurrencyContentProps as yt, FeatureAnnouncementCard as z, useExploreEcosystemModal as za, WalletButton as zc, formatTokenBalance as zi, GasTokenEstimate as zl, getHasV1SmartAccountQueryKey as zn, useUploadImages as zo, useCurrentCurrency as zr, useGetCustomTokenBalances as zs, ChooseNameContentProps as zt };
5209
- //# sourceMappingURL=index-DqmXn4Mz.d.mts.map
5209
+ //# sourceMappingURL=index-Gsp1h6d7.d.mts.map