@vechain/vechain-kit 2.0.2 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -280
- package/dist/assets/index.d.cts +1 -1
- package/dist/assets/index.d.mts +1 -1
- package/dist/{index-I8fe7GR2.d.cts → index-BQ0ary2b.d.mts} +4 -4
- package/dist/{index-I8fe7GR2.d.cts.map → index-BQ0ary2b.d.mts.map} +1 -1
- package/dist/{index--hSO7Xv4.d.mts → index-C8Uj8ple.d.cts} +4 -4
- package/dist/{index--hSO7Xv4.d.mts.map → index-C8Uj8ple.d.cts.map} +1 -1
- package/dist/{index-BCaysYhr.d.cts → index-CozseDtf.d.cts} +68 -56
- package/dist/index-CozseDtf.d.cts.map +1 -0
- package/dist/{index-BZRpQp3M.d.mts → index-DWGrsVoL.d.mts} +120 -108
- package/dist/index-DWGrsVoL.d.mts.map +1 -0
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.cts +2 -2
- package/dist/utils/index.d.mts +2 -2
- package/package.json +1 -1
- package/dist/index-BCaysYhr.d.cts.map +0 -1
- package/dist/index-BZRpQp3M.d.mts.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ButtonProps, IconButtonProps, ImageProps, PropsOf, StackProps, ThemeTypings, VStack } from "@chakra-ui/react";
|
|
2
2
|
import * as react0 from "react";
|
|
3
3
|
import React$1, { ElementType, ReactElement, ReactNode } from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
5
|
import { Account } from "viem/accounts";
|
|
6
6
|
import * as _vechain_sdk_core0 from "@vechain/sdk-core";
|
|
7
7
|
import { Address, Certificate, CertificateData, Clause, Transaction, TransactionClause } from "@vechain/sdk-core";
|
|
@@ -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): "
|
|
56
|
+
which(gid: string): "test" | "main" | "solo" | undefined;
|
|
57
57
|
};
|
|
58
58
|
//#endregion
|
|
59
59
|
//#region src/types/types.d.ts
|
|
@@ -331,6 +331,7 @@ interface ThemeTokens {
|
|
|
331
331
|
hover: string;
|
|
332
332
|
focus: string;
|
|
333
333
|
button: string;
|
|
334
|
+
modal: string;
|
|
334
335
|
};
|
|
335
336
|
success: string;
|
|
336
337
|
error: string;
|
|
@@ -398,16 +399,19 @@ interface ThemeTokens {
|
|
|
398
399
|
}
|
|
399
400
|
/**
|
|
400
401
|
* Developer-facing theme configuration
|
|
401
|
-
* Simplified interface - only backgroundColor and textColor required
|
|
402
|
+
* Simplified interface - only modal.backgroundColor and textColor required
|
|
402
403
|
* All other colors are automatically derived from these base colors
|
|
403
404
|
*/
|
|
404
405
|
interface VechainKitThemeConfig {
|
|
405
|
-
backgroundColor?: string;
|
|
406
406
|
textColor?: string;
|
|
407
407
|
overlay?: {
|
|
408
408
|
backgroundColor?: string;
|
|
409
409
|
blur?: string;
|
|
410
410
|
};
|
|
411
|
+
modal?: {
|
|
412
|
+
backgroundColor?: string;
|
|
413
|
+
border?: string;
|
|
414
|
+
};
|
|
411
415
|
buttons?: {
|
|
412
416
|
secondaryButton?: {
|
|
413
417
|
bg?: string;
|
|
@@ -502,7 +506,7 @@ type VechainKitProviderProps = {
|
|
|
502
506
|
minAmountInEther: number;
|
|
503
507
|
};
|
|
504
508
|
};
|
|
505
|
-
dappKit
|
|
509
|
+
dappKit?: {
|
|
506
510
|
allowedWallets?: WalletSource[];
|
|
507
511
|
walletConnectOptions?: WalletConnectOptions;
|
|
508
512
|
usePersistence?: boolean;
|
|
@@ -524,8 +528,8 @@ type VechainKitProviderProps = {
|
|
|
524
528
|
darkMode?: boolean;
|
|
525
529
|
i18n?: I18n;
|
|
526
530
|
language?: string;
|
|
527
|
-
network
|
|
528
|
-
type
|
|
531
|
+
network?: {
|
|
532
|
+
type?: string;
|
|
529
533
|
nodeUrl?: string;
|
|
530
534
|
requireCertificate?: boolean;
|
|
531
535
|
connectionCertificate?: {
|
|
@@ -548,7 +552,15 @@ type VeChainKitConfig = {
|
|
|
548
552
|
darkMode: boolean;
|
|
549
553
|
i18n?: VechainKitProviderProps['i18n'];
|
|
550
554
|
language?: VechainKitProviderProps['language'];
|
|
551
|
-
network:
|
|
555
|
+
network: {
|
|
556
|
+
type: NETWORK_TYPE;
|
|
557
|
+
nodeUrl: string;
|
|
558
|
+
requireCertificate?: boolean;
|
|
559
|
+
connectionCertificate?: {
|
|
560
|
+
message?: Certificate;
|
|
561
|
+
options?: CertificateData;
|
|
562
|
+
};
|
|
563
|
+
};
|
|
552
564
|
allowCustomTokens?: boolean;
|
|
553
565
|
legalDocuments?: VechainKitProviderProps['legalDocuments'];
|
|
554
566
|
defaultCurrency?: VechainKitProviderProps['defaultCurrency'];
|
|
@@ -565,7 +577,7 @@ declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
|
565
577
|
/**
|
|
566
578
|
* Provider to wrap the application with Privy and DAppKit
|
|
567
579
|
*/
|
|
568
|
-
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) =>
|
|
580
|
+
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime0.JSX.Element;
|
|
569
581
|
//#endregion
|
|
570
582
|
//#region src/providers/PrivyWalletProvider.d.ts
|
|
571
583
|
interface PrivyWalletProviderContextType {
|
|
@@ -607,7 +619,7 @@ declare const PrivyWalletProvider: ({
|
|
|
607
619
|
delegatorUrl?: string;
|
|
608
620
|
delegateAllTransactions: boolean;
|
|
609
621
|
genericDelegator?: boolean;
|
|
610
|
-
}) =>
|
|
622
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
611
623
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
612
624
|
//#endregion
|
|
613
625
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
@@ -624,12 +636,12 @@ declare const ColorModeSync: ({
|
|
|
624
636
|
darkMode
|
|
625
637
|
}: {
|
|
626
638
|
darkMode: boolean;
|
|
627
|
-
}) =>
|
|
639
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
628
640
|
declare const VechainKitThemeProvider: ({
|
|
629
641
|
children,
|
|
630
642
|
darkMode,
|
|
631
643
|
theme: customTheme
|
|
632
|
-
}: Props$36) =>
|
|
644
|
+
}: Props$36) => react_jsx_runtime0.JSX.Element;
|
|
633
645
|
//#endregion
|
|
634
646
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
635
647
|
type Props$35 = {
|
|
@@ -645,7 +657,7 @@ type LegalDocumentsContextType = {
|
|
|
645
657
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
646
658
|
declare const LegalDocumentsProvider: ({
|
|
647
659
|
children
|
|
648
|
-
}: Props$35) =>
|
|
660
|
+
}: Props$35) => react_jsx_runtime0.JSX.Element;
|
|
649
661
|
//#endregion
|
|
650
662
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
651
663
|
type Props$34 = {
|
|
@@ -656,7 +668,7 @@ type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
|
|
|
656
668
|
declare const ConnectModal: ({
|
|
657
669
|
isOpen,
|
|
658
670
|
onClose
|
|
659
|
-
}: Props$34) =>
|
|
671
|
+
}: Props$34) => react_jsx_runtime0.JSX.Element;
|
|
660
672
|
//#endregion
|
|
661
673
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
662
674
|
type Props$33 = {
|
|
@@ -666,7 +678,7 @@ type Props$33 = {
|
|
|
666
678
|
declare const MainContent: ({
|
|
667
679
|
setCurrentContent,
|
|
668
680
|
onClose
|
|
669
|
-
}: Props$33) =>
|
|
681
|
+
}: Props$33) => react_jsx_runtime0.JSX.Element;
|
|
670
682
|
//#endregion
|
|
671
683
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
672
684
|
interface ConnectionButtonProps {
|
|
@@ -689,10 +701,10 @@ declare const ConnectionButton: ({
|
|
|
689
701
|
style,
|
|
690
702
|
variant,
|
|
691
703
|
iconWidth
|
|
692
|
-
}: ConnectionButtonProps) =>
|
|
704
|
+
}: ConnectionButtonProps) => react_jsx_runtime0.JSX.Element | null;
|
|
693
705
|
//#endregion
|
|
694
706
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
695
|
-
declare const EmailLoginButton: () =>
|
|
707
|
+
declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
|
|
696
708
|
//#endregion
|
|
697
709
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
698
710
|
type Props$32 = {
|
|
@@ -702,7 +714,7 @@ type Props$32 = {
|
|
|
702
714
|
declare const VeChainLoginButton: ({
|
|
703
715
|
isDark,
|
|
704
716
|
gridColumn
|
|
705
|
-
}: Props$32) =>
|
|
717
|
+
}: Props$32) => react_jsx_runtime0.JSX.Element;
|
|
706
718
|
//#endregion
|
|
707
719
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
708
720
|
type Props$31 = {
|
|
@@ -714,7 +726,7 @@ type Props$31 = {
|
|
|
714
726
|
declare const EcosystemButton: ({
|
|
715
727
|
appsInfo,
|
|
716
728
|
isLoading
|
|
717
|
-
}: Props$31) =>
|
|
729
|
+
}: Props$31) => react_jsx_runtime0.JSX.Element;
|
|
718
730
|
//#endregion
|
|
719
731
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
720
732
|
type Props$30 = {
|
|
@@ -726,7 +738,7 @@ declare const PrivyButton: ({
|
|
|
726
738
|
isDark,
|
|
727
739
|
onViewMoreLogin,
|
|
728
740
|
gridColumn
|
|
729
|
-
}: Props$30) =>
|
|
741
|
+
}: Props$30) => react_jsx_runtime0.JSX.Element;
|
|
730
742
|
//#endregion
|
|
731
743
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
732
744
|
type Props$29 = {
|
|
@@ -736,7 +748,7 @@ type Props$29 = {
|
|
|
736
748
|
declare const LoginWithGoogleButton: ({
|
|
737
749
|
isDark,
|
|
738
750
|
gridColumn
|
|
739
|
-
}: Props$29) =>
|
|
751
|
+
}: Props$29) => react_jsx_runtime0.JSX.Element;
|
|
740
752
|
//#endregion
|
|
741
753
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
742
754
|
type Props$28 = {
|
|
@@ -746,7 +758,7 @@ type Props$28 = {
|
|
|
746
758
|
declare const PasskeyLoginButton: ({
|
|
747
759
|
isDark,
|
|
748
760
|
gridColumn
|
|
749
|
-
}: Props$28) =>
|
|
761
|
+
}: Props$28) => react_jsx_runtime0.JSX.Element;
|
|
750
762
|
//#endregion
|
|
751
763
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
752
764
|
type Props$27 = {
|
|
@@ -756,7 +768,7 @@ type Props$27 = {
|
|
|
756
768
|
declare const DappKitButton: ({
|
|
757
769
|
isDark,
|
|
758
770
|
gridColumn
|
|
759
|
-
}: Props$27) =>
|
|
771
|
+
}: Props$27) => react_jsx_runtime0.JSX.Element;
|
|
760
772
|
//#endregion
|
|
761
773
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
762
774
|
type Props$26 = {
|
|
@@ -766,7 +778,7 @@ type Props$26 = {
|
|
|
766
778
|
declare const VeChainWithPrivyLoginButton: ({
|
|
767
779
|
isDark,
|
|
768
780
|
gridColumn
|
|
769
|
-
}: Props$26) =>
|
|
781
|
+
}: Props$26) => react_jsx_runtime0.JSX.Element;
|
|
770
782
|
//#endregion
|
|
771
783
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
772
784
|
type Props$25 = {
|
|
@@ -776,7 +788,7 @@ type Props$25 = {
|
|
|
776
788
|
declare const LoginWithGithubButton: ({
|
|
777
789
|
isDark,
|
|
778
790
|
gridColumn
|
|
779
|
-
}: Props$25) =>
|
|
791
|
+
}: Props$25) => react_jsx_runtime0.JSX.Element;
|
|
780
792
|
//#endregion
|
|
781
793
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
782
794
|
type ConnectPopoverProps = {
|
|
@@ -786,7 +798,7 @@ type ConnectPopoverProps = {
|
|
|
786
798
|
declare const ConnectPopover: ({
|
|
787
799
|
isLoading,
|
|
788
800
|
buttonStyle
|
|
789
|
-
}: ConnectPopoverProps) =>
|
|
801
|
+
}: ConnectPopoverProps) => react_jsx_runtime0.JSX.Element;
|
|
790
802
|
//#endregion
|
|
791
803
|
//#region src/components/WalletButton/types.d.ts
|
|
792
804
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
@@ -803,10 +815,10 @@ declare const WalletButton: ({
|
|
|
803
815
|
desktopVariant,
|
|
804
816
|
buttonStyle,
|
|
805
817
|
connectionVariant
|
|
806
|
-
}: WalletButtonProps) =>
|
|
818
|
+
}: WalletButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
807
819
|
//#endregion
|
|
808
820
|
//#region src/components/WalletButton/SocialIcons.d.ts
|
|
809
|
-
declare const SocialIcons: () =>
|
|
821
|
+
declare const SocialIcons: () => react_jsx_runtime0.JSX.Element;
|
|
810
822
|
//#endregion
|
|
811
823
|
//#region src/components/TransactionModal/TransactionModal.d.ts
|
|
812
824
|
type TransactionModalProps = {
|
|
@@ -836,7 +848,7 @@ declare const TransactionModal: ({
|
|
|
836
848
|
txReceipt,
|
|
837
849
|
txError,
|
|
838
850
|
onTryAgain
|
|
839
|
-
}: TransactionModalProps) =>
|
|
851
|
+
}: TransactionModalProps) => react_jsx_runtime0.JSX.Element;
|
|
840
852
|
//#endregion
|
|
841
853
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
842
854
|
type Props$24 = {
|
|
@@ -846,7 +858,7 @@ type Props$24 = {
|
|
|
846
858
|
};
|
|
847
859
|
declare const ShareButtons: ({
|
|
848
860
|
descriptionEncoded
|
|
849
|
-
}: Props$24) =>
|
|
861
|
+
}: Props$24) => react_jsx_runtime0.JSX.Element;
|
|
850
862
|
//#endregion
|
|
851
863
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
852
864
|
declare const TransactionModalContent: ({
|
|
@@ -856,7 +868,7 @@ declare const TransactionModalContent: ({
|
|
|
856
868
|
txReceipt,
|
|
857
869
|
txError,
|
|
858
870
|
onClose
|
|
859
|
-
}: Omit<TransactionModalProps, "isOpen">) =>
|
|
871
|
+
}: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime0.JSX.Element;
|
|
860
872
|
//#endregion
|
|
861
873
|
//#region src/components/TransactionToast/TransactionToast.d.ts
|
|
862
874
|
type TransactionToastProps = {
|
|
@@ -876,7 +888,7 @@ declare const TransactionToast: ({
|
|
|
876
888
|
txError,
|
|
877
889
|
onTryAgain,
|
|
878
890
|
description
|
|
879
|
-
}: TransactionToastProps) =>
|
|
891
|
+
}: TransactionToastProps) => react_jsx_runtime0.JSX.Element | null;
|
|
880
892
|
//#endregion
|
|
881
893
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
882
894
|
type Props$23 = {
|
|
@@ -888,7 +900,7 @@ declare const AccountMainContent: ({
|
|
|
888
900
|
setCurrentContent,
|
|
889
901
|
wallet,
|
|
890
902
|
onClose
|
|
891
|
-
}: Props$23) =>
|
|
903
|
+
}: Props$23) => react_jsx_runtime0.JSX.Element;
|
|
892
904
|
//#endregion
|
|
893
905
|
//#region src/components/AccountModal/Contents/Account/AccessAndSecurityContent.d.ts
|
|
894
906
|
type Props$22 = {
|
|
@@ -896,7 +908,7 @@ type Props$22 = {
|
|
|
896
908
|
};
|
|
897
909
|
declare const AccessAndSecurityContent: ({
|
|
898
910
|
setCurrentContent
|
|
899
|
-
}: Props$22) =>
|
|
911
|
+
}: Props$22) => react_jsx_runtime0.JSX.Element;
|
|
900
912
|
//#endregion
|
|
901
913
|
//#region src/components/AccountModal/Contents/Account/SettingsContent.d.ts
|
|
902
914
|
type SettingsContentProps = {
|
|
@@ -906,7 +918,7 @@ type SettingsContentProps = {
|
|
|
906
918
|
declare const SettingsContent: ({
|
|
907
919
|
setCurrentContent,
|
|
908
920
|
onLogoutSuccess
|
|
909
|
-
}: SettingsContentProps) =>
|
|
921
|
+
}: SettingsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
910
922
|
//#endregion
|
|
911
923
|
//#region src/components/AccountModal/Contents/Account/EmbeddedWalletContent.d.ts
|
|
912
924
|
type Props$21 = {
|
|
@@ -914,7 +926,7 @@ type Props$21 = {
|
|
|
914
926
|
};
|
|
915
927
|
declare const EmbeddedWalletContent: ({
|
|
916
928
|
setCurrentContent
|
|
917
|
-
}: Props$21) =>
|
|
929
|
+
}: Props$21) => react_jsx_runtime0.JSX.Element;
|
|
918
930
|
//#endregion
|
|
919
931
|
//#region src/components/AccountModal/Contents/Account/DisconnectConfirmContent.d.ts
|
|
920
932
|
type DisconnectConfirmContentProps = {
|
|
@@ -930,7 +942,7 @@ declare const DisconnectConfirmContent: ({
|
|
|
930
942
|
onClose,
|
|
931
943
|
showCloseButton,
|
|
932
944
|
text
|
|
933
|
-
}: DisconnectConfirmContentProps) =>
|
|
945
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime0.JSX.Element;
|
|
934
946
|
//#endregion
|
|
935
947
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
936
948
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
@@ -1010,7 +1022,7 @@ type useClaimVetDomainReturnValue = {
|
|
|
1010
1022
|
sendTransaction: () => Promise<void>;
|
|
1011
1023
|
clauses: () => TransactionClause[];
|
|
1012
1024
|
} & Omit<UseSendTransactionReturnValue, 'sendTransaction'>;
|
|
1013
|
-
declare const buildVetDomainClauses: (domain: string, alreadyOwned: boolean, account: Wallet, network:
|
|
1025
|
+
declare const buildVetDomainClauses: (domain: string, alreadyOwned: boolean, account: Wallet, network: VeChainKitConfig["network"]) => TransactionClause[];
|
|
1014
1026
|
/**
|
|
1015
1027
|
* Hook for claiming a .vet domain
|
|
1016
1028
|
*
|
|
@@ -1752,7 +1764,7 @@ declare const ConnectModalProvider: ({
|
|
|
1752
1764
|
children
|
|
1753
1765
|
}: {
|
|
1754
1766
|
children: ReactNode;
|
|
1755
|
-
}) =>
|
|
1767
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1756
1768
|
//#endregion
|
|
1757
1769
|
//#region src/hooks/modals/useAccountModal.d.ts
|
|
1758
1770
|
declare const useAccountModal: () => {
|
|
@@ -1764,7 +1776,7 @@ declare const AccountModalProvider: ({
|
|
|
1764
1776
|
children
|
|
1765
1777
|
}: {
|
|
1766
1778
|
children: ReactNode;
|
|
1767
|
-
}) =>
|
|
1779
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1768
1780
|
//#endregion
|
|
1769
1781
|
//#region src/hooks/modals/useTransactionModal.d.ts
|
|
1770
1782
|
declare const useTransactionModal: () => {
|
|
@@ -1776,7 +1788,7 @@ declare const TransactionModalProvider: ({
|
|
|
1776
1788
|
children
|
|
1777
1789
|
}: {
|
|
1778
1790
|
children: ReactNode;
|
|
1779
|
-
}) =>
|
|
1791
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1780
1792
|
//#endregion
|
|
1781
1793
|
//#region src/hooks/modals/useTransactionToast.d.ts
|
|
1782
1794
|
declare const useTransactionToast: () => {
|
|
@@ -1788,7 +1800,7 @@ declare const TransactionToastProvider: ({
|
|
|
1788
1800
|
children
|
|
1789
1801
|
}: {
|
|
1790
1802
|
children: ReactNode;
|
|
1791
|
-
}) =>
|
|
1803
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1792
1804
|
//#endregion
|
|
1793
1805
|
//#region src/hooks/modals/useWalletModal.d.ts
|
|
1794
1806
|
declare const useWalletModal: () => {
|
|
@@ -1800,7 +1812,7 @@ declare const WalletModalProvider: ({
|
|
|
1800
1812
|
children
|
|
1801
1813
|
}: {
|
|
1802
1814
|
children: ReactNode;
|
|
1803
|
-
}) =>
|
|
1815
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1804
1816
|
//#endregion
|
|
1805
1817
|
//#region src/hooks/modals/useChooseNameModal.d.ts
|
|
1806
1818
|
declare const useChooseNameModal: () => {
|
|
@@ -1812,7 +1824,7 @@ declare const ChooseNameModalProvider: ({
|
|
|
1812
1824
|
children
|
|
1813
1825
|
}: {
|
|
1814
1826
|
children: ReactNode;
|
|
1815
|
-
}) =>
|
|
1827
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1816
1828
|
//#endregion
|
|
1817
1829
|
//#region src/hooks/modals/useSendTokenModal.d.ts
|
|
1818
1830
|
declare const useSendTokenModal: () => {
|
|
@@ -1824,7 +1836,7 @@ declare const SendTokenModalProvider: ({
|
|
|
1824
1836
|
children
|
|
1825
1837
|
}: {
|
|
1826
1838
|
children: ReactNode;
|
|
1827
|
-
}) =>
|
|
1839
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1828
1840
|
//#endregion
|
|
1829
1841
|
//#region src/hooks/modals/useSwapTokenModal.d.ts
|
|
1830
1842
|
type SwapTokenModalOptions = {
|
|
@@ -1841,7 +1853,7 @@ declare const SwapTokenModalProvider: ({
|
|
|
1841
1853
|
children
|
|
1842
1854
|
}: {
|
|
1843
1855
|
children: ReactNode;
|
|
1844
|
-
}) =>
|
|
1856
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1845
1857
|
//#endregion
|
|
1846
1858
|
//#region src/hooks/modals/useAccessAndSecurityModal.d.ts
|
|
1847
1859
|
declare const useAccessAndSecurityModal: () => {
|
|
@@ -1853,7 +1865,7 @@ declare const AccessAndSecurityModalProvider: ({
|
|
|
1853
1865
|
children
|
|
1854
1866
|
}: {
|
|
1855
1867
|
children: ReactNode;
|
|
1856
|
-
}) =>
|
|
1868
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1857
1869
|
//#endregion
|
|
1858
1870
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
1859
1871
|
declare const useExploreEcosystemModal: () => {
|
|
@@ -1865,7 +1877,7 @@ declare const ExploreEcosystemModalProvider: ({
|
|
|
1865
1877
|
children
|
|
1866
1878
|
}: {
|
|
1867
1879
|
children: ReactNode;
|
|
1868
|
-
}) =>
|
|
1880
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1869
1881
|
//#endregion
|
|
1870
1882
|
//#region src/hooks/modals/useNotificationsModal.d.ts
|
|
1871
1883
|
declare const useNotificationsModal: () => {
|
|
@@ -1877,7 +1889,7 @@ declare const NotificationsModalProvider: ({
|
|
|
1877
1889
|
children
|
|
1878
1890
|
}: {
|
|
1879
1891
|
children: ReactNode;
|
|
1880
|
-
}) =>
|
|
1892
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1881
1893
|
//#endregion
|
|
1882
1894
|
//#region src/hooks/modals/useFAQModal.d.ts
|
|
1883
1895
|
declare const useFAQModal: () => {
|
|
@@ -1889,7 +1901,7 @@ declare const FAQModalProvider: ({
|
|
|
1889
1901
|
children
|
|
1890
1902
|
}: {
|
|
1891
1903
|
children: ReactNode;
|
|
1892
|
-
}) =>
|
|
1904
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1893
1905
|
//#endregion
|
|
1894
1906
|
//#region src/hooks/modals/useAccountCustomizationModal.d.ts
|
|
1895
1907
|
declare const useAccountCustomizationModal: () => {
|
|
@@ -1901,7 +1913,7 @@ declare const AccountCustomizationModalProvider: ({
|
|
|
1901
1913
|
children
|
|
1902
1914
|
}: {
|
|
1903
1915
|
children: ReactNode;
|
|
1904
|
-
}) =>
|
|
1916
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1905
1917
|
//#endregion
|
|
1906
1918
|
//#region src/hooks/modals/useReceiveModal.d.ts
|
|
1907
1919
|
declare const useReceiveModal: () => {
|
|
@@ -1913,7 +1925,7 @@ declare const ReceiveModalProvider: ({
|
|
|
1913
1925
|
children
|
|
1914
1926
|
}: {
|
|
1915
1927
|
children: ReactNode;
|
|
1916
|
-
}) =>
|
|
1928
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1917
1929
|
//#endregion
|
|
1918
1930
|
//#region src/hooks/modals/useLoginModalContent.d.ts
|
|
1919
1931
|
type LoginModalContentConfig = {
|
|
@@ -1939,7 +1951,7 @@ declare const UpgradeSmartAccountModalProvider: ({
|
|
|
1939
1951
|
children
|
|
1940
1952
|
}: {
|
|
1941
1953
|
children: ReactNode;
|
|
1942
|
-
}) =>
|
|
1954
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1943
1955
|
//#endregion
|
|
1944
1956
|
//#region src/hooks/modals/useProfileModal.d.ts
|
|
1945
1957
|
declare const useProfileModal: () => {
|
|
@@ -1951,7 +1963,7 @@ declare const ProfileModalProvider: ({
|
|
|
1951
1963
|
children
|
|
1952
1964
|
}: {
|
|
1953
1965
|
children: ReactNode;
|
|
1954
|
-
}) =>
|
|
1966
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1955
1967
|
//#endregion
|
|
1956
1968
|
//#region src/hooks/modals/useAccountModalOptions.d.ts
|
|
1957
1969
|
declare const useAccountModalOptions: () => {
|
|
@@ -3108,7 +3120,7 @@ declare const SendTokenContent: ({
|
|
|
3108
3120
|
initialAmount,
|
|
3109
3121
|
initialToAddressOrDomain,
|
|
3110
3122
|
onBack: parentOnBack
|
|
3111
|
-
}: SendTokenContentProps) =>
|
|
3123
|
+
}: SendTokenContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3112
3124
|
//#endregion
|
|
3113
3125
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
|
|
3114
3126
|
type SendTokenSummaryContentProps = {
|
|
@@ -3128,7 +3140,7 @@ declare const SendTokenSummaryContent: ({
|
|
|
3128
3140
|
amount,
|
|
3129
3141
|
selectedToken,
|
|
3130
3142
|
formattedTotalAmount
|
|
3131
|
-
}: SendTokenSummaryContentProps) =>
|
|
3143
|
+
}: SendTokenSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3132
3144
|
//#endregion
|
|
3133
3145
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
3134
3146
|
type Props$18 = {
|
|
@@ -3144,7 +3156,7 @@ declare const SelectTokenContent: ({
|
|
|
3144
3156
|
onSelectToken,
|
|
3145
3157
|
onBack,
|
|
3146
3158
|
showAllTokens
|
|
3147
|
-
}: Props$18) =>
|
|
3159
|
+
}: Props$18) => react_jsx_runtime0.JSX.Element;
|
|
3148
3160
|
//#endregion
|
|
3149
3161
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
3150
3162
|
type Props$17 = {
|
|
@@ -3152,7 +3164,7 @@ type Props$17 = {
|
|
|
3152
3164
|
};
|
|
3153
3165
|
declare const ReceiveTokenContent: ({
|
|
3154
3166
|
setCurrentContent
|
|
3155
|
-
}: Props$17) =>
|
|
3167
|
+
}: Props$17) => react_jsx_runtime0.JSX.Element;
|
|
3156
3168
|
//#endregion
|
|
3157
3169
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
3158
3170
|
type Props$16 = {
|
|
@@ -3164,7 +3176,7 @@ declare const SwapTokenContent: ({
|
|
|
3164
3176
|
setCurrentContent,
|
|
3165
3177
|
fromTokenAddress,
|
|
3166
3178
|
toTokenAddress
|
|
3167
|
-
}: Props$16) =>
|
|
3179
|
+
}: Props$16) => react_jsx_runtime0.JSX.Element;
|
|
3168
3180
|
//#endregion
|
|
3169
3181
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
3170
3182
|
type ChooseNameContentProps = {
|
|
@@ -3176,7 +3188,7 @@ declare const ChooseNameContent: ({
|
|
|
3176
3188
|
setCurrentContent,
|
|
3177
3189
|
onBack,
|
|
3178
3190
|
initialContentSource
|
|
3179
|
-
}: ChooseNameContentProps) =>
|
|
3191
|
+
}: ChooseNameContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3180
3192
|
//#endregion
|
|
3181
3193
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
|
|
3182
3194
|
type ChooseNameSearchContentProps = {
|
|
@@ -3188,7 +3200,7 @@ declare const ChooseNameSearchContent: ({
|
|
|
3188
3200
|
name: initialName,
|
|
3189
3201
|
setCurrentContent,
|
|
3190
3202
|
initialContentSource
|
|
3191
|
-
}: ChooseNameSearchContentProps) =>
|
|
3203
|
+
}: ChooseNameSearchContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3192
3204
|
//#endregion
|
|
3193
3205
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
|
|
3194
3206
|
type ChooseNameSummaryContentProps = {
|
|
@@ -3206,7 +3218,7 @@ declare const ChooseNameSummaryContent: ({
|
|
|
3206
3218
|
isOwnDomain,
|
|
3207
3219
|
isUnsetting,
|
|
3208
3220
|
initialContentSource
|
|
3209
|
-
}: ChooseNameSummaryContentProps) =>
|
|
3221
|
+
}: ChooseNameSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3210
3222
|
//#endregion
|
|
3211
3223
|
//#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
|
|
3212
3224
|
type FAQContentProps = {
|
|
@@ -3216,7 +3228,7 @@ type FAQContentProps = {
|
|
|
3216
3228
|
declare const FAQContent: ({
|
|
3217
3229
|
onGoBack,
|
|
3218
3230
|
showLanguageSelector
|
|
3219
|
-
}: FAQContentProps) =>
|
|
3231
|
+
}: FAQContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3220
3232
|
//#endregion
|
|
3221
3233
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
|
|
3222
3234
|
type AccountCustomizationContentProps = {
|
|
@@ -3226,7 +3238,7 @@ type AccountCustomizationContentProps = {
|
|
|
3226
3238
|
declare const CustomizationContent: ({
|
|
3227
3239
|
setCurrentContent,
|
|
3228
3240
|
initialContentSource
|
|
3229
|
-
}: AccountCustomizationContentProps) =>
|
|
3241
|
+
}: AccountCustomizationContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3230
3242
|
//#endregion
|
|
3231
3243
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
|
|
3232
3244
|
type CustomizationSummaryContentProps = {
|
|
@@ -3245,7 +3257,7 @@ declare const CustomizationSummaryContent: ({
|
|
|
3245
3257
|
setCurrentContent,
|
|
3246
3258
|
changes,
|
|
3247
3259
|
onDoneRedirectContent
|
|
3248
|
-
}: CustomizationSummaryContentProps) =>
|
|
3260
|
+
}: CustomizationSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3249
3261
|
//#endregion
|
|
3250
3262
|
//#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
|
|
3251
3263
|
type ProfileContentProps = {
|
|
@@ -3255,7 +3267,7 @@ type ProfileContentProps = {
|
|
|
3255
3267
|
declare const ProfileContent: ({
|
|
3256
3268
|
setCurrentContent,
|
|
3257
3269
|
onLogoutSuccess
|
|
3258
|
-
}: ProfileContentProps) =>
|
|
3270
|
+
}: ProfileContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3259
3271
|
//#endregion
|
|
3260
3272
|
//#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
|
|
3261
3273
|
type UpgradeSmartAccountContentProps = {
|
|
@@ -3267,7 +3279,7 @@ declare const UpgradeSmartAccountContent: ({
|
|
|
3267
3279
|
setCurrentContent,
|
|
3268
3280
|
handleClose,
|
|
3269
3281
|
initialContent
|
|
3270
|
-
}: UpgradeSmartAccountContentProps) =>
|
|
3282
|
+
}: UpgradeSmartAccountContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3271
3283
|
//#endregion
|
|
3272
3284
|
//#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
|
|
3273
3285
|
type AssetsContentProps = {
|
|
@@ -3275,7 +3287,7 @@ type AssetsContentProps = {
|
|
|
3275
3287
|
};
|
|
3276
3288
|
declare const AssetsContent: ({
|
|
3277
3289
|
setCurrentContent
|
|
3278
|
-
}: AssetsContentProps) =>
|
|
3290
|
+
}: AssetsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3279
3291
|
//#endregion
|
|
3280
3292
|
//#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
|
|
3281
3293
|
type ManageCustomTokenContentProps = {
|
|
@@ -3283,7 +3295,7 @@ type ManageCustomTokenContentProps = {
|
|
|
3283
3295
|
};
|
|
3284
3296
|
declare const ManageCustomTokenContent: ({
|
|
3285
3297
|
setCurrentContent
|
|
3286
|
-
}: ManageCustomTokenContentProps) =>
|
|
3298
|
+
}: ManageCustomTokenContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3287
3299
|
//#endregion
|
|
3288
3300
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
3289
3301
|
type Props$15 = {
|
|
@@ -3291,7 +3303,7 @@ type Props$15 = {
|
|
|
3291
3303
|
};
|
|
3292
3304
|
declare const BridgeContent: ({
|
|
3293
3305
|
setCurrentContent
|
|
3294
|
-
}: Props$15) =>
|
|
3306
|
+
}: Props$15) => react_jsx_runtime0.JSX.Element;
|
|
3295
3307
|
//#endregion
|
|
3296
3308
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
3297
3309
|
type ChangeCurrencyContentProps = {
|
|
@@ -3299,7 +3311,7 @@ type ChangeCurrencyContentProps = {
|
|
|
3299
3311
|
};
|
|
3300
3312
|
declare const ChangeCurrencyContent: ({
|
|
3301
3313
|
setCurrentContent
|
|
3302
|
-
}: ChangeCurrencyContentProps) =>
|
|
3314
|
+
}: ChangeCurrencyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3303
3315
|
//#endregion
|
|
3304
3316
|
//#region src/components/AccountModal/Contents/KitSettings/GeneralSettingsContent.d.ts
|
|
3305
3317
|
type Props$14 = {
|
|
@@ -3307,7 +3319,7 @@ type Props$14 = {
|
|
|
3307
3319
|
};
|
|
3308
3320
|
declare const GeneralSettingsContent: ({
|
|
3309
3321
|
setCurrentContent
|
|
3310
|
-
}: Props$14) =>
|
|
3322
|
+
}: Props$14) => react_jsx_runtime0.JSX.Element;
|
|
3311
3323
|
//#endregion
|
|
3312
3324
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
3313
3325
|
type Props$13 = {
|
|
@@ -3315,7 +3327,7 @@ type Props$13 = {
|
|
|
3315
3327
|
};
|
|
3316
3328
|
declare const LanguageSettingsContent: ({
|
|
3317
3329
|
setCurrentContent
|
|
3318
|
-
}: Props$13) =>
|
|
3330
|
+
}: Props$13) => react_jsx_runtime0.JSX.Element;
|
|
3319
3331
|
//#endregion
|
|
3320
3332
|
//#region src/components/AccountModal/Contents/KitSettings/AppearanceSettingsContent.d.ts
|
|
3321
3333
|
type Props$12 = {
|
|
@@ -3323,7 +3335,7 @@ type Props$12 = {
|
|
|
3323
3335
|
};
|
|
3324
3336
|
declare const AppearanceSettingsContent: ({
|
|
3325
3337
|
setCurrentContent
|
|
3326
|
-
}: Props$12) =>
|
|
3338
|
+
}: Props$12) => react_jsx_runtime0.JSX.Element;
|
|
3327
3339
|
//#endregion
|
|
3328
3340
|
//#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
|
|
3329
3341
|
type Props$11 = {
|
|
@@ -3331,7 +3343,7 @@ type Props$11 = {
|
|
|
3331
3343
|
};
|
|
3332
3344
|
declare const GasTokenSettingsContent: ({
|
|
3333
3345
|
setCurrentContent
|
|
3334
|
-
}: Props$11) =>
|
|
3346
|
+
}: Props$11) => react_jsx_runtime0.JSX.Element;
|
|
3335
3347
|
//#endregion
|
|
3336
3348
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
3337
3349
|
type TermsAndPrivacyContentProps = {
|
|
@@ -3339,7 +3351,7 @@ type TermsAndPrivacyContentProps = {
|
|
|
3339
3351
|
};
|
|
3340
3352
|
declare const TermsAndPrivacyContent: ({
|
|
3341
3353
|
onGoBack
|
|
3342
|
-
}: TermsAndPrivacyContentProps) =>
|
|
3354
|
+
}: TermsAndPrivacyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3343
3355
|
//#endregion
|
|
3344
3356
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
3345
3357
|
type CategoryFilter = string | null;
|
|
@@ -3443,7 +3455,7 @@ declare const AccountModal: ({
|
|
|
3443
3455
|
isOpen,
|
|
3444
3456
|
onClose,
|
|
3445
3457
|
initialContent
|
|
3446
|
-
}: Props$10) =>
|
|
3458
|
+
}: Props$10) => react_jsx_runtime0.JSX.Element;
|
|
3447
3459
|
//#endregion
|
|
3448
3460
|
//#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
|
|
3449
3461
|
interface AccountDetailsButtonProps {
|
|
@@ -3465,7 +3477,7 @@ declare const AccountDetailsButton: ({
|
|
|
3465
3477
|
onClick,
|
|
3466
3478
|
leftImage,
|
|
3467
3479
|
isActive
|
|
3468
|
-
}: AccountDetailsButtonProps) =>
|
|
3480
|
+
}: AccountDetailsButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3469
3481
|
//#endregion
|
|
3470
3482
|
//#region src/components/AccountModal/Components/ActionButton.d.ts
|
|
3471
3483
|
type ActionButtonProps = {
|
|
@@ -3507,7 +3519,7 @@ declare const ActionButton: ({
|
|
|
3507
3519
|
extraContent,
|
|
3508
3520
|
dataTestId,
|
|
3509
3521
|
variant
|
|
3510
|
-
}: ActionButtonProps) =>
|
|
3522
|
+
}: ActionButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3511
3523
|
//#endregion
|
|
3512
3524
|
//#region src/components/AccountModal/Components/AccountSelector.d.ts
|
|
3513
3525
|
type Props$9 = {
|
|
@@ -3527,7 +3539,7 @@ declare const AccountSelector: ({
|
|
|
3527
3539
|
onClose,
|
|
3528
3540
|
mt,
|
|
3529
3541
|
style
|
|
3530
|
-
}: Props$9) =>
|
|
3542
|
+
}: Props$9) => react_jsx_runtime0.JSX.Element;
|
|
3531
3543
|
//#endregion
|
|
3532
3544
|
//#region src/components/AccountModal/Components/BalanceSection.d.ts
|
|
3533
3545
|
declare const BalanceSection: ({
|
|
@@ -3538,7 +3550,7 @@ declare const BalanceSection: ({
|
|
|
3538
3550
|
mb?: number;
|
|
3539
3551
|
mt?: number;
|
|
3540
3552
|
onAssetsClick?: () => void;
|
|
3541
|
-
}) =>
|
|
3553
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
3542
3554
|
//#endregion
|
|
3543
3555
|
//#region src/components/AccountModal/Components/QuickActionsSection.d.ts
|
|
3544
3556
|
type Props$8 = {
|
|
@@ -3548,7 +3560,7 @@ type Props$8 = {
|
|
|
3548
3560
|
declare const QuickActionsSection: ({
|
|
3549
3561
|
mt,
|
|
3550
3562
|
setCurrentContent
|
|
3551
|
-
}: Props$8) =>
|
|
3563
|
+
}: Props$8) => react_jsx_runtime0.JSX.Element;
|
|
3552
3564
|
//#endregion
|
|
3553
3565
|
//#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
|
|
3554
3566
|
type FeatureAnnouncementCardProps = {
|
|
@@ -3556,16 +3568,16 @@ type FeatureAnnouncementCardProps = {
|
|
|
3556
3568
|
};
|
|
3557
3569
|
declare const FeatureAnnouncementCard: ({
|
|
3558
3570
|
setCurrentContent
|
|
3559
|
-
}: FeatureAnnouncementCardProps) =>
|
|
3571
|
+
}: FeatureAnnouncementCardProps) => react_jsx_runtime0.JSX.Element | null;
|
|
3560
3572
|
//#endregion
|
|
3561
3573
|
//#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
|
|
3562
|
-
declare const ExchangeWarningAlert: () =>
|
|
3574
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime0.JSX.Element;
|
|
3563
3575
|
//#endregion
|
|
3564
3576
|
//#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
|
|
3565
|
-
declare const DomainRequiredAlert: () =>
|
|
3577
|
+
declare const DomainRequiredAlert: () => react_jsx_runtime0.JSX.Element;
|
|
3566
3578
|
//#endregion
|
|
3567
3579
|
//#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
|
|
3568
|
-
declare const CrossAppConnectionSecurityCard: () =>
|
|
3580
|
+
declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime0.JSX.Element;
|
|
3569
3581
|
//#endregion
|
|
3570
3582
|
//#region src/components/common/ModalBackButton.d.ts
|
|
3571
3583
|
type BackButtonProps = {
|
|
@@ -3574,7 +3586,7 @@ type BackButtonProps = {
|
|
|
3574
3586
|
declare const ModalBackButton: ({
|
|
3575
3587
|
onClick,
|
|
3576
3588
|
...props
|
|
3577
|
-
}: BackButtonProps) =>
|
|
3589
|
+
}: BackButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3578
3590
|
//#endregion
|
|
3579
3591
|
//#region src/components/common/AddressDisplay.d.ts
|
|
3580
3592
|
type Props$7 = {
|
|
@@ -3588,13 +3600,13 @@ declare const AddressDisplay: ({
|
|
|
3588
3600
|
label,
|
|
3589
3601
|
style,
|
|
3590
3602
|
showHumanAddress
|
|
3591
|
-
}: Props$7) =>
|
|
3603
|
+
}: Props$7) => react_jsx_runtime0.JSX.Element;
|
|
3592
3604
|
//#endregion
|
|
3593
3605
|
//#region src/components/common/VersionFooter.d.ts
|
|
3594
3606
|
type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
3595
3607
|
declare const VersionFooter: ({
|
|
3596
3608
|
...props
|
|
3597
|
-
}: Props$6) =>
|
|
3609
|
+
}: Props$6) => react_jsx_runtime0.JSX.Element;
|
|
3598
3610
|
//#endregion
|
|
3599
3611
|
//#region src/components/common/StickyHeaderContainer.d.ts
|
|
3600
3612
|
type Props$5 = {
|
|
@@ -3602,7 +3614,7 @@ type Props$5 = {
|
|
|
3602
3614
|
};
|
|
3603
3615
|
declare const StickyHeaderContainer: ({
|
|
3604
3616
|
children
|
|
3605
|
-
}: Props$5) =>
|
|
3617
|
+
}: Props$5) => react_jsx_runtime0.JSX.Element;
|
|
3606
3618
|
//#endregion
|
|
3607
3619
|
//#region src/components/common/StickyFooterContainer.d.ts
|
|
3608
3620
|
type Props$4 = {
|
|
@@ -3610,7 +3622,7 @@ type Props$4 = {
|
|
|
3610
3622
|
};
|
|
3611
3623
|
declare const StickyFooterContainer: ({
|
|
3612
3624
|
children
|
|
3613
|
-
}: Props$4) =>
|
|
3625
|
+
}: Props$4) => react_jsx_runtime0.JSX.Element;
|
|
3614
3626
|
//#endregion
|
|
3615
3627
|
//#region src/components/common/BaseModal.d.ts
|
|
3616
3628
|
type BaseModalProps = {
|
|
@@ -3641,7 +3653,7 @@ declare const BaseModal: ({
|
|
|
3641
3653
|
allowExternalFocus,
|
|
3642
3654
|
backdropFilter,
|
|
3643
3655
|
isCloseable
|
|
3644
|
-
}: BaseModalProps) =>
|
|
3656
|
+
}: BaseModalProps) => react_jsx_runtime0.JSX.Element;
|
|
3645
3657
|
//#endregion
|
|
3646
3658
|
//#region src/components/common/AssetButton.d.ts
|
|
3647
3659
|
type AssetButtonProps = ButtonProps & {
|
|
@@ -3660,7 +3672,7 @@ declare const AssetButton: ({
|
|
|
3660
3672
|
isDisabled,
|
|
3661
3673
|
onClick,
|
|
3662
3674
|
...buttonProps
|
|
3663
|
-
}: AssetButtonProps) =>
|
|
3675
|
+
}: AssetButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3664
3676
|
//#endregion
|
|
3665
3677
|
//#region src/components/common/AddressDisplayCard.d.ts
|
|
3666
3678
|
type AddressDisplayCardProps = {
|
|
@@ -3682,7 +3694,7 @@ declare const AddressDisplayCard: ({
|
|
|
3682
3694
|
hideAddress,
|
|
3683
3695
|
balance,
|
|
3684
3696
|
tokenAddress
|
|
3685
|
-
}: AddressDisplayCardProps) =>
|
|
3697
|
+
}: AddressDisplayCardProps) => react_jsx_runtime0.JSX.Element;
|
|
3686
3698
|
//#endregion
|
|
3687
3699
|
//#region src/components/common/ModalFAQButton.d.ts
|
|
3688
3700
|
type FAQButtonProps = {
|
|
@@ -3691,13 +3703,13 @@ type FAQButtonProps = {
|
|
|
3691
3703
|
declare const ModalFAQButton: ({
|
|
3692
3704
|
onClick,
|
|
3693
3705
|
...props
|
|
3694
|
-
}: FAQButtonProps) =>
|
|
3706
|
+
}: FAQButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3695
3707
|
//#endregion
|
|
3696
3708
|
//#region src/components/common/ScrollToTopWrapper.d.ts
|
|
3697
3709
|
declare const ScrollToTopWrapper: ({
|
|
3698
3710
|
children,
|
|
3699
3711
|
...props
|
|
3700
|
-
}: StackProps) =>
|
|
3712
|
+
}: StackProps) => react_jsx_runtime0.JSX.Element;
|
|
3701
3713
|
//#endregion
|
|
3702
3714
|
//#region src/components/common/AccountAvatar.d.ts
|
|
3703
3715
|
type AccountAvatarProps = {
|
|
@@ -3707,7 +3719,7 @@ type AccountAvatarProps = {
|
|
|
3707
3719
|
declare const AccountAvatar: ({
|
|
3708
3720
|
wallet,
|
|
3709
3721
|
props
|
|
3710
|
-
}: AccountAvatarProps) =>
|
|
3722
|
+
}: AccountAvatarProps) => react_jsx_runtime0.JSX.Element;
|
|
3711
3723
|
//#endregion
|
|
3712
3724
|
//#region src/components/common/TransactionButtonAndStatus.d.ts
|
|
3713
3725
|
type TransactionButtonAndStatusProps = {
|
|
@@ -3749,7 +3761,7 @@ declare const TransactionButtonAndStatus: ({
|
|
|
3749
3761
|
isLoadingGasEstimation,
|
|
3750
3762
|
showGasEstimationError,
|
|
3751
3763
|
context
|
|
3752
|
-
}: TransactionButtonAndStatusProps) =>
|
|
3764
|
+
}: TransactionButtonAndStatusProps) => react_jsx_runtime0.JSX.Element;
|
|
3753
3765
|
//#endregion
|
|
3754
3766
|
//#region src/components/common/ModalNotificationButton.d.ts
|
|
3755
3767
|
type NotificationButtonProps = {
|
|
@@ -3760,7 +3772,7 @@ declare const ModalNotificationButton: ({
|
|
|
3760
3772
|
onClick,
|
|
3761
3773
|
hasUnreadNotifications,
|
|
3762
3774
|
...props
|
|
3763
|
-
}: NotificationButtonProps) =>
|
|
3775
|
+
}: NotificationButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3764
3776
|
//#endregion
|
|
3765
3777
|
//#region src/components/common/GasFeeSummary.d.ts
|
|
3766
3778
|
interface GasFeeSummaryProps {
|
|
@@ -3796,7 +3808,7 @@ declare const GasFeeTokenSelector: ({
|
|
|
3796
3808
|
availableTokens,
|
|
3797
3809
|
tokenEstimations,
|
|
3798
3810
|
walletAddress
|
|
3799
|
-
}: GasFeeTokenSelectorProps) =>
|
|
3811
|
+
}: GasFeeTokenSelectorProps) => react_jsx_runtime0.JSX.Element;
|
|
3800
3812
|
//#endregion
|
|
3801
3813
|
//#region src/components/LoginLoadingModal/LoginLoadingModal.d.ts
|
|
3802
3814
|
type LoginLoadingModalProps = {
|
|
@@ -3814,7 +3826,7 @@ declare const LoginLoadingModal: ({
|
|
|
3814
3826
|
title,
|
|
3815
3827
|
loadingText,
|
|
3816
3828
|
onTryAgain
|
|
3817
|
-
}: LoginLoadingModalProps) =>
|
|
3829
|
+
}: LoginLoadingModalProps) => react_jsx_runtime0.JSX.Element;
|
|
3818
3830
|
//#endregion
|
|
3819
3831
|
//#region src/components/EcosystemModal/EcosystemModal.d.ts
|
|
3820
3832
|
type Props$3 = {
|
|
@@ -3828,7 +3840,7 @@ declare const EcosystemModal: ({
|
|
|
3828
3840
|
onClose,
|
|
3829
3841
|
appsInfo,
|
|
3830
3842
|
isLoading
|
|
3831
|
-
}: Props$3) =>
|
|
3843
|
+
}: Props$3) => react_jsx_runtime0.JSX.Element;
|
|
3832
3844
|
//#endregion
|
|
3833
3845
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
3834
3846
|
type SuccessfulOperationContentProps = {
|
|
@@ -3858,7 +3870,7 @@ declare const UpgradeSmartAccountModal: ({
|
|
|
3858
3870
|
isOpen,
|
|
3859
3871
|
onClose,
|
|
3860
3872
|
style
|
|
3861
|
-
}: Props$2) =>
|
|
3873
|
+
}: Props$2) => react_jsx_runtime0.JSX.Element;
|
|
3862
3874
|
//#endregion
|
|
3863
3875
|
//#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
|
|
3864
3876
|
type Props$1 = {
|
|
@@ -3873,7 +3885,7 @@ declare const LegalDocumentsModal: ({
|
|
|
3873
3885
|
onAgree,
|
|
3874
3886
|
handleLogout,
|
|
3875
3887
|
onlyOptionalDocuments
|
|
3876
|
-
}: Props$1) =>
|
|
3888
|
+
}: Props$1) => react_jsx_runtime0.JSX.Element;
|
|
3877
3889
|
//#endregion
|
|
3878
3890
|
//#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
|
|
3879
3891
|
type Props = {
|
|
@@ -3885,7 +3897,7 @@ declare const LegalDocumentItem: ({
|
|
|
3885
3897
|
document,
|
|
3886
3898
|
register,
|
|
3887
3899
|
isText
|
|
3888
|
-
}: Props) =>
|
|
3900
|
+
}: Props) => react_jsx_runtime0.JSX.Element;
|
|
3889
3901
|
//#endregion
|
|
3890
3902
|
//#region src/providers/ModalProvider.d.ts
|
|
3891
3903
|
type AccountModalOptions = {
|
|
@@ -3916,7 +3928,7 @@ declare const ModalProvider: ({
|
|
|
3916
3928
|
children
|
|
3917
3929
|
}: {
|
|
3918
3930
|
children: ReactNode;
|
|
3919
|
-
}) =>
|
|
3931
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
3920
3932
|
//#endregion
|
|
3921
3933
|
//#region src/config/index.d.ts
|
|
3922
3934
|
type AppConfig = {
|
|
@@ -3961,5 +3973,5 @@ type AppConfig = {
|
|
|
3961
3973
|
};
|
|
3962
3974
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
3963
3975
|
//#endregion
|
|
3964
|
-
export { AssetsContentProps as $, getCustomTokenInfoQueryKey as $a, useChooseNameModal as $i, useGetNodeUrl as $n, EmbeddedWalletContent as $o, getPicassoImage as $r, formatGasCost as $s, getSmartAccount as $t, ModalBackButton as A, getXAppMetadata as Aa, useAccountModalOptions as Ai, delegateAuthorized as An, getAvatarQueryKey as Ao, validate as Ar, VechainKitThemeProvider as As, useBuildTransaction as At, AccountModal as B, XApp as Ba, FAQModalProvider as Bi, LocalStorageKey as Bn, useClaimVetDomain as Bo, xNodeToGMstartingLevel as Br, useVeChainKitConfig as Bs, getChainId as Bt, AddressDisplayCard as C, useIpfsImageList as Ca, VePassportUserStatus as Cc, useLoginWithVeChain as Ci, useAccountBalance as Cn, getResolverAddressQueryKey as Co, isValidUrl as Cr, ConnectionButton as Cs, useMfaEnrollment as Ct, StickyHeaderContainer as D, getXAppsSharesQueryKey as Da, useSignMessage as Di, useGasEstimation as Dn, getTextRecords as Do, isValid as Dr, LegalDocumentsProvider as Ds, txReceiptQueryKey as Dt, StickyFooterContainer as E, useIpfsMetadata as Ea, useSignTypedData as Ei, UseGasEstimationParams as En, useUpdateTextRecord as Eo, isInvalid as Er, ConnectModalContentsTypes as Es, useThor$1 as Et, QuickActionsSection as F, getRoundXAppsQueryKey as Fa, useLoginModalContent as Fi, useGenericDelegator as Fn, getDomainsOfAddressQueryKey as Fo, NodeStrengthLevelToImage as Fr, LegalDocument as Fs, UseSendTransactionReturnValue as Ft, LanguageSettingsContent as G, useGetVot3Balance as Ga, useExploreEcosystemModal as Gi, useBuildClauses as Gn, useVechainDomain as Go, validateIpfsUri as Gr, CostLevel as Gs, useUpgradeSmartAccount as Gt, TermsAndPrivacyContent as H, getIsPersonQueryKey as Ha, NotificationsModalProvider as Hi, BuildClausesParams as Hn, getEnsRecordExistsQueryKey as Ho, resolveMediaTypeFromMimeType as Hr, LegalDocumentAgreement as Hs, useGetChainId as Ht, BalanceSection as I, useRoundXApps as Ia, ReceiveModalProvider as Ii, useCrossAppConnectionCache as In, useGetDomainsOfAddress as Io, XNodeStrengthLevelToName as Ir, LegalDocumentOptions as Is, useSendTransaction as It, ChangeCurrencyContentProps as J, getTokenUsdPrice as Ja, SwapTokenModalProvider as Ji, decodeEventLog$1 as Jn, fetchPrivyAppInfo as Jo, isValidAddress as Jr, EstimationResponse as Js, useUpgradeRequiredForAccount as Jt, GeneralSettingsContent as K, PRICE_FEED_IDS as Ka, AccessAndSecurityModalProvider as Ki, GetEventsKeyParams as Kn, fetchPrivyStatus as Ko, compareAddresses as Kr, DepositAccount as Ks, getUpgradeRequiredForAccount as Kt, AccountSelector as L, useRefreshMetadata as La, useReceiveModal as Li, EcosystemShortcut as Ln, getIsDomainProtectedQueryKey as Lo, allNodeStrengthLevelToName as Lr, VeChainKitContext as Ls, GetEventsProps as Lt, DomainRequiredAlert as M, useWalletMetadata as Ma, useProfileModal as Mi, estimateGas as Mn, Domain as Mo, TIME as Mr, PrivyWalletProvider as Ms, useTransferVET as Mt, ExchangeWarningAlert as N, UseWalletReturnType as Na, UpgradeSmartAccountModalProvider as Ni, getDepositAccount as Nn, DomainsResponse as No, EconomicNodeStrengthLevelToName as Nr, PrivyWalletProviderContextType as Ns, buildERC20Clauses as Nt, VersionFooter as O, useXAppsShares as Oa, useNotificationAlerts as Oi, useGasTokenSelection as On, getTextRecordsQueryKey as Oo, normalize as Or, useLegalDocuments as Os, useTxReceipt as Ot, FeatureAnnouncementCard as P, useWallet$1 as Pa, useUpgradeSmartAccountModal as Pi, signVip191Transaction as Pn, getDomainsOfAddress as Po, MinXNodeLevel as Pr, usePrivyWalletProvider as Ps, useTransferERC20 as Pt, AssetsContent as Q, useGetErc20Balance as Qa, ChooseNameModalProvider as Qi, useIsPWA as Qn, DisconnectConfirmContentProps as Qo, formatTokenBalance as Qr, calculateTotalCost as Qs, SmartAccountReturnType as Qt, ActionButton as R, useRefreshBalances as Ra, AccountCustomizationModalProvider as Ri, useEcosystemShortcuts as Rn, useIsDomainProtected as Ro, buildQueryString as Rr, VeChainKitProvider as Rs, getAllEventLogs as Rt, ModalFAQButton as S, useIpfsImage as Sa, TransactionStatusErrorType as Sc, useAppHubApps as Si, getAccountBalanceQueryKey as Sn, useGetAvatarOfAddress as So, executeMultipleClausesCall as Sr, EmailLoginButton as Ss, useDAppKitWalletModal as St, BaseModal as T, getIpfsMetadataQueryKey as Ta, useLoginWithPasskey$1 as Ti, useEstimateAllTokens as Tn, buildClauses as To, compare as Tr, ConnectModal as Ts, useSetWalletRecovery as Tt, GasTokenSettingsContent as U, useIsPerson as Ua, useNotificationsModal as Ui, buildBatchAuthorizationTypedData as Un, useEnsRecordExists as Uo, toIPFSURL as Ur, LegalDocumentSource as Us, currentBlockQueryKey as Ut, AccountModalContentTypes as V, useMostVotedAppsInRound as Va, useFAQModal as Vi, useLocalStorage as Vn, useClaimVeWorldSubdomain as Vo, convertUriToUrl as Vr, EnrichedLegalDocument as Vs, getChainIdQueryKey as Vt, AppearanceSettingsContent as W, getVot3BalanceQueryKey as Wa, ExploreEcosystemModalProvider as Wi, buildSingleAuthorizationTypedData as Wn, getVechainDomainQueryKey as Wo, uploadBlobToIPFS as Wr, LegalDocumentType as Ws, useCurrentBlock as Wt, ManageCustomTokenContent as X, useGetTokenUsdPrice as Xa, SendTokenModalProvider as Xi, useEvents as Xn, useFetchAppInfo as Xo, regexPattern as Xr, TransactionCost as Xs, getUpgradeRequiredQueryKey as Xt, BridgeContent as Y, getTokenUsdPriceQueryKey as Ya, useSwapTokenModal as Yi, getEventsKey as Yn, getPrivyAppInfoQueryKey as Yo, leftPadWithZeros as Yr, Rate as Ys, getUpgradeRequired as Yt, ManageCustomTokenContentProps as Z, getErc20BalanceQueryKey as Za, useSendTokenModal as Zi, useScrollToTop as Zn, DisconnectConfirmContent as Zo, randomTransactionUser as Zr, VthoPerGasAtSpeed as Zs, useUpgradeRequired as Zt, ModalNotificationButton as _, useIpfsMetadatas as _a, PrivyAppInfo as _c, getGenericDelegatorUrl as _i, useCurrentAccountImplementationVersion as _n, useUnsetDomain as _o, MultipleClausesCallParameters as _r, PasskeyLoginButton as _s, SelectTokenContent as _t, useModal as a, useTransactionModal as aa, TransactionSpeed as ac, DEFAULT_PRIVY_ECOSYSTEM_APPS as ai, getIsDeployedQueryKey as an, getB3trBalanceQueryKey as ao, useMultipleClausesCall as ar, TransactionModalContent as as, CustomizationSummaryContentProps as at, AccountAvatar as b, getIpfsImage as ba, TokenBalance as bc, fetchAppHubApps as bi, useAccountImplementationAddress as bn, useGetAvatarLegacy as bo, buildCallClauses as br, EcosystemButton as bs, ThorClient$1 as bt, LegalDocumentsModal as c, ConnectModalProvider as ca, CURRENCY as cc, SUPPORTED_GAS_TOKENS as ci, getHasV1SmartAccountQueryKey as cn, getCurrentAllocationsRoundIdQueryKey as co, getLocalStorageItem as cr, TransactionModalProps as cs, FAQContent as ct, UpgradeSmartAccountModalContentsTypes as d, useSwapTransaction as da, CrossAppConnectionCache as dc, TogglePassportCheck as di, useGetAccountVersion as dn, TokenWithValue as do, isBrowser as dr, WalletButtonProps as ds, ChooseNameSearchContent as dt, WalletModalProvider as ea, GasTokenEstimate as ec, humanAddress as ei, getSmartAccountQueryKey as en, getTokenInfo$1 as eo, useFeatureAnnouncement as er, SettingsContent as es, UpgradeSmartAccountContent as et, UpgradeSmartAccountModalStyle as f, useSingleImageUpload as fa, ENSRecords as fc, VECHAIN_KIT_COOKIES_CONFIG as fi, getAccountAddress as fn, useTokensWithValues as fo, isOnline as fr, WalletDisplayVariant as fs, ChooseNameSearchContentProps as ft, GasFeeSummary as g, useUploadImages as ga, NFTMediaType as gc, getENV as gi, getCurrentAccountImplementationVersionQueryKey as gn, useTokenBalances as go, setLocalStorageItem as gr, DappKitButton as gs, ReceiveTokenContent as gt, GasFeeTokenSelector as h, imageCompressionOptions as ha, ExecuteWithAuthorizationSignData as hc, VECHAIN_PRIVY_APP_ID as hi, getCurrentAccountImplementationVersion as hn, WalletTokenBalance as ho, safeWindowOpen as hr, VeChainWithPrivyLoginButton as hs, SwapTokenContent as ht, ModalProvider as i, TransactionModalProvider as ia, GasTokenType as ic, DEFAULT_GAS_TOKEN_PREFERENCES as ii, getIsDeployed as in, useGetCustomTokenBalances as io, useCallClause as ir, TransactionToast as is, CustomizationSummaryContent as it, CrossAppConnectionSecurityCard as j, useXAppMetadata as ja, ProfileModalProvider as ji, estimateAndBuildTxBody as jn, useGetAvatar as jo, isRejectionError as jr, useVechainKitThemeConfig as js, buildVETClauses as jt, AddressDisplay as k, XAppMetadata as ka, useNotifications as ki, decodeRawTx as kn, useGetTextRecords as ko, removePrefix as kr, ColorModeSync as ks, BuildTransactionProps as kt, LegalDocumentsModalContentsTypes as l, useConnectModal as la, CURRENCY_SYMBOLS as lc, TOKEN_LOGOS as li, useHasV1SmartAccount as ln, useCurrentAllocationsRoundId as lo, getWindowOrigin as lr, SocialIcons as ls, ChooseNameSummaryContent as lt, LoginLoadingModal as m, compressImages as ma, ExecuteBatchWithAuthorizationSignData as mc, VECHAIN_KIT_TERMS_CONFIG as mi, useGetAccountAddress as mn, useTokenPrices as mo, safeQuerySelector as mr, LoginWithGithubButton as ms, ChooseNameContentProps as mt, getConfig as n, TransactionToastProvider as na, GasTokenPreferences as nc, humanNumber as ni, useRefreshSmartAccountQueries as nn, TokenWithBalance as no, getCallClauseQueryKey as nr, AccessAndSecurityContent as ns, ProfileContent as nt, DAppKitWalletButton as o, AccountModalProvider as oa, ENS_TEXT_RECORDS as oc, ENV as oi, useIsSmartAccountDeployed as on, useGetB3trBalance as oo, copyToClipboard as or, ShareButtons as os, AccountCustomizationContentProps as ot, EcosystemModal as p, UploadedImage as pa, EnhancedClause as pc, VECHAIN_KIT_STORAGE_KEYS as pi, getAccountAddressQueryKey as pn, ExchangeRates as po, removeLocalStorageItem as pr, ConnectPopover as ps, ChooseNameContent as pt, ChangeCurrencyContent as q, SupportedToken as qa, useAccessAndSecurityModal as qi, UseEventsParams as qn, useFetchPrivyStatus as qo, compareListOfAddresses as qr, EstimatedGas as qs, getUpgradeRequiredForAccountQueryKey as qt, AccountModalOptions as r, useTransactionToast as ra, GasTokenSelection as rc, isZero as ri, useRefreshFactoryQueries as rn, getCustomTokenBalanceQueryKey as ro, getCallClauseQueryKeyWithArgs as rr, AccountMainContent as rs, ProfileContentProps as rt, LegalDocumentItem as s, useAccountModal as sa, TextRecords as sc, PrivyEcosystemApp as si, getHasV1SmartAccount as sn, useCustomTokens as so, getDocumentTitle as sr, TransactionModal as ss, CustomizationContent as st, AppConfig as t, useWalletModal as ta, GasTokenInfo as tc, humanDomain as ti, useSmartAccount as tn, useGetCustomTokenInfo as to, useCurrency as tr, SettingsContentProps as ts, UpgradeSmartAccountContentProps as tt, UpgradeSmartAccountModal as u, useSwapQuotes as ua, ConnectionSource as uc, TOKEN_LOGO_COMPONENTS as ui, getAccountVersionQueryKey as un, useTotalBalance as uo, hasNavigator as ur, WalletButton as us, ChooseNameSummaryContentProps as ut, TransactionButtonAndStatus as v, IpfsImage as va, PrivyLoginMethod as vc, notFoundImage as vi, getAccountImplementationAddress as vn, getAvatarLegacy as vo, MultipleClausesCallReturnType as vr, LoginWithGoogleButton as vs, SendTokenSummaryContent as vt, AssetButton as w, getIpfsMetadata as wa, Wallet as wc, useLoginWithOAuth$1 as wi, UseEstimateAllTokensParams as wn, useGetResolverAddress as wo, addPrefix as wr, MainContent as ws, usePrivy$1 as wt, ScrollToTopWrapper as x, getIpfsImageQueryKey as xa, TransactionStatus as xc, getAppHubAppsQueryKey as xi, getAccountBalance as xn, getAvatarOfAddressQueryKey as xo, executeCallClause as xr, VeChainLoginButton as xs, useDAppKitWallet as xt, TransactionButtonAndStatusProps as y, MAX_IMAGE_SIZE as ya, SmartAccount as yc, AppHubApp as yi, getAccountImplementationAddressQueryKey as yn, getAvatarLegacyQueryKey as yo, ViewFunctionResult as yr, PrivyButton as ys, SendTokenContent as yt, AccountDetailsButton as z, MostVotedAppsInRoundReturnType as za, useAccountCustomizationModal as zi, useSyncableLocalStorage as zn, buildVetDomainClauses as zo, gmNfts as zr, VechainKitProviderProps as zs, getEventLogs as zt };
|
|
3965
|
-
//# sourceMappingURL=index-
|
|
3976
|
+
export { AssetsContentProps as $, getCustomTokenInfoQueryKey as $a, useChooseNameModal as $i, useGetNodeUrl as $n, EmbeddedWalletContent as $o, getPicassoImage as $r, calculateTotalCost as $s, getSmartAccount as $t, ModalBackButton as A, getXAppMetadata as Aa, useAccountModalOptions as Ai, delegateAuthorized as An, getAvatarQueryKey as Ao, validate as Ar, VechainKitThemeProvider as As, useBuildTransaction as At, AccountModal as B, XApp as Ba, FAQModalProvider as Bi, LocalStorageKey as Bn, useClaimVetDomain as Bo, xNodeToGMstartingLevel as Br, VechainKitProviderProps as Bs, getChainId as Bt, AddressDisplayCard as C, useIpfsImageList as Ca, TransactionStatusErrorType as Cc, useLoginWithVeChain as Ci, useAccountBalance as Cn, getResolverAddressQueryKey as Co, isValidUrl as Cr, ConnectionButton as Cs, useMfaEnrollment as Ct, StickyHeaderContainer as D, getXAppsSharesQueryKey as Da, useSignMessage as Di, useGasEstimation as Dn, getTextRecords as Do, isValid as Dr, LegalDocumentsProvider as Ds, txReceiptQueryKey as Dt, StickyFooterContainer as E, useIpfsMetadata as Ea, useSignTypedData as Ei, UseGasEstimationParams as En, useUpdateTextRecord as Eo, isInvalid as Er, ConnectModalContentsTypes as Es, useThor$1 as Et, QuickActionsSection as F, getRoundXAppsQueryKey as Fa, useLoginModalContent as Fi, useGenericDelegator as Fn, getDomainsOfAddressQueryKey as Fo, NodeStrengthLevelToImage as Fr, LegalDocument as Fs, UseSendTransactionReturnValue as Ft, LanguageSettingsContent as G, useGetVot3Balance as Ga, useExploreEcosystemModal as Gi, useBuildClauses as Gn, useVechainDomain as Go, validateIpfsUri as Gr, LegalDocumentType as Gs, useUpgradeSmartAccount as Gt, TermsAndPrivacyContent as H, getIsPersonQueryKey as Ha, NotificationsModalProvider as Hi, BuildClausesParams as Hn, getEnsRecordExistsQueryKey as Ho, resolveMediaTypeFromMimeType as Hr, EnrichedLegalDocument as Hs, useGetChainId as Ht, BalanceSection as I, useRoundXApps as Ia, ReceiveModalProvider as Ii, useCrossAppConnectionCache as In, useGetDomainsOfAddress as Io, XNodeStrengthLevelToName as Ir, LegalDocumentOptions as Is, useSendTransaction as It, ChangeCurrencyContentProps as J, getTokenUsdPrice as Ja, SwapTokenModalProvider as Ji, decodeEventLog$1 as Jn, fetchPrivyAppInfo as Jo, isValidAddress as Jr, EstimatedGas as Js, useUpgradeRequiredForAccount as Jt, GeneralSettingsContent as K, PRICE_FEED_IDS as Ka, AccessAndSecurityModalProvider as Ki, GetEventsKeyParams as Kn, fetchPrivyStatus as Ko, compareAddresses as Kr, CostLevel as Ks, getUpgradeRequiredForAccount as Kt, AccountSelector as L, useRefreshMetadata as La, useReceiveModal as Li, EcosystemShortcut as Ln, getIsDomainProtectedQueryKey as Lo, allNodeStrengthLevelToName as Lr, VeChainKitConfig as Ls, GetEventsProps as Lt, DomainRequiredAlert as M, useWalletMetadata as Ma, useProfileModal as Mi, estimateGas as Mn, Domain as Mo, TIME as Mr, PrivyWalletProvider as Ms, useTransferVET as Mt, ExchangeWarningAlert as N, UseWalletReturnType as Na, UpgradeSmartAccountModalProvider as Ni, getDepositAccount as Nn, DomainsResponse as No, EconomicNodeStrengthLevelToName as Nr, PrivyWalletProviderContextType as Ns, buildERC20Clauses as Nt, VersionFooter as O, useXAppsShares as Oa, useNotificationAlerts as Oi, useGasTokenSelection as On, getTextRecordsQueryKey as Oo, normalize as Or, useLegalDocuments as Os, useTxReceipt as Ot, FeatureAnnouncementCard as P, useWallet$1 as Pa, useUpgradeSmartAccountModal as Pi, signVip191Transaction as Pn, getDomainsOfAddress as Po, MinXNodeLevel as Pr, usePrivyWalletProvider as Ps, useTransferERC20 as Pt, AssetsContent as Q, useGetErc20Balance as Qa, ChooseNameModalProvider as Qi, useIsPWA as Qn, DisconnectConfirmContentProps as Qo, formatTokenBalance as Qr, VthoPerGasAtSpeed as Qs, SmartAccountReturnType as Qt, ActionButton as R, useRefreshBalances as Ra, AccountCustomizationModalProvider as Ri, useEcosystemShortcuts as Rn, useIsDomainProtected as Ro, buildQueryString as Rr, VeChainKitContext as Rs, getAllEventLogs as Rt, ModalFAQButton as S, useIpfsImage as Sa, TransactionStatus as Sc, useAppHubApps as Si, getAccountBalanceQueryKey as Sn, useGetAvatarOfAddress as So, executeMultipleClausesCall as Sr, EmailLoginButton as Ss, useDAppKitWalletModal as St, BaseModal as T, getIpfsMetadataQueryKey as Ta, Wallet as Tc, useLoginWithPasskey$1 as Ti, useEstimateAllTokens as Tn, buildClauses as To, compare as Tr, ConnectModal as Ts, useSetWalletRecovery as Tt, GasTokenSettingsContent as U, useIsPerson as Ua, useNotificationsModal as Ui, buildBatchAuthorizationTypedData as Un, useEnsRecordExists as Uo, toIPFSURL as Ur, LegalDocumentAgreement as Us, currentBlockQueryKey as Ut, AccountModalContentTypes as V, useMostVotedAppsInRound as Va, useFAQModal as Vi, useLocalStorage as Vn, useClaimVeWorldSubdomain as Vo, convertUriToUrl as Vr, useVeChainKitConfig as Vs, getChainIdQueryKey as Vt, AppearanceSettingsContent as W, getVot3BalanceQueryKey as Wa, ExploreEcosystemModalProvider as Wi, buildSingleAuthorizationTypedData as Wn, getVechainDomainQueryKey as Wo, uploadBlobToIPFS as Wr, LegalDocumentSource as Ws, useCurrentBlock as Wt, ManageCustomTokenContent as X, useGetTokenUsdPrice as Xa, SendTokenModalProvider as Xi, useEvents as Xn, useFetchAppInfo as Xo, regexPattern as Xr, Rate as Xs, getUpgradeRequiredQueryKey as Xt, BridgeContent as Y, getTokenUsdPriceQueryKey as Ya, useSwapTokenModal as Yi, getEventsKey as Yn, getPrivyAppInfoQueryKey as Yo, leftPadWithZeros as Yr, EstimationResponse as Ys, getUpgradeRequired as Yt, ManageCustomTokenContentProps as Z, getErc20BalanceQueryKey as Za, useSendTokenModal as Zi, useScrollToTop as Zn, DisconnectConfirmContent as Zo, randomTransactionUser as Zr, TransactionCost as Zs, useUpgradeRequired as Zt, ModalNotificationButton as _, useIpfsMetadatas as _a, NFTMediaType as _c, getGenericDelegatorUrl as _i, useCurrentAccountImplementationVersion as _n, useUnsetDomain as _o, MultipleClausesCallParameters as _r, PasskeyLoginButton as _s, SelectTokenContent as _t, useModal as a, useTransactionModal as aa, GasTokenType as ac, DEFAULT_PRIVY_ECOSYSTEM_APPS as ai, getIsDeployedQueryKey as an, getB3trBalanceQueryKey as ao, useMultipleClausesCall as ar, TransactionModalContent as as, CustomizationSummaryContentProps as at, AccountAvatar as b, getIpfsImage as ba, SmartAccount as bc, fetchAppHubApps as bi, useAccountImplementationAddress as bn, useGetAvatarLegacy as bo, buildCallClauses as br, EcosystemButton as bs, ThorClient$1 as bt, LegalDocumentsModal as c, ConnectModalProvider as ca, TextRecords as cc, SUPPORTED_GAS_TOKENS as ci, getHasV1SmartAccountQueryKey as cn, getCurrentAllocationsRoundIdQueryKey as co, getLocalStorageItem as cr, TransactionModalProps as cs, FAQContent as ct, UpgradeSmartAccountModalContentsTypes as d, useSwapTransaction as da, ConnectionSource as dc, TogglePassportCheck as di, useGetAccountVersion as dn, TokenWithValue as do, isBrowser as dr, WalletButtonProps as ds, ChooseNameSearchContent as dt, WalletModalProvider as ea, formatGasCost as ec, humanAddress as ei, getSmartAccountQueryKey as en, getTokenInfo$1 as eo, useFeatureAnnouncement as er, SettingsContent as es, UpgradeSmartAccountContent as et, UpgradeSmartAccountModalStyle as f, useSingleImageUpload as fa, CrossAppConnectionCache as fc, VECHAIN_KIT_COOKIES_CONFIG as fi, getAccountAddress as fn, useTokensWithValues as fo, isOnline as fr, WalletDisplayVariant as fs, ChooseNameSearchContentProps as ft, GasFeeSummary as g, useUploadImages as ga, ExecuteWithAuthorizationSignData as gc, getENV as gi, getCurrentAccountImplementationVersionQueryKey as gn, useTokenBalances as go, setLocalStorageItem as gr, DappKitButton as gs, ReceiveTokenContent as gt, GasFeeTokenSelector as h, imageCompressionOptions as ha, ExecuteBatchWithAuthorizationSignData as hc, VECHAIN_PRIVY_APP_ID as hi, getCurrentAccountImplementationVersion as hn, WalletTokenBalance as ho, safeWindowOpen as hr, VeChainWithPrivyLoginButton as hs, SwapTokenContent as ht, ModalProvider as i, TransactionModalProvider as ia, GasTokenSelection as ic, DEFAULT_GAS_TOKEN_PREFERENCES as ii, getIsDeployed as in, useGetCustomTokenBalances as io, useCallClause as ir, TransactionToast as is, CustomizationSummaryContent as it, CrossAppConnectionSecurityCard as j, useXAppMetadata as ja, ProfileModalProvider as ji, estimateAndBuildTxBody as jn, useGetAvatar as jo, isRejectionError as jr, useVechainKitThemeConfig as js, buildVETClauses as jt, AddressDisplay as k, XAppMetadata as ka, useNotifications as ki, decodeRawTx as kn, useGetTextRecords as ko, removePrefix as kr, ColorModeSync as ks, BuildTransactionProps as kt, LegalDocumentsModalContentsTypes as l, useConnectModal as la, CURRENCY as lc, TOKEN_LOGOS as li, useHasV1SmartAccount as ln, useCurrentAllocationsRoundId as lo, getWindowOrigin as lr, SocialIcons as ls, ChooseNameSummaryContent as lt, LoginLoadingModal as m, compressImages as ma, EnhancedClause as mc, VECHAIN_KIT_TERMS_CONFIG as mi, useGetAccountAddress as mn, useTokenPrices as mo, safeQuerySelector as mr, LoginWithGithubButton as ms, ChooseNameContentProps as mt, getConfig as n, TransactionToastProvider as na, GasTokenInfo as nc, humanNumber as ni, useRefreshSmartAccountQueries as nn, TokenWithBalance as no, getCallClauseQueryKey as nr, AccessAndSecurityContent as ns, ProfileContent as nt, DAppKitWalletButton as o, AccountModalProvider as oa, TransactionSpeed as oc, ENV as oi, useIsSmartAccountDeployed as on, useGetB3trBalance as oo, copyToClipboard as or, ShareButtons as os, AccountCustomizationContentProps as ot, EcosystemModal as p, UploadedImage as pa, ENSRecords as pc, VECHAIN_KIT_STORAGE_KEYS as pi, getAccountAddressQueryKey as pn, ExchangeRates as po, removeLocalStorageItem as pr, ConnectPopover as ps, ChooseNameContent as pt, ChangeCurrencyContent as q, SupportedToken as qa, useAccessAndSecurityModal as qi, UseEventsParams as qn, useFetchPrivyStatus as qo, compareListOfAddresses as qr, DepositAccount as qs, getUpgradeRequiredForAccountQueryKey as qt, AccountModalOptions as r, useTransactionToast as ra, GasTokenPreferences as rc, isZero as ri, useRefreshFactoryQueries as rn, getCustomTokenBalanceQueryKey as ro, getCallClauseQueryKeyWithArgs as rr, AccountMainContent as rs, ProfileContentProps as rt, LegalDocumentItem as s, useAccountModal as sa, ENS_TEXT_RECORDS as sc, PrivyEcosystemApp as si, getHasV1SmartAccount as sn, useCustomTokens as so, getDocumentTitle as sr, TransactionModal as ss, CustomizationContent as st, AppConfig as t, useWalletModal as ta, GasTokenEstimate as tc, humanDomain as ti, useSmartAccount as tn, useGetCustomTokenInfo as to, useCurrency as tr, SettingsContentProps as ts, UpgradeSmartAccountContentProps as tt, UpgradeSmartAccountModal as u, useSwapQuotes as ua, CURRENCY_SYMBOLS as uc, TOKEN_LOGO_COMPONENTS as ui, getAccountVersionQueryKey as un, useTotalBalance as uo, hasNavigator as ur, WalletButton as us, ChooseNameSummaryContentProps as ut, TransactionButtonAndStatus as v, IpfsImage as va, PrivyAppInfo as vc, notFoundImage as vi, getAccountImplementationAddress as vn, getAvatarLegacy as vo, MultipleClausesCallReturnType as vr, LoginWithGoogleButton as vs, SendTokenSummaryContent as vt, AssetButton as w, getIpfsMetadata as wa, VePassportUserStatus as wc, useLoginWithOAuth$1 as wi, UseEstimateAllTokensParams as wn, useGetResolverAddress as wo, addPrefix as wr, MainContent as ws, usePrivy$1 as wt, ScrollToTopWrapper as x, getIpfsImageQueryKey as xa, TokenBalance as xc, getAppHubAppsQueryKey as xi, getAccountBalance as xn, getAvatarOfAddressQueryKey as xo, executeCallClause as xr, VeChainLoginButton as xs, useDAppKitWallet as xt, TransactionButtonAndStatusProps as y, MAX_IMAGE_SIZE as ya, PrivyLoginMethod as yc, AppHubApp as yi, getAccountImplementationAddressQueryKey as yn, getAvatarLegacyQueryKey as yo, ViewFunctionResult as yr, PrivyButton as ys, SendTokenContent as yt, AccountDetailsButton as z, MostVotedAppsInRoundReturnType as za, useAccountCustomizationModal as zi, useSyncableLocalStorage as zn, buildVetDomainClauses as zo, gmNfts as zr, VeChainKitProvider as zs, getEventLogs as zt };
|
|
3977
|
+
//# sourceMappingURL=index-DWGrsVoL.d.mts.map
|