@vechain/vechain-kit 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{index-C29c--c1.d.mts → index-9Nctr1tw.d.mts} +70 -47
- package/dist/index-9Nctr1tw.d.mts.map +1 -0
- package/dist/{index-BqitwzCD.d.cts → index-CoM8jwiv.d.cts} +171 -148
- package/dist/index-CoM8jwiv.d.cts.map +1 -0
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.cts +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/package.json +1 -1
- package/dist/index-BqitwzCD.d.cts.map +0 -1
- package/dist/index-C29c--c1.d.mts.map +0 -1
|
@@ -1,8 +1,8 @@
|
|
|
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
|
|
5
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
|
+
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";
|
|
@@ -11,7 +11,7 @@ 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";
|
|
13
13
|
import { IconType } from "react-icons";
|
|
14
|
-
import * as
|
|
14
|
+
import * as _tanstack_react_query8 from "@tanstack/react-query";
|
|
15
15
|
import { UseQueryOptions } from "@tanstack/react-query";
|
|
16
16
|
import { z } from "zod";
|
|
17
17
|
import { CustomTokenInfo } from "@vechain/contract-getters";
|
|
@@ -343,22 +343,30 @@ interface ThemeTokens {
|
|
|
343
343
|
color: string;
|
|
344
344
|
border: string;
|
|
345
345
|
hoverBg?: string;
|
|
346
|
+
backdropFilter?: string;
|
|
347
|
+
rounded?: string | number;
|
|
346
348
|
};
|
|
347
349
|
primaryButton: {
|
|
348
350
|
bg: string;
|
|
349
351
|
color: string;
|
|
350
352
|
border: string;
|
|
351
353
|
hoverBg?: string;
|
|
354
|
+
backdropFilter?: string;
|
|
355
|
+
rounded?: string | number;
|
|
352
356
|
};
|
|
353
357
|
tertiaryButton: {
|
|
354
358
|
bg: string;
|
|
355
359
|
color: string;
|
|
356
360
|
border: string;
|
|
361
|
+
backdropFilter?: string;
|
|
362
|
+
rounded?: string | number;
|
|
357
363
|
};
|
|
358
364
|
loginButton: {
|
|
359
365
|
bg: string;
|
|
360
366
|
color: string;
|
|
361
367
|
border: string;
|
|
368
|
+
backdropFilter?: string;
|
|
369
|
+
rounded?: string | number;
|
|
362
370
|
};
|
|
363
371
|
};
|
|
364
372
|
effects: {
|
|
@@ -394,8 +402,12 @@ interface ThemeTokens {
|
|
|
394
402
|
large: string;
|
|
395
403
|
xl: string;
|
|
396
404
|
full: string;
|
|
405
|
+
modal: string;
|
|
397
406
|
};
|
|
398
407
|
};
|
|
408
|
+
modal: {
|
|
409
|
+
rounded?: string | number;
|
|
410
|
+
};
|
|
399
411
|
}
|
|
400
412
|
/**
|
|
401
413
|
* Developer-facing theme configuration
|
|
@@ -411,6 +423,9 @@ interface VechainKitThemeConfig {
|
|
|
411
423
|
modal?: {
|
|
412
424
|
backgroundColor?: string;
|
|
413
425
|
border?: string;
|
|
426
|
+
backdropFilter?: string;
|
|
427
|
+
borderRadius?: string;
|
|
428
|
+
rounded?: string | number;
|
|
414
429
|
};
|
|
415
430
|
buttons?: {
|
|
416
431
|
secondaryButton?: {
|
|
@@ -418,22 +433,30 @@ interface VechainKitThemeConfig {
|
|
|
418
433
|
color?: string;
|
|
419
434
|
border?: string;
|
|
420
435
|
hoverBg?: string;
|
|
436
|
+
backdropFilter?: string;
|
|
437
|
+
rounded?: string | number;
|
|
421
438
|
};
|
|
422
439
|
primaryButton?: {
|
|
423
440
|
bg?: string;
|
|
424
441
|
color?: string;
|
|
425
442
|
border?: string;
|
|
426
443
|
hoverBg?: string;
|
|
444
|
+
backdropFilter?: string;
|
|
445
|
+
rounded?: string | number;
|
|
427
446
|
};
|
|
428
447
|
tertiaryButton?: {
|
|
429
448
|
bg?: string;
|
|
430
449
|
color?: string;
|
|
431
450
|
border?: string;
|
|
451
|
+
backdropFilter?: string;
|
|
452
|
+
rounded?: string | number;
|
|
432
453
|
};
|
|
433
454
|
loginButton?: {
|
|
434
455
|
bg?: string;
|
|
435
456
|
color?: string;
|
|
436
457
|
border?: string;
|
|
458
|
+
backdropFilter?: string;
|
|
459
|
+
rounded?: string | number;
|
|
437
460
|
};
|
|
438
461
|
};
|
|
439
462
|
fonts?: {
|
|
@@ -600,7 +623,7 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
|
|
|
600
623
|
* ```
|
|
601
624
|
*/
|
|
602
625
|
declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
603
|
-
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) =>
|
|
626
|
+
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime0.JSX.Element;
|
|
604
627
|
//#endregion
|
|
605
628
|
//#region src/providers/PrivyWalletProvider.d.ts
|
|
606
629
|
interface PrivyWalletProviderContextType {
|
|
@@ -642,7 +665,7 @@ declare const PrivyWalletProvider: ({
|
|
|
642
665
|
delegatorUrl?: string;
|
|
643
666
|
delegateAllTransactions: boolean;
|
|
644
667
|
genericDelegator?: boolean;
|
|
645
|
-
}) =>
|
|
668
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
646
669
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
647
670
|
//#endregion
|
|
648
671
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
@@ -659,12 +682,12 @@ declare const ColorModeSync: ({
|
|
|
659
682
|
darkMode
|
|
660
683
|
}: {
|
|
661
684
|
darkMode: boolean;
|
|
662
|
-
}) =>
|
|
685
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
663
686
|
declare const VechainKitThemeProvider: ({
|
|
664
687
|
children,
|
|
665
688
|
darkMode,
|
|
666
689
|
theme: customTheme
|
|
667
|
-
}: Props$36) =>
|
|
690
|
+
}: Props$36) => react_jsx_runtime0.JSX.Element;
|
|
668
691
|
//#endregion
|
|
669
692
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
670
693
|
type Props$35 = {
|
|
@@ -680,7 +703,7 @@ type LegalDocumentsContextType = {
|
|
|
680
703
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
681
704
|
declare const LegalDocumentsProvider: ({
|
|
682
705
|
children
|
|
683
|
-
}: Props$35) =>
|
|
706
|
+
}: Props$35) => react_jsx_runtime0.JSX.Element;
|
|
684
707
|
//#endregion
|
|
685
708
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
686
709
|
type Props$34 = {
|
|
@@ -691,7 +714,7 @@ type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
|
|
|
691
714
|
declare const ConnectModal: ({
|
|
692
715
|
isOpen,
|
|
693
716
|
onClose
|
|
694
|
-
}: Props$34) =>
|
|
717
|
+
}: Props$34) => react_jsx_runtime0.JSX.Element;
|
|
695
718
|
//#endregion
|
|
696
719
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
697
720
|
type Props$33 = {
|
|
@@ -701,7 +724,7 @@ type Props$33 = {
|
|
|
701
724
|
declare const MainContent: ({
|
|
702
725
|
setCurrentContent,
|
|
703
726
|
onClose
|
|
704
|
-
}: Props$33) =>
|
|
727
|
+
}: Props$33) => react_jsx_runtime0.JSX.Element;
|
|
705
728
|
//#endregion
|
|
706
729
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
707
730
|
interface ConnectionButtonProps {
|
|
@@ -724,10 +747,10 @@ declare const ConnectionButton: ({
|
|
|
724
747
|
style,
|
|
725
748
|
variant,
|
|
726
749
|
iconWidth
|
|
727
|
-
}: ConnectionButtonProps) =>
|
|
750
|
+
}: ConnectionButtonProps) => react_jsx_runtime0.JSX.Element | null;
|
|
728
751
|
//#endregion
|
|
729
752
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
730
|
-
declare const EmailLoginButton: () =>
|
|
753
|
+
declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
|
|
731
754
|
//#endregion
|
|
732
755
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
733
756
|
type Props$32 = {
|
|
@@ -737,7 +760,7 @@ type Props$32 = {
|
|
|
737
760
|
declare const VeChainLoginButton: ({
|
|
738
761
|
isDark,
|
|
739
762
|
gridColumn
|
|
740
|
-
}: Props$32) =>
|
|
763
|
+
}: Props$32) => react_jsx_runtime0.JSX.Element;
|
|
741
764
|
//#endregion
|
|
742
765
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
743
766
|
type Props$31 = {
|
|
@@ -749,7 +772,7 @@ type Props$31 = {
|
|
|
749
772
|
declare const EcosystemButton: ({
|
|
750
773
|
appsInfo,
|
|
751
774
|
isLoading
|
|
752
|
-
}: Props$31) =>
|
|
775
|
+
}: Props$31) => react_jsx_runtime0.JSX.Element;
|
|
753
776
|
//#endregion
|
|
754
777
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
755
778
|
type Props$30 = {
|
|
@@ -761,7 +784,7 @@ declare const PrivyButton: ({
|
|
|
761
784
|
isDark,
|
|
762
785
|
onViewMoreLogin,
|
|
763
786
|
gridColumn
|
|
764
|
-
}: Props$30) =>
|
|
787
|
+
}: Props$30) => react_jsx_runtime0.JSX.Element;
|
|
765
788
|
//#endregion
|
|
766
789
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
767
790
|
type Props$29 = {
|
|
@@ -771,7 +794,7 @@ type Props$29 = {
|
|
|
771
794
|
declare const LoginWithGoogleButton: ({
|
|
772
795
|
isDark,
|
|
773
796
|
gridColumn
|
|
774
|
-
}: Props$29) =>
|
|
797
|
+
}: Props$29) => react_jsx_runtime0.JSX.Element;
|
|
775
798
|
//#endregion
|
|
776
799
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
777
800
|
type Props$28 = {
|
|
@@ -781,7 +804,7 @@ type Props$28 = {
|
|
|
781
804
|
declare const PasskeyLoginButton: ({
|
|
782
805
|
isDark,
|
|
783
806
|
gridColumn
|
|
784
|
-
}: Props$28) =>
|
|
807
|
+
}: Props$28) => react_jsx_runtime0.JSX.Element;
|
|
785
808
|
//#endregion
|
|
786
809
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
787
810
|
type Props$27 = {
|
|
@@ -791,7 +814,7 @@ type Props$27 = {
|
|
|
791
814
|
declare const DappKitButton: ({
|
|
792
815
|
isDark,
|
|
793
816
|
gridColumn
|
|
794
|
-
}: Props$27) =>
|
|
817
|
+
}: Props$27) => react_jsx_runtime0.JSX.Element;
|
|
795
818
|
//#endregion
|
|
796
819
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
797
820
|
type Props$26 = {
|
|
@@ -801,7 +824,7 @@ type Props$26 = {
|
|
|
801
824
|
declare const VeChainWithPrivyLoginButton: ({
|
|
802
825
|
isDark,
|
|
803
826
|
gridColumn
|
|
804
|
-
}: Props$26) =>
|
|
827
|
+
}: Props$26) => react_jsx_runtime0.JSX.Element;
|
|
805
828
|
//#endregion
|
|
806
829
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
807
830
|
type Props$25 = {
|
|
@@ -811,7 +834,7 @@ type Props$25 = {
|
|
|
811
834
|
declare const LoginWithGithubButton: ({
|
|
812
835
|
isDark,
|
|
813
836
|
gridColumn
|
|
814
|
-
}: Props$25) =>
|
|
837
|
+
}: Props$25) => react_jsx_runtime0.JSX.Element;
|
|
815
838
|
//#endregion
|
|
816
839
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
817
840
|
type ConnectPopoverProps = {
|
|
@@ -821,7 +844,7 @@ type ConnectPopoverProps = {
|
|
|
821
844
|
declare const ConnectPopover: ({
|
|
822
845
|
isLoading,
|
|
823
846
|
buttonStyle
|
|
824
|
-
}: ConnectPopoverProps) =>
|
|
847
|
+
}: ConnectPopoverProps) => react_jsx_runtime0.JSX.Element;
|
|
825
848
|
//#endregion
|
|
826
849
|
//#region src/components/WalletButton/types.d.ts
|
|
827
850
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
@@ -838,10 +861,10 @@ declare const WalletButton: ({
|
|
|
838
861
|
desktopVariant,
|
|
839
862
|
buttonStyle,
|
|
840
863
|
connectionVariant
|
|
841
|
-
}: WalletButtonProps) =>
|
|
864
|
+
}: WalletButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
842
865
|
//#endregion
|
|
843
866
|
//#region src/components/WalletButton/SocialIcons.d.ts
|
|
844
|
-
declare const SocialIcons: () =>
|
|
867
|
+
declare const SocialIcons: () => react_jsx_runtime0.JSX.Element;
|
|
845
868
|
//#endregion
|
|
846
869
|
//#region src/components/TransactionModal/TransactionModal.d.ts
|
|
847
870
|
type TransactionModalProps = {
|
|
@@ -871,7 +894,7 @@ declare const TransactionModal: ({
|
|
|
871
894
|
txReceipt,
|
|
872
895
|
txError,
|
|
873
896
|
onTryAgain
|
|
874
|
-
}: TransactionModalProps) =>
|
|
897
|
+
}: TransactionModalProps) => react_jsx_runtime0.JSX.Element;
|
|
875
898
|
//#endregion
|
|
876
899
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
877
900
|
type Props$24 = {
|
|
@@ -881,7 +904,7 @@ type Props$24 = {
|
|
|
881
904
|
};
|
|
882
905
|
declare const ShareButtons: ({
|
|
883
906
|
descriptionEncoded
|
|
884
|
-
}: Props$24) =>
|
|
907
|
+
}: Props$24) => react_jsx_runtime0.JSX.Element;
|
|
885
908
|
//#endregion
|
|
886
909
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
887
910
|
declare const TransactionModalContent: ({
|
|
@@ -891,7 +914,7 @@ declare const TransactionModalContent: ({
|
|
|
891
914
|
txReceipt,
|
|
892
915
|
txError,
|
|
893
916
|
onClose
|
|
894
|
-
}: Omit<TransactionModalProps, "isOpen">) =>
|
|
917
|
+
}: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime0.JSX.Element;
|
|
895
918
|
//#endregion
|
|
896
919
|
//#region src/components/TransactionToast/TransactionToast.d.ts
|
|
897
920
|
type TransactionToastProps = {
|
|
@@ -911,7 +934,7 @@ declare const TransactionToast: ({
|
|
|
911
934
|
txError,
|
|
912
935
|
onTryAgain,
|
|
913
936
|
description
|
|
914
|
-
}: TransactionToastProps) =>
|
|
937
|
+
}: TransactionToastProps) => react_jsx_runtime0.JSX.Element | null;
|
|
915
938
|
//#endregion
|
|
916
939
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
917
940
|
type Props$23 = {
|
|
@@ -923,7 +946,7 @@ declare const AccountMainContent: ({
|
|
|
923
946
|
setCurrentContent,
|
|
924
947
|
wallet,
|
|
925
948
|
onClose
|
|
926
|
-
}: Props$23) =>
|
|
949
|
+
}: Props$23) => react_jsx_runtime0.JSX.Element;
|
|
927
950
|
//#endregion
|
|
928
951
|
//#region src/components/AccountModal/Contents/Account/AccessAndSecurityContent.d.ts
|
|
929
952
|
type Props$22 = {
|
|
@@ -931,7 +954,7 @@ type Props$22 = {
|
|
|
931
954
|
};
|
|
932
955
|
declare const AccessAndSecurityContent: ({
|
|
933
956
|
setCurrentContent
|
|
934
|
-
}: Props$22) =>
|
|
957
|
+
}: Props$22) => react_jsx_runtime0.JSX.Element;
|
|
935
958
|
//#endregion
|
|
936
959
|
//#region src/components/AccountModal/Contents/Account/SettingsContent.d.ts
|
|
937
960
|
type SettingsContentProps = {
|
|
@@ -941,7 +964,7 @@ type SettingsContentProps = {
|
|
|
941
964
|
declare const SettingsContent: ({
|
|
942
965
|
setCurrentContent,
|
|
943
966
|
onLogoutSuccess
|
|
944
|
-
}: SettingsContentProps) =>
|
|
967
|
+
}: SettingsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
945
968
|
//#endregion
|
|
946
969
|
//#region src/components/AccountModal/Contents/Account/EmbeddedWalletContent.d.ts
|
|
947
970
|
type Props$21 = {
|
|
@@ -949,7 +972,7 @@ type Props$21 = {
|
|
|
949
972
|
};
|
|
950
973
|
declare const EmbeddedWalletContent: ({
|
|
951
974
|
setCurrentContent
|
|
952
|
-
}: Props$21) =>
|
|
975
|
+
}: Props$21) => react_jsx_runtime0.JSX.Element;
|
|
953
976
|
//#endregion
|
|
954
977
|
//#region src/components/AccountModal/Contents/Account/DisconnectConfirmContent.d.ts
|
|
955
978
|
type DisconnectConfirmContentProps = {
|
|
@@ -965,12 +988,12 @@ declare const DisconnectConfirmContent: ({
|
|
|
965
988
|
onClose,
|
|
966
989
|
showCloseButton,
|
|
967
990
|
text
|
|
968
|
-
}: DisconnectConfirmContentProps) =>
|
|
991
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime0.JSX.Element;
|
|
969
992
|
//#endregion
|
|
970
993
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
971
994
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
972
995
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
973
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
996
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
|
|
974
997
|
[k: string]: {
|
|
975
998
|
website: string | undefined;
|
|
976
999
|
id: string;
|
|
@@ -991,7 +1014,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
991
1014
|
//#endregion
|
|
992
1015
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
993
1016
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
994
|
-
declare const useFetchPrivyStatus: () =>
|
|
1017
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
995
1018
|
//#endregion
|
|
996
1019
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
997
1020
|
interface VeChainDomainResult {
|
|
@@ -1001,11 +1024,11 @@ interface VeChainDomainResult {
|
|
|
1001
1024
|
isPrimaryDomain: boolean;
|
|
1002
1025
|
}
|
|
1003
1026
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
1004
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
1027
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
|
|
1005
1028
|
//#endregion
|
|
1006
1029
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
1007
1030
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
1008
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
1031
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1009
1032
|
//#endregion
|
|
1010
1033
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
1011
1034
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1067,7 +1090,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1067
1090
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1068
1091
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1069
1092
|
*/
|
|
1070
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1093
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1071
1094
|
//#endregion
|
|
1072
1095
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1073
1096
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1095,7 +1118,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1095
1118
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1096
1119
|
* @returns The domains owned by the address
|
|
1097
1120
|
*/
|
|
1098
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1121
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1099
1122
|
domains: {
|
|
1100
1123
|
name: string;
|
|
1101
1124
|
}[];
|
|
@@ -1108,7 +1131,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1108
1131
|
* @param name - The VET domain name
|
|
1109
1132
|
* @returns The resolved avatar URL
|
|
1110
1133
|
*/
|
|
1111
|
-
declare const useGetAvatar: (name: string) =>
|
|
1134
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1112
1135
|
//#endregion
|
|
1113
1136
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1114
1137
|
/**
|
|
@@ -1120,7 +1143,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query46.UseQueryRe
|
|
|
1120
1143
|
*/
|
|
1121
1144
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1122
1145
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1123
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1146
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
|
|
1124
1147
|
//#endregion
|
|
1125
1148
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1126
1149
|
type UpdateTextRecordVariables = {
|
|
@@ -1153,7 +1176,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1153
1176
|
* @param domain The domain to get resolver for
|
|
1154
1177
|
* @returns The resolver address for the domain
|
|
1155
1178
|
*/
|
|
1156
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1179
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
|
|
1157
1180
|
//#endregion
|
|
1158
1181
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1159
1182
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1163,7 +1186,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1163
1186
|
* @param address The owner's address
|
|
1164
1187
|
* @returns The avatar URL for the address's primary domain
|
|
1165
1188
|
*/
|
|
1166
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1189
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1167
1190
|
//#endregion
|
|
1168
1191
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1169
1192
|
/**
|
|
@@ -1180,7 +1203,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1180
1203
|
* @param name - The VET domain name
|
|
1181
1204
|
* @returns The resolved avatar URL
|
|
1182
1205
|
*/
|
|
1183
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1206
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1184
1207
|
//#endregion
|
|
1185
1208
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1186
1209
|
type useUnsetDomainProps = {
|
|
@@ -1289,7 +1312,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1289
1312
|
* Hook to get the current roundId of allocations voting
|
|
1290
1313
|
* @returns the current roundId of allocations voting
|
|
1291
1314
|
*/
|
|
1292
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1315
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
|
|
1293
1316
|
//#endregion
|
|
1294
1317
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1295
1318
|
declare const useCustomTokens: () => {
|
|
@@ -1302,7 +1325,7 @@ declare const useCustomTokens: () => {
|
|
|
1302
1325
|
//#endregion
|
|
1303
1326
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1304
1327
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1305
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1328
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1306
1329
|
original: string;
|
|
1307
1330
|
scaled: string;
|
|
1308
1331
|
formatted: string;
|
|
@@ -1311,7 +1334,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query46.U
|
|
|
1311
1334
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1312
1335
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1313
1336
|
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
|
|
1314
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1337
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1315
1338
|
original: string;
|
|
1316
1339
|
scaled: string;
|
|
1317
1340
|
formatted: string;
|
|
@@ -1324,11 +1347,11 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1324
1347
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1325
1348
|
declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1326
1349
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1327
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1350
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
|
|
1328
1351
|
//#endregion
|
|
1329
1352
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1330
1353
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1331
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string) =>
|
|
1354
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1332
1355
|
original: string;
|
|
1333
1356
|
scaled: string;
|
|
1334
1357
|
formatted: string;
|
|
@@ -1345,11 +1368,11 @@ declare const PRICE_FEED_IDS: {
|
|
|
1345
1368
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1346
1369
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1347
1370
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1348
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1371
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
1349
1372
|
//#endregion
|
|
1350
1373
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1351
1374
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1352
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1375
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1353
1376
|
original: string;
|
|
1354
1377
|
scaled: string;
|
|
1355
1378
|
formatted: string;
|
|
@@ -1368,7 +1391,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1368
1391
|
* @param user - The user address.
|
|
1369
1392
|
* @returns The isPerson status.
|
|
1370
1393
|
*/
|
|
1371
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1394
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1372
1395
|
//#endregion
|
|
1373
1396
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1374
1397
|
type XApp = {
|
|
@@ -1406,7 +1429,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1406
1429
|
//#endregion
|
|
1407
1430
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1408
1431
|
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => (string | unknown[])[];
|
|
1409
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1432
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1410
1433
|
id: string;
|
|
1411
1434
|
teamWalletAddress: `0x${string}`;
|
|
1412
1435
|
name: string;
|
|
@@ -1489,7 +1512,7 @@ type XAppMetadata = {
|
|
|
1489
1512
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1490
1513
|
*/
|
|
1491
1514
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1492
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1515
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1493
1516
|
//#endregion
|
|
1494
1517
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1495
1518
|
/**
|
|
@@ -1504,7 +1527,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1504
1527
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1505
1528
|
*
|
|
1506
1529
|
*/
|
|
1507
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1530
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1508
1531
|
app: string;
|
|
1509
1532
|
share: number;
|
|
1510
1533
|
unallocatedShare: number;
|
|
@@ -1526,7 +1549,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1526
1549
|
* @param ipfsUri - The IPFS URI
|
|
1527
1550
|
* @returns The metadata from IPFS
|
|
1528
1551
|
*/
|
|
1529
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1552
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
|
|
1530
1553
|
//#endregion
|
|
1531
1554
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1532
1555
|
interface IpfsImage {
|
|
@@ -1553,14 +1576,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1553
1576
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1554
1577
|
* @returns The NFT media
|
|
1555
1578
|
*/
|
|
1556
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1579
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
|
|
1557
1580
|
/**
|
|
1558
1581
|
* Custom hook to fetch a list of IPFS images.
|
|
1559
1582
|
*
|
|
1560
1583
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1561
1584
|
* @returns An array of queries for each IPFS image URI.
|
|
1562
1585
|
*/
|
|
1563
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1586
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
|
|
1564
1587
|
//#endregion
|
|
1565
1588
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1566
1589
|
/**
|
|
@@ -1568,7 +1591,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1568
1591
|
* @param ipfsUris - The IPFS URIs
|
|
1569
1592
|
* @returns The metadata from IPFS for each URI
|
|
1570
1593
|
*/
|
|
1571
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1594
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
|
|
1572
1595
|
//#endregion
|
|
1573
1596
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1574
1597
|
declare const imageCompressionOptions: Options;
|
|
@@ -1749,7 +1772,7 @@ declare const useSwapTransaction: (params: SwapParams | null, quote: SwapQuote |
|
|
|
1749
1772
|
executeSwap: () => Promise<void>;
|
|
1750
1773
|
isTransactionPending: boolean;
|
|
1751
1774
|
isWaitingForWalletConfirmation: boolean;
|
|
1752
|
-
txReceipt:
|
|
1775
|
+
txReceipt: _vechain_sdk_network0.TransactionReceipt | null;
|
|
1753
1776
|
status: TransactionStatus;
|
|
1754
1777
|
resetStatus: () => void;
|
|
1755
1778
|
error: TransactionStatusErrorType | undefined;
|
|
@@ -1787,7 +1810,7 @@ declare const ConnectModalProvider: ({
|
|
|
1787
1810
|
children
|
|
1788
1811
|
}: {
|
|
1789
1812
|
children: ReactNode;
|
|
1790
|
-
}) =>
|
|
1813
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1791
1814
|
//#endregion
|
|
1792
1815
|
//#region src/hooks/modals/useAccountModal.d.ts
|
|
1793
1816
|
declare const useAccountModal: () => {
|
|
@@ -1799,7 +1822,7 @@ declare const AccountModalProvider: ({
|
|
|
1799
1822
|
children
|
|
1800
1823
|
}: {
|
|
1801
1824
|
children: ReactNode;
|
|
1802
|
-
}) =>
|
|
1825
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1803
1826
|
//#endregion
|
|
1804
1827
|
//#region src/hooks/modals/useTransactionModal.d.ts
|
|
1805
1828
|
declare const useTransactionModal: () => {
|
|
@@ -1811,7 +1834,7 @@ declare const TransactionModalProvider: ({
|
|
|
1811
1834
|
children
|
|
1812
1835
|
}: {
|
|
1813
1836
|
children: ReactNode;
|
|
1814
|
-
}) =>
|
|
1837
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1815
1838
|
//#endregion
|
|
1816
1839
|
//#region src/hooks/modals/useTransactionToast.d.ts
|
|
1817
1840
|
declare const useTransactionToast: () => {
|
|
@@ -1823,7 +1846,7 @@ declare const TransactionToastProvider: ({
|
|
|
1823
1846
|
children
|
|
1824
1847
|
}: {
|
|
1825
1848
|
children: ReactNode;
|
|
1826
|
-
}) =>
|
|
1849
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1827
1850
|
//#endregion
|
|
1828
1851
|
//#region src/hooks/modals/useWalletModal.d.ts
|
|
1829
1852
|
declare const useWalletModal: () => {
|
|
@@ -1835,7 +1858,7 @@ declare const WalletModalProvider: ({
|
|
|
1835
1858
|
children
|
|
1836
1859
|
}: {
|
|
1837
1860
|
children: ReactNode;
|
|
1838
|
-
}) =>
|
|
1861
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1839
1862
|
//#endregion
|
|
1840
1863
|
//#region src/hooks/modals/useChooseNameModal.d.ts
|
|
1841
1864
|
declare const useChooseNameModal: () => {
|
|
@@ -1847,7 +1870,7 @@ declare const ChooseNameModalProvider: ({
|
|
|
1847
1870
|
children
|
|
1848
1871
|
}: {
|
|
1849
1872
|
children: ReactNode;
|
|
1850
|
-
}) =>
|
|
1873
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1851
1874
|
//#endregion
|
|
1852
1875
|
//#region src/hooks/modals/useSendTokenModal.d.ts
|
|
1853
1876
|
declare const useSendTokenModal: () => {
|
|
@@ -1859,7 +1882,7 @@ declare const SendTokenModalProvider: ({
|
|
|
1859
1882
|
children
|
|
1860
1883
|
}: {
|
|
1861
1884
|
children: ReactNode;
|
|
1862
|
-
}) =>
|
|
1885
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1863
1886
|
//#endregion
|
|
1864
1887
|
//#region src/hooks/modals/useSwapTokenModal.d.ts
|
|
1865
1888
|
type SwapTokenModalOptions = {
|
|
@@ -1876,7 +1899,7 @@ declare const SwapTokenModalProvider: ({
|
|
|
1876
1899
|
children
|
|
1877
1900
|
}: {
|
|
1878
1901
|
children: ReactNode;
|
|
1879
|
-
}) =>
|
|
1902
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1880
1903
|
//#endregion
|
|
1881
1904
|
//#region src/hooks/modals/useAccessAndSecurityModal.d.ts
|
|
1882
1905
|
declare const useAccessAndSecurityModal: () => {
|
|
@@ -1888,7 +1911,7 @@ declare const AccessAndSecurityModalProvider: ({
|
|
|
1888
1911
|
children
|
|
1889
1912
|
}: {
|
|
1890
1913
|
children: ReactNode;
|
|
1891
|
-
}) =>
|
|
1914
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1892
1915
|
//#endregion
|
|
1893
1916
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
1894
1917
|
declare const useExploreEcosystemModal: () => {
|
|
@@ -1900,7 +1923,7 @@ declare const ExploreEcosystemModalProvider: ({
|
|
|
1900
1923
|
children
|
|
1901
1924
|
}: {
|
|
1902
1925
|
children: ReactNode;
|
|
1903
|
-
}) =>
|
|
1926
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1904
1927
|
//#endregion
|
|
1905
1928
|
//#region src/hooks/modals/useNotificationsModal.d.ts
|
|
1906
1929
|
declare const useNotificationsModal: () => {
|
|
@@ -1912,7 +1935,7 @@ declare const NotificationsModalProvider: ({
|
|
|
1912
1935
|
children
|
|
1913
1936
|
}: {
|
|
1914
1937
|
children: ReactNode;
|
|
1915
|
-
}) =>
|
|
1938
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1916
1939
|
//#endregion
|
|
1917
1940
|
//#region src/hooks/modals/useFAQModal.d.ts
|
|
1918
1941
|
declare const useFAQModal: () => {
|
|
@@ -1924,7 +1947,7 @@ declare const FAQModalProvider: ({
|
|
|
1924
1947
|
children
|
|
1925
1948
|
}: {
|
|
1926
1949
|
children: ReactNode;
|
|
1927
|
-
}) =>
|
|
1950
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1928
1951
|
//#endregion
|
|
1929
1952
|
//#region src/hooks/modals/useAccountCustomizationModal.d.ts
|
|
1930
1953
|
declare const useAccountCustomizationModal: () => {
|
|
@@ -1936,7 +1959,7 @@ declare const AccountCustomizationModalProvider: ({
|
|
|
1936
1959
|
children
|
|
1937
1960
|
}: {
|
|
1938
1961
|
children: ReactNode;
|
|
1939
|
-
}) =>
|
|
1962
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1940
1963
|
//#endregion
|
|
1941
1964
|
//#region src/hooks/modals/useReceiveModal.d.ts
|
|
1942
1965
|
declare const useReceiveModal: () => {
|
|
@@ -1948,7 +1971,7 @@ declare const ReceiveModalProvider: ({
|
|
|
1948
1971
|
children
|
|
1949
1972
|
}: {
|
|
1950
1973
|
children: ReactNode;
|
|
1951
|
-
}) =>
|
|
1974
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1952
1975
|
//#endregion
|
|
1953
1976
|
//#region src/hooks/modals/useLoginModalContent.d.ts
|
|
1954
1977
|
type LoginModalContentConfig = {
|
|
@@ -1974,7 +1997,7 @@ declare const UpgradeSmartAccountModalProvider: ({
|
|
|
1974
1997
|
children
|
|
1975
1998
|
}: {
|
|
1976
1999
|
children: ReactNode;
|
|
1977
|
-
}) =>
|
|
2000
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1978
2001
|
//#endregion
|
|
1979
2002
|
//#region src/hooks/modals/useProfileModal.d.ts
|
|
1980
2003
|
declare const useProfileModal: () => {
|
|
@@ -1986,7 +2009,7 @@ declare const ProfileModalProvider: ({
|
|
|
1986
2009
|
children
|
|
1987
2010
|
}: {
|
|
1988
2011
|
children: ReactNode;
|
|
1989
|
-
}) =>
|
|
2012
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
1990
2013
|
//#endregion
|
|
1991
2014
|
//#region src/hooks/modals/useAccountModalOptions.d.ts
|
|
1992
2015
|
declare const useAccountModalOptions: () => {
|
|
@@ -2122,7 +2145,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2122
2145
|
* );
|
|
2123
2146
|
* ```
|
|
2124
2147
|
*/
|
|
2125
|
-
declare const useAppHubApps: () =>
|
|
2148
|
+
declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
|
|
2126
2149
|
//#endregion
|
|
2127
2150
|
//#region src/utils/constants.d.ts
|
|
2128
2151
|
declare const TOKEN_LOGOS: Record<string, string>;
|
|
@@ -2469,7 +2492,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
2469
2492
|
method: TMethod;
|
|
2470
2493
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2471
2494
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
2472
|
-
}) =>
|
|
2495
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
|
|
2473
2496
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
2474
2497
|
thor,
|
|
2475
2498
|
calls,
|
|
@@ -2480,7 +2503,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
2480
2503
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
2481
2504
|
queryKey: string[];
|
|
2482
2505
|
enabled?: boolean;
|
|
2483
|
-
}) =>
|
|
2506
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
2484
2507
|
//#endregion
|
|
2485
2508
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
2486
2509
|
/**
|
|
@@ -2604,7 +2627,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
2604
2627
|
filterParams,
|
|
2605
2628
|
mapResponse,
|
|
2606
2629
|
nodeUrl
|
|
2607
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
2630
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
|
|
2608
2631
|
//#endregion
|
|
2609
2632
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
2610
2633
|
interface BuildClausesParams {
|
|
@@ -2755,7 +2778,7 @@ declare const useGasEstimation: ({
|
|
|
2755
2778
|
tokens,
|
|
2756
2779
|
sendingAmount,
|
|
2757
2780
|
sendingTokenSymbol
|
|
2758
|
-
}: UseGasEstimationParams) =>
|
|
2781
|
+
}: UseGasEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
|
|
2759
2782
|
usedToken: string;
|
|
2760
2783
|
}, Error>;
|
|
2761
2784
|
//#endregion
|
|
@@ -2769,7 +2792,7 @@ declare const useEstimateAllTokens: ({
|
|
|
2769
2792
|
clauses,
|
|
2770
2793
|
tokens,
|
|
2771
2794
|
enabled
|
|
2772
|
-
}: UseEstimateAllTokensParams) =>
|
|
2795
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
|
|
2773
2796
|
cost: number;
|
|
2774
2797
|
loading: boolean;
|
|
2775
2798
|
error?: string;
|
|
@@ -2786,7 +2809,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
2786
2809
|
* @param address The address of the account to get the balance for
|
|
2787
2810
|
* @returns The account balance
|
|
2788
2811
|
*/
|
|
2789
|
-
declare const useAccountBalance: (address?: string) =>
|
|
2812
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
2790
2813
|
balance: string;
|
|
2791
2814
|
energy: string;
|
|
2792
2815
|
}, Error>;
|
|
@@ -2799,7 +2822,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
2799
2822
|
* @param version - The version of the smart account implementation
|
|
2800
2823
|
* @returns The address of the smart account implementation
|
|
2801
2824
|
*/
|
|
2802
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
2825
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2803
2826
|
//#endregion
|
|
2804
2827
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
2805
2828
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -2808,7 +2831,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
2808
2831
|
* Get the current account implementation version used by the smart account factory
|
|
2809
2832
|
* @returns The current account implementation version
|
|
2810
2833
|
*/
|
|
2811
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
2834
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
2812
2835
|
//#endregion
|
|
2813
2836
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
2814
2837
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -2818,7 +2841,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
2818
2841
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2819
2842
|
* @returns The address of the smart account
|
|
2820
2843
|
*/
|
|
2821
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
2844
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2822
2845
|
//#endregion
|
|
2823
2846
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
2824
2847
|
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => (string | unknown[])[];
|
|
@@ -2828,7 +2851,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2828
2851
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2829
2852
|
* @returns The version of the smart account
|
|
2830
2853
|
*/
|
|
2831
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
2854
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
|
|
2832
2855
|
version: number;
|
|
2833
2856
|
isDeployed: boolean;
|
|
2834
2857
|
}, unknown>;
|
|
@@ -2841,7 +2864,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
2841
2864
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2842
2865
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
2843
2866
|
*/
|
|
2844
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
2867
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2845
2868
|
//#endregion
|
|
2846
2869
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
2847
2870
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -2850,7 +2873,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
2850
2873
|
* Check if a smart account is deployed
|
|
2851
2874
|
* @returns True if the smart account is deployed, false otherwise
|
|
2852
2875
|
*/
|
|
2853
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
2876
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2854
2877
|
//#endregion
|
|
2855
2878
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
2856
2879
|
/**
|
|
@@ -2883,7 +2906,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
2883
2906
|
isDeployed: boolean;
|
|
2884
2907
|
}>;
|
|
2885
2908
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
2886
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
2909
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
2887
2910
|
address: undefined;
|
|
2888
2911
|
isDeployed?: undefined;
|
|
2889
2912
|
} | {
|
|
@@ -2901,7 +2924,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2901
2924
|
* @param targetVersion - The version of the smart account to check for
|
|
2902
2925
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
2903
2926
|
*/
|
|
2904
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
2927
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2905
2928
|
//#endregion
|
|
2906
2929
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
2907
2930
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -2912,7 +2935,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
2912
2935
|
* @param targetVersion - The target version of the smart account
|
|
2913
2936
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
2914
2937
|
*/
|
|
2915
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
2938
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2916
2939
|
//#endregion
|
|
2917
2940
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
2918
2941
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -2937,7 +2960,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
2937
2960
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
2938
2961
|
* @returns the current block
|
|
2939
2962
|
*/
|
|
2940
|
-
declare const useCurrentBlock: () =>
|
|
2963
|
+
declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
|
|
2941
2964
|
//#endregion
|
|
2942
2965
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
2943
2966
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -2946,7 +2969,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
2946
2969
|
* Get the chain id
|
|
2947
2970
|
* @returns The chain id
|
|
2948
2971
|
*/
|
|
2949
|
-
declare const useGetChainId: () =>
|
|
2972
|
+
declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2950
2973
|
//#endregion
|
|
2951
2974
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
2952
2975
|
/**
|
|
@@ -3172,7 +3195,7 @@ declare const useBuildTransaction: <ClausesParams>({
|
|
|
3172
3195
|
sendTransaction: (props: ClausesParams) => Promise<void>;
|
|
3173
3196
|
isTransactionPending: boolean;
|
|
3174
3197
|
isWaitingForWalletConfirmation: boolean;
|
|
3175
|
-
txReceipt:
|
|
3198
|
+
txReceipt: _vechain_sdk_network0.TransactionReceipt | null;
|
|
3176
3199
|
status: TransactionStatus;
|
|
3177
3200
|
resetStatus: () => void;
|
|
3178
3201
|
error?: TransactionStatusErrorType;
|
|
@@ -3187,7 +3210,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
3187
3210
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
3188
3211
|
* @returns Query result containing the transaction receipt
|
|
3189
3212
|
*/
|
|
3190
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
3213
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
|
|
3191
3214
|
//#endregion
|
|
3192
3215
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenContent.d.ts
|
|
3193
3216
|
type SendTokenContentProps = {
|
|
@@ -3203,7 +3226,7 @@ declare const SendTokenContent: ({
|
|
|
3203
3226
|
initialAmount,
|
|
3204
3227
|
initialToAddressOrDomain,
|
|
3205
3228
|
onBack: parentOnBack
|
|
3206
|
-
}: SendTokenContentProps) =>
|
|
3229
|
+
}: SendTokenContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3207
3230
|
//#endregion
|
|
3208
3231
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
|
|
3209
3232
|
type SendTokenSummaryContentProps = {
|
|
@@ -3223,7 +3246,7 @@ declare const SendTokenSummaryContent: ({
|
|
|
3223
3246
|
amount,
|
|
3224
3247
|
selectedToken,
|
|
3225
3248
|
formattedTotalAmount
|
|
3226
|
-
}: SendTokenSummaryContentProps) =>
|
|
3249
|
+
}: SendTokenSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3227
3250
|
//#endregion
|
|
3228
3251
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
3229
3252
|
type Props$18 = {
|
|
@@ -3239,7 +3262,7 @@ declare const SelectTokenContent: ({
|
|
|
3239
3262
|
onSelectToken,
|
|
3240
3263
|
onBack,
|
|
3241
3264
|
showAllTokens
|
|
3242
|
-
}: Props$18) =>
|
|
3265
|
+
}: Props$18) => react_jsx_runtime0.JSX.Element;
|
|
3243
3266
|
//#endregion
|
|
3244
3267
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
3245
3268
|
type Props$17 = {
|
|
@@ -3247,7 +3270,7 @@ type Props$17 = {
|
|
|
3247
3270
|
};
|
|
3248
3271
|
declare const ReceiveTokenContent: ({
|
|
3249
3272
|
setCurrentContent
|
|
3250
|
-
}: Props$17) =>
|
|
3273
|
+
}: Props$17) => react_jsx_runtime0.JSX.Element;
|
|
3251
3274
|
//#endregion
|
|
3252
3275
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
3253
3276
|
type Props$16 = {
|
|
@@ -3259,7 +3282,7 @@ declare const SwapTokenContent: ({
|
|
|
3259
3282
|
setCurrentContent,
|
|
3260
3283
|
fromTokenAddress,
|
|
3261
3284
|
toTokenAddress
|
|
3262
|
-
}: Props$16) =>
|
|
3285
|
+
}: Props$16) => react_jsx_runtime0.JSX.Element;
|
|
3263
3286
|
//#endregion
|
|
3264
3287
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
3265
3288
|
type ChooseNameContentProps = {
|
|
@@ -3271,7 +3294,7 @@ declare const ChooseNameContent: ({
|
|
|
3271
3294
|
setCurrentContent,
|
|
3272
3295
|
onBack,
|
|
3273
3296
|
initialContentSource
|
|
3274
|
-
}: ChooseNameContentProps) =>
|
|
3297
|
+
}: ChooseNameContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3275
3298
|
//#endregion
|
|
3276
3299
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
|
|
3277
3300
|
type ChooseNameSearchContentProps = {
|
|
@@ -3283,7 +3306,7 @@ declare const ChooseNameSearchContent: ({
|
|
|
3283
3306
|
name: initialName,
|
|
3284
3307
|
setCurrentContent,
|
|
3285
3308
|
initialContentSource
|
|
3286
|
-
}: ChooseNameSearchContentProps) =>
|
|
3309
|
+
}: ChooseNameSearchContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3287
3310
|
//#endregion
|
|
3288
3311
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
|
|
3289
3312
|
type ChooseNameSummaryContentProps = {
|
|
@@ -3301,7 +3324,7 @@ declare const ChooseNameSummaryContent: ({
|
|
|
3301
3324
|
isOwnDomain,
|
|
3302
3325
|
isUnsetting,
|
|
3303
3326
|
initialContentSource
|
|
3304
|
-
}: ChooseNameSummaryContentProps) =>
|
|
3327
|
+
}: ChooseNameSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3305
3328
|
//#endregion
|
|
3306
3329
|
//#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
|
|
3307
3330
|
type FAQContentProps = {
|
|
@@ -3311,7 +3334,7 @@ type FAQContentProps = {
|
|
|
3311
3334
|
declare const FAQContent: ({
|
|
3312
3335
|
onGoBack,
|
|
3313
3336
|
showLanguageSelector
|
|
3314
|
-
}: FAQContentProps) =>
|
|
3337
|
+
}: FAQContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3315
3338
|
//#endregion
|
|
3316
3339
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
|
|
3317
3340
|
type AccountCustomizationContentProps = {
|
|
@@ -3321,7 +3344,7 @@ type AccountCustomizationContentProps = {
|
|
|
3321
3344
|
declare const CustomizationContent: ({
|
|
3322
3345
|
setCurrentContent,
|
|
3323
3346
|
initialContentSource
|
|
3324
|
-
}: AccountCustomizationContentProps) =>
|
|
3347
|
+
}: AccountCustomizationContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3325
3348
|
//#endregion
|
|
3326
3349
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
|
|
3327
3350
|
type CustomizationSummaryContentProps = {
|
|
@@ -3340,7 +3363,7 @@ declare const CustomizationSummaryContent: ({
|
|
|
3340
3363
|
setCurrentContent,
|
|
3341
3364
|
changes,
|
|
3342
3365
|
onDoneRedirectContent
|
|
3343
|
-
}: CustomizationSummaryContentProps) =>
|
|
3366
|
+
}: CustomizationSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3344
3367
|
//#endregion
|
|
3345
3368
|
//#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
|
|
3346
3369
|
type ProfileContentProps = {
|
|
@@ -3350,7 +3373,7 @@ type ProfileContentProps = {
|
|
|
3350
3373
|
declare const ProfileContent: ({
|
|
3351
3374
|
setCurrentContent,
|
|
3352
3375
|
onLogoutSuccess
|
|
3353
|
-
}: ProfileContentProps) =>
|
|
3376
|
+
}: ProfileContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3354
3377
|
//#endregion
|
|
3355
3378
|
//#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
|
|
3356
3379
|
type UpgradeSmartAccountContentProps = {
|
|
@@ -3362,7 +3385,7 @@ declare const UpgradeSmartAccountContent: ({
|
|
|
3362
3385
|
setCurrentContent,
|
|
3363
3386
|
handleClose,
|
|
3364
3387
|
initialContent
|
|
3365
|
-
}: UpgradeSmartAccountContentProps) =>
|
|
3388
|
+
}: UpgradeSmartAccountContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3366
3389
|
//#endregion
|
|
3367
3390
|
//#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
|
|
3368
3391
|
type AssetsContentProps = {
|
|
@@ -3370,7 +3393,7 @@ type AssetsContentProps = {
|
|
|
3370
3393
|
};
|
|
3371
3394
|
declare const AssetsContent: ({
|
|
3372
3395
|
setCurrentContent
|
|
3373
|
-
}: AssetsContentProps) =>
|
|
3396
|
+
}: AssetsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3374
3397
|
//#endregion
|
|
3375
3398
|
//#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
|
|
3376
3399
|
type ManageCustomTokenContentProps = {
|
|
@@ -3378,7 +3401,7 @@ type ManageCustomTokenContentProps = {
|
|
|
3378
3401
|
};
|
|
3379
3402
|
declare const ManageCustomTokenContent: ({
|
|
3380
3403
|
setCurrentContent
|
|
3381
|
-
}: ManageCustomTokenContentProps) =>
|
|
3404
|
+
}: ManageCustomTokenContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3382
3405
|
//#endregion
|
|
3383
3406
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
3384
3407
|
type Props$15 = {
|
|
@@ -3386,7 +3409,7 @@ type Props$15 = {
|
|
|
3386
3409
|
};
|
|
3387
3410
|
declare const BridgeContent: ({
|
|
3388
3411
|
setCurrentContent
|
|
3389
|
-
}: Props$15) =>
|
|
3412
|
+
}: Props$15) => react_jsx_runtime0.JSX.Element;
|
|
3390
3413
|
//#endregion
|
|
3391
3414
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
3392
3415
|
type ChangeCurrencyContentProps = {
|
|
@@ -3394,7 +3417,7 @@ type ChangeCurrencyContentProps = {
|
|
|
3394
3417
|
};
|
|
3395
3418
|
declare const ChangeCurrencyContent: ({
|
|
3396
3419
|
setCurrentContent
|
|
3397
|
-
}: ChangeCurrencyContentProps) =>
|
|
3420
|
+
}: ChangeCurrencyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3398
3421
|
//#endregion
|
|
3399
3422
|
//#region src/components/AccountModal/Contents/KitSettings/GeneralSettingsContent.d.ts
|
|
3400
3423
|
type Props$14 = {
|
|
@@ -3402,7 +3425,7 @@ type Props$14 = {
|
|
|
3402
3425
|
};
|
|
3403
3426
|
declare const GeneralSettingsContent: ({
|
|
3404
3427
|
setCurrentContent
|
|
3405
|
-
}: Props$14) =>
|
|
3428
|
+
}: Props$14) => react_jsx_runtime0.JSX.Element;
|
|
3406
3429
|
//#endregion
|
|
3407
3430
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
3408
3431
|
type Props$13 = {
|
|
@@ -3410,7 +3433,7 @@ type Props$13 = {
|
|
|
3410
3433
|
};
|
|
3411
3434
|
declare const LanguageSettingsContent: ({
|
|
3412
3435
|
setCurrentContent
|
|
3413
|
-
}: Props$13) =>
|
|
3436
|
+
}: Props$13) => react_jsx_runtime0.JSX.Element;
|
|
3414
3437
|
//#endregion
|
|
3415
3438
|
//#region src/components/AccountModal/Contents/KitSettings/AppearanceSettingsContent.d.ts
|
|
3416
3439
|
type Props$12 = {
|
|
@@ -3418,7 +3441,7 @@ type Props$12 = {
|
|
|
3418
3441
|
};
|
|
3419
3442
|
declare const AppearanceSettingsContent: ({
|
|
3420
3443
|
setCurrentContent
|
|
3421
|
-
}: Props$12) =>
|
|
3444
|
+
}: Props$12) => react_jsx_runtime0.JSX.Element;
|
|
3422
3445
|
//#endregion
|
|
3423
3446
|
//#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
|
|
3424
3447
|
type Props$11 = {
|
|
@@ -3426,7 +3449,7 @@ type Props$11 = {
|
|
|
3426
3449
|
};
|
|
3427
3450
|
declare const GasTokenSettingsContent: ({
|
|
3428
3451
|
setCurrentContent
|
|
3429
|
-
}: Props$11) =>
|
|
3452
|
+
}: Props$11) => react_jsx_runtime0.JSX.Element;
|
|
3430
3453
|
//#endregion
|
|
3431
3454
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
3432
3455
|
type TermsAndPrivacyContentProps = {
|
|
@@ -3434,7 +3457,7 @@ type TermsAndPrivacyContentProps = {
|
|
|
3434
3457
|
};
|
|
3435
3458
|
declare const TermsAndPrivacyContent: ({
|
|
3436
3459
|
onGoBack
|
|
3437
|
-
}: TermsAndPrivacyContentProps) =>
|
|
3460
|
+
}: TermsAndPrivacyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3438
3461
|
//#endregion
|
|
3439
3462
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
3440
3463
|
type CategoryFilter = string | null;
|
|
@@ -3538,7 +3561,7 @@ declare const AccountModal: ({
|
|
|
3538
3561
|
isOpen,
|
|
3539
3562
|
onClose,
|
|
3540
3563
|
initialContent
|
|
3541
|
-
}: Props$10) =>
|
|
3564
|
+
}: Props$10) => react_jsx_runtime0.JSX.Element;
|
|
3542
3565
|
//#endregion
|
|
3543
3566
|
//#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
|
|
3544
3567
|
interface AccountDetailsButtonProps {
|
|
@@ -3560,7 +3583,7 @@ declare const AccountDetailsButton: ({
|
|
|
3560
3583
|
onClick,
|
|
3561
3584
|
leftImage,
|
|
3562
3585
|
isActive
|
|
3563
|
-
}: AccountDetailsButtonProps) =>
|
|
3586
|
+
}: AccountDetailsButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3564
3587
|
//#endregion
|
|
3565
3588
|
//#region src/components/AccountModal/Components/ActionButton.d.ts
|
|
3566
3589
|
type ActionButtonProps = {
|
|
@@ -3602,7 +3625,7 @@ declare const ActionButton: ({
|
|
|
3602
3625
|
extraContent,
|
|
3603
3626
|
dataTestId,
|
|
3604
3627
|
variant
|
|
3605
|
-
}: ActionButtonProps) =>
|
|
3628
|
+
}: ActionButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3606
3629
|
//#endregion
|
|
3607
3630
|
//#region src/components/AccountModal/Components/AccountSelector.d.ts
|
|
3608
3631
|
type Props$9 = {
|
|
@@ -3622,7 +3645,7 @@ declare const AccountSelector: ({
|
|
|
3622
3645
|
onClose,
|
|
3623
3646
|
mt,
|
|
3624
3647
|
style
|
|
3625
|
-
}: Props$9) =>
|
|
3648
|
+
}: Props$9) => react_jsx_runtime0.JSX.Element;
|
|
3626
3649
|
//#endregion
|
|
3627
3650
|
//#region src/components/AccountModal/Components/BalanceSection.d.ts
|
|
3628
3651
|
declare const BalanceSection: ({
|
|
@@ -3633,7 +3656,7 @@ declare const BalanceSection: ({
|
|
|
3633
3656
|
mb?: number;
|
|
3634
3657
|
mt?: number;
|
|
3635
3658
|
onAssetsClick?: () => void;
|
|
3636
|
-
}) =>
|
|
3659
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
3637
3660
|
//#endregion
|
|
3638
3661
|
//#region src/components/AccountModal/Components/QuickActionsSection.d.ts
|
|
3639
3662
|
type Props$8 = {
|
|
@@ -3643,7 +3666,7 @@ type Props$8 = {
|
|
|
3643
3666
|
declare const QuickActionsSection: ({
|
|
3644
3667
|
mt,
|
|
3645
3668
|
setCurrentContent
|
|
3646
|
-
}: Props$8) =>
|
|
3669
|
+
}: Props$8) => react_jsx_runtime0.JSX.Element;
|
|
3647
3670
|
//#endregion
|
|
3648
3671
|
//#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
|
|
3649
3672
|
type FeatureAnnouncementCardProps = {
|
|
@@ -3651,16 +3674,16 @@ type FeatureAnnouncementCardProps = {
|
|
|
3651
3674
|
};
|
|
3652
3675
|
declare const FeatureAnnouncementCard: ({
|
|
3653
3676
|
setCurrentContent
|
|
3654
|
-
}: FeatureAnnouncementCardProps) =>
|
|
3677
|
+
}: FeatureAnnouncementCardProps) => react_jsx_runtime0.JSX.Element | null;
|
|
3655
3678
|
//#endregion
|
|
3656
3679
|
//#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
|
|
3657
|
-
declare const ExchangeWarningAlert: () =>
|
|
3680
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime0.JSX.Element;
|
|
3658
3681
|
//#endregion
|
|
3659
3682
|
//#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
|
|
3660
|
-
declare const DomainRequiredAlert: () =>
|
|
3683
|
+
declare const DomainRequiredAlert: () => react_jsx_runtime0.JSX.Element;
|
|
3661
3684
|
//#endregion
|
|
3662
3685
|
//#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
|
|
3663
|
-
declare const CrossAppConnectionSecurityCard: () =>
|
|
3686
|
+
declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime0.JSX.Element;
|
|
3664
3687
|
//#endregion
|
|
3665
3688
|
//#region src/components/common/ModalBackButton.d.ts
|
|
3666
3689
|
type BackButtonProps = {
|
|
@@ -3669,7 +3692,7 @@ type BackButtonProps = {
|
|
|
3669
3692
|
declare const ModalBackButton: ({
|
|
3670
3693
|
onClick,
|
|
3671
3694
|
...props
|
|
3672
|
-
}: BackButtonProps) =>
|
|
3695
|
+
}: BackButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3673
3696
|
//#endregion
|
|
3674
3697
|
//#region src/components/common/AddressDisplay.d.ts
|
|
3675
3698
|
type Props$7 = {
|
|
@@ -3683,13 +3706,13 @@ declare const AddressDisplay: ({
|
|
|
3683
3706
|
label,
|
|
3684
3707
|
style,
|
|
3685
3708
|
showHumanAddress
|
|
3686
|
-
}: Props$7) =>
|
|
3709
|
+
}: Props$7) => react_jsx_runtime0.JSX.Element;
|
|
3687
3710
|
//#endregion
|
|
3688
3711
|
//#region src/components/common/VersionFooter.d.ts
|
|
3689
3712
|
type Props$6 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
3690
3713
|
declare const VersionFooter: ({
|
|
3691
3714
|
...props
|
|
3692
|
-
}: Props$6) =>
|
|
3715
|
+
}: Props$6) => react_jsx_runtime0.JSX.Element;
|
|
3693
3716
|
//#endregion
|
|
3694
3717
|
//#region src/components/common/StickyHeaderContainer.d.ts
|
|
3695
3718
|
type Props$5 = {
|
|
@@ -3697,7 +3720,7 @@ type Props$5 = {
|
|
|
3697
3720
|
};
|
|
3698
3721
|
declare const StickyHeaderContainer: ({
|
|
3699
3722
|
children
|
|
3700
|
-
}: Props$5) =>
|
|
3723
|
+
}: Props$5) => react_jsx_runtime0.JSX.Element;
|
|
3701
3724
|
//#endregion
|
|
3702
3725
|
//#region src/components/common/StickyFooterContainer.d.ts
|
|
3703
3726
|
type Props$4 = {
|
|
@@ -3705,7 +3728,7 @@ type Props$4 = {
|
|
|
3705
3728
|
};
|
|
3706
3729
|
declare const StickyFooterContainer: ({
|
|
3707
3730
|
children
|
|
3708
|
-
}: Props$4) =>
|
|
3731
|
+
}: Props$4) => react_jsx_runtime0.JSX.Element;
|
|
3709
3732
|
//#endregion
|
|
3710
3733
|
//#region src/components/common/BaseModal.d.ts
|
|
3711
3734
|
type BaseModalProps = {
|
|
@@ -3736,7 +3759,7 @@ declare const BaseModal: ({
|
|
|
3736
3759
|
allowExternalFocus,
|
|
3737
3760
|
backdropFilter,
|
|
3738
3761
|
isCloseable
|
|
3739
|
-
}: BaseModalProps) =>
|
|
3762
|
+
}: BaseModalProps) => react_jsx_runtime0.JSX.Element;
|
|
3740
3763
|
//#endregion
|
|
3741
3764
|
//#region src/components/common/AssetButton.d.ts
|
|
3742
3765
|
type AssetButtonProps = ButtonProps & {
|
|
@@ -3755,7 +3778,7 @@ declare const AssetButton: ({
|
|
|
3755
3778
|
isDisabled,
|
|
3756
3779
|
onClick,
|
|
3757
3780
|
...buttonProps
|
|
3758
|
-
}: AssetButtonProps) =>
|
|
3781
|
+
}: AssetButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3759
3782
|
//#endregion
|
|
3760
3783
|
//#region src/components/common/AddressDisplayCard.d.ts
|
|
3761
3784
|
type AddressDisplayCardProps = {
|
|
@@ -3777,7 +3800,7 @@ declare const AddressDisplayCard: ({
|
|
|
3777
3800
|
hideAddress,
|
|
3778
3801
|
balance,
|
|
3779
3802
|
tokenAddress
|
|
3780
|
-
}: AddressDisplayCardProps) =>
|
|
3803
|
+
}: AddressDisplayCardProps) => react_jsx_runtime0.JSX.Element;
|
|
3781
3804
|
//#endregion
|
|
3782
3805
|
//#region src/components/common/ModalFAQButton.d.ts
|
|
3783
3806
|
type FAQButtonProps = {
|
|
@@ -3786,13 +3809,13 @@ type FAQButtonProps = {
|
|
|
3786
3809
|
declare const ModalFAQButton: ({
|
|
3787
3810
|
onClick,
|
|
3788
3811
|
...props
|
|
3789
|
-
}: FAQButtonProps) =>
|
|
3812
|
+
}: FAQButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3790
3813
|
//#endregion
|
|
3791
3814
|
//#region src/components/common/ScrollToTopWrapper.d.ts
|
|
3792
3815
|
declare const ScrollToTopWrapper: ({
|
|
3793
3816
|
children,
|
|
3794
3817
|
...props
|
|
3795
|
-
}: StackProps) =>
|
|
3818
|
+
}: StackProps) => react_jsx_runtime0.JSX.Element;
|
|
3796
3819
|
//#endregion
|
|
3797
3820
|
//#region src/components/common/AccountAvatar.d.ts
|
|
3798
3821
|
type AccountAvatarProps = {
|
|
@@ -3802,7 +3825,7 @@ type AccountAvatarProps = {
|
|
|
3802
3825
|
declare const AccountAvatar: ({
|
|
3803
3826
|
wallet,
|
|
3804
3827
|
props
|
|
3805
|
-
}: AccountAvatarProps) =>
|
|
3828
|
+
}: AccountAvatarProps) => react_jsx_runtime0.JSX.Element;
|
|
3806
3829
|
//#endregion
|
|
3807
3830
|
//#region src/components/common/TransactionButtonAndStatus.d.ts
|
|
3808
3831
|
type TransactionButtonAndStatusProps = {
|
|
@@ -3844,7 +3867,7 @@ declare const TransactionButtonAndStatus: ({
|
|
|
3844
3867
|
isLoadingGasEstimation,
|
|
3845
3868
|
showGasEstimationError,
|
|
3846
3869
|
context
|
|
3847
|
-
}: TransactionButtonAndStatusProps) =>
|
|
3870
|
+
}: TransactionButtonAndStatusProps) => react_jsx_runtime0.JSX.Element;
|
|
3848
3871
|
//#endregion
|
|
3849
3872
|
//#region src/components/common/ModalNotificationButton.d.ts
|
|
3850
3873
|
type NotificationButtonProps = {
|
|
@@ -3855,7 +3878,7 @@ declare const ModalNotificationButton: ({
|
|
|
3855
3878
|
onClick,
|
|
3856
3879
|
hasUnreadNotifications,
|
|
3857
3880
|
...props
|
|
3858
|
-
}: NotificationButtonProps) =>
|
|
3881
|
+
}: NotificationButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
3859
3882
|
//#endregion
|
|
3860
3883
|
//#region src/components/common/GasFeeSummary.d.ts
|
|
3861
3884
|
interface GasFeeSummaryProps {
|
|
@@ -3891,7 +3914,7 @@ declare const GasFeeTokenSelector: ({
|
|
|
3891
3914
|
availableTokens,
|
|
3892
3915
|
tokenEstimations,
|
|
3893
3916
|
walletAddress
|
|
3894
|
-
}: GasFeeTokenSelectorProps) =>
|
|
3917
|
+
}: GasFeeTokenSelectorProps) => react_jsx_runtime0.JSX.Element;
|
|
3895
3918
|
//#endregion
|
|
3896
3919
|
//#region src/components/LoginLoadingModal/LoginLoadingModal.d.ts
|
|
3897
3920
|
type LoginLoadingModalProps = {
|
|
@@ -3909,7 +3932,7 @@ declare const LoginLoadingModal: ({
|
|
|
3909
3932
|
title,
|
|
3910
3933
|
loadingText,
|
|
3911
3934
|
onTryAgain
|
|
3912
|
-
}: LoginLoadingModalProps) =>
|
|
3935
|
+
}: LoginLoadingModalProps) => react_jsx_runtime0.JSX.Element;
|
|
3913
3936
|
//#endregion
|
|
3914
3937
|
//#region src/components/EcosystemModal/EcosystemModal.d.ts
|
|
3915
3938
|
type Props$3 = {
|
|
@@ -3923,7 +3946,7 @@ declare const EcosystemModal: ({
|
|
|
3923
3946
|
onClose,
|
|
3924
3947
|
appsInfo,
|
|
3925
3948
|
isLoading
|
|
3926
|
-
}: Props$3) =>
|
|
3949
|
+
}: Props$3) => react_jsx_runtime0.JSX.Element;
|
|
3927
3950
|
//#endregion
|
|
3928
3951
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
3929
3952
|
type SuccessfulOperationContentProps = {
|
|
@@ -3953,7 +3976,7 @@ declare const UpgradeSmartAccountModal: ({
|
|
|
3953
3976
|
isOpen,
|
|
3954
3977
|
onClose,
|
|
3955
3978
|
style
|
|
3956
|
-
}: Props$2) =>
|
|
3979
|
+
}: Props$2) => react_jsx_runtime0.JSX.Element;
|
|
3957
3980
|
//#endregion
|
|
3958
3981
|
//#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
|
|
3959
3982
|
type Props$1 = {
|
|
@@ -3968,7 +3991,7 @@ declare const LegalDocumentsModal: ({
|
|
|
3968
3991
|
onAgree,
|
|
3969
3992
|
handleLogout,
|
|
3970
3993
|
onlyOptionalDocuments
|
|
3971
|
-
}: Props$1) =>
|
|
3994
|
+
}: Props$1) => react_jsx_runtime0.JSX.Element;
|
|
3972
3995
|
//#endregion
|
|
3973
3996
|
//#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
|
|
3974
3997
|
type Props = {
|
|
@@ -3980,7 +4003,7 @@ declare const LegalDocumentItem: ({
|
|
|
3980
4003
|
document,
|
|
3981
4004
|
register,
|
|
3982
4005
|
isText
|
|
3983
|
-
}: Props) =>
|
|
4006
|
+
}: Props) => react_jsx_runtime0.JSX.Element;
|
|
3984
4007
|
//#endregion
|
|
3985
4008
|
//#region src/providers/ModalProvider.d.ts
|
|
3986
4009
|
type AccountModalOptions = {
|
|
@@ -4011,7 +4034,7 @@ declare const ModalProvider: ({
|
|
|
4011
4034
|
children
|
|
4012
4035
|
}: {
|
|
4013
4036
|
children: ReactNode;
|
|
4014
|
-
}) =>
|
|
4037
|
+
}) => react_jsx_runtime0.JSX.Element;
|
|
4015
4038
|
//#endregion
|
|
4016
4039
|
//#region src/config/index.d.ts
|
|
4017
4040
|
type AppConfig = {
|
|
@@ -4057,4 +4080,4 @@ type AppConfig = {
|
|
|
4057
4080
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4058
4081
|
//#endregion
|
|
4059
4082
|
export { AssetsContentProps as $, getErc20BalanceQueryKey as $a, useSendTokenModal as $i, useGetNodeUrl as $n, DisconnectConfirmContent as $o, randomTransactionUser as $r, TransactionCost as $s, getSmartAccount as $t, ModalBackButton as A, useXAppsShares as Aa, useNotificationAlerts as Ai, delegateAuthorized as An, getTextRecordsQueryKey as Ao, normalize as Ar, useLegalDocuments as As, useBuildTransaction as At, AccountModal as B, useRefreshBalances as Ba, AccountCustomizationModalProvider as Bi, LocalStorageKey as Bn, useIsDomainProtected as Bo, buildQueryString as Br, VeChainKitContext as Bs, getChainId as Bt, AddressDisplayCard as C, getIpfsImageQueryKey as Ca, TokenBalance as Cc, getAppHubAppsQueryKey as Ci, useAccountBalance as Cn, getAvatarOfAddressQueryKey as Co, executeCallClause as Cr, VeChainLoginButton as Cs, useMfaEnrollment as Ct, StickyHeaderContainer as D, getIpfsMetadataQueryKey as Da, Wallet as Dc, useLoginWithPasskey as Di, useGasEstimation as Dn, buildClauses as Do, compare as Dr, ConnectModal as Ds, txReceiptQueryKey as Dt, StickyFooterContainer as E, getIpfsMetadata as Ea, VePassportUserStatus as Ec, useLoginWithOAuth as Ei, UseGasEstimationParams as En, useGetResolverAddress as Eo, addPrefix as Er, MainContent as Es, useThor as Et, QuickActionsSection as F, UseWalletReturnType as Fa, UpgradeSmartAccountModalProvider as Fi, useGenericDelegator as Fn, DomainsResponse as Fo, EconomicNodeStrengthLevelToName as Fr, PrivyWalletProviderContextType as Fs, UseSendTransactionReturnValue as Ft, LanguageSettingsContent as G, useIsPerson as Ga, useNotificationsModal as Gi, useBuildClauses as Gn, useEnsRecordExists as Go, toIPFSURL as Gr, LegalDocumentAgreement as Gs, useUpgradeSmartAccount as Gt, TermsAndPrivacyContent as H, XApp as Ha, FAQModalProvider as Hi, BuildClausesParams as Hn, useClaimVetDomain as Ho, xNodeToGMstartingLevel as Hr, VechainKitProviderProps as Hs, useGetChainId as Ht, BalanceSection as I, useWallet as Ia, useUpgradeSmartAccountModal as Ii, useCrossAppConnectionCache as In, getDomainsOfAddress as Io, MinXNodeLevel as Ir, usePrivyWalletProvider as Is, useSendTransaction as It, ChangeCurrencyContentProps as J, PRICE_FEED_IDS as Ja, AccessAndSecurityModalProvider as Ji, decodeEventLog$1 as Jn, fetchPrivyStatus as Jo, compareAddresses as Jr, CostLevel as Js, useUpgradeRequiredForAccount as Jt, GeneralSettingsContent as K, getVot3BalanceQueryKey as Ka, ExploreEcosystemModalProvider as Ki, GetEventsKeyParams as Kn, getVechainDomainQueryKey as Ko, uploadBlobToIPFS as Kr, LegalDocumentSource as Ks, getUpgradeRequiredForAccount as Kt, AccountSelector as L, getRoundXAppsQueryKey as La, useLoginModalContent as Li, EcosystemShortcut as Ln, getDomainsOfAddressQueryKey as Lo, NodeStrengthLevelToImage as Lr, LegalDocument as Ls, GetEventsProps as Lt, DomainRequiredAlert as M, getXAppMetadata as Ma, useAccountModalOptions as Mi, estimateGas as Mn, getAvatarQueryKey as Mo, validate as Mr, VechainKitThemeProvider as Ms, useTransferVET as Mt, ExchangeWarningAlert as N, useXAppMetadata as Na, ProfileModalProvider as Ni, getDepositAccount as Nn, useGetAvatar as No, isRejectionError as Nr, useVechainKitThemeConfig as Ns, buildERC20Clauses as Nt, VersionFooter as O, useIpfsMetadata as Oa, useSignTypedData as Oi, useGasTokenSelection as On, useUpdateTextRecord as Oo, isInvalid as Or, ConnectModalContentsTypes as Os, useTxReceipt as Ot, FeatureAnnouncementCard as P, useWalletMetadata as Pa, useProfileModal as Pi, signVip191Transaction as Pn, Domain as Po, TIME as Pr, PrivyWalletProvider as Ps, useTransferERC20 as Pt, AssetsContent as Q, useGetTokenUsdPrice as Qa, SendTokenModalProvider as Qi, useIsPWA as Qn, useFetchAppInfo as Qo, regexPattern as Qr, Rate as Qs, SmartAccountReturnType as Qt, ActionButton as R, useRoundXApps as Ra, ReceiveModalProvider as Ri, useEcosystemShortcuts as Rn, useGetDomainsOfAddress as Ro, XNodeStrengthLevelToName as Rr, LegalDocumentOptions as Rs, getAllEventLogs as Rt, ModalFAQButton as S, getIpfsImage as Sa, SmartAccount as Sc, fetchAppHubApps as Si, getAccountBalanceQueryKey as Sn, useGetAvatarLegacy as So, buildCallClauses as Sr, EcosystemButton as Ss, useDAppKitWalletModal as St, BaseModal as T, useIpfsImageList as Ta, TransactionStatusErrorType as Tc, useLoginWithVeChain as Ti, useEstimateAllTokens as Tn, getResolverAddressQueryKey as To, isValidUrl as Tr, ConnectionButton as Ts, useSetWalletRecovery as Tt, GasTokenSettingsContent as U, useMostVotedAppsInRound as Ua, useFAQModal as Ui, buildBatchAuthorizationTypedData as Un, useClaimVeWorldSubdomain as Uo, convertUriToUrl as Ur, useVeChainKitConfig as Us, currentBlockQueryKey as Ut, AccountModalContentTypes as V, MostVotedAppsInRoundReturnType as Va, useAccountCustomizationModal as Vi, useLocalStorage as Vn, buildVetDomainClauses as Vo, gmNfts as Vr, VeChainKitProvider as Vs, getChainIdQueryKey as Vt, AppearanceSettingsContent as W, getIsPersonQueryKey as Wa, NotificationsModalProvider as Wi, buildSingleAuthorizationTypedData as Wn, getEnsRecordExistsQueryKey as Wo, resolveMediaTypeFromMimeType as Wr, EnrichedLegalDocument as Ws, useCurrentBlock as Wt, ManageCustomTokenContent as X, getTokenUsdPrice as Xa, SwapTokenModalProvider as Xi, useEvents as Xn, fetchPrivyAppInfo as Xo, isValidAddress as Xr, EstimatedGas as Xs, getUpgradeRequiredQueryKey as Xt, BridgeContent as Y, SupportedToken as Ya, useAccessAndSecurityModal as Yi, getEventsKey as Yn, useFetchPrivyStatus as Yo, compareListOfAddresses as Yr, DepositAccount as Ys, getUpgradeRequired as Yt, ManageCustomTokenContentProps as Z, getTokenUsdPriceQueryKey as Za, useSwapTokenModal as Zi, useScrollToTop as Zn, getPrivyAppInfoQueryKey as Zo, leftPadWithZeros as Zr, EstimationResponse as Zs, useUpgradeRequired as Zt, ModalNotificationButton as _, imageCompressionOptions as _a, ExecuteBatchWithAuthorizationSignData as _c, VECHAIN_PRIVY_APP_ID as _i, useCurrentAccountImplementationVersion as _n, WalletTokenBalance as _o, safeWindowOpen as _r, VeChainWithPrivyLoginButton as _s, SelectTokenContent as _t, useModal as a, useTransactionToast as aa, GasTokenPreferences as ac, isZero as ai, getIsDeployedQueryKey as an, getCustomTokenBalanceQueryKey as ao, getCallClauseQueryKeyWithArgs as ar, AccountMainContent as as, CustomizationSummaryContentProps as at, AccountAvatar as b, IpfsImage as ba, PrivyAppInfo as bc, notFoundImage as bi, useAccountImplementationAddress as bn, getAvatarLegacy as bo, MultipleClausesCallReturnType as br, LoginWithGoogleButton as bs, ThorClient$1 as bt, LegalDocumentsModal as c, AccountModalProvider as ca, TransactionSpeed as cc, ENV as ci, getHasV1SmartAccountQueryKey as cn, useGetB3trBalance as co, copyToClipboard as cr, ShareButtons as cs, FAQContent as ct, UpgradeSmartAccountModalContentsTypes as d, useConnectModal as da, CURRENCY as dc, TOKEN_LOGOS as di, useGetAccountVersion as dn, useCurrentAllocationsRoundId as do, getWindowOrigin as dr, SocialIcons as ds, ChooseNameSearchContent as dt, ChooseNameModalProvider as ea, VthoPerGasAtSpeed as ec, formatTokenBalance as ei, getSmartAccountQueryKey as en, useGetErc20Balance as eo, useFeatureAnnouncement as er, DisconnectConfirmContentProps as es, UpgradeSmartAccountContent as et, UpgradeSmartAccountModalStyle as f, useSwapQuotes as fa, CURRENCY_SYMBOLS as fc, TOKEN_LOGO_COMPONENTS as fi, getAccountAddress as fn, useTotalBalance as fo, hasNavigator as fr, WalletButton as fs, ChooseNameSearchContentProps as ft, GasFeeSummary as g, compressImages as ga, EnhancedClause as gc, VECHAIN_KIT_TERMS_CONFIG as gi, getCurrentAccountImplementationVersionQueryKey as gn, useTokenPrices as go, safeQuerySelector as gr, LoginWithGithubButton as gs, ReceiveTokenContent as gt, GasFeeTokenSelector as h, UploadedImage as ha, ENSRecords as hc, VECHAIN_KIT_STORAGE_KEYS as hi, getCurrentAccountImplementationVersion as hn, ExchangeRates as ho, removeLocalStorageItem as hr, ConnectPopover as hs, SwapTokenContent as ht, ModalProvider as i, TransactionToastProvider as ia, GasTokenInfo as ic, humanNumber as ii, getIsDeployed as in, TokenWithBalance as io, getCallClauseQueryKey as ir, AccessAndSecurityContent as is, CustomizationSummaryContent as it, CrossAppConnectionSecurityCard as j, XAppMetadata as ja, useNotifications as ji, estimateAndBuildTxBody as jn, useGetTextRecords as jo, removePrefix as jr, ColorModeSync as js, buildVETClauses as jt, AddressDisplay as k, getXAppsSharesQueryKey as ka, useSignMessage as ki, decodeRawTx as kn, getTextRecords as ko, isValid as kr, LegalDocumentsProvider as ks, BuildTransactionProps as kt, LegalDocumentsModalContentsTypes as l, useAccountModal as la, ENS_TEXT_RECORDS as lc, PrivyEcosystemApp as li, useHasV1SmartAccount as ln, useCustomTokens as lo, getDocumentTitle as lr, TransactionModal as ls, ChooseNameSummaryContent as lt, LoginLoadingModal as m, useSingleImageUpload as ma, CrossAppConnectionCache as mc, VECHAIN_KIT_COOKIES_CONFIG as mi, useGetAccountAddress as mn, useTokensWithValues as mo, isOnline as mr, WalletDisplayVariant as ms, ChooseNameContentProps as mt, getConfig as n, WalletModalProvider as na, formatGasCost as nc, humanAddress as ni, useRefreshSmartAccountQueries as nn, getTokenInfo as no, useCurrentLanguage as nr, SettingsContent as ns, ProfileContent as nt, DAppKitWalletButton as o, TransactionModalProvider as oa, GasTokenSelection as oc, DEFAULT_GAS_TOKEN_PREFERENCES as oi, useIsSmartAccountDeployed as on, useGetCustomTokenBalances as oo, useCallClause as or, TransactionToast as os, AccountCustomizationContentProps as ot, EcosystemModal as p, useSwapTransaction as pa, ConnectionSource as pc, TogglePassportCheck as pi, getAccountAddressQueryKey as pn, TokenWithValue as po, isBrowser as pr, WalletButtonProps as ps, ChooseNameContent as pt, ChangeCurrencyContent as q, useGetVot3Balance as qa, useExploreEcosystemModal as qi, UseEventsParams as qn, useVechainDomain as qo, validateIpfsUri as qr, LegalDocumentType as qs, getUpgradeRequiredForAccountQueryKey as qt, AccountModalOptions as r, useWalletModal as ra, GasTokenEstimate as rc, humanDomain as ri, useRefreshFactoryQueries as rn, useGetCustomTokenInfo as ro, useCurrency as rr, SettingsContentProps as rs, ProfileContentProps as rt, LegalDocumentItem as s, useTransactionModal as sa, GasTokenType as sc, DEFAULT_PRIVY_ECOSYSTEM_APPS as si, getHasV1SmartAccount as sn, getB3trBalanceQueryKey as so, useMultipleClausesCall as sr, TransactionModalContent as ss, CustomizationContent as st, AppConfig as t, useChooseNameModal as ta, calculateTotalCost as tc, getPicassoImage as ti, useSmartAccount as tn, getCustomTokenInfoQueryKey as to, useCurrentCurrency as tr, EmbeddedWalletContent as ts, UpgradeSmartAccountContentProps as tt, UpgradeSmartAccountModal as u, ConnectModalProvider as ua, TextRecords as uc, SUPPORTED_GAS_TOKENS as ui, getAccountVersionQueryKey as un, getCurrentAllocationsRoundIdQueryKey as uo, getLocalStorageItem as ur, TransactionModalProps as us, ChooseNameSummaryContentProps as ut, TransactionButtonAndStatus as v, useUploadImages as va, ExecuteWithAuthorizationSignData as vc, getENV as vi, getAccountImplementationAddress as vn, useTokenBalances as vo, setLocalStorageItem as vr, DappKitButton as vs, SendTokenSummaryContent as vt, AssetButton as w, useIpfsImage as wa, TransactionStatus as wc, useAppHubApps as wi, UseEstimateAllTokensParams as wn, useGetAvatarOfAddress as wo, executeMultipleClausesCall as wr, EmailLoginButton as ws, usePrivy as wt, ScrollToTopWrapper as x, MAX_IMAGE_SIZE as xa, PrivyLoginMethod as xc, AppHubApp as xi, getAccountBalance as xn, getAvatarLegacyQueryKey as xo, ViewFunctionResult as xr, PrivyButton as xs, useDAppKitWallet as xt, TransactionButtonAndStatusProps as y, useIpfsMetadatas as ya, NFTMediaType as yc, getGenericDelegatorUrl as yi, getAccountImplementationAddressQueryKey as yn, useUnsetDomain as yo, MultipleClausesCallParameters as yr, PasskeyLoginButton as ys, SendTokenContent as yt, AccountDetailsButton as z, useRefreshMetadata as za, useReceiveModal as zi, useSyncableLocalStorage as zn, getIsDomainProtectedQueryKey as zo, allNodeStrengthLevelToName as zr, VeChainKitConfig as zs, getEventLogs as zt };
|
|
4060
|
-
//# sourceMappingURL=index-
|
|
4083
|
+
//# sourceMappingURL=index-CoM8jwiv.d.cts.map
|