@vechain/vechain-kit 2.1.1 → 2.2.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/assets/index.d.cts +1 -1
- package/dist/assets/index.d.mts +1 -1
- package/dist/{index-9Nctr1tw.d.mts → index-BJiGRuYS.d.mts} +98 -130
- package/dist/index-BJiGRuYS.d.mts.map +1 -0
- package/dist/{index--hSO7Xv4.d.mts → index-Bs6t5GxR.d.mts} +4 -4
- package/dist/{index-I8fe7GR2.d.cts.map → index-Bs6t5GxR.d.mts.map} +1 -1
- package/dist/{index-I8fe7GR2.d.cts → index-u3CPquCV.d.cts} +4 -4
- package/dist/{index--hSO7Xv4.d.mts.map → index-u3CPquCV.d.cts.map} +1 -1
- package/dist/{index-CoM8jwiv.d.cts → index-wCp9v8PQ.d.cts} +137 -169
- package/dist/index-wCp9v8PQ.d.cts.map +1 -0
- package/dist/index.cjs +6 -6
- 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-9Nctr1tw.d.mts.map +0 -1
- package/dist/index-CoM8jwiv.d.cts.map +0 -1
|
@@ -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_query16 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";
|
|
@@ -635,6 +635,7 @@ interface PrivyWalletProviderContextType {
|
|
|
635
635
|
description?: string;
|
|
636
636
|
buttonText?: string;
|
|
637
637
|
currentGasToken?: GasTokenType;
|
|
638
|
+
delegationUrl?: string;
|
|
638
639
|
}) => Promise<string>;
|
|
639
640
|
signTypedData: (data: SignTypedDataParams) => Promise<string>;
|
|
640
641
|
signMessage: (message: string) => Promise<string>;
|
|
@@ -669,7 +670,7 @@ declare const PrivyWalletProvider: ({
|
|
|
669
670
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
670
671
|
//#endregion
|
|
671
672
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
672
|
-
type Props$
|
|
673
|
+
type Props$32 = {
|
|
673
674
|
children: ReactNode;
|
|
674
675
|
darkMode?: boolean;
|
|
675
676
|
theme?: VechainKitThemeConfig;
|
|
@@ -687,10 +688,10 @@ declare const VechainKitThemeProvider: ({
|
|
|
687
688
|
children,
|
|
688
689
|
darkMode,
|
|
689
690
|
theme: customTheme
|
|
690
|
-
}: Props$
|
|
691
|
+
}: Props$32) => react_jsx_runtime0.JSX.Element;
|
|
691
692
|
//#endregion
|
|
692
693
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
693
|
-
type Props$
|
|
694
|
+
type Props$31 = {
|
|
694
695
|
children: Readonly<ReactNode>;
|
|
695
696
|
};
|
|
696
697
|
type LegalDocumentsContextType = {
|
|
@@ -703,10 +704,10 @@ type LegalDocumentsContextType = {
|
|
|
703
704
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
704
705
|
declare const LegalDocumentsProvider: ({
|
|
705
706
|
children
|
|
706
|
-
}: Props$
|
|
707
|
+
}: Props$31) => react_jsx_runtime0.JSX.Element;
|
|
707
708
|
//#endregion
|
|
708
709
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
709
|
-
type Props$
|
|
710
|
+
type Props$30 = {
|
|
710
711
|
isOpen: boolean;
|
|
711
712
|
onClose: () => void;
|
|
712
713
|
};
|
|
@@ -714,17 +715,17 @@ type ConnectModalContentsTypes = 'main' | 'email-verification' | 'faq';
|
|
|
714
715
|
declare const ConnectModal: ({
|
|
715
716
|
isOpen,
|
|
716
717
|
onClose
|
|
717
|
-
}: Props$
|
|
718
|
+
}: Props$30) => react_jsx_runtime0.JSX.Element;
|
|
718
719
|
//#endregion
|
|
719
720
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
720
|
-
type Props$
|
|
721
|
+
type Props$29 = {
|
|
721
722
|
setCurrentContent: React$1.Dispatch<React$1.SetStateAction<ConnectModalContentsTypes>>;
|
|
722
723
|
onClose: () => void;
|
|
723
724
|
};
|
|
724
725
|
declare const MainContent: ({
|
|
725
726
|
setCurrentContent,
|
|
726
727
|
onClose
|
|
727
|
-
}: Props$
|
|
728
|
+
}: Props$29) => react_jsx_runtime0.JSX.Element;
|
|
728
729
|
//#endregion
|
|
729
730
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
730
731
|
interface ConnectionButtonProps {
|
|
@@ -753,17 +754,17 @@ declare const ConnectionButton: ({
|
|
|
753
754
|
declare const EmailLoginButton: () => react_jsx_runtime0.JSX.Element;
|
|
754
755
|
//#endregion
|
|
755
756
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
756
|
-
type Props$
|
|
757
|
+
type Props$28 = {
|
|
757
758
|
isDark: boolean;
|
|
758
759
|
gridColumn?: number;
|
|
759
760
|
};
|
|
760
761
|
declare const VeChainLoginButton: ({
|
|
761
762
|
isDark,
|
|
762
763
|
gridColumn
|
|
763
|
-
}: Props$
|
|
764
|
+
}: Props$28) => react_jsx_runtime0.JSX.Element;
|
|
764
765
|
//#endregion
|
|
765
766
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
766
|
-
type Props$
|
|
767
|
+
type Props$27 = {
|
|
767
768
|
isDark: boolean;
|
|
768
769
|
appsInfo: PrivyAppInfo[];
|
|
769
770
|
isLoading: boolean;
|
|
@@ -772,10 +773,10 @@ type Props$31 = {
|
|
|
772
773
|
declare const EcosystemButton: ({
|
|
773
774
|
appsInfo,
|
|
774
775
|
isLoading
|
|
775
|
-
}: Props$
|
|
776
|
+
}: Props$27) => react_jsx_runtime0.JSX.Element;
|
|
776
777
|
//#endregion
|
|
777
778
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
778
|
-
type Props$
|
|
779
|
+
type Props$26 = {
|
|
779
780
|
isDark: boolean;
|
|
780
781
|
onViewMoreLogin: () => void;
|
|
781
782
|
gridColumn?: number;
|
|
@@ -784,57 +785,57 @@ declare const PrivyButton: ({
|
|
|
784
785
|
isDark,
|
|
785
786
|
onViewMoreLogin,
|
|
786
787
|
gridColumn
|
|
787
|
-
}: Props$
|
|
788
|
+
}: Props$26) => react_jsx_runtime0.JSX.Element;
|
|
788
789
|
//#endregion
|
|
789
790
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
790
|
-
type Props$
|
|
791
|
+
type Props$25 = {
|
|
791
792
|
isDark: boolean;
|
|
792
793
|
gridColumn?: number;
|
|
793
794
|
};
|
|
794
795
|
declare const LoginWithGoogleButton: ({
|
|
795
796
|
isDark,
|
|
796
797
|
gridColumn
|
|
797
|
-
}: Props$
|
|
798
|
+
}: Props$25) => react_jsx_runtime0.JSX.Element;
|
|
798
799
|
//#endregion
|
|
799
800
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
800
|
-
type Props$
|
|
801
|
+
type Props$24 = {
|
|
801
802
|
isDark: boolean;
|
|
802
803
|
gridColumn?: number;
|
|
803
804
|
};
|
|
804
805
|
declare const PasskeyLoginButton: ({
|
|
805
806
|
isDark,
|
|
806
807
|
gridColumn
|
|
807
|
-
}: Props$
|
|
808
|
+
}: Props$24) => react_jsx_runtime0.JSX.Element;
|
|
808
809
|
//#endregion
|
|
809
810
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
810
|
-
type Props$
|
|
811
|
+
type Props$23 = {
|
|
811
812
|
isDark: boolean;
|
|
812
813
|
gridColumn?: number;
|
|
813
814
|
};
|
|
814
815
|
declare const DappKitButton: ({
|
|
815
816
|
isDark,
|
|
816
817
|
gridColumn
|
|
817
|
-
}: Props$
|
|
818
|
+
}: Props$23) => react_jsx_runtime0.JSX.Element;
|
|
818
819
|
//#endregion
|
|
819
820
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
820
|
-
type Props$
|
|
821
|
+
type Props$22 = {
|
|
821
822
|
isDark: boolean;
|
|
822
823
|
gridColumn?: number;
|
|
823
824
|
};
|
|
824
825
|
declare const VeChainWithPrivyLoginButton: ({
|
|
825
826
|
isDark,
|
|
826
827
|
gridColumn
|
|
827
|
-
}: Props$
|
|
828
|
+
}: Props$22) => react_jsx_runtime0.JSX.Element;
|
|
828
829
|
//#endregion
|
|
829
830
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
830
|
-
type Props$
|
|
831
|
+
type Props$21 = {
|
|
831
832
|
isDark: boolean;
|
|
832
833
|
gridColumn?: number;
|
|
833
834
|
};
|
|
834
835
|
declare const LoginWithGithubButton: ({
|
|
835
836
|
isDark,
|
|
836
837
|
gridColumn
|
|
837
|
-
}: Props$
|
|
838
|
+
}: Props$21) => react_jsx_runtime0.JSX.Element;
|
|
838
839
|
//#endregion
|
|
839
840
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
840
841
|
type ConnectPopoverProps = {
|
|
@@ -897,14 +898,14 @@ declare const TransactionModal: ({
|
|
|
897
898
|
}: TransactionModalProps) => react_jsx_runtime0.JSX.Element;
|
|
898
899
|
//#endregion
|
|
899
900
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
900
|
-
type Props$
|
|
901
|
+
type Props$20 = {
|
|
901
902
|
descriptionEncoded: string;
|
|
902
903
|
url?: string;
|
|
903
904
|
facebookHashtag?: string;
|
|
904
905
|
};
|
|
905
906
|
declare const ShareButtons: ({
|
|
906
907
|
descriptionEncoded
|
|
907
|
-
}: Props$
|
|
908
|
+
}: Props$20) => react_jsx_runtime0.JSX.Element;
|
|
908
909
|
//#endregion
|
|
909
910
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
910
911
|
declare const TransactionModalContent: ({
|
|
@@ -937,7 +938,7 @@ declare const TransactionToast: ({
|
|
|
937
938
|
}: TransactionToastProps) => react_jsx_runtime0.JSX.Element | null;
|
|
938
939
|
//#endregion
|
|
939
940
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
940
|
-
type Props$
|
|
941
|
+
type Props$19 = {
|
|
941
942
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
942
943
|
onClose: () => void;
|
|
943
944
|
wallet: Wallet;
|
|
@@ -946,54 +947,12 @@ declare const AccountMainContent: ({
|
|
|
946
947
|
setCurrentContent,
|
|
947
948
|
wallet,
|
|
948
949
|
onClose
|
|
949
|
-
}: Props$
|
|
950
|
-
//#endregion
|
|
951
|
-
//#region src/components/AccountModal/Contents/Account/AccessAndSecurityContent.d.ts
|
|
952
|
-
type Props$22 = {
|
|
953
|
-
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
954
|
-
};
|
|
955
|
-
declare const AccessAndSecurityContent: ({
|
|
956
|
-
setCurrentContent
|
|
957
|
-
}: Props$22) => react_jsx_runtime0.JSX.Element;
|
|
958
|
-
//#endregion
|
|
959
|
-
//#region src/components/AccountModal/Contents/Account/SettingsContent.d.ts
|
|
960
|
-
type SettingsContentProps = {
|
|
961
|
-
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
962
|
-
onLogoutSuccess: () => void;
|
|
963
|
-
};
|
|
964
|
-
declare const SettingsContent: ({
|
|
965
|
-
setCurrentContent,
|
|
966
|
-
onLogoutSuccess
|
|
967
|
-
}: SettingsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
968
|
-
//#endregion
|
|
969
|
-
//#region src/components/AccountModal/Contents/Account/EmbeddedWalletContent.d.ts
|
|
970
|
-
type Props$21 = {
|
|
971
|
-
setCurrentContent: (content: AccountModalContentTypes) => void;
|
|
972
|
-
};
|
|
973
|
-
declare const EmbeddedWalletContent: ({
|
|
974
|
-
setCurrentContent
|
|
975
|
-
}: Props$21) => react_jsx_runtime0.JSX.Element;
|
|
976
|
-
//#endregion
|
|
977
|
-
//#region src/components/AccountModal/Contents/Account/DisconnectConfirmContent.d.ts
|
|
978
|
-
type DisconnectConfirmContentProps = {
|
|
979
|
-
onDisconnect: () => void;
|
|
980
|
-
onBack: () => void;
|
|
981
|
-
onClose?: () => void;
|
|
982
|
-
text?: string;
|
|
983
|
-
showCloseButton?: boolean;
|
|
984
|
-
};
|
|
985
|
-
declare const DisconnectConfirmContent: ({
|
|
986
|
-
onDisconnect,
|
|
987
|
-
onBack,
|
|
988
|
-
onClose,
|
|
989
|
-
showCloseButton,
|
|
990
|
-
text
|
|
991
|
-
}: DisconnectConfirmContentProps) => react_jsx_runtime0.JSX.Element;
|
|
950
|
+
}: Props$19) => react_jsx_runtime0.JSX.Element;
|
|
992
951
|
//#endregion
|
|
993
952
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
994
953
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
995
954
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
996
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
955
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query16.UseQueryResult<{
|
|
997
956
|
[k: string]: {
|
|
998
957
|
website: string | undefined;
|
|
999
958
|
id: string;
|
|
@@ -1014,7 +973,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
1014
973
|
//#endregion
|
|
1015
974
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
1016
975
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
1017
|
-
declare const useFetchPrivyStatus: () =>
|
|
976
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query16.UseQueryResult<string, Error>;
|
|
1018
977
|
//#endregion
|
|
1019
978
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
1020
979
|
interface VeChainDomainResult {
|
|
@@ -1024,11 +983,11 @@ interface VeChainDomainResult {
|
|
|
1024
983
|
isPrimaryDomain: boolean;
|
|
1025
984
|
}
|
|
1026
985
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
1027
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
986
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query16.UseQueryResult<VeChainDomainResult, Error>;
|
|
1028
987
|
//#endregion
|
|
1029
988
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
1030
989
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
1031
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
990
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
1032
991
|
//#endregion
|
|
1033
992
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
1034
993
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1090,7 +1049,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1090
1049
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1091
1050
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1092
1051
|
*/
|
|
1093
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1052
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
1094
1053
|
//#endregion
|
|
1095
1054
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1096
1055
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1118,7 +1077,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1118
1077
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1119
1078
|
* @returns The domains owned by the address
|
|
1120
1079
|
*/
|
|
1121
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1080
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1122
1081
|
domains: {
|
|
1123
1082
|
name: string;
|
|
1124
1083
|
}[];
|
|
@@ -1131,7 +1090,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1131
1090
|
* @param name - The VET domain name
|
|
1132
1091
|
* @returns The resolved avatar URL
|
|
1133
1092
|
*/
|
|
1134
|
-
declare const useGetAvatar: (name: string) =>
|
|
1093
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query16.UseQueryResult<string | null, Error>;
|
|
1135
1094
|
//#endregion
|
|
1136
1095
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1137
1096
|
/**
|
|
@@ -1143,7 +1102,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryRes
|
|
|
1143
1102
|
*/
|
|
1144
1103
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1145
1104
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1146
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1105
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query16.UseQueryResult<TextRecords, Error>;
|
|
1147
1106
|
//#endregion
|
|
1148
1107
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1149
1108
|
type UpdateTextRecordVariables = {
|
|
@@ -1176,7 +1135,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1176
1135
|
* @param domain The domain to get resolver for
|
|
1177
1136
|
* @returns The resolver address for the domain
|
|
1178
1137
|
*/
|
|
1179
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1138
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query16.UseQueryResult<`0x${string}`, unknown>;
|
|
1180
1139
|
//#endregion
|
|
1181
1140
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1182
1141
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1186,7 +1145,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1186
1145
|
* @param address The owner's address
|
|
1187
1146
|
* @returns The avatar URL for the address's primary domain
|
|
1188
1147
|
*/
|
|
1189
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1148
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query16.UseQueryResult<string, Error>;
|
|
1190
1149
|
//#endregion
|
|
1191
1150
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1192
1151
|
/**
|
|
@@ -1203,7 +1162,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1203
1162
|
* @param name - The VET domain name
|
|
1204
1163
|
* @returns The resolved avatar URL
|
|
1205
1164
|
*/
|
|
1206
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1165
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query16.UseQueryResult<string | null, Error>;
|
|
1207
1166
|
//#endregion
|
|
1208
1167
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1209
1168
|
type useUnsetDomainProps = {
|
|
@@ -1312,7 +1271,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1312
1271
|
* Hook to get the current roundId of allocations voting
|
|
1313
1272
|
* @returns the current roundId of allocations voting
|
|
1314
1273
|
*/
|
|
1315
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1274
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query16.UseQueryResult<string, unknown>;
|
|
1316
1275
|
//#endregion
|
|
1317
1276
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1318
1277
|
declare const useCustomTokens: () => {
|
|
@@ -1325,7 +1284,7 @@ declare const useCustomTokens: () => {
|
|
|
1325
1284
|
//#endregion
|
|
1326
1285
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1327
1286
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1328
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1287
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1329
1288
|
original: string;
|
|
1330
1289
|
scaled: string;
|
|
1331
1290
|
formatted: string;
|
|
@@ -1334,7 +1293,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.Us
|
|
|
1334
1293
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1335
1294
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1336
1295
|
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
|
|
1337
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1296
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1338
1297
|
original: string;
|
|
1339
1298
|
scaled: string;
|
|
1340
1299
|
formatted: string;
|
|
@@ -1347,11 +1306,11 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1347
1306
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1348
1307
|
declare const getTokenInfo: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1349
1308
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1350
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1309
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query16.UseQueryResult<CustomTokenInfo, Error>;
|
|
1351
1310
|
//#endregion
|
|
1352
1311
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1353
1312
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1354
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string) =>
|
|
1313
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1355
1314
|
original: string;
|
|
1356
1315
|
scaled: string;
|
|
1357
1316
|
formatted: string;
|
|
@@ -1368,11 +1327,11 @@ declare const PRICE_FEED_IDS: {
|
|
|
1368
1327
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1369
1328
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1370
1329
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1371
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1330
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query16.UseQueryResult<number, Error>;
|
|
1372
1331
|
//#endregion
|
|
1373
1332
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1374
1333
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1375
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1334
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1376
1335
|
original: string;
|
|
1377
1336
|
scaled: string;
|
|
1378
1337
|
formatted: string;
|
|
@@ -1391,7 +1350,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1391
1350
|
* @param user - The user address.
|
|
1392
1351
|
* @returns The isPerson status.
|
|
1393
1352
|
*/
|
|
1394
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1353
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
1395
1354
|
//#endregion
|
|
1396
1355
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1397
1356
|
type XApp = {
|
|
@@ -1428,8 +1387,8 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1428
1387
|
};
|
|
1429
1388
|
//#endregion
|
|
1430
1389
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1431
|
-
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) =>
|
|
1432
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1390
|
+
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
|
|
1391
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1433
1392
|
id: string;
|
|
1434
1393
|
teamWalletAddress: `0x${string}`;
|
|
1435
1394
|
name: string;
|
|
@@ -1512,7 +1471,7 @@ type XAppMetadata = {
|
|
|
1512
1471
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1513
1472
|
*/
|
|
1514
1473
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1515
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1474
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query16.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1516
1475
|
//#endregion
|
|
1517
1476
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1518
1477
|
/**
|
|
@@ -1527,7 +1486,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1527
1486
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1528
1487
|
*
|
|
1529
1488
|
*/
|
|
1530
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1489
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
1531
1490
|
app: string;
|
|
1532
1491
|
share: number;
|
|
1533
1492
|
unallocatedShare: number;
|
|
@@ -1549,7 +1508,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1549
1508
|
* @param ipfsUri - The IPFS URI
|
|
1550
1509
|
* @returns The metadata from IPFS
|
|
1551
1510
|
*/
|
|
1552
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1511
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query16.UseQueryResult<_tanstack_react_query16.NoInfer<T$1>, Error>;
|
|
1553
1512
|
//#endregion
|
|
1554
1513
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1555
1514
|
interface IpfsImage {
|
|
@@ -1576,14 +1535,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1576
1535
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1577
1536
|
* @returns The NFT media
|
|
1578
1537
|
*/
|
|
1579
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1538
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query16.UseQueryResult<IpfsImage, Error>;
|
|
1580
1539
|
/**
|
|
1581
1540
|
* Custom hook to fetch a list of IPFS images.
|
|
1582
1541
|
*
|
|
1583
1542
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1584
1543
|
* @returns An array of queries for each IPFS image URI.
|
|
1585
1544
|
*/
|
|
1586
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1545
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query16.UseQueryResult<IpfsImage, Error>[];
|
|
1587
1546
|
//#endregion
|
|
1588
1547
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1589
1548
|
/**
|
|
@@ -1591,12 +1550,12 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1591
1550
|
* @param ipfsUris - The IPFS URIs
|
|
1592
1551
|
* @returns The metadata from IPFS for each URI
|
|
1593
1552
|
*/
|
|
1594
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1553
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query16.UseQueryResult<T$1, Error>[];
|
|
1595
1554
|
//#endregion
|
|
1596
1555
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1597
1556
|
declare const imageCompressionOptions: Options;
|
|
1598
1557
|
declare const compressImages: (images: UploadedImage[]) => Promise<File[]>;
|
|
1599
|
-
type Props$
|
|
1558
|
+
type Props$18 = {
|
|
1600
1559
|
compressImages?: boolean;
|
|
1601
1560
|
defaultImages?: UploadedImage[];
|
|
1602
1561
|
};
|
|
@@ -1612,7 +1571,7 @@ type UploadedImage = {
|
|
|
1612
1571
|
declare const useUploadImages: ({
|
|
1613
1572
|
compressImages,
|
|
1614
1573
|
defaultImages
|
|
1615
|
-
}: Props$
|
|
1574
|
+
}: Props$18) => {
|
|
1616
1575
|
uploadedImages: UploadedImage[];
|
|
1617
1576
|
setUploadedImages: react0.Dispatch<react0.SetStateAction<UploadedImage[]>>;
|
|
1618
1577
|
onUpload: (acceptedFiles: File[], keepCurrent?: boolean) => Promise<void>;
|
|
@@ -1621,7 +1580,7 @@ declare const useUploadImages: ({
|
|
|
1621
1580
|
};
|
|
1622
1581
|
//#endregion
|
|
1623
1582
|
//#region src/hooks/api/ipfs/useSingleImageUpload.d.ts
|
|
1624
|
-
type Props$
|
|
1583
|
+
type Props$17 = {
|
|
1625
1584
|
compressImage?: boolean;
|
|
1626
1585
|
defaultImage?: UploadedImage;
|
|
1627
1586
|
};
|
|
@@ -1634,7 +1593,7 @@ type Props$19 = {
|
|
|
1634
1593
|
declare const useSingleImageUpload: ({
|
|
1635
1594
|
compressImage,
|
|
1636
1595
|
defaultImage
|
|
1637
|
-
}: Props$
|
|
1596
|
+
}: Props$17) => {
|
|
1638
1597
|
uploadedImage: UploadedImage | undefined;
|
|
1639
1598
|
setUploadedImage: react0.Dispatch<react0.SetStateAction<UploadedImage | undefined>>;
|
|
1640
1599
|
onUpload: (acceptedFile: File) => Promise<UploadedImage>;
|
|
@@ -1901,18 +1860,6 @@ declare const SwapTokenModalProvider: ({
|
|
|
1901
1860
|
children: ReactNode;
|
|
1902
1861
|
}) => react_jsx_runtime0.JSX.Element;
|
|
1903
1862
|
//#endregion
|
|
1904
|
-
//#region src/hooks/modals/useAccessAndSecurityModal.d.ts
|
|
1905
|
-
declare const useAccessAndSecurityModal: () => {
|
|
1906
|
-
open: (options?: AccountModalOptions) => void;
|
|
1907
|
-
close: () => void;
|
|
1908
|
-
isOpen: boolean;
|
|
1909
|
-
};
|
|
1910
|
-
declare const AccessAndSecurityModalProvider: ({
|
|
1911
|
-
children
|
|
1912
|
-
}: {
|
|
1913
|
-
children: ReactNode;
|
|
1914
|
-
}) => react_jsx_runtime0.JSX.Element;
|
|
1915
|
-
//#endregion
|
|
1916
1863
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
1917
1864
|
declare const useExploreEcosystemModal: () => {
|
|
1918
1865
|
open: (options?: AccountModalOptions) => void;
|
|
@@ -2145,7 +2092,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2145
2092
|
* );
|
|
2146
2093
|
* ```
|
|
2147
2094
|
*/
|
|
2148
|
-
declare const useAppHubApps: () =>
|
|
2095
|
+
declare const useAppHubApps: () => _tanstack_react_query16.UseQueryResult<AppHubApp[], Error>;
|
|
2149
2096
|
//#endregion
|
|
2150
2097
|
//#region src/utils/constants.d.ts
|
|
2151
2098
|
declare const TOKEN_LOGOS: Record<string, string>;
|
|
@@ -2479,7 +2426,7 @@ declare const getCallClauseQueryKeyWithArgs: <TAbi extends Abi, TMethod extends
|
|
|
2479
2426
|
address: string;
|
|
2480
2427
|
method: TMethod;
|
|
2481
2428
|
args?: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2482
|
-
}) =>
|
|
2429
|
+
}) => unknown[];
|
|
2483
2430
|
declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFunctionNames<TAbi, "pure" | "view">, TData = ViewFunctionResult<TAbi, TMethod>>({
|
|
2484
2431
|
address,
|
|
2485
2432
|
abi,
|
|
@@ -2492,7 +2439,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
2492
2439
|
method: TMethod;
|
|
2493
2440
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2494
2441
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
2495
|
-
}) =>
|
|
2442
|
+
}) => _tanstack_react_query16.UseQueryResult<_tanstack_react_query16.NoInfer<TData>, unknown>;
|
|
2496
2443
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
2497
2444
|
thor,
|
|
2498
2445
|
calls,
|
|
@@ -2503,7 +2450,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
2503
2450
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
2504
2451
|
queryKey: string[];
|
|
2505
2452
|
enabled?: boolean;
|
|
2506
|
-
}) =>
|
|
2453
|
+
}) => _tanstack_react_query16.UseQueryResult<_tanstack_react_query16.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
2507
2454
|
//#endregion
|
|
2508
2455
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
2509
2456
|
/**
|
|
@@ -2627,7 +2574,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
2627
2574
|
filterParams,
|
|
2628
2575
|
mapResponse,
|
|
2629
2576
|
nodeUrl
|
|
2630
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
2577
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query16.UseQueryResult<R[], Error>;
|
|
2631
2578
|
//#endregion
|
|
2632
2579
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
2633
2580
|
interface BuildClausesParams {
|
|
@@ -2764,21 +2711,21 @@ declare const useGasTokenSelection: () => {
|
|
|
2764
2711
|
toggleTokenExclusion: (token: GasTokenType) => void;
|
|
2765
2712
|
};
|
|
2766
2713
|
//#endregion
|
|
2767
|
-
//#region src/hooks/generic-delegator/
|
|
2768
|
-
interface
|
|
2714
|
+
//#region src/hooks/generic-delegator/useGenericDelegatorFeeEstimation.d.ts
|
|
2715
|
+
interface useGenericDelegatorFeeEstimationParams {
|
|
2769
2716
|
clauses: EnhancedClause[];
|
|
2770
2717
|
enabled?: boolean;
|
|
2771
2718
|
tokens: string[];
|
|
2772
2719
|
sendingAmount?: string;
|
|
2773
2720
|
sendingTokenSymbol?: string;
|
|
2774
2721
|
}
|
|
2775
|
-
declare const
|
|
2722
|
+
declare const useGenericDelegatorFeeEstimation: ({
|
|
2776
2723
|
clauses,
|
|
2777
2724
|
enabled,
|
|
2778
2725
|
tokens,
|
|
2779
2726
|
sendingAmount,
|
|
2780
2727
|
sendingTokenSymbol
|
|
2781
|
-
}:
|
|
2728
|
+
}: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query16.UseQueryResult<EstimationResponse & {
|
|
2782
2729
|
usedToken: string;
|
|
2783
2730
|
}, Error>;
|
|
2784
2731
|
//#endregion
|
|
@@ -2792,7 +2739,7 @@ declare const useEstimateAllTokens: ({
|
|
|
2792
2739
|
clauses,
|
|
2793
2740
|
tokens,
|
|
2794
2741
|
enabled
|
|
2795
|
-
}: UseEstimateAllTokensParams) =>
|
|
2742
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query16.UseQueryResult<Record<GasTokenType, {
|
|
2796
2743
|
cost: number;
|
|
2797
2744
|
loading: boolean;
|
|
2798
2745
|
error?: string;
|
|
@@ -2809,7 +2756,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
2809
2756
|
* @param address The address of the account to get the balance for
|
|
2810
2757
|
* @returns The account balance
|
|
2811
2758
|
*/
|
|
2812
|
-
declare const useAccountBalance: (address?: string) =>
|
|
2759
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
2813
2760
|
balance: string;
|
|
2814
2761
|
energy: string;
|
|
2815
2762
|
}, Error>;
|
|
@@ -2822,7 +2769,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
2822
2769
|
* @param version - The version of the smart account implementation
|
|
2823
2770
|
* @returns The address of the smart account implementation
|
|
2824
2771
|
*/
|
|
2825
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
2772
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query16.UseQueryResult<string, Error>;
|
|
2826
2773
|
//#endregion
|
|
2827
2774
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
2828
2775
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -2831,7 +2778,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
2831
2778
|
* Get the current account implementation version used by the smart account factory
|
|
2832
2779
|
* @returns The current account implementation version
|
|
2833
2780
|
*/
|
|
2834
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
2781
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query16.UseQueryResult<number, Error>;
|
|
2835
2782
|
//#endregion
|
|
2836
2783
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
2837
2784
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -2841,17 +2788,17 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
2841
2788
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2842
2789
|
* @returns The address of the smart account
|
|
2843
2790
|
*/
|
|
2844
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
2791
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query16.UseQueryResult<string, Error>;
|
|
2845
2792
|
//#endregion
|
|
2846
2793
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
2847
|
-
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) =>
|
|
2794
|
+
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
|
|
2848
2795
|
/**
|
|
2849
2796
|
* Check if a smart account has a v1 smart account
|
|
2850
2797
|
* @param accountAddress - The address of the smart account
|
|
2851
2798
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2852
2799
|
* @returns The version of the smart account
|
|
2853
2800
|
*/
|
|
2854
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
2801
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query16.UseQueryResult<{
|
|
2855
2802
|
version: number;
|
|
2856
2803
|
isDeployed: boolean;
|
|
2857
2804
|
}, unknown>;
|
|
@@ -2864,7 +2811,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
2864
2811
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2865
2812
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
2866
2813
|
*/
|
|
2867
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
2814
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
2868
2815
|
//#endregion
|
|
2869
2816
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
2870
2817
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -2873,7 +2820,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
2873
2820
|
* Check if a smart account is deployed
|
|
2874
2821
|
* @returns True if the smart account is deployed, false otherwise
|
|
2875
2822
|
*/
|
|
2876
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
2823
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
2877
2824
|
//#endregion
|
|
2878
2825
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
2879
2826
|
/**
|
|
@@ -2906,7 +2853,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
2906
2853
|
isDeployed: boolean;
|
|
2907
2854
|
}>;
|
|
2908
2855
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
2909
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
2856
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query16.UseQueryResult<{
|
|
2910
2857
|
address: undefined;
|
|
2911
2858
|
isDeployed?: undefined;
|
|
2912
2859
|
} | {
|
|
@@ -2924,7 +2871,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2924
2871
|
* @param targetVersion - The version of the smart account to check for
|
|
2925
2872
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
2926
2873
|
*/
|
|
2927
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
2874
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
2928
2875
|
//#endregion
|
|
2929
2876
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
2930
2877
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -2935,7 +2882,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
2935
2882
|
* @param targetVersion - The target version of the smart account
|
|
2936
2883
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
2937
2884
|
*/
|
|
2938
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
2885
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query16.UseQueryResult<boolean, Error>;
|
|
2939
2886
|
//#endregion
|
|
2940
2887
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
2941
2888
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -2960,7 +2907,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
2960
2907
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
2961
2908
|
* @returns the current block
|
|
2962
2909
|
*/
|
|
2963
|
-
declare const useCurrentBlock: () =>
|
|
2910
|
+
declare const useCurrentBlock: () => _tanstack_react_query16.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
|
|
2964
2911
|
//#endregion
|
|
2965
2912
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
2966
2913
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -2969,7 +2916,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
2969
2916
|
* Get the chain id
|
|
2970
2917
|
* @returns The chain id
|
|
2971
2918
|
*/
|
|
2972
|
-
declare const useGetChainId: () =>
|
|
2919
|
+
declare const useGetChainId: () => _tanstack_react_query16.UseQueryResult<string, Error>;
|
|
2973
2920
|
//#endregion
|
|
2974
2921
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
2975
2922
|
/**
|
|
@@ -3038,6 +2985,7 @@ declare const getAllEventLogs: ({
|
|
|
3038
2985
|
* @param suggestedMaxGas the suggested max gas for the transaction
|
|
3039
2986
|
* @param privyUIOptions options to pass to the Privy UI
|
|
3040
2987
|
* @param gasPadding the gas padding to use for the transaction (Eg. 0.1 for 10%)
|
|
2988
|
+
* @param delegationUrl the dApp sponsored delegator url.
|
|
3041
2989
|
*/
|
|
3042
2990
|
type UseSendTransactionProps = {
|
|
3043
2991
|
signerAccountAddress?: string | null;
|
|
@@ -3051,6 +2999,7 @@ type UseSendTransactionProps = {
|
|
|
3051
2999
|
buttonText?: string;
|
|
3052
3000
|
};
|
|
3053
3001
|
gasPadding?: number;
|
|
3002
|
+
delegationUrl?: string;
|
|
3054
3003
|
};
|
|
3055
3004
|
/**
|
|
3056
3005
|
* Return value of the {@link useSendTransaction} hook
|
|
@@ -3063,7 +3012,11 @@ type UseSendTransactionProps = {
|
|
|
3063
3012
|
* @param error error that occurred while sending the transaction
|
|
3064
3013
|
*/
|
|
3065
3014
|
type UseSendTransactionReturnValue = {
|
|
3066
|
-
sendTransaction: (clauses?: TransactionClause[]
|
|
3015
|
+
sendTransaction: (clauses?: TransactionClause[], delegationUrl?: string, privyUIOptions?: {
|
|
3016
|
+
title?: string;
|
|
3017
|
+
description?: string;
|
|
3018
|
+
buttonText?: string;
|
|
3019
|
+
}) => Promise<void>;
|
|
3067
3020
|
isTransactionPending: boolean;
|
|
3068
3021
|
isWaitingForWalletConfirmation: boolean;
|
|
3069
3022
|
txReceipt: TransactionReceipt | null;
|
|
@@ -3103,6 +3056,7 @@ type UseSendTransactionReturnValue = {
|
|
|
3103
3056
|
* @param suggestedMaxGas the suggested max gas for the transaction
|
|
3104
3057
|
* @param privyUIOptions options to pass to the Privy UI
|
|
3105
3058
|
* @param gasPadding the gas padding to use for the transaction (Eg. 0.1 for 10%)
|
|
3059
|
+
* @param delegationUrl the dApp sponsored delegator url.
|
|
3106
3060
|
* @returns see {@link UseSendTransactionReturnValue}
|
|
3107
3061
|
*/
|
|
3108
3062
|
declare const useSendTransaction: ({
|
|
@@ -3112,7 +3066,8 @@ declare const useSendTransaction: ({
|
|
|
3112
3066
|
onTxFailedOrCancelled,
|
|
3113
3067
|
suggestedMaxGas,
|
|
3114
3068
|
privyUIOptions,
|
|
3115
|
-
gasPadding
|
|
3069
|
+
gasPadding,
|
|
3070
|
+
delegationUrl
|
|
3116
3071
|
}: UseSendTransactionProps) => UseSendTransactionReturnValue;
|
|
3117
3072
|
//#endregion
|
|
3118
3073
|
//#region src/hooks/thor/transactions/useTransferERC20.d.ts
|
|
@@ -3171,6 +3126,7 @@ type BuildTransactionProps<ClausesParams> = {
|
|
|
3171
3126
|
suggestedMaxGas?: number;
|
|
3172
3127
|
gasPadding?: number;
|
|
3173
3128
|
onFailure?: () => void;
|
|
3129
|
+
delegationUrl?: string;
|
|
3174
3130
|
};
|
|
3175
3131
|
/**
|
|
3176
3132
|
* Custom hook for building and sending transactions.
|
|
@@ -3181,6 +3137,7 @@ type BuildTransactionProps<ClausesParams> = {
|
|
|
3181
3137
|
* @param onFailure - An optional callback function to be called after the transaction is failed or cancelled.
|
|
3182
3138
|
* @param suggestedMaxGas - The suggested maximum gas for the transaction.
|
|
3183
3139
|
* @param gasPadding - The padding to add to the suggested maximum gas.
|
|
3140
|
+
* @param delegationUrl - The dApp sponsored delegator url.
|
|
3184
3141
|
* @returns An object containing the result of the `useSendTransaction` hook and a `sendTransaction` function.
|
|
3185
3142
|
*/
|
|
3186
3143
|
declare const useBuildTransaction: <ClausesParams>({
|
|
@@ -3190,7 +3147,8 @@ declare const useBuildTransaction: <ClausesParams>({
|
|
|
3190
3147
|
onSuccess,
|
|
3191
3148
|
onFailure,
|
|
3192
3149
|
suggestedMaxGas,
|
|
3193
|
-
gasPadding
|
|
3150
|
+
gasPadding,
|
|
3151
|
+
delegationUrl
|
|
3194
3152
|
}: BuildTransactionProps<ClausesParams>) => {
|
|
3195
3153
|
sendTransaction: (props: ClausesParams) => Promise<void>;
|
|
3196
3154
|
isTransactionPending: boolean;
|
|
@@ -3210,7 +3168,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
3210
3168
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
3211
3169
|
* @returns Query result containing the transaction receipt
|
|
3212
3170
|
*/
|
|
3213
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
3171
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query16.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
|
|
3214
3172
|
//#endregion
|
|
3215
3173
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenContent.d.ts
|
|
3216
3174
|
type SendTokenContentProps = {
|
|
@@ -3249,7 +3207,7 @@ declare const SendTokenSummaryContent: ({
|
|
|
3249
3207
|
}: SendTokenSummaryContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3250
3208
|
//#endregion
|
|
3251
3209
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
3252
|
-
type Props$
|
|
3210
|
+
type Props$16 = {
|
|
3253
3211
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3254
3212
|
onSelectToken: (token: TokenWithValue) => void;
|
|
3255
3213
|
onBack: () => void;
|
|
@@ -3262,18 +3220,18 @@ declare const SelectTokenContent: ({
|
|
|
3262
3220
|
onSelectToken,
|
|
3263
3221
|
onBack,
|
|
3264
3222
|
showAllTokens
|
|
3265
|
-
}: Props$
|
|
3223
|
+
}: Props$16) => react_jsx_runtime0.JSX.Element;
|
|
3266
3224
|
//#endregion
|
|
3267
3225
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
3268
|
-
type Props$
|
|
3226
|
+
type Props$15 = {
|
|
3269
3227
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3270
3228
|
};
|
|
3271
3229
|
declare const ReceiveTokenContent: ({
|
|
3272
3230
|
setCurrentContent
|
|
3273
|
-
}: Props$
|
|
3231
|
+
}: Props$15) => react_jsx_runtime0.JSX.Element;
|
|
3274
3232
|
//#endregion
|
|
3275
3233
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
3276
|
-
type Props$
|
|
3234
|
+
type Props$14 = {
|
|
3277
3235
|
setCurrentContent: React$1.Dispatch<React$1.SetStateAction<AccountModalContentTypes>>;
|
|
3278
3236
|
fromTokenAddress?: string;
|
|
3279
3237
|
toTokenAddress?: string;
|
|
@@ -3282,7 +3240,7 @@ declare const SwapTokenContent: ({
|
|
|
3282
3240
|
setCurrentContent,
|
|
3283
3241
|
fromTokenAddress,
|
|
3284
3242
|
toTokenAddress
|
|
3285
|
-
}: Props$
|
|
3243
|
+
}: Props$14) => react_jsx_runtime0.JSX.Element;
|
|
3286
3244
|
//#endregion
|
|
3287
3245
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
3288
3246
|
type ChooseNameContentProps = {
|
|
@@ -3404,12 +3362,12 @@ declare const ManageCustomTokenContent: ({
|
|
|
3404
3362
|
}: ManageCustomTokenContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3405
3363
|
//#endregion
|
|
3406
3364
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
3407
|
-
type Props$
|
|
3365
|
+
type Props$13 = {
|
|
3408
3366
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3409
3367
|
};
|
|
3410
3368
|
declare const BridgeContent: ({
|
|
3411
3369
|
setCurrentContent
|
|
3412
|
-
}: Props$
|
|
3370
|
+
}: Props$13) => react_jsx_runtime0.JSX.Element;
|
|
3413
3371
|
//#endregion
|
|
3414
3372
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
3415
3373
|
type ChangeCurrencyContentProps = {
|
|
@@ -3419,27 +3377,11 @@ declare const ChangeCurrencyContent: ({
|
|
|
3419
3377
|
setCurrentContent
|
|
3420
3378
|
}: ChangeCurrencyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3421
3379
|
//#endregion
|
|
3422
|
-
//#region src/components/AccountModal/Contents/KitSettings/GeneralSettingsContent.d.ts
|
|
3423
|
-
type Props$14 = {
|
|
3424
|
-
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3425
|
-
};
|
|
3426
|
-
declare const GeneralSettingsContent: ({
|
|
3427
|
-
setCurrentContent
|
|
3428
|
-
}: Props$14) => react_jsx_runtime0.JSX.Element;
|
|
3429
|
-
//#endregion
|
|
3430
3380
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
3431
|
-
type Props$13 = {
|
|
3432
|
-
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3433
|
-
};
|
|
3434
|
-
declare const LanguageSettingsContent: ({
|
|
3435
|
-
setCurrentContent
|
|
3436
|
-
}: Props$13) => react_jsx_runtime0.JSX.Element;
|
|
3437
|
-
//#endregion
|
|
3438
|
-
//#region src/components/AccountModal/Contents/KitSettings/AppearanceSettingsContent.d.ts
|
|
3439
3381
|
type Props$12 = {
|
|
3440
3382
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3441
3383
|
};
|
|
3442
|
-
declare const
|
|
3384
|
+
declare const LanguageSettingsContent: ({
|
|
3443
3385
|
setCurrentContent
|
|
3444
3386
|
}: Props$12) => react_jsx_runtime0.JSX.Element;
|
|
3445
3387
|
//#endregion
|
|
@@ -3451,6 +3393,16 @@ declare const GasTokenSettingsContent: ({
|
|
|
3451
3393
|
setCurrentContent
|
|
3452
3394
|
}: Props$11) => react_jsx_runtime0.JSX.Element;
|
|
3453
3395
|
//#endregion
|
|
3396
|
+
//#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
|
|
3397
|
+
type SettingsContentProps = {
|
|
3398
|
+
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
3399
|
+
onLogoutSuccess: () => void;
|
|
3400
|
+
};
|
|
3401
|
+
declare const SettingsContent: ({
|
|
3402
|
+
setCurrentContent,
|
|
3403
|
+
onLogoutSuccess
|
|
3404
|
+
}: SettingsContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3405
|
+
//#endregion
|
|
3454
3406
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
3455
3407
|
type TermsAndPrivacyContentProps = {
|
|
3456
3408
|
onGoBack: () => void;
|
|
@@ -3459,6 +3411,22 @@ declare const TermsAndPrivacyContent: ({
|
|
|
3459
3411
|
onGoBack
|
|
3460
3412
|
}: TermsAndPrivacyContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3461
3413
|
//#endregion
|
|
3414
|
+
//#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
|
|
3415
|
+
type DisconnectConfirmContentProps = {
|
|
3416
|
+
onDisconnect: () => void;
|
|
3417
|
+
onBack: () => void;
|
|
3418
|
+
onClose?: () => void;
|
|
3419
|
+
text?: string;
|
|
3420
|
+
showCloseButton?: boolean;
|
|
3421
|
+
};
|
|
3422
|
+
declare const DisconnectConfirmContent: ({
|
|
3423
|
+
onDisconnect,
|
|
3424
|
+
onBack,
|
|
3425
|
+
onClose,
|
|
3426
|
+
showCloseButton,
|
|
3427
|
+
text
|
|
3428
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime0.JSX.Element;
|
|
3429
|
+
//#endregion
|
|
3462
3430
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
3463
3431
|
type CategoryFilter = string | null;
|
|
3464
3432
|
//#endregion
|
|
@@ -3494,7 +3462,7 @@ type FailedOperationContentProps = {
|
|
|
3494
3462
|
};
|
|
3495
3463
|
//#endregion
|
|
3496
3464
|
//#region src/components/AccountModal/Types/Types.d.ts
|
|
3497
|
-
type AccountModalContentTypes = 'main' | 'settings' | 'profile' | '
|
|
3465
|
+
type AccountModalContentTypes = 'main' | 'settings' | 'profile' | 'manage-mfa' | 'receive-token' | 'swap-token' | 'connection-details' | 'ecosystem' | 'notifications' | 'privy-linked-accounts' | 'add-custom-token' | 'assets' | 'bridge' | 'change-currency' | 'change-language' | 'gas-token-settings' | {
|
|
3498
3466
|
type: 'swap-token';
|
|
3499
3467
|
props: {
|
|
3500
3468
|
setCurrentContent: React.Dispatch<React.SetStateAction<AccountModalContentTypes>>;
|
|
@@ -4079,5 +4047,5 @@ type AppConfig = {
|
|
|
4079
4047
|
};
|
|
4080
4048
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4081
4049
|
//#endregion
|
|
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 };
|
|
4083
|
-
//# sourceMappingURL=index-
|
|
4050
|
+
export { ManageCustomTokenContentProps as $, getErc20BalanceQueryKey as $a, useSendTokenModal as $i, useScrollToTop as $n, AccountMainContent as $o, leftPadWithZeros as $r, GasTokenPreferences as $s, useUpgradeRequired as $t, ModalBackButton as A, useXAppsShares as Aa, useSignTypedData as Ai, useGasTokenSelection as An, getTextRecordsQueryKey as Ao, isInvalid as Ar, usePrivyWalletProvider as As, useTxReceipt as At, AccountModal as B, useRefreshBalances as Ba, ReceiveModalProvider as Bi, useEcosystemShortcuts as Bn, useIsDomainProtected as Bo, XNodeStrengthLevelToName as Br, LegalDocumentSource as Bs, getAllEventLogs as Bt, AddressDisplayCard as C, getIpfsImageQueryKey as Ca, AppHubApp as Ci, getAccountBalance as Cn, getAvatarOfAddressQueryKey as Co, ViewFunctionResult as Cr, LegalDocumentsProvider as Cs, useDAppKitWallet as Ct, StickyHeaderContainer as D, getIpfsMetadataQueryKey as Da, useLoginWithVeChain as Di, useEstimateAllTokens as Dn, buildClauses as Do, isValidUrl as Dr, useVechainKitThemeConfig as Ds, useSetWalletRecovery as Dt, StickyFooterContainer as E, getIpfsMetadata as Ea, useAppHubApps as Ei, UseEstimateAllTokensParams as En, useGetResolverAddress as Eo, executeMultipleClausesCall as Er, VechainKitThemeProvider as Es, usePrivy as Et, QuickActionsSection as F, UseWalletReturnType as Fa, ProfileModalProvider as Fi, getDepositAccount as Fn, DomainsResponse as Fo, isRejectionError as Fr, VeChainKitProvider as Fs, buildERC20Clauses as Ft, SettingsContent as G, useIsPerson as Ga, useFAQModal as Gi, buildBatchAuthorizationTypedData as Gn, useEnsRecordExists as Go, convertUriToUrl as Gr, EstimationResponse as Gs, currentBlockQueryKey as Gt, DisconnectConfirmContent as H, XApp as Ha, AccountCustomizationModalProvider as Hi, LocalStorageKey as Hn, useClaimVetDomain as Ho, buildQueryString as Hr, CostLevel as Hs, getChainId as Ht, BalanceSection as I, useWallet as Ia, useProfileModal as Ii, signVip191Transaction as In, getDomainsOfAddress as Io, TIME as Ir, VechainKitProviderProps as Is, useTransferERC20 as It, LanguageSettingsContent as J, PRICE_FEED_IDS as Ja, ExploreEcosystemModalProvider as Ji, GetEventsKeyParams as Jn, fetchPrivyStatus as Jo, uploadBlobToIPFS as Jr, VthoPerGasAtSpeed as Js, getUpgradeRequiredForAccount as Jt, SettingsContentProps as K, getVot3BalanceQueryKey as Ka, NotificationsModalProvider as Ki, buildSingleAuthorizationTypedData as Kn, getVechainDomainQueryKey as Ko, resolveMediaTypeFromMimeType as Kr, Rate as Ks, useCurrentBlock as Kt, AccountSelector as L, getRoundXAppsQueryKey as La, UpgradeSmartAccountModalProvider as Li, useGenericDelegator as Ln, getDomainsOfAddressQueryKey as Lo, EconomicNodeStrengthLevelToName as Lr, useVeChainKitConfig as Ls, UseSendTransactionReturnValue as Lt, DomainRequiredAlert as M, getXAppMetadata as Ma, useNotificationAlerts as Mi, delegateAuthorized as Mn, getAvatarQueryKey as Mo, normalize as Mr, LegalDocumentOptions as Ms, useBuildTransaction as Mt, ExchangeWarningAlert as N, useXAppMetadata as Na, useNotifications as Ni, estimateAndBuildTxBody as Nn, useGetAvatar as No, removePrefix as Nr, VeChainKitConfig as Ns, buildVETClauses as Nt, VersionFooter as O, useIpfsMetadata as Oa, useLoginWithOAuth as Oi, useGenericDelegatorFeeEstimation as On, useUpdateTextRecord as Oo, addPrefix as Or, PrivyWalletProvider as Os, useThor as Ot, FeatureAnnouncementCard as P, useWalletMetadata as Pa, useAccountModalOptions as Pi, estimateGas as Pn, Domain as Po, validate as Pr, VeChainKitContext as Ps, useTransferVET as Pt, ManageCustomTokenContent as Q, useGetTokenUsdPrice as Qa, SendTokenModalProvider as Qi, useEvents as Qn, useFetchAppInfo as Qo, isValidAddress as Qr, GasTokenInfo as Qs, getUpgradeRequiredQueryKey as Qt, ActionButton as R, useRoundXApps as Ra, useUpgradeSmartAccountModal as Ri, useCrossAppConnectionCache as Rn, useGetDomainsOfAddress as Ro, MinXNodeLevel as Rr, EnrichedLegalDocument as Rs, useSendTransaction as Rt, ModalFAQButton as S, getIpfsImage as Sa, notFoundImage as Si, useAccountImplementationAddress as Sn, useGetAvatarLegacy as So, MultipleClausesCallReturnType as Sr, ConnectModalContentsTypes as Ss, ThorClient$1 as St, BaseModal as T, useIpfsImageList as Ta, getAppHubAppsQueryKey as Ti, useAccountBalance as Tn, getResolverAddressQueryKey as To, executeCallClause as Tr, ColorModeSync as Ts, useMfaEnrollment as Tt, DisconnectConfirmContentProps as U, useMostVotedAppsInRound as Ua, useAccountCustomizationModal as Ui, useLocalStorage as Un, useClaimVeWorldSubdomain as Uo, gmNfts as Ur, DepositAccount as Us, getChainIdQueryKey as Ut, AccountModalContentTypes as V, MostVotedAppsInRoundReturnType as Va, useReceiveModal as Vi, useSyncableLocalStorage as Vn, buildVetDomainClauses as Vo, allNodeStrengthLevelToName as Vr, LegalDocumentType as Vs, getEventLogs as Vt, TermsAndPrivacyContent as W, getIsPersonQueryKey as Wa, FAQModalProvider as Wi, BuildClausesParams as Wn, getEnsRecordExistsQueryKey as Wo, xNodeToGMstartingLevel as Wr, EstimatedGas as Ws, useGetChainId as Wt, ChangeCurrencyContentProps as X, getTokenUsdPrice as Xa, SwapTokenModalProvider as Xi, decodeEventLog$1 as Xn, fetchPrivyAppInfo as Xo, compareAddresses as Xr, formatGasCost as Xs, useUpgradeRequiredForAccount as Xt, ChangeCurrencyContent as Y, SupportedToken as Ya, useExploreEcosystemModal as Yi, UseEventsParams as Yn, useFetchPrivyStatus as Yo, validateIpfsUri as Yr, calculateTotalCost as Ys, getUpgradeRequiredForAccountQueryKey as Yt, BridgeContent as Z, getTokenUsdPriceQueryKey as Za, useSwapTokenModal as Zi, getEventsKey as Zn, getPrivyAppInfoQueryKey as Zo, compareListOfAddresses as Zr, GasTokenEstimate as Zs, getUpgradeRequired as Zt, ModalNotificationButton as _, imageCompressionOptions as _a, TokenBalance as _c, VECHAIN_KIT_STORAGE_KEYS as _i, getCurrentAccountImplementationVersion as _n, WalletTokenBalance as _o, removeLocalStorageItem as _r, VeChainLoginButton as _s, SwapTokenContent as _t, useModal as a, useTransactionToast as aa, CURRENCY as ac, humanDomain as ai, useRefreshFactoryQueries as an, getCustomTokenBalanceQueryKey as ao, useCurrency as ar, SocialIcons as as, ProfileContentProps as at, AccountAvatar as b, IpfsImage as ba, VePassportUserStatus as bc, getENV as bi, getAccountImplementationAddress as bn, getAvatarLegacy as bo, setLocalStorageItem as br, MainContent as bs, SendTokenSummaryContent as bt, LegalDocumentsModal as c, AccountModalProvider as ca, CrossAppConnectionCache as cc, DEFAULT_GAS_TOKEN_PREFERENCES as ci, useIsSmartAccountDeployed as cn, useGetB3trBalance as co, useCallClause as cr, WalletDisplayVariant as cs, AccountCustomizationContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useConnectModal as da, ExecuteBatchWithAuthorizationSignData as dc, PrivyEcosystemApp as di, useHasV1SmartAccount as dn, useCurrentAllocationsRoundId as do, getDocumentTitle as dr, VeChainWithPrivyLoginButton as ds, ChooseNameSummaryContent as dt, ChooseNameModalProvider as ea, GasTokenSelection as ec, regexPattern as ei, SmartAccountReturnType as en, useGetErc20Balance as eo, useIsPWA as er, TransactionToast as es, AssetsContent as et, UpgradeSmartAccountModalStyle as f, useSwapQuotes as fa, ExecuteWithAuthorizationSignData as fc, SUPPORTED_GAS_TOKENS as fi, getAccountVersionQueryKey as fn, useTotalBalance as fo, getLocalStorageItem as fr, DappKitButton as fs, ChooseNameSummaryContentProps as ft, GasFeeSummary as g, compressImages as ga, SmartAccount as gc, VECHAIN_KIT_COOKIES_CONFIG as gi, useGetAccountAddress as gn, useTokenPrices as go, isOnline as gr, EcosystemButton as gs, ChooseNameContentProps as gt, GasFeeTokenSelector as h, UploadedImage as ha, PrivyLoginMethod as hc, TogglePassportCheck as hi, getAccountAddressQueryKey as hn, ExchangeRates as ho, isBrowser as hr, PrivyButton as hs, ChooseNameContent as ht, ModalProvider as i, TransactionToastProvider as ia, TextRecords as ic, humanAddress as ii, useRefreshSmartAccountQueries as in, TokenWithBalance as io, useCurrentLanguage as ir, TransactionModalProps as is, ProfileContent as it, CrossAppConnectionSecurityCard as j, XAppMetadata as ja, useSignMessage as ji, decodeRawTx as jn, useGetTextRecords as jo, isValid as jr, LegalDocument as js, BuildTransactionProps as jt, AddressDisplay as k, getXAppsSharesQueryKey as ka, useLoginWithPasskey as ki, useGenericDelegatorFeeEstimationParams as kn, getTextRecords as ko, compare as kr, PrivyWalletProviderContextType as ks, txReceiptQueryKey as kt, LegalDocumentsModalContentsTypes as l, useAccountModal as la, ENSRecords as lc, DEFAULT_PRIVY_ECOSYSTEM_APPS as li, getHasV1SmartAccount as ln, useCustomTokens as lo, useMultipleClausesCall as lr, ConnectPopover as ls, CustomizationContent as lt, LoginLoadingModal as m, useSingleImageUpload as ma, PrivyAppInfo as mc, TOKEN_LOGO_COMPONENTS as mi, getAccountAddress as mn, useTokensWithValues as mo, hasNavigator as mr, LoginWithGoogleButton as ms, ChooseNameSearchContentProps as mt, getConfig as n, WalletModalProvider as na, TransactionSpeed as nc, formatTokenBalance as ni, getSmartAccountQueryKey as nn, getTokenInfo as no, useFeatureAnnouncement as nr, ShareButtons as ns, UpgradeSmartAccountContent as nt, DAppKitWalletButton as o, TransactionModalProvider as oa, CURRENCY_SYMBOLS as oc, humanNumber as oi, getIsDeployed as on, useGetCustomTokenBalances as oo, getCallClauseQueryKey as or, WalletButton as os, CustomizationSummaryContent as ot, EcosystemModal as p, useSwapTransaction as pa, NFTMediaType as pc, TOKEN_LOGOS as pi, useGetAccountVersion as pn, TokenWithValue as po, getWindowOrigin as pr, PasskeyLoginButton as ps, ChooseNameSearchContent as pt, GasTokenSettingsContent as q, useGetVot3Balance as qa, useNotificationsModal as qi, useBuildClauses as qn, useVechainDomain as qo, toIPFSURL as qr, TransactionCost as qs, useUpgradeSmartAccount as qt, AccountModalOptions as r, useWalletModal as ra, ENS_TEXT_RECORDS as rc, getPicassoImage as ri, useSmartAccount as rn, useGetCustomTokenInfo as ro, useCurrentCurrency as rr, TransactionModal as rs, UpgradeSmartAccountContentProps as rt, LegalDocumentItem as s, useTransactionModal as sa, ConnectionSource as sc, isZero as si, getIsDeployedQueryKey as sn, getB3trBalanceQueryKey as so, getCallClauseQueryKeyWithArgs as sr, WalletButtonProps as ss, CustomizationSummaryContentProps as st, AppConfig as t, useChooseNameModal as ta, GasTokenType as tc, randomTransactionUser as ti, getSmartAccount as tn, getCustomTokenInfoQueryKey as to, useGetNodeUrl as tr, TransactionModalContent as ts, AssetsContentProps as tt, UpgradeSmartAccountModal as u, ConnectModalProvider as ua, EnhancedClause as uc, ENV as ui, getHasV1SmartAccountQueryKey as un, getCurrentAllocationsRoundIdQueryKey as uo, copyToClipboard as ur, LoginWithGithubButton as us, FAQContent as ut, TransactionButtonAndStatus as v, useUploadImages as va, TransactionStatus as vc, VECHAIN_KIT_TERMS_CONFIG as vi, getCurrentAccountImplementationVersionQueryKey as vn, useTokenBalances as vo, safeQuerySelector as vr, EmailLoginButton as vs, ReceiveTokenContent as vt, AssetButton as w, useIpfsImage as wa, fetchAppHubApps as wi, getAccountBalanceQueryKey as wn, useGetAvatarOfAddress as wo, buildCallClauses as wr, useLegalDocuments as ws, useDAppKitWalletModal as wt, ScrollToTopWrapper as x, MAX_IMAGE_SIZE as xa, Wallet as xc, getGenericDelegatorUrl as xi, getAccountImplementationAddressQueryKey as xn, getAvatarLegacyQueryKey as xo, MultipleClausesCallParameters as xr, ConnectModal as xs, SendTokenContent as xt, TransactionButtonAndStatusProps as y, useIpfsMetadatas as ya, TransactionStatusErrorType as yc, VECHAIN_PRIVY_APP_ID as yi, useCurrentAccountImplementationVersion as yn, useUnsetDomain as yo, safeWindowOpen as yr, ConnectionButton as ys, SelectTokenContent as yt, AccountDetailsButton as z, useRefreshMetadata as za, useLoginModalContent as zi, EcosystemShortcut as zn, getIsDomainProtectedQueryKey as zo, NodeStrengthLevelToImage as zr, LegalDocumentAgreement as zs, GetEventsProps as zt };
|
|
4051
|
+
//# sourceMappingURL=index-wCp9v8PQ.d.cts.map
|