@vechain/vechain-kit 2.2.2 → 2.3.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,25 +2,25 @@ import { ButtonProps, IconButtonProps, ImageProps, PropsOf, StackProps, ThemeTyp
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 { Account } from "viem/accounts";
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";
6
8
  import * as _vechain_sdk_core0 from "@vechain/sdk-core";
7
9
  import { Address, Certificate, CertificateData, Clause, Transaction, TransactionClause } from "@vechain/sdk-core";
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 { 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";
10
14
  import * as _tanstack_react_query8 from "@tanstack/react-query";
11
15
  import { UseQueryOptions } from "@tanstack/react-query";
12
- import { CustomTokenInfo } from "@vechain/contract-getters";
13
- import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
14
16
  import { z } from "zod";
17
+ import { CustomTokenInfo } from "@vechain/contract-getters";
15
18
  import { Options } from "browser-image-compression";
16
- import { UseFormRegister } from "react-hook-form";
17
- import * as _vechain_sdk_network0 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";
19
+ import { Account } from "viem/accounts";
22
20
  import * as abitype0 from "abitype";
23
21
  import { AbiParametersToPrimitiveTypes, ExtractAbiFunction, ExtractAbiFunctionNames } from "abitype";
22
+ import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
23
+ import { UseFormRegister } from "react-hook-form";
24
24
 
25
25
  //#region src/config/network.d.ts
26
26
  /**
@@ -53,7 +53,7 @@ declare const genesises: {
53
53
  readonly main: CompressedBlockDetail;
54
54
  readonly test: CompressedBlockDetail;
55
55
  readonly solo: CompressedBlockDetail;
56
- which(gid: string): "test" | "main" | "solo" | undefined;
56
+ which(gid: string): "main" | "test" | "solo" | undefined;
57
57
  };
58
58
  //#endregion
59
59
  //#region src/types/types.d.ts
@@ -407,7 +407,6 @@ interface ThemeTokens {
407
407
  };
408
408
  modal: {
409
409
  rounded?: string | number;
410
- zIndex?: number;
411
410
  };
412
411
  }
413
412
  /**
@@ -427,7 +426,12 @@ interface VechainKitThemeConfig {
427
426
  backdropFilter?: string;
428
427
  borderRadius?: string;
429
428
  rounded?: string | number;
430
- zIndex?: number;
429
+ /**
430
+ * Whether to use bottom sheet on mobile devices.
431
+ * When false (default), uses regular modal on all screen sizes.
432
+ * When true, uses bottom sheet on mobile (< 768px) and regular modal on desktop.
433
+ */
434
+ useBottomSheetOnMobile?: boolean;
431
435
  };
432
436
  buttons?: {
433
437
  secondaryButton?: {
@@ -680,6 +684,7 @@ type Props$32 = {
680
684
  declare const useVechainKitThemeConfig: () => {
681
685
  portalRootRef?: React.RefObject<HTMLDivElement | null>;
682
686
  tokens?: ThemeTokens;
687
+ themeConfig?: VechainKitThemeConfig;
683
688
  };
684
689
  declare const ColorModeSync: ({
685
690
  darkMode
@@ -712,11 +717,34 @@ declare const LegalDocumentsProvider: ({
712
717
  type Props$30 = {
713
718
  isOpen: boolean;
714
719
  onClose: () => void;
720
+ initialContent?: ConnectModalContentsTypes;
721
+ };
722
+ type ConnectModalContentsTypes = 'main' | 'faq' | {
723
+ type: 'ecosystem';
724
+ props: {
725
+ appsInfo: PrivyAppInfo[];
726
+ isLoading: boolean;
727
+ showBackButton?: boolean;
728
+ };
729
+ } | {
730
+ type: 'loading';
731
+ props: {
732
+ title?: string;
733
+ loadingText?: string;
734
+ onTryAgain?: () => void;
735
+ showBackButton?: boolean;
736
+ };
737
+ } | {
738
+ type: 'error';
739
+ props: {
740
+ error: string;
741
+ onTryAgain: () => void;
742
+ };
715
743
  };
716
- type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
717
744
  declare const ConnectModal: ({
718
745
  isOpen,
719
- onClose
746
+ onClose,
747
+ initialContent
720
748
  }: Props$30) => react_jsx_runtime0.JSX.Element;
721
749
  //#endregion
722
750
  //#region src/components/ConnectModal/Contents/MainContent.d.ts
@@ -725,10 +753,57 @@ type Props$29 = {
725
753
  onClose: () => void;
726
754
  };
727
755
  declare const MainContent: ({
728
- setCurrentContent,
729
- onClose
756
+ setCurrentContent
730
757
  }: Props$29) => react_jsx_runtime0.JSX.Element;
731
758
  //#endregion
759
+ //#region src/components/ConnectModal/Contents/LoadingContent.d.ts
760
+ type LoadingContentProps = {
761
+ loadingText?: string;
762
+ title?: string;
763
+ onTryAgain?: () => void;
764
+ onClose: () => void;
765
+ onGoBack: () => void;
766
+ showBackButton?: boolean;
767
+ };
768
+ declare const LoadingContent: ({
769
+ loadingText,
770
+ title,
771
+ onTryAgain,
772
+ onClose,
773
+ onGoBack,
774
+ showBackButton
775
+ }: LoadingContentProps) => react_jsx_runtime0.JSX.Element;
776
+ //#endregion
777
+ //#region src/components/ConnectModal/Contents/ErrorContent.d.ts
778
+ type ErrorContentProps = {
779
+ error: string;
780
+ onClose: () => void;
781
+ onTryAgain: () => void;
782
+ onGoBack: () => void;
783
+ };
784
+ declare const ErrorContent: ({
785
+ error,
786
+ onClose,
787
+ onTryAgain,
788
+ onGoBack
789
+ }: ErrorContentProps) => react_jsx_runtime0.JSX.Element;
790
+ //#endregion
791
+ //#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
792
+ type Props$28 = {
793
+ onClose: () => void;
794
+ appsInfo: PrivyAppInfo[];
795
+ isLoading: boolean;
796
+ setCurrentContent: React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
797
+ showBackButton?: boolean;
798
+ };
799
+ declare const EcosystemContent: ({
800
+ onClose,
801
+ appsInfo,
802
+ isLoading,
803
+ setCurrentContent,
804
+ showBackButton
805
+ }: Props$28) => react_jsx_runtime0.JSX.Element;
806
+ //#endregion
732
807
  //#region src/components/ConnectModal/Components/ConnectionButton.d.ts
733
808
  interface ConnectionButtonProps {
734
809
  isDark: boolean;
@@ -756,29 +831,33 @@ declare const ConnectionButton: ({
756
831
  declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
757
832
  //#endregion
758
833
  //#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
759
- type Props$28 = {
834
+ type Props$27 = {
760
835
  isDark: boolean;
761
836
  gridColumn?: number;
837
+ setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
762
838
  };
763
839
  declare const VeChainLoginButton: ({
764
840
  isDark,
765
- gridColumn
766
- }: Props$28) => react_jsx_runtime0.JSX.Element;
841
+ gridColumn,
842
+ setCurrentContent
843
+ }: Props$27) => react_jsx_runtime0.JSX.Element;
767
844
  //#endregion
768
845
  //#region src/components/ConnectModal/Components/EcosystemButton.d.ts
769
- type Props$27 = {
846
+ type Props$26 = {
770
847
  isDark: boolean;
771
848
  appsInfo: PrivyAppInfo[];
772
849
  isLoading: boolean;
773
850
  gridColumn?: number;
851
+ setCurrentContent: React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
774
852
  };
775
853
  declare const EcosystemButton: ({
776
854
  appsInfo,
777
- isLoading
778
- }: Props$27) => react_jsx_runtime0.JSX.Element;
855
+ isLoading,
856
+ setCurrentContent
857
+ }: Props$26) => react_jsx_runtime0.JSX.Element;
779
858
  //#endregion
780
859
  //#region src/components/ConnectModal/Components/PrivyButton.d.ts
781
- type Props$26 = {
860
+ type Props$25 = {
782
861
  isDark: boolean;
783
862
  onViewMoreLogin: () => void;
784
863
  gridColumn?: number;
@@ -787,57 +866,59 @@ declare const PrivyButton: ({
787
866
  isDark,
788
867
  onViewMoreLogin,
789
868
  gridColumn
790
- }: Props$26) => react_jsx_runtime0.JSX.Element;
869
+ }: Props$25) => react_jsx_runtime0.JSX.Element;
791
870
  //#endregion
792
871
  //#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
793
- type Props$25 = {
872
+ type Props$24 = {
794
873
  isDark: boolean;
795
874
  gridColumn?: number;
796
875
  };
797
876
  declare const LoginWithGoogleButton: ({
798
877
  isDark,
799
878
  gridColumn
800
- }: Props$25) => react_jsx_runtime0.JSX.Element;
879
+ }: Props$24) => react_jsx_runtime0.JSX.Element;
801
880
  //#endregion
802
881
  //#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
803
- type Props$24 = {
882
+ type Props$23 = {
804
883
  isDark: boolean;
805
884
  gridColumn?: number;
885
+ setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
806
886
  };
807
887
  declare const PasskeyLoginButton: ({
808
888
  isDark,
809
- gridColumn
810
- }: Props$24) => react_jsx_runtime0.JSX.Element;
889
+ gridColumn,
890
+ setCurrentContent
891
+ }: Props$23) => react_jsx_runtime0.JSX.Element;
811
892
  //#endregion
812
893
  //#region src/components/ConnectModal/Components/DappKitButton.d.ts
813
- type Props$23 = {
894
+ type Props$22 = {
814
895
  isDark: boolean;
815
896
  gridColumn?: number;
816
897
  };
817
898
  declare const DappKitButton: ({
818
899
  isDark,
819
900
  gridColumn
820
- }: Props$23) => react_jsx_runtime0.JSX.Element;
901
+ }: Props$22) => react_jsx_runtime0.JSX.Element;
821
902
  //#endregion
822
903
  //#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
823
- type Props$22 = {
904
+ type Props$21 = {
824
905
  isDark: boolean;
825
906
  gridColumn?: number;
826
907
  };
827
908
  declare const VeChainWithPrivyLoginButton: ({
828
909
  isDark,
829
910
  gridColumn
830
- }: Props$22) => react_jsx_runtime0.JSX.Element;
911
+ }: Props$21) => react_jsx_runtime0.JSX.Element;
831
912
  //#endregion
832
913
  //#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
833
- type Props$21 = {
914
+ type Props$20 = {
834
915
  isDark: boolean;
835
916
  gridColumn?: number;
836
917
  };
837
918
  declare const LoginWithGithubButton: ({
838
919
  isDark,
839
920
  gridColumn
840
- }: Props$21) => react_jsx_runtime0.JSX.Element;
921
+ }: Props$20) => react_jsx_runtime0.JSX.Element;
841
922
  //#endregion
842
923
  //#region src/components/ConnectModal/ConnectPopover.d.ts
843
924
  type ConnectPopoverProps = {
@@ -897,17 +978,17 @@ declare const TransactionModal: ({
897
978
  txReceipt,
898
979
  txError,
899
980
  onTryAgain
900
- }: TransactionModalProps) => react_jsx_runtime0.JSX.Element;
981
+ }: TransactionModalProps) => react_jsx_runtime0.JSX.Element | null;
901
982
  //#endregion
902
983
  //#region src/components/TransactionModal/Components/ShareButtons.d.ts
903
- type Props$20 = {
984
+ type Props$19 = {
904
985
  descriptionEncoded: string;
905
986
  url?: string;
906
987
  facebookHashtag?: string;
907
988
  };
908
989
  declare const ShareButtons: ({
909
990
  descriptionEncoded
910
- }: Props$20) => react_jsx_runtime0.JSX.Element;
991
+ }: Props$19) => react_jsx_runtime0.JSX.Element;
911
992
  //#endregion
912
993
  //#region src/components/TransactionModal/TransactionModalContent.d.ts
913
994
  declare const TransactionModalContent: ({
@@ -940,7 +1021,7 @@ declare const TransactionToast: ({
940
1021
  }: TransactionToastProps) => react_jsx_runtime0.JSX.Element | null;
941
1022
  //#endregion
942
1023
  //#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
943
- type Props$19 = {
1024
+ type Props$18 = {
944
1025
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
945
1026
  onClose: () => void;
946
1027
  wallet: Wallet;
@@ -949,7 +1030,7 @@ declare const AccountMainContent: ({
949
1030
  setCurrentContent,
950
1031
  wallet,
951
1032
  onClose
952
- }: Props$19) => react_jsx_runtime0.JSX.Element;
1033
+ }: Props$18) => react_jsx_runtime0.JSX.Element;
953
1034
  //#endregion
954
1035
  //#region src/hooks/api/privy/useFetchAppInfo.d.ts
955
1036
  declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
@@ -1306,7 +1387,7 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
1306
1387
  }, Error>[];
1307
1388
  //#endregion
1308
1389
  //#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
1309
- declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1390
+ declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
1310
1391
  declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
1311
1392
  declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
1312
1393
  //#endregion
@@ -1421,7 +1502,7 @@ type UseWalletReturnType = {
1421
1502
  };
1422
1503
  disconnect: () => Promise<void>;
1423
1504
  };
1424
- declare const useWallet$1: () => UseWalletReturnType;
1505
+ declare const useWallet: () => UseWalletReturnType;
1425
1506
  //#endregion
1426
1507
  //#region src/hooks/api/wallet/useWalletMetadata.d.ts
1427
1508
  declare const useWalletMetadata: (address: string, networkType: NETWORK_TYPE) => {
@@ -1557,7 +1638,7 @@ declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =
1557
1638
  //#region src/hooks/api/ipfs/useUploadImages.d.ts
1558
1639
  declare const imageCompressionOptions: Options;
1559
1640
  declare const compressImages: (images: UploadedImage[]) => Promise<File[]>;
1560
- type Props$18 = {
1641
+ type Props$17 = {
1561
1642
  compressImages?: boolean;
1562
1643
  defaultImages?: UploadedImage[];
1563
1644
  };
@@ -1573,7 +1654,7 @@ type UploadedImage = {
1573
1654
  declare const useUploadImages: ({
1574
1655
  compressImages,
1575
1656
  defaultImages
1576
- }: Props$18) => {
1657
+ }: Props$17) => {
1577
1658
  uploadedImages: UploadedImage[];
1578
1659
  setUploadedImages: react0.Dispatch<react0.SetStateAction<UploadedImage[]>>;
1579
1660
  onUpload: (acceptedFiles: File[], keepCurrent?: boolean) => Promise<void>;
@@ -1582,7 +1663,7 @@ declare const useUploadImages: ({
1582
1663
  };
1583
1664
  //#endregion
1584
1665
  //#region src/hooks/api/ipfs/useSingleImageUpload.d.ts
1585
- type Props$17 = {
1666
+ type Props$16 = {
1586
1667
  compressImage?: boolean;
1587
1668
  defaultImage?: UploadedImage;
1588
1669
  };
@@ -1595,7 +1676,7 @@ type Props$17 = {
1595
1676
  declare const useSingleImageUpload: ({
1596
1677
  compressImage,
1597
1678
  defaultImage
1598
- }: Props$17) => {
1679
+ }: Props$16) => {
1599
1680
  uploadedImage: UploadedImage | undefined;
1600
1681
  setUploadedImage: react0.Dispatch<react0.SetStateAction<UploadedImage | undefined>>;
1601
1682
  onUpload: (acceptedFile: File) => Promise<UploadedImage>;
@@ -1763,7 +1844,7 @@ declare const useSwapQuotes: (fromToken: TokenWithValue | null, toToken: TokenWi
1763
1844
  //#endregion
1764
1845
  //#region src/hooks/modals/useConnectModal.d.ts
1765
1846
  declare const useConnectModal: () => {
1766
- open: () => void;
1847
+ open: (initialContent?: ConnectModalContentsTypes) => void;
1767
1848
  close: () => void;
1768
1849
  isOpen: boolean;
1769
1850
  };
@@ -2029,7 +2110,7 @@ type UseSignTypedDataReturnValue = {
2029
2110
  declare const useSignTypedData: () => UseSignTypedDataReturnValue;
2030
2111
  //#endregion
2031
2112
  //#region src/hooks/login/useLoginWithPasskey.d.ts
2032
- declare const useLoginWithPasskey$1: () => {
2113
+ declare const useLoginWithPasskey: () => {
2033
2114
  loginWithPasskey: () => Promise<void>;
2034
2115
  };
2035
2116
  //#endregion
@@ -2037,7 +2118,7 @@ declare const useLoginWithPasskey$1: () => {
2037
2118
  interface OAuthOptions {
2038
2119
  provider: OAuthProviderType;
2039
2120
  }
2040
- declare const useLoginWithOAuth$1: () => {
2121
+ declare const useLoginWithOAuth: () => {
2041
2122
  initOAuth: ({
2042
2123
  provider
2043
2124
  }: OAuthOptions) => Promise<void>;
@@ -3209,7 +3290,7 @@ declare const SendTokenSummaryContent: ({
3209
3290
  }: SendTokenSummaryContentProps) => react_jsx_runtime0.JSX.Element;
3210
3291
  //#endregion
3211
3292
  //#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
3212
- type Props$16 = {
3293
+ type Props$15 = {
3213
3294
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3214
3295
  onSelectToken: (token: TokenWithValue) => void;
3215
3296
  onBack: () => void;
@@ -3222,18 +3303,18 @@ declare const SelectTokenContent: ({
3222
3303
  onSelectToken,
3223
3304
  onBack,
3224
3305
  showAllTokens
3225
- }: Props$16) => react_jsx_runtime0.JSX.Element;
3306
+ }: Props$15) => react_jsx_runtime0.JSX.Element;
3226
3307
  //#endregion
3227
3308
  //#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
3228
- type Props$15 = {
3309
+ type Props$14 = {
3229
3310
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3230
3311
  };
3231
3312
  declare const ReceiveTokenContent: ({
3232
3313
  setCurrentContent
3233
- }: Props$15) => react_jsx_runtime0.JSX.Element;
3314
+ }: Props$14) => react_jsx_runtime0.JSX.Element;
3234
3315
  //#endregion
3235
3316
  //#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
3236
- type Props$14 = {
3317
+ type Props$13 = {
3237
3318
  setCurrentContent: React$1.Dispatch<React$1.SetStateAction<AccountModalContentTypes>>;
3238
3319
  fromTokenAddress?: string;
3239
3320
  toTokenAddress?: string;
@@ -3242,7 +3323,7 @@ declare const SwapTokenContent: ({
3242
3323
  setCurrentContent,
3243
3324
  fromTokenAddress,
3244
3325
  toTokenAddress
3245
- }: Props$14) => react_jsx_runtime0.JSX.Element;
3326
+ }: Props$13) => react_jsx_runtime0.JSX.Element;
3246
3327
  //#endregion
3247
3328
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
3248
3329
  type ChooseNameContentProps = {
@@ -3364,12 +3445,12 @@ declare const ManageCustomTokenContent: ({
3364
3445
  }: ManageCustomTokenContentProps) => react_jsx_runtime0.JSX.Element;
3365
3446
  //#endregion
3366
3447
  //#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
3367
- type Props$13 = {
3448
+ type Props$12 = {
3368
3449
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3369
3450
  };
3370
3451
  declare const BridgeContent: ({
3371
3452
  setCurrentContent
3372
- }: Props$13) => react_jsx_runtime0.JSX.Element;
3453
+ }: Props$12) => react_jsx_runtime0.JSX.Element;
3373
3454
  //#endregion
3374
3455
  //#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
3375
3456
  type ChangeCurrencyContentProps = {
@@ -3380,20 +3461,20 @@ declare const ChangeCurrencyContent: ({
3380
3461
  }: ChangeCurrencyContentProps) => react_jsx_runtime0.JSX.Element;
3381
3462
  //#endregion
3382
3463
  //#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
3383
- type Props$12 = {
3464
+ type Props$11 = {
3384
3465
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3385
3466
  };
3386
3467
  declare const LanguageSettingsContent: ({
3387
3468
  setCurrentContent
3388
- }: Props$12) => react_jsx_runtime0.JSX.Element;
3469
+ }: Props$11) => react_jsx_runtime0.JSX.Element;
3389
3470
  //#endregion
3390
3471
  //#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
3391
- type Props$11 = {
3472
+ type Props$10 = {
3392
3473
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3393
3474
  };
3394
3475
  declare const GasTokenSettingsContent: ({
3395
3476
  setCurrentContent
3396
- }: Props$11) => react_jsx_runtime0.JSX.Element;
3477
+ }: Props$10) => react_jsx_runtime0.JSX.Element;
3397
3478
  //#endregion
3398
3479
  //#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
3399
3480
  type SettingsContentProps = {
@@ -3464,7 +3545,7 @@ type FailedOperationContentProps = {
3464
3545
  };
3465
3546
  //#endregion
3466
3547
  //#region src/components/AccountModal/Types/Types.d.ts
3467
- type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'bridge' | 'change-currency' | 'change-language' | 'gas-token-settings' | {
3548
+ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'change-currency' | 'change-language' | 'gas-token-settings' | {
3468
3549
  type: 'swap-token';
3469
3550
  props: {
3470
3551
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3522,7 +3603,7 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' |
3522
3603
  };
3523
3604
  //#endregion
3524
3605
  //#region src/components/AccountModal/AccountModal.d.ts
3525
- type Props$10 = {
3606
+ type Props$9 = {
3526
3607
  isOpen: boolean;
3527
3608
  onClose: () => void;
3528
3609
  initialContent?: AccountModalContentTypes;
@@ -3531,7 +3612,7 @@ declare const AccountModal: ({
3531
3612
  isOpen,
3532
3613
  onClose,
3533
3614
  initialContent
3534
- }: Props$10) => react_jsx_runtime0.JSX.Element;
3615
+ }: Props$9) => react_jsx_runtime0.JSX.Element;
3535
3616
  //#endregion
3536
3617
  //#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
3537
3618
  interface AccountDetailsButtonProps {
@@ -3598,7 +3679,7 @@ declare const ActionButton: ({
3598
3679
  }: ActionButtonProps) => react_jsx_runtime0.JSX.Element;
3599
3680
  //#endregion
3600
3681
  //#region src/components/AccountModal/Components/AccountSelector.d.ts
3601
- type Props$9 = {
3682
+ type Props$8 = {
3602
3683
  wallet: Wallet;
3603
3684
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3604
3685
  size?: string;
@@ -3615,7 +3696,7 @@ declare const AccountSelector: ({
3615
3696
  onClose,
3616
3697
  mt,
3617
3698
  style
3618
- }: Props$9) => react_jsx_runtime0.JSX.Element;
3699
+ }: Props$8) => react_jsx_runtime0.JSX.Element;
3619
3700
  //#endregion
3620
3701
  //#region src/components/AccountModal/Components/BalanceSection.d.ts
3621
3702
  declare const BalanceSection: ({
@@ -3629,14 +3710,14 @@ declare const BalanceSection: ({
3629
3710
  }) => react_jsx_runtime0.JSX.Element;
3630
3711
  //#endregion
3631
3712
  //#region src/components/AccountModal/Components/QuickActionsSection.d.ts
3632
- type Props$8 = {
3713
+ type Props$7 = {
3633
3714
  mt?: number;
3634
3715
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3635
3716
  };
3636
3717
  declare const QuickActionsSection: ({
3637
3718
  mt,
3638
3719
  setCurrentContent
3639
- }: Props$8) => react_jsx_runtime0.JSX.Element;
3720
+ }: Props$7) => react_jsx_runtime0.JSX.Element;
3640
3721
  //#endregion
3641
3722
  //#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
3642
3723
  type FeatureAnnouncementCardProps = {
@@ -3665,7 +3746,7 @@ declare const ModalBackButton: ({
3665
3746
  }: BackButtonProps) => react_jsx_runtime0.JSX.Element;
3666
3747
  //#endregion
3667
3748
  //#region src/components/common/AddressDisplay.d.ts
3668
- type Props$7 = {
3749
+ type Props$6 = {
3669
3750
  wallet: Wallet;
3670
3751
  label?: string;
3671
3752
  style?: PropsOf<typeof VStack>;
@@ -3676,29 +3757,32 @@ declare const AddressDisplay: ({
3676
3757
  label,
3677
3758
  style,
3678
3759
  showHumanAddress
3679
- }: Props$7) => react_jsx_runtime0.JSX.Element;
3760
+ }: Props$6) => react_jsx_runtime0.JSX.Element;
3680
3761
  //#endregion
3681
3762
  //#region src/components/common/VersionFooter.d.ts
3682
- type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3763
+ type Props$5 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3683
3764
  declare const VersionFooter: ({
3684
3765
  ...props
3685
- }: Props$6) => react_jsx_runtime0.JSX.Element;
3766
+ }: Props$5) => react_jsx_runtime0.JSX.Element;
3686
3767
  //#endregion
3687
3768
  //#region src/components/common/StickyHeaderContainer.d.ts
3688
- type Props$5 = {
3769
+ type Props$4 = {
3689
3770
  children: React.ReactNode;
3690
3771
  };
3772
+ declare const useStickyHeaderContext: () => {
3773
+ hasContentBelow: boolean;
3774
+ };
3691
3775
  declare const StickyHeaderContainer: ({
3692
3776
  children
3693
- }: Props$5) => react_jsx_runtime0.JSX.Element;
3777
+ }: Props$4) => react_jsx_runtime0.JSX.Element;
3694
3778
  //#endregion
3695
3779
  //#region src/components/common/StickyFooterContainer.d.ts
3696
- type Props$4 = {
3780
+ type Props$3 = {
3697
3781
  children: React.ReactNode;
3698
3782
  };
3699
3783
  declare const StickyFooterContainer: ({
3700
3784
  children
3701
- }: Props$4) => react_jsx_runtime0.JSX.Element;
3785
+ }: Props$3) => react_jsx_runtime0.JSX.Element;
3702
3786
  //#endregion
3703
3787
  //#region src/components/common/BaseModal.d.ts
3704
3788
  type BaseModalProps = {
@@ -3716,6 +3800,19 @@ type BaseModalProps = {
3716
3800
  allowExternalFocus?: boolean;
3717
3801
  backdropFilter?: string;
3718
3802
  isCloseable?: boolean;
3803
+ /**
3804
+ * Whether to use bottom sheet on mobile devices.
3805
+ * When false (default), uses regular modal on all screen sizes.
3806
+ * When true, uses bottom sheet on mobile (< 768px) and regular modal on desktop.
3807
+ */
3808
+ useBottomSheetOnMobile?: boolean;
3809
+ /**
3810
+ * Minimum and maximum height for the modal on mobile devices.
3811
+ */
3812
+ mobileMinHeight?: string;
3813
+ mobileMaxHeight?: string;
3814
+ desktopMinHeight?: string;
3815
+ desktopMaxHeight?: string;
3719
3816
  };
3720
3817
  declare const BaseModal: ({
3721
3818
  isOpen,
@@ -3728,7 +3825,12 @@ declare const BaseModal: ({
3728
3825
  blockScrollOnMount,
3729
3826
  allowExternalFocus,
3730
3827
  backdropFilter,
3731
- isCloseable
3828
+ isCloseable,
3829
+ useBottomSheetOnMobile,
3830
+ mobileMinHeight,
3831
+ mobileMaxHeight,
3832
+ desktopMinHeight,
3833
+ desktopMaxHeight
3732
3834
  }: BaseModalProps) => react_jsx_runtime0.JSX.Element;
3733
3835
  //#endregion
3734
3836
  //#region src/components/common/AssetButton.d.ts
@@ -3752,7 +3854,6 @@ declare const AssetButton: ({
3752
3854
  //#endregion
3753
3855
  //#region src/components/common/AddressDisplayCard.d.ts
3754
3856
  type AddressDisplayCardProps = {
3755
- label: string;
3756
3857
  address: string;
3757
3858
  domain?: string;
3758
3859
  imageSrc: string;
@@ -3762,7 +3863,6 @@ type AddressDisplayCardProps = {
3762
3863
  tokenAddress?: string;
3763
3864
  };
3764
3865
  declare const AddressDisplayCard: ({
3765
- label,
3766
3866
  address,
3767
3867
  domain,
3768
3868
  imageSrc,
@@ -3886,38 +3986,6 @@ declare const GasFeeTokenSelector: ({
3886
3986
  walletAddress
3887
3987
  }: GasFeeTokenSelectorProps) => react_jsx_runtime0.JSX.Element;
3888
3988
  //#endregion
3889
- //#region src/components/LoginLoadingModal/LoginLoadingModal.d.ts
3890
- type LoginLoadingModalProps = {
3891
- isOpen: boolean;
3892
- onClose: () => void;
3893
- error?: string;
3894
- title?: string;
3895
- loadingText?: string;
3896
- onTryAgain?: () => void;
3897
- };
3898
- declare const LoginLoadingModal: ({
3899
- isOpen,
3900
- onClose,
3901
- error,
3902
- title,
3903
- loadingText,
3904
- onTryAgain
3905
- }: LoginLoadingModalProps) => react_jsx_runtime0.JSX.Element;
3906
- //#endregion
3907
- //#region src/components/EcosystemModal/EcosystemModal.d.ts
3908
- type Props$3 = {
3909
- isOpen: boolean;
3910
- onClose: () => void;
3911
- appsInfo: PrivyAppInfo[];
3912
- isLoading: boolean;
3913
- };
3914
- declare const EcosystemModal: ({
3915
- isOpen,
3916
- onClose,
3917
- appsInfo,
3918
- isLoading
3919
- }: Props$3) => react_jsx_runtime0.JSX.Element;
3920
- //#endregion
3921
3989
  //#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
3922
3990
  type SuccessfulOperationContentProps = {
3923
3991
  setCurrentContent: React.Dispatch<React.SetStateAction<UpgradeSmartAccountModalContentsTypes>>;
@@ -3980,9 +4048,11 @@ type AccountModalOptions = {
3980
4048
  isolatedView?: boolean;
3981
4049
  };
3982
4050
  type ModalContextType = {
3983
- openConnectModal: () => void;
4051
+ openConnectModal: (initialContent?: ConnectModalContentsTypes) => void;
3984
4052
  closeConnectModal: () => void;
3985
4053
  isConnectModalOpen: boolean;
4054
+ connectModalContent: ConnectModalContentsTypes;
4055
+ setConnectModalContent: React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
3986
4056
  openAccountModal: (content?: AccountModalContentTypes, options?: AccountModalOptions) => void;
3987
4057
  closeAccountModal: () => void;
3988
4058
  isAccountModalOpen: boolean;
@@ -4049,5 +4119,5 @@ type AppConfig = {
4049
4119
  };
4050
4120
  declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
4051
4121
  //#endregion
4052
- export { ManageCustomTokenContentProps as $, getErc20BalanceQueryKey as $a, useSendTokenModal as $i, useScrollToTop as $n, AccountMainContent as $o, leftPadWithZeros as $r, GasTokenPreferences as $s, useUpgradeRequired as $t, ModalBackButton as A, useXAppsShares as Aa, useSignTypedData as Ai, useGasTokenSelection as An, getTextRecordsQueryKey as Ao, isInvalid as Ar, usePrivyWalletProvider as As, useTxReceipt as At, AccountModal as B, useRefreshBalances as Ba, ReceiveModalProvider as Bi, useEcosystemShortcuts as Bn, useIsDomainProtected as Bo, XNodeStrengthLevelToName as Br, LegalDocumentSource as Bs, getAllEventLogs as Bt, AddressDisplayCard as C, getIpfsImageQueryKey as Ca, AppHubApp as Ci, getAccountBalance as Cn, getAvatarOfAddressQueryKey as Co, ViewFunctionResult as Cr, LegalDocumentsProvider as Cs, useDAppKitWallet as Ct, StickyHeaderContainer as D, getIpfsMetadataQueryKey as Da, useLoginWithVeChain as Di, useEstimateAllTokens as Dn, buildClauses as Do, isValidUrl as Dr, useVechainKitThemeConfig as Ds, useSetWalletRecovery as Dt, StickyFooterContainer as E, getIpfsMetadata as Ea, useAppHubApps as Ei, UseEstimateAllTokensParams as En, useGetResolverAddress as Eo, executeMultipleClausesCall as Er, VechainKitThemeProvider as Es, usePrivy$1 as Et, QuickActionsSection as F, UseWalletReturnType as Fa, ProfileModalProvider as Fi, getDepositAccount as Fn, DomainsResponse as Fo, isRejectionError as Fr, VeChainKitProvider as Fs, buildERC20Clauses as Ft, SettingsContent as G, useIsPerson as Ga, useFAQModal as Gi, buildBatchAuthorizationTypedData as Gn, useEnsRecordExists as Go, convertUriToUrl as Gr, EstimationResponse as Gs, currentBlockQueryKey as Gt, DisconnectConfirmContent as H, XApp as Ha, AccountCustomizationModalProvider as Hi, LocalStorageKey as Hn, useClaimVetDomain as Ho, buildQueryString as Hr, CostLevel as Hs, getChainId as Ht, BalanceSection as I, useWallet$1 as Ia, useProfileModal as Ii, signVip191Transaction as In, getDomainsOfAddress as Io, TIME as Ir, VechainKitProviderProps as Is, useTransferERC20 as It, LanguageSettingsContent as J, PRICE_FEED_IDS as Ja, ExploreEcosystemModalProvider as Ji, GetEventsKeyParams as Jn, fetchPrivyStatus as Jo, uploadBlobToIPFS as Jr, VthoPerGasAtSpeed as Js, getUpgradeRequiredForAccount as Jt, SettingsContentProps as K, getVot3BalanceQueryKey as Ka, NotificationsModalProvider as Ki, buildSingleAuthorizationTypedData as Kn, getVechainDomainQueryKey as Ko, resolveMediaTypeFromMimeType as Kr, Rate as Ks, useCurrentBlock as Kt, AccountSelector as L, getRoundXAppsQueryKey as La, UpgradeSmartAccountModalProvider as Li, useGenericDelegator as Ln, getDomainsOfAddressQueryKey as Lo, EconomicNodeStrengthLevelToName as Lr, useVeChainKitConfig as Ls, UseSendTransactionReturnValue as Lt, DomainRequiredAlert as M, getXAppMetadata as Ma, useNotificationAlerts as Mi, delegateAuthorized as Mn, getAvatarQueryKey as Mo, normalize as Mr, LegalDocumentOptions as Ms, useBuildTransaction as Mt, ExchangeWarningAlert as N, useXAppMetadata as Na, useNotifications as Ni, estimateAndBuildTxBody as Nn, useGetAvatar as No, removePrefix as Nr, VeChainKitConfig as Ns, buildVETClauses as Nt, VersionFooter as O, useIpfsMetadata as Oa, useLoginWithOAuth$1 as Oi, useGenericDelegatorFeeEstimation as On, useUpdateTextRecord as Oo, addPrefix as Or, PrivyWalletProvider as Os, useThor$1 as Ot, FeatureAnnouncementCard as P, useWalletMetadata as Pa, useAccountModalOptions as Pi, estimateGas as Pn, Domain as Po, validate as Pr, VeChainKitContext as Ps, useTransferVET as Pt, ManageCustomTokenContent as Q, useGetTokenUsdPrice as Qa, SendTokenModalProvider as Qi, useEvents as Qn, useFetchAppInfo as Qo, isValidAddress as Qr, GasTokenInfo as Qs, getUpgradeRequiredQueryKey as Qt, ActionButton as R, useRoundXApps as Ra, useUpgradeSmartAccountModal as Ri, useCrossAppConnectionCache as Rn, useGetDomainsOfAddress as Ro, MinXNodeLevel as Rr, EnrichedLegalDocument as Rs, useSendTransaction as Rt, ModalFAQButton as S, getIpfsImage as Sa, notFoundImage as Si, useAccountImplementationAddress as Sn, useGetAvatarLegacy as So, MultipleClausesCallReturnType as Sr, ConnectModalContentsTypes as Ss, ThorClient$1 as St, BaseModal as T, useIpfsImageList as Ta, getAppHubAppsQueryKey as Ti, useAccountBalance as Tn, getResolverAddressQueryKey as To, executeCallClause as Tr, ColorModeSync as Ts, useMfaEnrollment as Tt, DisconnectConfirmContentProps as U, useMostVotedAppsInRound as Ua, useAccountCustomizationModal as Ui, useLocalStorage as Un, useClaimVeWorldSubdomain as Uo, gmNfts as Ur, DepositAccount as Us, getChainIdQueryKey as Ut, AccountModalContentTypes as V, MostVotedAppsInRoundReturnType as Va, useReceiveModal as Vi, useSyncableLocalStorage as Vn, buildVetDomainClauses as Vo, allNodeStrengthLevelToName as Vr, LegalDocumentType as Vs, getEventLogs as Vt, TermsAndPrivacyContent as W, getIsPersonQueryKey as Wa, FAQModalProvider as Wi, BuildClausesParams as Wn, getEnsRecordExistsQueryKey as Wo, xNodeToGMstartingLevel as Wr, EstimatedGas as Ws, useGetChainId as Wt, ChangeCurrencyContentProps as X, getTokenUsdPrice as Xa, SwapTokenModalProvider as Xi, decodeEventLog$1 as Xn, fetchPrivyAppInfo as Xo, compareAddresses as Xr, formatGasCost as Xs, useUpgradeRequiredForAccount as Xt, ChangeCurrencyContent as Y, SupportedToken as Ya, useExploreEcosystemModal as Yi, UseEventsParams as Yn, useFetchPrivyStatus as Yo, validateIpfsUri as Yr, calculateTotalCost as Ys, getUpgradeRequiredForAccountQueryKey as Yt, BridgeContent as Z, getTokenUsdPriceQueryKey as Za, useSwapTokenModal as Zi, getEventsKey as Zn, getPrivyAppInfoQueryKey as Zo, compareListOfAddresses as Zr, GasTokenEstimate as Zs, getUpgradeRequired as Zt, ModalNotificationButton as _, imageCompressionOptions as _a, TokenBalance as _c, VECHAIN_KIT_STORAGE_KEYS as _i, getCurrentAccountImplementationVersion as _n, WalletTokenBalance as _o, removeLocalStorageItem as _r, VeChainLoginButton as _s, SwapTokenContent as _t, useModal as a, useTransactionToast as aa, CURRENCY as ac, humanDomain as ai, useRefreshFactoryQueries as an, getCustomTokenBalanceQueryKey as ao, useCurrency as ar, SocialIcons as as, ProfileContentProps as at, AccountAvatar as b, IpfsImage as ba, VePassportUserStatus as bc, getENV as bi, getAccountImplementationAddress as bn, getAvatarLegacy as bo, setLocalStorageItem as br, MainContent as bs, SendTokenSummaryContent as bt, LegalDocumentsModal as c, AccountModalProvider as ca, CrossAppConnectionCache as cc, DEFAULT_GAS_TOKEN_PREFERENCES as ci, useIsSmartAccountDeployed as cn, useGetB3trBalance as co, useCallClause as cr, WalletDisplayVariant as cs, AccountCustomizationContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useConnectModal as da, ExecuteBatchWithAuthorizationSignData as dc, PrivyEcosystemApp as di, useHasV1SmartAccount as dn, useCurrentAllocationsRoundId as do, getDocumentTitle as dr, VeChainWithPrivyLoginButton as ds, ChooseNameSummaryContent as dt, ChooseNameModalProvider as ea, GasTokenSelection as ec, regexPattern as ei, SmartAccountReturnType as en, useGetErc20Balance as eo, useIsPWA as er, TransactionToast as es, AssetsContent as et, UpgradeSmartAccountModalStyle as f, useSwapQuotes as fa, ExecuteWithAuthorizationSignData as fc, SUPPORTED_GAS_TOKENS as fi, getAccountVersionQueryKey as fn, useTotalBalance as fo, getLocalStorageItem as fr, DappKitButton as fs, ChooseNameSummaryContentProps as ft, GasFeeSummary as g, compressImages as ga, SmartAccount as gc, VECHAIN_KIT_COOKIES_CONFIG as gi, useGetAccountAddress as gn, useTokenPrices as go, isOnline as gr, EcosystemButton as gs, ChooseNameContentProps as gt, GasFeeTokenSelector as h, UploadedImage as ha, PrivyLoginMethod as hc, TogglePassportCheck as hi, getAccountAddressQueryKey as hn, ExchangeRates as ho, isBrowser as hr, PrivyButton as hs, ChooseNameContent as ht, ModalProvider as i, TransactionToastProvider as ia, TextRecords as ic, humanAddress as ii, useRefreshSmartAccountQueries as in, TokenWithBalance as io, useCurrentLanguage as ir, TransactionModalProps as is, ProfileContent as it, CrossAppConnectionSecurityCard as j, XAppMetadata as ja, useSignMessage as ji, decodeRawTx as jn, useGetTextRecords as jo, isValid as jr, LegalDocument as js, BuildTransactionProps as jt, AddressDisplay as k, getXAppsSharesQueryKey as ka, useLoginWithPasskey$1 as ki, useGenericDelegatorFeeEstimationParams as kn, getTextRecords as ko, compare as kr, PrivyWalletProviderContextType as ks, txReceiptQueryKey as kt, LegalDocumentsModalContentsTypes as l, useAccountModal as la, ENSRecords as lc, DEFAULT_PRIVY_ECOSYSTEM_APPS as li, getHasV1SmartAccount as ln, useCustomTokens as lo, useMultipleClausesCall as lr, ConnectPopover as ls, CustomizationContent as lt, LoginLoadingModal as m, useSingleImageUpload as ma, PrivyAppInfo as mc, TOKEN_LOGO_COMPONENTS as mi, getAccountAddress as mn, useTokensWithValues as mo, hasNavigator as mr, LoginWithGoogleButton as ms, ChooseNameSearchContentProps as mt, getConfig as n, WalletModalProvider as na, TransactionSpeed as nc, formatTokenBalance as ni, getSmartAccountQueryKey as nn, getTokenInfo$1 as no, useFeatureAnnouncement as nr, ShareButtons as ns, UpgradeSmartAccountContent as nt, DAppKitWalletButton as o, TransactionModalProvider as oa, CURRENCY_SYMBOLS as oc, humanNumber as oi, getIsDeployed as on, useGetCustomTokenBalances as oo, getCallClauseQueryKey as or, WalletButton as os, CustomizationSummaryContent as ot, EcosystemModal as p, useSwapTransaction as pa, NFTMediaType as pc, TOKEN_LOGOS as pi, useGetAccountVersion as pn, TokenWithValue as po, getWindowOrigin as pr, PasskeyLoginButton as ps, ChooseNameSearchContent as pt, GasTokenSettingsContent as q, useGetVot3Balance as qa, useNotificationsModal as qi, useBuildClauses as qn, useVechainDomain as qo, toIPFSURL as qr, TransactionCost as qs, useUpgradeSmartAccount as qt, AccountModalOptions as r, useWalletModal as ra, ENS_TEXT_RECORDS as rc, getPicassoImage as ri, useSmartAccount as rn, useGetCustomTokenInfo as ro, useCurrentCurrency as rr, TransactionModal as rs, UpgradeSmartAccountContentProps as rt, LegalDocumentItem as s, useTransactionModal as sa, ConnectionSource as sc, isZero as si, getIsDeployedQueryKey as sn, getB3trBalanceQueryKey as so, getCallClauseQueryKeyWithArgs as sr, WalletButtonProps as ss, CustomizationSummaryContentProps as st, AppConfig as t, useChooseNameModal as ta, GasTokenType as tc, randomTransactionUser as ti, getSmartAccount as tn, getCustomTokenInfoQueryKey as to, useGetNodeUrl as tr, TransactionModalContent as ts, AssetsContentProps as tt, UpgradeSmartAccountModal as u, ConnectModalProvider as ua, EnhancedClause as uc, ENV as ui, getHasV1SmartAccountQueryKey as un, getCurrentAllocationsRoundIdQueryKey as uo, copyToClipboard as ur, LoginWithGithubButton as us, FAQContent as ut, TransactionButtonAndStatus as v, useUploadImages as va, TransactionStatus as vc, VECHAIN_KIT_TERMS_CONFIG as vi, getCurrentAccountImplementationVersionQueryKey as vn, useTokenBalances as vo, safeQuerySelector as vr, EmailLoginButton as vs, ReceiveTokenContent as vt, AssetButton as w, useIpfsImage as wa, fetchAppHubApps as wi, getAccountBalanceQueryKey as wn, useGetAvatarOfAddress as wo, buildCallClauses as wr, useLegalDocuments as ws, useDAppKitWalletModal as wt, ScrollToTopWrapper as x, MAX_IMAGE_SIZE as xa, Wallet as xc, getGenericDelegatorUrl as xi, getAccountImplementationAddressQueryKey as xn, getAvatarLegacyQueryKey as xo, MultipleClausesCallParameters as xr, ConnectModal as xs, SendTokenContent as xt, TransactionButtonAndStatusProps as y, useIpfsMetadatas as ya, TransactionStatusErrorType as yc, VECHAIN_PRIVY_APP_ID as yi, useCurrentAccountImplementationVersion as yn, useUnsetDomain as yo, safeWindowOpen as yr, ConnectionButton as ys, SelectTokenContent as yt, AccountDetailsButton as z, useRefreshMetadata as za, useLoginModalContent as zi, EcosystemShortcut as zn, getIsDomainProtectedQueryKey as zo, NodeStrengthLevelToImage as zr, LegalDocumentAgreement as zs, GetEventsProps as zt };
4053
- //# sourceMappingURL=index-w9zDQB56.d.mts.map
4122
+ export { AssetsContent as $, useGetErc20Balance as $a, ChooseNameModalProvider as $i, useIsPWA as $n, TransactionToast as $o, regexPattern as $r, GasTokenEstimate as $s, SmartAccountReturnType as $t, CrossAppConnectionSecurityCard as A, XAppMetadata as Aa, useSignMessage as Ai, decodeRawTx as An, useGetTextRecords as Ao, isValid as Ar, PrivyWalletProvider as As, BuildTransactionProps as At, AccountModalContentTypes as B, MostVotedAppsInRoundReturnType as Ba, useReceiveModal as Bi, useSyncableLocalStorage as Bn, buildVetDomainClauses as Bo, allNodeStrengthLevelToName as Br, EnrichedLegalDocument as Bs, getEventLogs as Bt, BaseModal as C, useIpfsImage as Ca, Wallet as Cc, fetchAppHubApps as Ci, getAccountBalanceQueryKey as Cn, useGetAvatarOfAddress as Co, buildCallClauses as Cr, ConnectModal as Cs, useDAppKitWalletModal as Ct, VersionFooter as D, useIpfsMetadata as Da, useLoginWithOAuth as Di, useGenericDelegatorFeeEstimation as Dn, useUpdateTextRecord as Do, addPrefix as Dr, ColorModeSync as Ds, useThor as Dt, useStickyHeaderContext as E, getIpfsMetadataQueryKey as Ea, useLoginWithVeChain as Ei, useEstimateAllTokens as En, buildClauses as Eo, isValidUrl as Er, useLegalDocuments as Es, useSetWalletRecovery as Et, BalanceSection as F, useWallet as Fa, useProfileModal as Fi, signVip191Transaction as Fn, getDomainsOfAddress as Fo, TIME as Fr, VeChainKitConfig as Fs, useTransferERC20 as Ft, SettingsContentProps as G, getVot3BalanceQueryKey as Ga, NotificationsModalProvider as Gi, buildSingleAuthorizationTypedData as Gn, getVechainDomainQueryKey as Go, resolveMediaTypeFromMimeType as Gr, DepositAccount as Gs, useCurrentBlock as Gt, DisconnectConfirmContentProps as H, useMostVotedAppsInRound as Ha, useAccountCustomizationModal as Hi, useLocalStorage as Hn, useClaimVeWorldSubdomain as Ho, gmNfts as Hr, LegalDocumentSource as Hs, getChainIdQueryKey as Ht, AccountSelector as I, getRoundXAppsQueryKey as Ia, UpgradeSmartAccountModalProvider as Ii, useGenericDelegator as In, getDomainsOfAddressQueryKey as Io, EconomicNodeStrengthLevelToName as Ir, VeChainKitContext as Is, UseSendTransactionReturnValue as It, ChangeCurrencyContent as J, SupportedToken as Ja, useExploreEcosystemModal as Ji, UseEventsParams as Jn, useFetchPrivyStatus as Jo, validateIpfsUri as Jr, Rate as Js, getUpgradeRequiredForAccountQueryKey as Jt, GasTokenSettingsContent as K, useGetVot3Balance as Ka, useNotificationsModal as Ki, useBuildClauses as Kn, useVechainDomain as Ko, toIPFSURL as Kr, EstimatedGas as Ks, useUpgradeSmartAccount as Kt, ActionButton as L, useRoundXApps as La, useUpgradeSmartAccountModal as Li, useCrossAppConnectionCache as Ln, useGetDomainsOfAddress as Lo, MinXNodeLevel as Lr, VeChainKitProvider as Ls, useSendTransaction as Lt, ExchangeWarningAlert as M, useXAppMetadata as Ma, useNotifications as Mi, estimateAndBuildTxBody as Mn, useGetAvatar as Mo, removePrefix as Mr, usePrivyWalletProvider as Ms, buildVETClauses as Mt, FeatureAnnouncementCard as N, useWalletMetadata as Na, useAccountModalOptions as Ni, estimateGas as Nn, Domain as No, validate as Nr, LegalDocument as Ns, useTransferVET as Nt, AddressDisplay as O, getXAppsSharesQueryKey as Oa, useLoginWithPasskey as Oi, useGenericDelegatorFeeEstimationParams as On, getTextRecords as Oo, compare as Or, VechainKitThemeProvider as Os, txReceiptQueryKey as Ot, QuickActionsSection as P, UseWalletReturnType as Pa, ProfileModalProvider as Pi, getDepositAccount as Pn, DomainsResponse as Po, isRejectionError as Pr, LegalDocumentOptions as Ps, buildERC20Clauses as Pt, ManageCustomTokenContentProps as Q, getErc20BalanceQueryKey as Qa, useSendTokenModal as Qi, useScrollToTop as Qn, AccountMainContent as Qo, leftPadWithZeros as Qr, formatGasCost as Qs, useUpgradeRequired as Qt, AccountDetailsButton as R, useRefreshMetadata as Ra, useLoginModalContent as Ri, EcosystemShortcut as Rn, getIsDomainProtectedQueryKey as Ro, NodeStrengthLevelToImage as Rr, VechainKitProviderProps as Rs, GetEventsProps as Rt, AssetButton as S, getIpfsImageQueryKey as Sa, VePassportUserStatus as Sc, AppHubApp as Si, getAccountBalance as Sn, getAvatarOfAddressQueryKey as So, ViewFunctionResult as Sr, MainContent as Ss, useDAppKitWallet as St, StickyHeaderContainer as T, getIpfsMetadata as Ta, useAppHubApps as Ti, UseEstimateAllTokensParams as Tn, useGetResolverAddress as To, executeMultipleClausesCall as Tr, LegalDocumentsProvider as Ts, usePrivy as Tt, TermsAndPrivacyContent as U, getIsPersonQueryKey as Ua, FAQModalProvider as Ui, BuildClausesParams as Un, getEnsRecordExistsQueryKey as Uo, xNodeToGMstartingLevel as Ur, LegalDocumentType as Us, useGetChainId as Ut, DisconnectConfirmContent as V, XApp as Va, AccountCustomizationModalProvider as Vi, LocalStorageKey as Vn, useClaimVetDomain as Vo, buildQueryString as Vr, LegalDocumentAgreement as Vs, getChainId as Vt, SettingsContent as W, useIsPerson as Wa, useFAQModal as Wi, buildBatchAuthorizationTypedData as Wn, useEnsRecordExists as Wo, convertUriToUrl as Wr, CostLevel as Ws, currentBlockQueryKey as Wt, BridgeContent as X, getTokenUsdPriceQueryKey as Xa, useSwapTokenModal as Xi, getEventsKey as Xn, getPrivyAppInfoQueryKey as Xo, compareListOfAddresses as Xr, VthoPerGasAtSpeed as Xs, getUpgradeRequired as Xt, ChangeCurrencyContentProps as Y, getTokenUsdPrice as Ya, SwapTokenModalProvider as Yi, decodeEventLog$1 as Yn, fetchPrivyAppInfo as Yo, compareAddresses as Yr, TransactionCost as Ys, useUpgradeRequiredForAccount as Yt, ManageCustomTokenContent as Z, useGetTokenUsdPrice as Za, SendTokenModalProvider as Zi, useEvents as Zn, useFetchAppInfo as Zo, isValidAddress as Zr, calculateTotalCost as Zs, getUpgradeRequiredQueryKey as Zt, TransactionButtonAndStatusProps as _, useUploadImages as _a, PrivyLoginMethod as _c, VECHAIN_KIT_TERMS_CONFIG as _i, getCurrentAccountImplementationVersionQueryKey as _n, useTokenBalances as _o, safeQuerySelector as _r, EmailLoginButton as _s, ReceiveTokenContent as _t, useModal as a, TransactionModalProvider as aa, ENS_TEXT_RECORDS as ac, humanNumber as ai, getIsDeployed as an, useGetCustomTokenBalances as ao, getCallClauseQueryKey as ar, WalletButton as as, CustomizationSummaryContent as at, ModalFAQButton as b, MAX_IMAGE_SIZE as ba, TransactionStatus as bc, getGenericDelegatorUrl as bi, getAccountImplementationAddressQueryKey as bn, getAvatarLegacyQueryKey as bo, MultipleClausesCallParameters as br, ErrorContent as bs, SendTokenContent as bt, LegalDocumentsModal as c, useAccountModal as ca, CURRENCY_SYMBOLS as cc, DEFAULT_PRIVY_ECOSYSTEM_APPS as ci, getHasV1SmartAccount as cn, useCustomTokens as co, useMultipleClausesCall as cr, ConnectPopover as cs, CustomizationContent as ct, UpgradeSmartAccountModalContentsTypes as d, useSwapQuotes as da, ENSRecords as dc, SUPPORTED_GAS_TOKENS as di, getAccountVersionQueryKey as dn, useTotalBalance as do, getLocalStorageItem as dr, DappKitButton as ds, ChooseNameSummaryContentProps as dt, useChooseNameModal as ea, GasTokenInfo as ec, randomTransactionUser as ei, getSmartAccount as en, getCustomTokenInfoQueryKey as eo, useGetNodeUrl as er, TransactionModalContent as es, AssetsContentProps as et, UpgradeSmartAccountModalStyle as f, useSwapTransaction as fa, EnhancedClause as fc, TOKEN_LOGOS as fi, useGetAccountVersion as fn, TokenWithValue as fo, getWindowOrigin as fr, PasskeyLoginButton as fs, ChooseNameSearchContent as ft, TransactionButtonAndStatus as g, imageCompressionOptions as ga, PrivyAppInfo as gc, VECHAIN_KIT_STORAGE_KEYS as gi, getCurrentAccountImplementationVersion as gn, WalletTokenBalance as go, removeLocalStorageItem as gr, VeChainLoginButton as gs, SwapTokenContent as gt, ModalNotificationButton as h, compressImages as ha, NFTMediaType as hc, VECHAIN_KIT_COOKIES_CONFIG as hi, useGetAccountAddress as hn, useTokenPrices as ho, isOnline as hr, EcosystemButton as hs, ChooseNameContentProps as ht, ModalProvider as i, useTransactionToast as ia, TransactionSpeed as ic, humanDomain as ii, useRefreshFactoryQueries as in, getCustomTokenBalanceQueryKey as io, useCurrency as ir, SocialIcons as is, ProfileContentProps as it, DomainRequiredAlert as j, getXAppMetadata as ja, useNotificationAlerts as ji, delegateAuthorized as jn, getAvatarQueryKey as jo, normalize as jr, PrivyWalletProviderContextType as js, useBuildTransaction as jt, ModalBackButton as k, useXAppsShares as ka, useSignTypedData as ki, useGasTokenSelection as kn, getTextRecordsQueryKey as ko, isInvalid as kr, useVechainKitThemeConfig as ks, useTxReceipt as kt, LegalDocumentsModalContentsTypes as l, ConnectModalProvider as la, ConnectionSource as lc, ENV as li, getHasV1SmartAccountQueryKey as ln, getCurrentAllocationsRoundIdQueryKey as lo, copyToClipboard as lr, LoginWithGithubButton as ls, FAQContent as lt, GasFeeSummary as m, UploadedImage as ma, ExecuteWithAuthorizationSignData as mc, TogglePassportCheck as mi, getAccountAddressQueryKey as mn, ExchangeRates as mo, isBrowser as mr, PrivyButton as ms, ChooseNameContent as mt, getConfig as n, useWalletModal as na, GasTokenSelection as nc, getPicassoImage as ni, useSmartAccount as nn, useGetCustomTokenInfo as no, useCurrentCurrency as nr, TransactionModal as ns, UpgradeSmartAccountContentProps as nt, DAppKitWalletButton as o, useTransactionModal as oa, TextRecords as oc, isZero as oi, getIsDeployedQueryKey as on, getB3trBalanceQueryKey as oo, getCallClauseQueryKeyWithArgs as or, WalletButtonProps as os, CustomizationSummaryContentProps as ot, GasFeeTokenSelector as p, useSingleImageUpload as pa, ExecuteBatchWithAuthorizationSignData as pc, TOKEN_LOGO_COMPONENTS as pi, getAccountAddress as pn, useTokensWithValues as po, hasNavigator as pr, LoginWithGoogleButton as ps, ChooseNameSearchContentProps as pt, LanguageSettingsContent as q, PRICE_FEED_IDS as qa, ExploreEcosystemModalProvider as qi, GetEventsKeyParams as qn, fetchPrivyStatus as qo, uploadBlobToIPFS as qr, EstimationResponse as qs, getUpgradeRequiredForAccount as qt, AccountModalOptions as r, TransactionToastProvider as ra, GasTokenType as rc, humanAddress as ri, useRefreshSmartAccountQueries as rn, TokenWithBalance as ro, useCurrentLanguage as rr, TransactionModalProps as rs, ProfileContent as rt, LegalDocumentItem as s, AccountModalProvider as sa, CURRENCY as sc, DEFAULT_GAS_TOKEN_PREFERENCES as si, useIsSmartAccountDeployed as sn, useGetB3trBalance as so, useCallClause as sr, WalletDisplayVariant as ss, AccountCustomizationContentProps as st, AppConfig as t, WalletModalProvider as ta, GasTokenPreferences as tc, formatTokenBalance as ti, getSmartAccountQueryKey as tn, getTokenInfo as to, useFeatureAnnouncement as tr, ShareButtons as ts, UpgradeSmartAccountContent as tt, UpgradeSmartAccountModal as u, useConnectModal as ua, CrossAppConnectionCache as uc, PrivyEcosystemApp as ui, useHasV1SmartAccount as un, useCurrentAllocationsRoundId as uo, getDocumentTitle as ur, VeChainWithPrivyLoginButton as us, ChooseNameSummaryContent as ut, AccountAvatar as v, useIpfsMetadatas as va, SmartAccount as vc, VECHAIN_PRIVY_APP_ID as vi, useCurrentAccountImplementationVersion as vn, useUnsetDomain as vo, safeWindowOpen as vr, ConnectionButton as vs, SelectTokenContent as vt, StickyFooterContainer as w, useIpfsImageList as wa, getAppHubAppsQueryKey as wi, useAccountBalance as wn, getResolverAddressQueryKey as wo, executeCallClause as wr, ConnectModalContentsTypes as ws, useMfaEnrollment as wt, AddressDisplayCard as x, getIpfsImage as xa, TransactionStatusErrorType as xc, notFoundImage as xi, useAccountImplementationAddress as xn, useGetAvatarLegacy as xo, MultipleClausesCallReturnType as xr, LoadingContent as xs, ThorClient$1 as xt, ScrollToTopWrapper as y, IpfsImage as ya, TokenBalance as yc, getENV as yi, getAccountImplementationAddress as yn, getAvatarLegacy as yo, setLocalStorageItem as yr, EcosystemContent as ys, SendTokenSummaryContent as yt, AccountModal as z, useRefreshBalances as za, ReceiveModalProvider as zi, useEcosystemShortcuts as zn, useIsDomainProtected as zo, XNodeStrengthLevelToName as zr, useVeChainKitConfig as zs, getAllEventLogs as zt };
4123
+ //# sourceMappingURL=index-5_zBNaxA.d.cts.map