@vechain/vechain-kit 2.3.0 → 2.4.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.
@@ -6,7 +6,7 @@ import * as _vechain_sdk_network0 from "@vechain/sdk-network";
6
6
  import { CompressedBlockDetail, EventLogs, FilterEventLogsOptions, ThorClient, ThorClient as ThorClient$1, TransactionReceipt } from "@vechain/sdk-network";
7
7
  import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy, useSetWalletRecovery } from "@privy-io/react-auth";
8
8
  import * as _vechain_sdk_core0 from "@vechain/sdk-core";
9
- import { Address, Certificate, CertificateData, Clause, Transaction, TransactionClause } from "@vechain/sdk-core";
9
+ import { Address, Certificate, CertificateData, Clause, Revision, Transaction, TransactionClause } from "@vechain/sdk-core";
10
10
  import { LogLevel, WalletSource } from "@vechain/dapp-kit";
11
11
  import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
12
12
  import { CustomizedStyle, I18n, SourceInfo } from "@vechain/dapp-kit-ui";
@@ -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): "main" | "test" | "solo" | undefined;
56
+ which(gid: string): "test" | "main" | "solo" | undefined;
57
57
  };
58
58
  //#endregion
59
59
  //#region src/types/types.d.ts
@@ -676,7 +676,7 @@ declare const PrivyWalletProvider: ({
676
676
  declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
677
677
  //#endregion
678
678
  //#region src/providers/VechainKitThemeProvider.d.ts
679
- type Props$32 = {
679
+ type Props$35 = {
680
680
  children: ReactNode;
681
681
  darkMode?: boolean;
682
682
  theme?: VechainKitThemeConfig;
@@ -695,10 +695,10 @@ declare const VechainKitThemeProvider: ({
695
695
  children,
696
696
  darkMode,
697
697
  theme: customTheme
698
- }: Props$32) => react_jsx_runtime0.JSX.Element;
698
+ }: Props$35) => react_jsx_runtime0.JSX.Element;
699
699
  //#endregion
700
700
  //#region src/providers/LegalDocumentsProvider.d.ts
701
- type Props$31 = {
701
+ type Props$34 = {
702
702
  children: Readonly<ReactNode>;
703
703
  };
704
704
  type LegalDocumentsContextType = {
@@ -711,13 +711,14 @@ type LegalDocumentsContextType = {
711
711
  declare const useLegalDocuments: () => LegalDocumentsContextType;
712
712
  declare const LegalDocumentsProvider: ({
713
713
  children
714
- }: Props$31) => react_jsx_runtime0.JSX.Element;
714
+ }: Props$34) => react_jsx_runtime0.JSX.Element;
715
715
  //#endregion
716
716
  //#region src/components/ConnectModal/ConnectModal.d.ts
717
- type Props$30 = {
717
+ type Props$33 = {
718
718
  isOpen: boolean;
719
719
  onClose: () => void;
720
720
  initialContent?: ConnectModalContentsTypes;
721
+ preventAutoClose?: boolean;
721
722
  };
722
723
  type ConnectModalContentsTypes = 'main' | 'faq' | {
723
724
  type: 'ecosystem';
@@ -744,17 +745,21 @@ type ConnectModalContentsTypes = 'main' | 'faq' | {
744
745
  declare const ConnectModal: ({
745
746
  isOpen,
746
747
  onClose,
747
- initialContent
748
- }: Props$30) => react_jsx_runtime0.JSX.Element;
748
+ initialContent,
749
+ preventAutoClose
750
+ }: Props$33) => react_jsx_runtime0.JSX.Element;
749
751
  //#endregion
750
752
  //#region src/components/ConnectModal/Contents/MainContent.d.ts
751
- type Props$29 = {
753
+ type Props$32 = {
752
754
  setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
753
755
  onClose: () => void;
756
+ preventAutoClose?: boolean;
754
757
  };
755
758
  declare const MainContent: ({
756
- setCurrentContent
757
- }: Props$29) => react_jsx_runtime0.JSX.Element;
759
+ setCurrentContent,
760
+ onClose,
761
+ preventAutoClose
762
+ }: Props$32) => react_jsx_runtime0.JSX.Element;
758
763
  //#endregion
759
764
  //#region src/components/ConnectModal/Contents/LoadingContent.d.ts
760
765
  type LoadingContentProps = {
@@ -789,7 +794,7 @@ declare const ErrorContent: ({
789
794
  }: ErrorContentProps) => react_jsx_runtime0.JSX.Element;
790
795
  //#endregion
791
796
  //#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
792
- type Props$28 = {
797
+ type Props$31 = {
793
798
  onClose: () => void;
794
799
  appsInfo: PrivyAppInfo[];
795
800
  isLoading: boolean;
@@ -802,7 +807,7 @@ declare const EcosystemContent: ({
802
807
  isLoading,
803
808
  setCurrentContent,
804
809
  showBackButton
805
- }: Props$28) => react_jsx_runtime0.JSX.Element;
810
+ }: Props$31) => react_jsx_runtime0.JSX.Element;
806
811
  //#endregion
807
812
  //#region src/components/ConnectModal/Components/ConnectionButton.d.ts
808
813
  interface ConnectionButtonProps {
@@ -831,7 +836,7 @@ declare const ConnectionButton: ({
831
836
  declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
832
837
  //#endregion
833
838
  //#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
834
- type Props$27 = {
839
+ type Props$30 = {
835
840
  isDark: boolean;
836
841
  gridColumn?: number;
837
842
  setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
@@ -840,10 +845,10 @@ declare const VeChainLoginButton: ({
840
845
  isDark,
841
846
  gridColumn,
842
847
  setCurrentContent
843
- }: Props$27) => react_jsx_runtime0.JSX.Element;
848
+ }: Props$30) => react_jsx_runtime0.JSX.Element;
844
849
  //#endregion
845
850
  //#region src/components/ConnectModal/Components/EcosystemButton.d.ts
846
- type Props$26 = {
851
+ type Props$29 = {
847
852
  isDark: boolean;
848
853
  appsInfo: PrivyAppInfo[];
849
854
  isLoading: boolean;
@@ -854,10 +859,10 @@ declare const EcosystemButton: ({
854
859
  appsInfo,
855
860
  isLoading,
856
861
  setCurrentContent
857
- }: Props$26) => react_jsx_runtime0.JSX.Element;
862
+ }: Props$29) => react_jsx_runtime0.JSX.Element;
858
863
  //#endregion
859
864
  //#region src/components/ConnectModal/Components/PrivyButton.d.ts
860
- type Props$25 = {
865
+ type Props$28 = {
861
866
  isDark: boolean;
862
867
  onViewMoreLogin: () => void;
863
868
  gridColumn?: number;
@@ -866,20 +871,20 @@ declare const PrivyButton: ({
866
871
  isDark,
867
872
  onViewMoreLogin,
868
873
  gridColumn
869
- }: Props$25) => react_jsx_runtime0.JSX.Element;
874
+ }: Props$28) => react_jsx_runtime0.JSX.Element;
870
875
  //#endregion
871
876
  //#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
872
- type Props$24 = {
877
+ type Props$27 = {
873
878
  isDark: boolean;
874
879
  gridColumn?: number;
875
880
  };
876
881
  declare const LoginWithGoogleButton: ({
877
882
  isDark,
878
883
  gridColumn
879
- }: Props$24) => react_jsx_runtime0.JSX.Element;
884
+ }: Props$27) => react_jsx_runtime0.JSX.Element;
880
885
  //#endregion
881
886
  //#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
882
- type Props$23 = {
887
+ type Props$26 = {
883
888
  isDark: boolean;
884
889
  gridColumn?: number;
885
890
  setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
@@ -888,37 +893,37 @@ declare const PasskeyLoginButton: ({
888
893
  isDark,
889
894
  gridColumn,
890
895
  setCurrentContent
891
- }: Props$23) => react_jsx_runtime0.JSX.Element;
896
+ }: Props$26) => react_jsx_runtime0.JSX.Element;
892
897
  //#endregion
893
898
  //#region src/components/ConnectModal/Components/DappKitButton.d.ts
894
- type Props$22 = {
899
+ type Props$25 = {
895
900
  isDark: boolean;
896
901
  gridColumn?: number;
897
902
  };
898
903
  declare const DappKitButton: ({
899
904
  isDark,
900
905
  gridColumn
901
- }: Props$22) => react_jsx_runtime0.JSX.Element;
906
+ }: Props$25) => react_jsx_runtime0.JSX.Element;
902
907
  //#endregion
903
908
  //#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
904
- type Props$21 = {
909
+ type Props$24 = {
905
910
  isDark: boolean;
906
911
  gridColumn?: number;
907
912
  };
908
913
  declare const VeChainWithPrivyLoginButton: ({
909
914
  isDark,
910
915
  gridColumn
911
- }: Props$21) => react_jsx_runtime0.JSX.Element;
916
+ }: Props$24) => react_jsx_runtime0.JSX.Element;
912
917
  //#endregion
913
918
  //#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
914
- type Props$20 = {
919
+ type Props$23 = {
915
920
  isDark: boolean;
916
921
  gridColumn?: number;
917
922
  };
918
923
  declare const LoginWithGithubButton: ({
919
924
  isDark,
920
925
  gridColumn
921
- }: Props$20) => react_jsx_runtime0.JSX.Element;
926
+ }: Props$23) => react_jsx_runtime0.JSX.Element;
922
927
  //#endregion
923
928
  //#region src/components/ConnectModal/ConnectPopover.d.ts
924
929
  type ConnectPopoverProps = {
@@ -939,12 +944,14 @@ type WalletButtonProps = {
939
944
  desktopVariant?: WalletDisplayVariant;
940
945
  buttonStyle?: ButtonProps;
941
946
  connectionVariant?: 'modal' | 'popover';
947
+ label?: string;
942
948
  };
943
949
  declare const WalletButton: ({
944
950
  mobileVariant,
945
951
  desktopVariant,
946
952
  buttonStyle,
947
- connectionVariant
953
+ connectionVariant,
954
+ label
948
955
  }: WalletButtonProps) => react_jsx_runtime0.JSX.Element;
949
956
  //#endregion
950
957
  //#region src/components/WalletButton/SocialIcons.d.ts
@@ -981,14 +988,14 @@ declare const TransactionModal: ({
981
988
  }: TransactionModalProps) => react_jsx_runtime0.JSX.Element | null;
982
989
  //#endregion
983
990
  //#region src/components/TransactionModal/Components/ShareButtons.d.ts
984
- type Props$19 = {
991
+ type Props$22 = {
985
992
  descriptionEncoded: string;
986
993
  url?: string;
987
994
  facebookHashtag?: string;
988
995
  };
989
996
  declare const ShareButtons: ({
990
997
  descriptionEncoded
991
- }: Props$19) => react_jsx_runtime0.JSX.Element;
998
+ }: Props$22) => react_jsx_runtime0.JSX.Element;
992
999
  //#endregion
993
1000
  //#region src/components/TransactionModal/TransactionModalContent.d.ts
994
1001
  declare const TransactionModalContent: ({
@@ -1021,16 +1028,20 @@ declare const TransactionToast: ({
1021
1028
  }: TransactionToastProps) => react_jsx_runtime0.JSX.Element | null;
1022
1029
  //#endregion
1023
1030
  //#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
1024
- type Props$18 = {
1031
+ type Props$21 = {
1025
1032
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
1026
1033
  onClose: () => void;
1027
1034
  wallet: Wallet;
1035
+ switchFeedback?: {
1036
+ showFeedback: boolean;
1037
+ };
1028
1038
  };
1029
1039
  declare const AccountMainContent: ({
1030
1040
  setCurrentContent,
1031
1041
  wallet,
1032
- onClose
1033
- }: Props$18) => react_jsx_runtime0.JSX.Element;
1042
+ onClose,
1043
+ switchFeedback
1044
+ }: Props$21) => react_jsx_runtime0.JSX.Element;
1034
1045
  //#endregion
1035
1046
  //#region src/hooks/api/privy/useFetchAppInfo.d.ts
1036
1047
  declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
@@ -1512,6 +1523,37 @@ declare const useWalletMetadata: (address: string, networkType: NETWORK_TYPE) =>
1512
1523
  isLoading: boolean;
1513
1524
  };
1514
1525
  //#endregion
1526
+ //#region src/hooks/api/wallet/useWalletStorage.d.ts
1527
+ type StoredWallet = {
1528
+ address: string;
1529
+ connectedAt: number;
1530
+ isActive: boolean;
1531
+ };
1532
+ declare const useWalletStorage: () => {
1533
+ getStoredWallets: () => StoredWallet[];
1534
+ getActiveWallet: () => string | null;
1535
+ saveWallet: (address: string) => void;
1536
+ setActiveWallet: (address: string) => void;
1537
+ removeWallet: (address: string) => void;
1538
+ initializeCurrentWallet: (address: string) => void;
1539
+ };
1540
+ //#endregion
1541
+ //#region src/hooks/api/wallet/useSwitchWallet.d.ts
1542
+ type UseSwitchWalletReturnType = {
1543
+ switchWallet: () => Promise<void>;
1544
+ isSwitching: boolean;
1545
+ getStoredWallets: () => StoredWallet[];
1546
+ setActiveWallet: (address: string) => void;
1547
+ removeWallet: (address: string) => void;
1548
+ isInAppBrowser: boolean;
1549
+ };
1550
+ /**
1551
+ * Hook for switching wallets
1552
+ * - In VeWorld in-app browser: Uses dapp-kit's switchWallet function
1553
+ * - On desktop: Provides wallet storage functions for UI-based switching
1554
+ */
1555
+ declare const useSwitchWallet: () => UseSwitchWalletReturnType;
1556
+ //#endregion
1515
1557
  //#region src/hooks/api/wallet/useXAppMetadata.d.ts
1516
1558
  /**
1517
1559
  * The metadata of an xApp from the xApps metadata base uri
@@ -1638,7 +1680,7 @@ declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =
1638
1680
  //#region src/hooks/api/ipfs/useUploadImages.d.ts
1639
1681
  declare const imageCompressionOptions: Options;
1640
1682
  declare const compressImages: (images: UploadedImage[]) => Promise<File[]>;
1641
- type Props$17 = {
1683
+ type Props$20 = {
1642
1684
  compressImages?: boolean;
1643
1685
  defaultImages?: UploadedImage[];
1644
1686
  };
@@ -1654,7 +1696,7 @@ type UploadedImage = {
1654
1696
  declare const useUploadImages: ({
1655
1697
  compressImages,
1656
1698
  defaultImages
1657
- }: Props$17) => {
1699
+ }: Props$20) => {
1658
1700
  uploadedImages: UploadedImage[];
1659
1701
  setUploadedImages: react0.Dispatch<react0.SetStateAction<UploadedImage[]>>;
1660
1702
  onUpload: (acceptedFiles: File[], keepCurrent?: boolean) => Promise<void>;
@@ -1663,7 +1705,7 @@ declare const useUploadImages: ({
1663
1705
  };
1664
1706
  //#endregion
1665
1707
  //#region src/hooks/api/ipfs/useSingleImageUpload.d.ts
1666
- type Props$16 = {
1708
+ type Props$19 = {
1667
1709
  compressImage?: boolean;
1668
1710
  defaultImage?: UploadedImage;
1669
1711
  };
@@ -1676,7 +1718,7 @@ type Props$16 = {
1676
1718
  declare const useSingleImageUpload: ({
1677
1719
  compressImage,
1678
1720
  defaultImage
1679
- }: Props$16) => {
1721
+ }: Props$19) => {
1680
1722
  uploadedImage: UploadedImage | undefined;
1681
1723
  setUploadedImage: react0.Dispatch<react0.SetStateAction<UploadedImage | undefined>>;
1682
1724
  onUpload: (acceptedFile: File) => Promise<UploadedImage>;
@@ -1892,7 +1934,7 @@ declare const TransactionToastProvider: ({
1892
1934
  //#endregion
1893
1935
  //#region src/hooks/modals/useWalletModal.d.ts
1894
1936
  declare const useWalletModal: () => {
1895
- open: () => void;
1937
+ open: (options?: AccountModalOptions) => void;
1896
1938
  close: () => void;
1897
1939
  isOpen: boolean;
1898
1940
  };
@@ -2047,6 +2089,18 @@ declare const useAccountModalOptions: () => {
2047
2089
  closeAccountModal: () => void;
2048
2090
  };
2049
2091
  //#endregion
2092
+ //#region src/hooks/modals/useSettingsModal.d.ts
2093
+ declare const useSettingsModal: () => {
2094
+ open: (options?: AccountModalOptions) => void;
2095
+ close: () => void;
2096
+ isOpen: boolean;
2097
+ };
2098
+ declare const SettingsModalProvider: ({
2099
+ children
2100
+ }: {
2101
+ children: ReactNode;
2102
+ }) => react_jsx_runtime0.JSX.Element;
2103
+ //#endregion
2050
2104
  //#region src/hooks/notifications/types.d.ts
2051
2105
  type NotificationAction = {
2052
2106
  label: string;
@@ -3253,6 +3307,12 @@ declare const txReceiptQueryKey: (txId: string) => string[];
3253
3307
  */
3254
3308
  declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
3255
3309
  //#endregion
3310
+ //#region src/hooks/thor/transactions/useGasEstimate.d.ts
3311
+ declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
3312
+ revision?: Revision;
3313
+ gasPadding?: number;
3314
+ }) => Promise<number>;
3315
+ //#endregion
3256
3316
  //#region src/components/AccountModal/Contents/SendToken/SendTokenContent.d.ts
3257
3317
  type SendTokenContentProps = {
3258
3318
  setCurrentContent: React$1.Dispatch<React$1.SetStateAction<AccountModalContentTypes>>;
@@ -3290,7 +3350,7 @@ declare const SendTokenSummaryContent: ({
3290
3350
  }: SendTokenSummaryContentProps) => react_jsx_runtime0.JSX.Element;
3291
3351
  //#endregion
3292
3352
  //#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
3293
- type Props$15 = {
3353
+ type Props$18 = {
3294
3354
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3295
3355
  onSelectToken: (token: TokenWithValue) => void;
3296
3356
  onBack: () => void;
@@ -3303,18 +3363,18 @@ declare const SelectTokenContent: ({
3303
3363
  onSelectToken,
3304
3364
  onBack,
3305
3365
  showAllTokens
3306
- }: Props$15) => react_jsx_runtime0.JSX.Element;
3366
+ }: Props$18) => react_jsx_runtime0.JSX.Element;
3307
3367
  //#endregion
3308
3368
  //#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
3309
- type Props$14 = {
3369
+ type Props$17 = {
3310
3370
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3311
3371
  };
3312
3372
  declare const ReceiveTokenContent: ({
3313
3373
  setCurrentContent
3314
- }: Props$14) => react_jsx_runtime0.JSX.Element;
3374
+ }: Props$17) => react_jsx_runtime0.JSX.Element;
3315
3375
  //#endregion
3316
3376
  //#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
3317
- type Props$13 = {
3377
+ type Props$16 = {
3318
3378
  setCurrentContent: React$1.Dispatch<React$1.SetStateAction<AccountModalContentTypes>>;
3319
3379
  fromTokenAddress?: string;
3320
3380
  toTokenAddress?: string;
@@ -3323,7 +3383,7 @@ declare const SwapTokenContent: ({
3323
3383
  setCurrentContent,
3324
3384
  fromTokenAddress,
3325
3385
  toTokenAddress
3326
- }: Props$13) => react_jsx_runtime0.JSX.Element;
3386
+ }: Props$16) => react_jsx_runtime0.JSX.Element;
3327
3387
  //#endregion
3328
3388
  //#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
3329
3389
  type ChooseNameContentProps = {
@@ -3410,10 +3470,14 @@ declare const CustomizationSummaryContent: ({
3410
3470
  type ProfileContentProps = {
3411
3471
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3412
3472
  onLogoutSuccess: () => void;
3473
+ switchFeedback?: {
3474
+ showFeedback: boolean;
3475
+ };
3413
3476
  };
3414
3477
  declare const ProfileContent: ({
3415
3478
  setCurrentContent,
3416
- onLogoutSuccess
3479
+ onLogoutSuccess,
3480
+ switchFeedback
3417
3481
  }: ProfileContentProps) => react_jsx_runtime0.JSX.Element;
3418
3482
  //#endregion
3419
3483
  //#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
@@ -3445,12 +3509,12 @@ declare const ManageCustomTokenContent: ({
3445
3509
  }: ManageCustomTokenContentProps) => react_jsx_runtime0.JSX.Element;
3446
3510
  //#endregion
3447
3511
  //#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
3448
- type Props$12 = {
3512
+ type Props$15 = {
3449
3513
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3450
3514
  };
3451
3515
  declare const BridgeContent: ({
3452
3516
  setCurrentContent
3453
- }: Props$12) => react_jsx_runtime0.JSX.Element;
3517
+ }: Props$15) => react_jsx_runtime0.JSX.Element;
3454
3518
  //#endregion
3455
3519
  //#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
3456
3520
  type ChangeCurrencyContentProps = {
@@ -3461,20 +3525,20 @@ declare const ChangeCurrencyContent: ({
3461
3525
  }: ChangeCurrencyContentProps) => react_jsx_runtime0.JSX.Element;
3462
3526
  //#endregion
3463
3527
  //#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
3464
- type Props$11 = {
3528
+ type Props$14 = {
3465
3529
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3466
3530
  };
3467
3531
  declare const LanguageSettingsContent: ({
3468
3532
  setCurrentContent
3469
- }: Props$11) => react_jsx_runtime0.JSX.Element;
3533
+ }: Props$14) => react_jsx_runtime0.JSX.Element;
3470
3534
  //#endregion
3471
3535
  //#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
3472
- type Props$10 = {
3536
+ type Props$13 = {
3473
3537
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3474
3538
  };
3475
3539
  declare const GasTokenSettingsContent: ({
3476
3540
  setCurrentContent
3477
- }: Props$10) => react_jsx_runtime0.JSX.Element;
3541
+ }: Props$13) => react_jsx_runtime0.JSX.Element;
3478
3542
  //#endregion
3479
3543
  //#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
3480
3544
  type SettingsContentProps = {
@@ -3510,6 +3574,35 @@ declare const DisconnectConfirmContent: ({
3510
3574
  text
3511
3575
  }: DisconnectConfirmContentProps) => react_jsx_runtime0.JSX.Element;
3512
3576
  //#endregion
3577
+ //#region src/components/AccountModal/Contents/SelectWallet/SelectWalletContent.d.ts
3578
+ type Props$12 = {
3579
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3580
+ onClose: () => void;
3581
+ returnTo?: 'main' | 'profile';
3582
+ onLogoutSuccess?: () => void;
3583
+ };
3584
+ declare const SelectWalletContent: ({
3585
+ setCurrentContent,
3586
+ returnTo,
3587
+ onLogoutSuccess: _onLogoutSuccess
3588
+ }: Props$12) => react_jsx_runtime0.JSX.Element;
3589
+ //#endregion
3590
+ //#region src/components/AccountModal/Contents/SelectWallet/RemoveWalletConfirmContent.d.ts
3591
+ type RemoveWalletConfirmContentProps = {
3592
+ walletAddress: string;
3593
+ walletDomain: string | null;
3594
+ onConfirm: () => void;
3595
+ onBack: () => void;
3596
+ onClose?: () => void;
3597
+ };
3598
+ declare const RemoveWalletConfirmContent: ({
3599
+ walletAddress,
3600
+ walletDomain: _walletDomain,
3601
+ onConfirm,
3602
+ onBack,
3603
+ onClose
3604
+ }: RemoveWalletConfirmContentProps) => react_jsx_runtime0.JSX.Element;
3605
+ //#endregion
3513
3606
  //#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
3514
3607
  type CategoryFilter = string | null;
3515
3608
  //#endregion
@@ -3545,7 +3638,28 @@ type FailedOperationContentProps = {
3545
3638
  };
3546
3639
  //#endregion
3547
3640
  //#region src/components/AccountModal/Types/Types.d.ts
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' | {
3641
+ type SwitchFeedback = {
3642
+ showFeedback: boolean;
3643
+ };
3644
+ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | {
3645
+ type: 'main';
3646
+ props?: {
3647
+ switchFeedback?: SwitchFeedback;
3648
+ };
3649
+ } | {
3650
+ type: 'profile';
3651
+ props?: {
3652
+ switchFeedback?: SwitchFeedback;
3653
+ };
3654
+ } | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'change-currency' | 'change-language' | 'gas-token-settings' | {
3655
+ type: 'select-wallet';
3656
+ props: {
3657
+ setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3658
+ onClose: () => void;
3659
+ returnTo?: 'main' | 'profile';
3660
+ onLogoutSuccess?: () => void;
3661
+ };
3662
+ } | {
3549
3663
  type: 'swap-token';
3550
3664
  props: {
3551
3665
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
@@ -3591,6 +3705,9 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' |
3591
3705
  } | {
3592
3706
  type: 'disconnect-confirm';
3593
3707
  props: DisconnectConfirmContentProps;
3708
+ } | {
3709
+ type: 'remove-wallet-confirm';
3710
+ props: RemoveWalletConfirmContentProps;
3594
3711
  } | {
3595
3712
  type: 'upgrade-smart-account';
3596
3713
  props: UpgradeSmartAccountContentProps;
@@ -3603,7 +3720,7 @@ type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' |
3603
3720
  };
3604
3721
  //#endregion
3605
3722
  //#region src/components/AccountModal/AccountModal.d.ts
3606
- type Props$9 = {
3723
+ type Props$11 = {
3607
3724
  isOpen: boolean;
3608
3725
  onClose: () => void;
3609
3726
  initialContent?: AccountModalContentTypes;
@@ -3612,7 +3729,7 @@ declare const AccountModal: ({
3612
3729
  isOpen,
3613
3730
  onClose,
3614
3731
  initialContent
3615
- }: Props$9) => react_jsx_runtime0.JSX.Element;
3732
+ }: Props$11) => react_jsx_runtime0.JSX.Element;
3616
3733
  //#endregion
3617
3734
  //#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
3618
3735
  interface AccountDetailsButtonProps {
@@ -3679,7 +3796,7 @@ declare const ActionButton: ({
3679
3796
  }: ActionButtonProps) => react_jsx_runtime0.JSX.Element;
3680
3797
  //#endregion
3681
3798
  //#region src/components/AccountModal/Components/AccountSelector.d.ts
3682
- type Props$8 = {
3799
+ type Props$10 = {
3683
3800
  wallet: Wallet;
3684
3801
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3685
3802
  size?: string;
@@ -3696,7 +3813,7 @@ declare const AccountSelector: ({
3696
3813
  onClose,
3697
3814
  mt,
3698
3815
  style
3699
- }: Props$8) => react_jsx_runtime0.JSX.Element;
3816
+ }: Props$10) => react_jsx_runtime0.JSX.Element;
3700
3817
  //#endregion
3701
3818
  //#region src/components/AccountModal/Components/BalanceSection.d.ts
3702
3819
  declare const BalanceSection: ({
@@ -3710,14 +3827,14 @@ declare const BalanceSection: ({
3710
3827
  }) => react_jsx_runtime0.JSX.Element;
3711
3828
  //#endregion
3712
3829
  //#region src/components/AccountModal/Components/QuickActionsSection.d.ts
3713
- type Props$7 = {
3830
+ type Props$9 = {
3714
3831
  mt?: number;
3715
3832
  setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3716
3833
  };
3717
3834
  declare const QuickActionsSection: ({
3718
3835
  mt,
3719
3836
  setCurrentContent
3720
- }: Props$7) => react_jsx_runtime0.JSX.Element;
3837
+ }: Props$9) => react_jsx_runtime0.JSX.Element;
3721
3838
  //#endregion
3722
3839
  //#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
3723
3840
  type FeatureAnnouncementCardProps = {
@@ -3725,7 +3842,7 @@ type FeatureAnnouncementCardProps = {
3725
3842
  };
3726
3843
  declare const FeatureAnnouncementCard: ({
3727
3844
  setCurrentContent
3728
- }: FeatureAnnouncementCardProps) => react_jsx_runtime0.JSX.Element | null;
3845
+ }: FeatureAnnouncementCardProps) => react_jsx_runtime0.JSX.Element;
3729
3846
  //#endregion
3730
3847
  //#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
3731
3848
  declare const ExchangeWarningAlert: () => react_jsx_runtime0.JSX.Element;
@@ -3746,27 +3863,29 @@ declare const ModalBackButton: ({
3746
3863
  }: BackButtonProps) => react_jsx_runtime0.JSX.Element;
3747
3864
  //#endregion
3748
3865
  //#region src/components/common/AddressDisplay.d.ts
3749
- type Props$6 = {
3866
+ type Props$8 = {
3750
3867
  wallet: Wallet;
3751
3868
  label?: string;
3752
3869
  style?: PropsOf<typeof VStack>;
3753
3870
  showHumanAddress?: boolean;
3871
+ setCurrentContent?: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
3754
3872
  };
3755
3873
  declare const AddressDisplay: ({
3756
3874
  wallet,
3757
3875
  label,
3758
3876
  style,
3759
- showHumanAddress
3760
- }: Props$6) => react_jsx_runtime0.JSX.Element;
3877
+ showHumanAddress,
3878
+ setCurrentContent
3879
+ }: Props$8) => react_jsx_runtime0.JSX.Element;
3761
3880
  //#endregion
3762
3881
  //#region src/components/common/VersionFooter.d.ts
3763
- type Props$5 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3882
+ type Props$7 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
3764
3883
  declare const VersionFooter: ({
3765
3884
  ...props
3766
- }: Props$5) => react_jsx_runtime0.JSX.Element;
3885
+ }: Props$7) => react_jsx_runtime0.JSX.Element;
3767
3886
  //#endregion
3768
3887
  //#region src/components/common/StickyHeaderContainer.d.ts
3769
- type Props$4 = {
3888
+ type Props$6 = {
3770
3889
  children: React.ReactNode;
3771
3890
  };
3772
3891
  declare const useStickyHeaderContext: () => {
@@ -3774,15 +3893,15 @@ declare const useStickyHeaderContext: () => {
3774
3893
  };
3775
3894
  declare const StickyHeaderContainer: ({
3776
3895
  children
3777
- }: Props$4) => react_jsx_runtime0.JSX.Element;
3896
+ }: Props$6) => react_jsx_runtime0.JSX.Element;
3778
3897
  //#endregion
3779
3898
  //#region src/components/common/StickyFooterContainer.d.ts
3780
- type Props$3 = {
3899
+ type Props$5 = {
3781
3900
  children: React.ReactNode;
3782
3901
  };
3783
3902
  declare const StickyFooterContainer: ({
3784
3903
  children
3785
- }: Props$3) => react_jsx_runtime0.JSX.Element;
3904
+ }: Props$5) => react_jsx_runtime0.JSX.Element;
3786
3905
  //#endregion
3787
3906
  //#region src/components/common/BaseModal.d.ts
3788
3907
  type BaseModalProps = {
@@ -3986,6 +4105,35 @@ declare const GasFeeTokenSelector: ({
3986
4105
  walletAddress
3987
4106
  }: GasFeeTokenSelectorProps) => react_jsx_runtime0.JSX.Element;
3988
4107
  //#endregion
4108
+ //#region src/components/common/InlineFeedback.d.ts
4109
+ type Props$4 = {
4110
+ message: string;
4111
+ duration?: number;
4112
+ onClose?: () => void;
4113
+ };
4114
+ declare const InlineFeedback: ({
4115
+ message,
4116
+ duration,
4117
+ onClose
4118
+ }: Props$4) => react_jsx_runtime0.JSX.Element;
4119
+ //#endregion
4120
+ //#region src/components/common/WalletSwitchFeedback.d.ts
4121
+ type Props$3 = {
4122
+ /**
4123
+ * Show feedback flag passed via content props (desktop)
4124
+ * If true, shows the feedback message
4125
+ */
4126
+ showFeedback?: boolean;
4127
+ };
4128
+ /**
4129
+ * Component that displays inline feedback when a wallet switch occurs.
4130
+ * Handles both desktop (via props) and VeWorld in-app browser (via address change detection).
4131
+ * Simply add this component where you want the feedback to appear.
4132
+ */
4133
+ declare const WalletSwitchFeedback: ({
4134
+ showFeedback
4135
+ }: Props$3) => react_jsx_runtime0.JSX.Element | null;
4136
+ //#endregion
3989
4137
  //#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
3990
4138
  type SuccessfulOperationContentProps = {
3991
4139
  setCurrentContent: React.Dispatch<React.SetStateAction<UpgradeSmartAccountModalContentsTypes>>;
@@ -4048,11 +4196,13 @@ type AccountModalOptions = {
4048
4196
  isolatedView?: boolean;
4049
4197
  };
4050
4198
  type ModalContextType = {
4051
- openConnectModal: (initialContent?: ConnectModalContentsTypes) => void;
4199
+ openConnectModal: (initialContent?: ConnectModalContentsTypes, preventAutoClose?: boolean) => void;
4052
4200
  closeConnectModal: () => void;
4053
4201
  isConnectModalOpen: boolean;
4054
4202
  connectModalContent: ConnectModalContentsTypes;
4055
4203
  setConnectModalContent: React.Dispatch<React.SetStateAction<ConnectModalContentsTypes>>;
4204
+ connectModalPreventAutoClose: boolean;
4205
+ setConnectModalPreventAutoClose: React.Dispatch<React.SetStateAction<boolean>>;
4056
4206
  openAccountModal: (content?: AccountModalContentTypes, options?: AccountModalOptions) => void;
4057
4207
  closeAccountModal: () => void;
4058
4208
  isAccountModalOpen: boolean;
@@ -4119,5 +4269,5 @@ type AppConfig = {
4119
4269
  };
4120
4270
  declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
4121
4271
  //#endregion
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
4272
+ export { LanguageSettingsContent as $, MostVotedAppsInRoundReturnType as $a, useFAQModal as $i, useBuildClauses as $n, buildVetDomainClauses as $o, toIPFSURL as $r, EnrichedLegalDocument as $s, useUpgradeSmartAccount as $t, AddressDisplay as A, getIpfsImage as Aa, PrivyLoginMethod as Ac, fetchAppHubApps as Ai, getAccountBalanceQueryKey as An, useTokenBalances as Ao, buildCallClauses as Ar, EmailLoginButton as As, useMfaEnrollment as At, AccountDetailsButton as B, getXAppMetadata as Ba, SettingsModalProvider as Bi, estimateGas as Bn, useUpdateTextRecord as Bo, validate as Br, ColorModeSync as Bs, useTransferVET as Bt, AddressDisplayCard as C, UploadedImage as Ca, CrossAppConnectionCache as Cc, VECHAIN_KIT_STORAGE_KEYS as Ci, getCurrentAccountImplementationVersion as Cn, useCurrentAllocationsRoundId as Co, removeLocalStorageItem as Cr, VeChainWithPrivyLoginButton as Cs, ReceiveTokenContent as Ct, StickyHeaderContainer as D, useIpfsMetadatas as Da, ExecuteWithAuthorizationSignData as Dc, getGenericDelegatorUrl as Di, getAccountImplementationAddressQueryKey as Dn, ExchangeRates as Do, MultipleClausesCallParameters as Dr, PrivyButton as Ds, ThorClient$1 as Dt, StickyFooterContainer as E, useUploadImages as Ea, ExecuteBatchWithAuthorizationSignData as Ec, getENV as Ei, getAccountImplementationAddress as En, useTokensWithValues as Eo, setLocalStorageItem as Er, LoginWithGoogleButton as Es, SendTokenContent as Et, FeatureAnnouncementCard as F, getIpfsMetadataQueryKey as Fa, VePassportUserStatus as Fc, useLoginWithPasskey as Fi, useGenericDelegatorFeeEstimationParams as Fn, getAvatarOfAddressQueryKey as Fo, compare as Fr, MainContent as Fs, txReceiptQueryKey as Ft, RemoveWalletConfirmContentProps as G, useWalletStorage as Ga, UpgradeSmartAccountModalProvider as Gi, EcosystemShortcut as Gn, useGetAvatar as Go, NodeStrengthLevelToImage as Gr, usePrivyWalletProvider as Gs, GetEventsProps as Gt, AccountModalContentTypes as H, UseSwitchWalletReturnType as Ha, useAccountModalOptions as Hi, signVip191Transaction as Hn, getTextRecordsQueryKey as Ho, TIME as Hr, useVechainKitThemeConfig as Hs, useTransferERC20 as Ht, QuickActionsSection as I, useIpfsMetadata as Ia, Wallet as Ic, useSignTypedData as Ii, useGasTokenSelection as In, useGetAvatarOfAddress as Io, isInvalid as Ir, ConnectModal as Is, useTxReceipt as It, DisconnectConfirmContentProps as J, useWallet as Ja, ReceiveModalProvider as Ji, LocalStorageKey as Jn, getDomainsOfAddress as Jo, buildQueryString as Jr, VeChainKitConfig as Js, getChainId as Jt, SelectWalletContent as K, useWalletMetadata as Ka, useUpgradeSmartAccountModal as Ki, useEcosystemShortcuts as Kn, Domain as Ko, XNodeStrengthLevelToName as Kr, LegalDocument as Ks, getAllEventLogs as Kt, BalanceSection as L, getXAppsSharesQueryKey as La, useSignMessage as Li, decodeRawTx as Ln, getResolverAddressQueryKey as Lo, isValid as Lr, ConnectModalContentsTypes as Ls, BuildTransactionProps as Lt, CrossAppConnectionSecurityCard as M, useIpfsImage as Ma, TokenBalance as Mc, useAppHubApps as Mi, UseEstimateAllTokensParams as Mn, getAvatarLegacy as Mo, executeMultipleClausesCall as Mr, EcosystemContent as Ms, useSetWalletRecovery as Mt, DomainRequiredAlert as N, useIpfsImageList as Na, TransactionStatus as Nc, useLoginWithVeChain as Ni, useEstimateAllTokens as Nn, getAvatarLegacyQueryKey as No, isValidUrl as Nr, ErrorContent as Ns, useThor as Nt, useStickyHeaderContext as O, IpfsImage as Oa, NFTMediaType as Oc, notFoundImage as Oi, useAccountImplementationAddress as On, useTokenPrices as Oo, MultipleClausesCallReturnType as Or, EcosystemButton as Os, useDAppKitWallet as Ot, ExchangeWarningAlert as P, getIpfsMetadata as Pa, TransactionStatusErrorType as Pc, useLoginWithOAuth as Pi, useGenericDelegatorFeeEstimation as Pn, useGetAvatarLegacy as Po, addPrefix as Pr, LoadingContent as Ps, useGasEstimate as Pt, GasTokenSettingsContent as Q, useRefreshBalances as Qa, FAQModalProvider as Qi, buildSingleAuthorizationTypedData as Qn, useIsDomainProtected as Qo, resolveMediaTypeFromMimeType as Qr, useVeChainKitConfig as Qs, useCurrentBlock as Qt, AccountSelector as R, useXAppsShares as Ra, useNotificationAlerts as Ri, delegateAuthorized as Rn, useGetResolverAddress as Ro, normalize as Rr, LegalDocumentsProvider as Rs, useBuildTransaction as Rt, ModalFAQButton as S, useSingleImageUpload as Sa, ConnectionSource as Sc, VECHAIN_KIT_COOKIES_CONFIG as Si, useGetAccountAddress as Sn, getCurrentAllocationsRoundIdQueryKey as So, isOnline as Sr, LoginWithGithubButton as Ss, SwapTokenContent as St, BaseModal as T, imageCompressionOptions as Ta, EnhancedClause as Tc, VECHAIN_PRIVY_APP_ID as Ti, useCurrentAccountImplementationVersion as Tn, TokenWithValue as To, safeWindowOpen as Tr, PasskeyLoginButton as Ts, SendTokenSummaryContent as Tt, SwitchFeedback as U, useSwitchWallet as Ua, ProfileModalProvider as Ui, useGenericDelegator as Un, useGetTextRecords as Uo, EconomicNodeStrengthLevelToName as Ur, PrivyWalletProvider as Us, UseSendTransactionReturnValue as Ut, AccountModal as V, useXAppMetadata as Va, useSettingsModal as Vi, getDepositAccount as Vn, getTextRecords as Vo, isRejectionError as Vr, VechainKitThemeProvider as Vs, buildERC20Clauses as Vt, RemoveWalletConfirmContent as W, StoredWallet as Wa, useProfileModal as Wi, useCrossAppConnectionCache as Wn, getAvatarQueryKey as Wo, MinXNodeLevel as Wr, PrivyWalletProviderContextType as Ws, useSendTransaction as Wt, SettingsContent as X, useRoundXApps as Xa, AccountCustomizationModalProvider as Xi, BuildClausesParams as Xn, useGetDomainsOfAddress as Xo, xNodeToGMstartingLevel as Xr, VeChainKitProvider as Xs, useGetChainId as Xt, TermsAndPrivacyContent as Y, getRoundXAppsQueryKey as Ya, useReceiveModal as Yi, useLocalStorage as Yn, getDomainsOfAddressQueryKey as Yo, gmNfts as Yr, VeChainKitContext as Ys, getChainIdQueryKey as Yt, SettingsContentProps as Z, useRefreshMetadata as Za, useAccountCustomizationModal as Zi, buildBatchAuthorizationTypedData as Zn, getIsDomainProtectedQueryKey as Zo, convertUriToUrl as Zr, VechainKitProviderProps as Zs, currentBlockQueryKey as Zt, ModalNotificationButton as _, useAccountModal as _a, TransactionSpeed as _c, PrivyEcosystemApp as _i, useHasV1SmartAccount as _n, getCustomTokenBalanceQueryKey as _o, getDocumentTitle as _r, SocialIcons as _s, ChooseNameSummaryContentProps as _t, useModal as a, useSwapTokenModal as aa, EstimatedGas as ac, leftPadWithZeros as ai, useUpgradeRequired as an, useGetVot3Balance as ao, useScrollToTop as ar, useVechainDomain as as, AssetsContent as at, AccountAvatar as b, useSwapQuotes as ba, CURRENCY as bc, TOKEN_LOGO_COMPONENTS as bi, getAccountAddress as bn, useGetB3trBalance as bo, hasNavigator as br, WalletDisplayVariant as bs, ChooseNameContent as bt, LegalDocumentsModal as c, ChooseNameModalProvider as ca, TransactionCost as cc, formatTokenBalance as ci, getSmartAccountQueryKey as cn, getTokenUsdPrice as co, useFeatureAnnouncement as cr, fetchPrivyAppInfo as cs, UpgradeSmartAccountContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useWalletModal as da, formatGasCost as dc, humanDomain as di, useRefreshFactoryQueries as dn, getErc20BalanceQueryKey as do, useCurrency as dr, AccountMainContent as ds, CustomizationSummaryContent as dt, NotificationsModalProvider as ea, LegalDocumentAgreement as ec, uploadBlobToIPFS as ei, getUpgradeRequiredForAccount as en, XApp as eo, GetEventsKeyParams as er, useClaimVetDomain as es, ChangeCurrencyContent as et, UpgradeSmartAccountModalStyle as f, TransactionToastProvider as fa, GasTokenEstimate as fc, humanNumber as fi, getIsDeployed as fn, useGetErc20Balance as fo, getCallClauseQueryKey as fr, TransactionToast as fs, CustomizationSummaryContentProps as ft, GasFeeSummary as g, AccountModalProvider as ga, GasTokenType as gc, ENV as gi, getHasV1SmartAccountQueryKey as gn, TokenWithBalance as go, copyToClipboard as gr, TransactionModalProps as gs, ChooseNameSummaryContent as gt, GasFeeTokenSelector as h, useTransactionModal as ha, GasTokenSelection as hc, DEFAULT_PRIVY_ECOSYSTEM_APPS as hi, getHasV1SmartAccount as hn, useGetCustomTokenInfo as ho, useMultipleClausesCall as hr, TransactionModal as hs, FAQContent as ht, ModalProvider as i, SwapTokenModalProvider as ia, DepositAccount as ic, isValidAddress as ii, getUpgradeRequiredQueryKey as in, getVot3BalanceQueryKey as io, useEvents as ir, getVechainDomainQueryKey as is, ManageCustomTokenContentProps as it, ModalBackButton as j, getIpfsImageQueryKey as ja, SmartAccount as jc, getAppHubAppsQueryKey as ji, useAccountBalance as jn, useUnsetDomain as jo, executeCallClause as jr, ConnectionButton as js, usePrivy as jt, VersionFooter as k, MAX_IMAGE_SIZE as ka, PrivyAppInfo as kc, AppHubApp as ki, getAccountBalance as kn, WalletTokenBalance as ko, ViewFunctionResult as kr, VeChainLoginButton as ks, useDAppKitWalletModal as kt, LegalDocumentsModalContentsTypes as l, useChooseNameModal as la, VthoPerGasAtSpeed as lc, getPicassoImage as li, useSmartAccount as ln, getTokenUsdPriceQueryKey as lo, useCurrentCurrency as lr, getPrivyAppInfoQueryKey as ls, ProfileContent as lt, InlineFeedback as m, TransactionModalProvider as ma, GasTokenPreferences as mc, DEFAULT_GAS_TOKEN_PREFERENCES as mi, useIsSmartAccountDeployed as mn, getTokenInfo as mo, useCallClause as mr, ShareButtons as ms, CustomizationContent as mt, getConfig as n, ExploreEcosystemModalProvider as na, LegalDocumentType as nc, compareAddresses as ni, useUpgradeRequiredForAccount as nn, getIsPersonQueryKey as no, decodeEventLog$1 as nr, getEnsRecordExistsQueryKey as ns, BridgeContent as nt, DAppKitWalletButton as o, SendTokenModalProvider as oa, EstimationResponse as oc, regexPattern as oi, SmartAccountReturnType as on, PRICE_FEED_IDS as oo, useIsPWA as or, fetchPrivyStatus as os, AssetsContentProps as ot, WalletSwitchFeedback as p, useTransactionToast as pa, GasTokenInfo as pc, isZero as pi, getIsDeployedQueryKey as pn, getCustomTokenInfoQueryKey as po, getCallClauseQueryKeyWithArgs as pr, TransactionModalContent as ps, AccountCustomizationContentProps as pt, DisconnectConfirmContent as q, UseWalletReturnType as qa, useLoginModalContent as qi, useSyncableLocalStorage as qn, DomainsResponse as qo, allNodeStrengthLevelToName as qr, LegalDocumentOptions as qs, getEventLogs as qt, AccountModalOptions as r, useExploreEcosystemModal as ra, CostLevel as rc, compareListOfAddresses as ri, getUpgradeRequired as rn, useIsPerson as ro, getEventsKey as rr, useEnsRecordExists as rs, ManageCustomTokenContent as rt, LegalDocumentItem as s, useSendTokenModal as sa, Rate as sc, randomTransactionUser as si, getSmartAccount as sn, SupportedToken as so, useGetNodeUrl as sr, useFetchPrivyStatus as ss, UpgradeSmartAccountContent as st, AppConfig as t, useNotificationsModal as ta, LegalDocumentSource as tc, validateIpfsUri as ti, getUpgradeRequiredForAccountQueryKey as tn, useMostVotedAppsInRound as to, UseEventsParams as tr, useClaimVeWorldSubdomain as ts, ChangeCurrencyContentProps as tt, UpgradeSmartAccountModal as u, WalletModalProvider as ua, calculateTotalCost as uc, humanAddress as ui, useRefreshSmartAccountQueries as un, useGetTokenUsdPrice as uo, useCurrentLanguage as ur, useFetchAppInfo as us, ProfileContentProps as ut, TransactionButtonAndStatus as v, ConnectModalProvider as va, ENS_TEXT_RECORDS as vc, SUPPORTED_GAS_TOKENS as vi, getAccountVersionQueryKey as vn, useGetCustomTokenBalances as vo, getLocalStorageItem as vr, WalletButton as vs, ChooseNameSearchContent as vt, AssetButton as w, compressImages as wa, ENSRecords as wc, VECHAIN_KIT_TERMS_CONFIG as wi, getCurrentAccountImplementationVersionQueryKey as wn, useTotalBalance as wo, safeQuerySelector as wr, DappKitButton as ws, SelectTokenContent as wt, ScrollToTopWrapper as x, useSwapTransaction as xa, CURRENCY_SYMBOLS as xc, TogglePassportCheck as xi, getAccountAddressQueryKey as xn, useCustomTokens as xo, isBrowser as xr, ConnectPopover as xs, ChooseNameContentProps as xt, TransactionButtonAndStatusProps as y, useConnectModal as ya, TextRecords as yc, TOKEN_LOGOS as yi, useGetAccountVersion as yn, getB3trBalanceQueryKey as yo, getWindowOrigin as yr, WalletButtonProps as ys, ChooseNameSearchContentProps as yt, ActionButton as z, XAppMetadata as za, useNotifications as zi, estimateAndBuildTxBody as zn, buildClauses as zo, removePrefix as zr, useLegalDocuments as zs, buildVETClauses as zt };
4273
+ //# sourceMappingURL=index-CkflGtlh.d.cts.map