@vechain/vechain-kit 2.4.5 → 2.5.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/{index-BI93V0nR.d.cts → index-BQSKWDL8.d.cts} +107 -101
- package/dist/index-BQSKWDL8.d.cts.map +1 -0
- package/dist/{index-8BC07wqK.d.mts → index-CpmIWCFY.d.mts} +153 -147
- package/dist/index-CpmIWCFY.d.mts.map +1 -0
- package/dist/{index-CLLQDcuv.d.cts → index-I8fe7GR2.d.cts} +4 -4
- package/dist/{index-CLLQDcuv.d.cts.map → index-I8fe7GR2.d.cts.map} +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.cts +2 -2
- package/dist/utils/index.d.mts +1 -1
- package/package.json +2 -2
- package/dist/index-8BC07wqK.d.mts.map +0 -1
- package/dist/index-BI93V0nR.d.cts.map +0 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { ButtonProps, IconButtonProps, ImageProps, PropsOf, StackProps, ThemeTypings, VStack } from "@chakra-ui/react";
|
|
2
2
|
import * as react0 from "react";
|
|
3
3
|
import React$1, { ElementType, ReactElement, ReactNode } from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime4 from "react/jsx-runtime";
|
|
5
5
|
import { Account } from "viem/accounts";
|
|
6
6
|
import * as _vechain_sdk_core0 from "@vechain/sdk-core";
|
|
7
7
|
import { Address, Certificate, CertificateData, Clause, Revision, Transaction, TransactionClause } from "@vechain/sdk-core";
|
|
8
8
|
import { LoginMethodOrderOption, OAuthProviderType, SignTypedDataParams, User, WalletListEntry, useMfaEnrollment, usePrivy as usePrivy$1, useSetWalletRecovery } from "@privy-io/react-auth";
|
|
9
9
|
import { WalletButton as DAppKitWalletButton, WalletConnectOptions, useThor as useThor$1, useWallet as useDAppKitWallet, useWalletModal as useDAppKitWalletModal } from "@vechain/dapp-kit-react";
|
|
10
|
-
import * as
|
|
10
|
+
import * as _tanstack_react_query8 from "@tanstack/react-query";
|
|
11
11
|
import { UseQueryOptions } from "@tanstack/react-query";
|
|
12
12
|
import { CustomTokenInfo } from "@vechain/contract-getters";
|
|
13
13
|
import { Abi, ContractEventName, ContractFunctionParameters, MulticallParameters, MulticallReturnType, decodeEventLog } from "viem";
|
|
@@ -53,7 +53,7 @@ declare const genesises: {
|
|
|
53
53
|
readonly main: CompressedBlockDetail;
|
|
54
54
|
readonly test: CompressedBlockDetail;
|
|
55
55
|
readonly solo: CompressedBlockDetail;
|
|
56
|
-
which(gid: string): "
|
|
56
|
+
which(gid: string): "test" | "main" | "solo" | undefined;
|
|
57
57
|
};
|
|
58
58
|
//#endregion
|
|
59
59
|
//#region src/types/types.d.ts
|
|
@@ -526,6 +526,12 @@ type VechainKitProviderProps = {
|
|
|
526
526
|
createOnLogin: 'users-without-wallets' | 'all-users' | 'off';
|
|
527
527
|
};
|
|
528
528
|
loginMethods: PrivyLoginMethod[];
|
|
529
|
+
/**
|
|
530
|
+
* Custom redirect URL for OAuth flows, useful for mobile applications. If not provided, defaults to window.location.href.
|
|
531
|
+
* For Capacitor/mobile apps, use a custom URL scheme like: 'com.yourapp.oauth://callback' or 'yourapp://oauth'
|
|
532
|
+
* Make sure to register this URL scheme in your app configuration and add it to your app's allowed URL schemes in the Privy dashboard.
|
|
533
|
+
*/
|
|
534
|
+
customOAuthRedirectUrl?: string;
|
|
529
535
|
};
|
|
530
536
|
feeDelegation?: {
|
|
531
537
|
delegatorUrl?: string;
|
|
@@ -629,7 +635,7 @@ declare const VeChainKitContext: react0.Context<VeChainKitConfig | null>;
|
|
|
629
635
|
* ```
|
|
630
636
|
*/
|
|
631
637
|
declare const useVeChainKitConfig: () => VeChainKitConfig;
|
|
632
|
-
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) =>
|
|
638
|
+
declare const VeChainKitProvider: (props: Omit<VechainKitProviderProps, "queryClient">) => react_jsx_runtime4.JSX.Element;
|
|
633
639
|
//#endregion
|
|
634
640
|
//#region src/providers/PrivyWalletProvider.d.ts
|
|
635
641
|
interface PrivyWalletProviderContextType {
|
|
@@ -672,7 +678,7 @@ declare const PrivyWalletProvider: ({
|
|
|
672
678
|
delegatorUrl?: string;
|
|
673
679
|
delegateAllTransactions: boolean;
|
|
674
680
|
genericDelegator?: boolean;
|
|
675
|
-
}) =>
|
|
681
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
676
682
|
declare const usePrivyWalletProvider: () => PrivyWalletProviderContextType;
|
|
677
683
|
//#endregion
|
|
678
684
|
//#region src/providers/VechainKitThemeProvider.d.ts
|
|
@@ -690,12 +696,12 @@ declare const ColorModeSync: ({
|
|
|
690
696
|
darkMode
|
|
691
697
|
}: {
|
|
692
698
|
darkMode: boolean;
|
|
693
|
-
}) =>
|
|
699
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
694
700
|
declare const VechainKitThemeProvider: ({
|
|
695
701
|
children,
|
|
696
702
|
darkMode,
|
|
697
703
|
theme: customTheme
|
|
698
|
-
}: Props$35) =>
|
|
704
|
+
}: Props$35) => react_jsx_runtime4.JSX.Element;
|
|
699
705
|
//#endregion
|
|
700
706
|
//#region src/providers/LegalDocumentsProvider.d.ts
|
|
701
707
|
type Props$34 = {
|
|
@@ -711,7 +717,7 @@ type LegalDocumentsContextType = {
|
|
|
711
717
|
declare const useLegalDocuments: () => LegalDocumentsContextType;
|
|
712
718
|
declare const LegalDocumentsProvider: ({
|
|
713
719
|
children
|
|
714
|
-
}: Props$34) =>
|
|
720
|
+
}: Props$34) => react_jsx_runtime4.JSX.Element;
|
|
715
721
|
//#endregion
|
|
716
722
|
//#region src/components/ConnectModal/ConnectModal.d.ts
|
|
717
723
|
type Props$33 = {
|
|
@@ -747,7 +753,7 @@ declare const ConnectModal: ({
|
|
|
747
753
|
onClose,
|
|
748
754
|
initialContent,
|
|
749
755
|
preventAutoClose
|
|
750
|
-
}: Props$33) =>
|
|
756
|
+
}: Props$33) => react_jsx_runtime4.JSX.Element;
|
|
751
757
|
//#endregion
|
|
752
758
|
//#region src/components/ConnectModal/Contents/MainContent.d.ts
|
|
753
759
|
type Props$32 = {
|
|
@@ -759,7 +765,7 @@ declare const MainContent: ({
|
|
|
759
765
|
setCurrentContent,
|
|
760
766
|
onClose,
|
|
761
767
|
preventAutoClose
|
|
762
|
-
}: Props$32) =>
|
|
768
|
+
}: Props$32) => react_jsx_runtime4.JSX.Element;
|
|
763
769
|
//#endregion
|
|
764
770
|
//#region src/components/ConnectModal/Contents/LoadingContent.d.ts
|
|
765
771
|
type LoadingContentProps = {
|
|
@@ -777,7 +783,7 @@ declare const LoadingContent: ({
|
|
|
777
783
|
onClose,
|
|
778
784
|
onGoBack,
|
|
779
785
|
showBackButton
|
|
780
|
-
}: LoadingContentProps) =>
|
|
786
|
+
}: LoadingContentProps) => react_jsx_runtime4.JSX.Element;
|
|
781
787
|
//#endregion
|
|
782
788
|
//#region src/components/ConnectModal/Contents/ErrorContent.d.ts
|
|
783
789
|
type ErrorContentProps = {
|
|
@@ -791,7 +797,7 @@ declare const ErrorContent: ({
|
|
|
791
797
|
onClose,
|
|
792
798
|
onTryAgain,
|
|
793
799
|
onGoBack
|
|
794
|
-
}: ErrorContentProps) =>
|
|
800
|
+
}: ErrorContentProps) => react_jsx_runtime4.JSX.Element;
|
|
795
801
|
//#endregion
|
|
796
802
|
//#region src/components/ConnectModal/Contents/EcosystemContent.d.ts
|
|
797
803
|
type Props$31 = {
|
|
@@ -807,7 +813,7 @@ declare const EcosystemContent: ({
|
|
|
807
813
|
isLoading,
|
|
808
814
|
setCurrentContent,
|
|
809
815
|
showBackButton
|
|
810
|
-
}: Props$31) =>
|
|
816
|
+
}: Props$31) => react_jsx_runtime4.JSX.Element;
|
|
811
817
|
//#endregion
|
|
812
818
|
//#region src/components/ConnectModal/Components/ConnectionButton.d.ts
|
|
813
819
|
interface ConnectionButtonProps {
|
|
@@ -830,10 +836,10 @@ declare const ConnectionButton: ({
|
|
|
830
836
|
style,
|
|
831
837
|
variant,
|
|
832
838
|
iconWidth
|
|
833
|
-
}: ConnectionButtonProps) =>
|
|
839
|
+
}: ConnectionButtonProps) => react_jsx_runtime4.JSX.Element | null;
|
|
834
840
|
//#endregion
|
|
835
841
|
//#region src/components/ConnectModal/Components/EmailLoginButton.d.ts
|
|
836
|
-
declare const EmailLoginButton: () =>
|
|
842
|
+
declare const EmailLoginButton: () => react_jsx_runtime4.JSX.Element;
|
|
837
843
|
//#endregion
|
|
838
844
|
//#region src/components/ConnectModal/Components/VeChainLoginButton.d.ts
|
|
839
845
|
type Props$30 = {
|
|
@@ -845,7 +851,7 @@ declare const VeChainLoginButton: ({
|
|
|
845
851
|
isDark,
|
|
846
852
|
gridColumn,
|
|
847
853
|
setCurrentContent
|
|
848
|
-
}: Props$30) =>
|
|
854
|
+
}: Props$30) => react_jsx_runtime4.JSX.Element;
|
|
849
855
|
//#endregion
|
|
850
856
|
//#region src/components/ConnectModal/Components/EcosystemButton.d.ts
|
|
851
857
|
type Props$29 = {
|
|
@@ -859,7 +865,7 @@ declare const EcosystemButton: ({
|
|
|
859
865
|
appsInfo,
|
|
860
866
|
isLoading,
|
|
861
867
|
setCurrentContent
|
|
862
|
-
}: Props$29) =>
|
|
868
|
+
}: Props$29) => react_jsx_runtime4.JSX.Element;
|
|
863
869
|
//#endregion
|
|
864
870
|
//#region src/components/ConnectModal/Components/PrivyButton.d.ts
|
|
865
871
|
type Props$28 = {
|
|
@@ -871,7 +877,7 @@ declare const PrivyButton: ({
|
|
|
871
877
|
isDark,
|
|
872
878
|
onViewMoreLogin,
|
|
873
879
|
gridColumn
|
|
874
|
-
}: Props$28) =>
|
|
880
|
+
}: Props$28) => react_jsx_runtime4.JSX.Element;
|
|
875
881
|
//#endregion
|
|
876
882
|
//#region src/components/ConnectModal/Components/LoginWithGoogleButton.d.ts
|
|
877
883
|
type Props$27 = {
|
|
@@ -881,7 +887,7 @@ type Props$27 = {
|
|
|
881
887
|
declare const LoginWithGoogleButton: ({
|
|
882
888
|
isDark,
|
|
883
889
|
gridColumn
|
|
884
|
-
}: Props$27) =>
|
|
890
|
+
}: Props$27) => react_jsx_runtime4.JSX.Element;
|
|
885
891
|
//#endregion
|
|
886
892
|
//#region src/components/ConnectModal/Components/PasskeyLoginButton.d.ts
|
|
887
893
|
type Props$26 = {
|
|
@@ -893,7 +899,7 @@ declare const PasskeyLoginButton: ({
|
|
|
893
899
|
isDark,
|
|
894
900
|
gridColumn,
|
|
895
901
|
setCurrentContent
|
|
896
|
-
}: Props$26) =>
|
|
902
|
+
}: Props$26) => react_jsx_runtime4.JSX.Element;
|
|
897
903
|
//#endregion
|
|
898
904
|
//#region src/components/ConnectModal/Components/DappKitButton.d.ts
|
|
899
905
|
type Props$25 = {
|
|
@@ -903,7 +909,7 @@ type Props$25 = {
|
|
|
903
909
|
declare const DappKitButton: ({
|
|
904
910
|
isDark,
|
|
905
911
|
gridColumn
|
|
906
|
-
}: Props$25) =>
|
|
912
|
+
}: Props$25) => react_jsx_runtime4.JSX.Element;
|
|
907
913
|
//#endregion
|
|
908
914
|
//#region src/components/ConnectModal/Components/VeChainWithPrivyLoginButton.d.ts
|
|
909
915
|
type Props$24 = {
|
|
@@ -913,7 +919,7 @@ type Props$24 = {
|
|
|
913
919
|
declare const VeChainWithPrivyLoginButton: ({
|
|
914
920
|
isDark,
|
|
915
921
|
gridColumn
|
|
916
|
-
}: Props$24) =>
|
|
922
|
+
}: Props$24) => react_jsx_runtime4.JSX.Element;
|
|
917
923
|
//#endregion
|
|
918
924
|
//#region src/components/ConnectModal/Components/LoginWithGithubButton.d.ts
|
|
919
925
|
type Props$23 = {
|
|
@@ -923,7 +929,7 @@ type Props$23 = {
|
|
|
923
929
|
declare const LoginWithGithubButton: ({
|
|
924
930
|
isDark,
|
|
925
931
|
gridColumn
|
|
926
|
-
}: Props$23) =>
|
|
932
|
+
}: Props$23) => react_jsx_runtime4.JSX.Element;
|
|
927
933
|
//#endregion
|
|
928
934
|
//#region src/components/ConnectModal/ConnectPopover.d.ts
|
|
929
935
|
type ConnectPopoverProps = {
|
|
@@ -933,7 +939,7 @@ type ConnectPopoverProps = {
|
|
|
933
939
|
declare const ConnectPopover: ({
|
|
934
940
|
isLoading,
|
|
935
941
|
buttonStyle
|
|
936
|
-
}: ConnectPopoverProps) =>
|
|
942
|
+
}: ConnectPopoverProps) => react_jsx_runtime4.JSX.Element;
|
|
937
943
|
//#endregion
|
|
938
944
|
//#region src/components/WalletButton/types.d.ts
|
|
939
945
|
type WalletDisplayVariant = 'icon' | 'iconAndDomain' | 'iconDomainAndAddress' | 'iconDomainAndAssets';
|
|
@@ -952,10 +958,10 @@ declare const WalletButton: ({
|
|
|
952
958
|
buttonStyle,
|
|
953
959
|
connectionVariant,
|
|
954
960
|
label
|
|
955
|
-
}: WalletButtonProps) =>
|
|
961
|
+
}: WalletButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
956
962
|
//#endregion
|
|
957
963
|
//#region src/components/WalletButton/SocialIcons.d.ts
|
|
958
|
-
declare const SocialIcons: () =>
|
|
964
|
+
declare const SocialIcons: () => react_jsx_runtime4.JSX.Element;
|
|
959
965
|
//#endregion
|
|
960
966
|
//#region src/components/TransactionModal/TransactionModal.d.ts
|
|
961
967
|
type TransactionModalProps = {
|
|
@@ -985,7 +991,7 @@ declare const TransactionModal: ({
|
|
|
985
991
|
txReceipt,
|
|
986
992
|
txError,
|
|
987
993
|
onTryAgain
|
|
988
|
-
}: TransactionModalProps) =>
|
|
994
|
+
}: TransactionModalProps) => react_jsx_runtime4.JSX.Element | null;
|
|
989
995
|
//#endregion
|
|
990
996
|
//#region src/components/TransactionModal/Components/ShareButtons.d.ts
|
|
991
997
|
type Props$22 = {
|
|
@@ -995,7 +1001,7 @@ type Props$22 = {
|
|
|
995
1001
|
};
|
|
996
1002
|
declare const ShareButtons: ({
|
|
997
1003
|
description
|
|
998
|
-
}: Props$22) =>
|
|
1004
|
+
}: Props$22) => react_jsx_runtime4.JSX.Element;
|
|
999
1005
|
//#endregion
|
|
1000
1006
|
//#region src/components/TransactionModal/TransactionModalContent.d.ts
|
|
1001
1007
|
declare const TransactionModalContent: ({
|
|
@@ -1005,7 +1011,7 @@ declare const TransactionModalContent: ({
|
|
|
1005
1011
|
txReceipt,
|
|
1006
1012
|
txError,
|
|
1007
1013
|
onClose
|
|
1008
|
-
}: Omit<TransactionModalProps, "isOpen">) =>
|
|
1014
|
+
}: Omit<TransactionModalProps, "isOpen">) => react_jsx_runtime4.JSX.Element;
|
|
1009
1015
|
//#endregion
|
|
1010
1016
|
//#region src/components/TransactionToast/TransactionToast.d.ts
|
|
1011
1017
|
type TransactionToastProps = {
|
|
@@ -1025,7 +1031,7 @@ declare const TransactionToast: ({
|
|
|
1025
1031
|
txError,
|
|
1026
1032
|
onTryAgain,
|
|
1027
1033
|
description
|
|
1028
|
-
}: TransactionToastProps) =>
|
|
1034
|
+
}: TransactionToastProps) => react_jsx_runtime4.JSX.Element | null;
|
|
1029
1035
|
//#endregion
|
|
1030
1036
|
//#region src/components/AccountModal/Contents/Account/AccountMainContent.d.ts
|
|
1031
1037
|
type Props$21 = {
|
|
@@ -1041,12 +1047,12 @@ declare const AccountMainContent: ({
|
|
|
1041
1047
|
wallet,
|
|
1042
1048
|
onClose,
|
|
1043
1049
|
switchFeedback
|
|
1044
|
-
}: Props$21) =>
|
|
1050
|
+
}: Props$21) => react_jsx_runtime4.JSX.Element;
|
|
1045
1051
|
//#endregion
|
|
1046
1052
|
//#region src/hooks/api/privy/useFetchAppInfo.d.ts
|
|
1047
1053
|
declare const fetchPrivyAppInfo: (appId: string) => Promise<PrivyAppInfo>;
|
|
1048
1054
|
declare const getPrivyAppInfoQueryKey: (appIds: string | string[]) => string[];
|
|
1049
|
-
declare const useFetchAppInfo: (appIds: string | string[]) =>
|
|
1055
|
+
declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_query8.UseQueryResult<{
|
|
1050
1056
|
[k: string]: {
|
|
1051
1057
|
website: string | undefined;
|
|
1052
1058
|
id: string;
|
|
@@ -1067,7 +1073,7 @@ declare const useFetchAppInfo: (appIds: string | string[]) => _tanstack_react_qu
|
|
|
1067
1073
|
//#endregion
|
|
1068
1074
|
//#region src/hooks/api/privy/useFetchPrivyStatus.d.ts
|
|
1069
1075
|
declare const fetchPrivyStatus: () => Promise<string>;
|
|
1070
|
-
declare const useFetchPrivyStatus: () =>
|
|
1076
|
+
declare const useFetchPrivyStatus: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1071
1077
|
//#endregion
|
|
1072
1078
|
//#region src/hooks/api/vetDomains/useVechainDomain.d.ts
|
|
1073
1079
|
interface VeChainDomainResult {
|
|
@@ -1077,11 +1083,11 @@ interface VeChainDomainResult {
|
|
|
1077
1083
|
isPrimaryDomain: boolean;
|
|
1078
1084
|
}
|
|
1079
1085
|
declare const getVechainDomainQueryKey: (addressOrDomain?: string | null) => (string | null | undefined)[];
|
|
1080
|
-
declare const useVechainDomain: (addressOrDomain?: string | null) =>
|
|
1086
|
+
declare const useVechainDomain: (addressOrDomain?: string | null) => _tanstack_react_query8.UseQueryResult<VeChainDomainResult, Error>;
|
|
1081
1087
|
//#endregion
|
|
1082
1088
|
//#region src/hooks/api/vetDomains/useEnsRecordExists.d.ts
|
|
1083
1089
|
declare const getEnsRecordExistsQueryKey: (name: string) => string[];
|
|
1084
|
-
declare const useEnsRecordExists: (name: string) =>
|
|
1090
|
+
declare const useEnsRecordExists: (name: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1085
1091
|
//#endregion
|
|
1086
1092
|
//#region src/hooks/api/vetDomains/useClaimVeWorldSubdomain.d.ts
|
|
1087
1093
|
type useClaimVeWorldSubdomainProps = {
|
|
@@ -1143,7 +1149,7 @@ declare const getIsDomainProtectedQueryKey: (domain?: string) => (string | undef
|
|
|
1143
1149
|
* @param {boolean} [enabled=true] - Flag to enable or disable the hook.
|
|
1144
1150
|
* @returns The result of the useQuery hook, with the protection status.
|
|
1145
1151
|
*/
|
|
1146
|
-
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) =>
|
|
1152
|
+
declare const useIsDomainProtected: (domain?: string, enabled?: boolean) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1147
1153
|
//#endregion
|
|
1148
1154
|
//#region src/hooks/api/vetDomains/useGetDomainsOfAddress.d.ts
|
|
1149
1155
|
declare const DomainSchema: z.ZodObject<{
|
|
@@ -1171,7 +1177,7 @@ declare const getDomainsOfAddressQueryKey: (address?: string, parentDomain?: str
|
|
|
1171
1177
|
* @param parentDomain The parent domain (e.g., "veworld.vet")
|
|
1172
1178
|
* @returns The domains owned by the address
|
|
1173
1179
|
*/
|
|
1174
|
-
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) =>
|
|
1180
|
+
declare const useGetDomainsOfAddress: (address?: string, parentDomain?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1175
1181
|
domains: {
|
|
1176
1182
|
name: string;
|
|
1177
1183
|
}[];
|
|
@@ -1184,7 +1190,7 @@ declare const getAvatarQueryKey: (name: string, networkType: NETWORK_TYPE) => st
|
|
|
1184
1190
|
* @param name - The VET domain name
|
|
1185
1191
|
* @returns The resolved avatar URL
|
|
1186
1192
|
*/
|
|
1187
|
-
declare const useGetAvatar: (name: string) =>
|
|
1193
|
+
declare const useGetAvatar: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1188
1194
|
//#endregion
|
|
1189
1195
|
//#region src/hooks/api/vetDomains/useGetTextRecords.d.ts
|
|
1190
1196
|
/**
|
|
@@ -1196,7 +1202,7 @@ declare const useGetAvatar: (name: string) => _tanstack_react_query33.UseQueryRe
|
|
|
1196
1202
|
*/
|
|
1197
1203
|
declare const getTextRecords: (nodeUrl: string, network: NETWORK_TYPE, domain?: string) => Promise<TextRecords>;
|
|
1198
1204
|
declare const getTextRecordsQueryKey: (domain?: string, network?: NETWORK_TYPE) => (string | undefined)[];
|
|
1199
|
-
declare const useGetTextRecords: (domain?: string) =>
|
|
1205
|
+
declare const useGetTextRecords: (domain?: string) => _tanstack_react_query8.UseQueryResult<TextRecords, Error>;
|
|
1200
1206
|
//#endregion
|
|
1201
1207
|
//#region src/hooks/api/vetDomains/useUpdateTextRecord.d.ts
|
|
1202
1208
|
type UpdateTextRecordVariables = {
|
|
@@ -1229,7 +1235,7 @@ declare const getResolverAddressQueryKey: (domain?: string) => (string | undefin
|
|
|
1229
1235
|
* @param domain The domain to get resolver for
|
|
1230
1236
|
* @returns The resolver address for the domain
|
|
1231
1237
|
*/
|
|
1232
|
-
declare const useGetResolverAddress: (domain?: string) =>
|
|
1238
|
+
declare const useGetResolverAddress: (domain?: string) => _tanstack_react_query8.UseQueryResult<`0x${string}`, unknown>;
|
|
1233
1239
|
//#endregion
|
|
1234
1240
|
//#region src/hooks/api/vetDomains/useGetAvatarOfAddress.d.ts
|
|
1235
1241
|
declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefined)[];
|
|
@@ -1239,7 +1245,7 @@ declare const getAvatarOfAddressQueryKey: (address?: string) => (string | undefi
|
|
|
1239
1245
|
* @param address The owner's address
|
|
1240
1246
|
* @returns The avatar URL for the address's primary domain
|
|
1241
1247
|
*/
|
|
1242
|
-
declare const useGetAvatarOfAddress: (address?: string) =>
|
|
1248
|
+
declare const useGetAvatarOfAddress: (address?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
1243
1249
|
//#endregion
|
|
1244
1250
|
//#region src/hooks/api/vetDomains/useGetAvatarLegacy.d.ts
|
|
1245
1251
|
/**
|
|
@@ -1256,7 +1262,7 @@ declare const getAvatarLegacyQueryKey: (name: string, networkType: NETWORK_TYPE)
|
|
|
1256
1262
|
* @param name - The VET domain name
|
|
1257
1263
|
* @returns The resolved avatar URL
|
|
1258
1264
|
*/
|
|
1259
|
-
declare const useGetAvatarLegacy: (name: string) =>
|
|
1265
|
+
declare const useGetAvatarLegacy: (name: string) => _tanstack_react_query8.UseQueryResult<string | null, Error>;
|
|
1260
1266
|
//#endregion
|
|
1261
1267
|
//#region src/hooks/api/vetDomains/useUnsetDomain.d.ts
|
|
1262
1268
|
type useUnsetDomainProps = {
|
|
@@ -1365,7 +1371,7 @@ declare const getCurrentAllocationsRoundIdQueryKey: (address: string) => string[
|
|
|
1365
1371
|
* Hook to get the current roundId of allocations voting
|
|
1366
1372
|
* @returns the current roundId of allocations voting
|
|
1367
1373
|
*/
|
|
1368
|
-
declare const useCurrentAllocationsRoundId: () =>
|
|
1374
|
+
declare const useCurrentAllocationsRoundId: () => _tanstack_react_query8.UseQueryResult<string, unknown>;
|
|
1369
1375
|
//#endregion
|
|
1370
1376
|
//#region src/hooks/api/wallet/useCustomTokens.d.ts
|
|
1371
1377
|
declare const useCustomTokens: () => {
|
|
@@ -1378,7 +1384,7 @@ declare const useCustomTokens: () => {
|
|
|
1378
1384
|
//#endregion
|
|
1379
1385
|
//#region src/hooks/api/wallet/useGetB3trBalance.d.ts
|
|
1380
1386
|
declare const getB3trBalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1381
|
-
declare const useGetB3trBalance: (address?: string) =>
|
|
1387
|
+
declare const useGetB3trBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1382
1388
|
original: string;
|
|
1383
1389
|
scaled: string;
|
|
1384
1390
|
formatted: string;
|
|
@@ -1387,7 +1393,7 @@ declare const useGetB3trBalance: (address?: string) => _tanstack_react_query33.U
|
|
|
1387
1393
|
//#region src/hooks/api/wallet/useGetCustomTokenBalances.d.ts
|
|
1388
1394
|
type TokenWithBalance = CustomTokenInfo & TokenBalance;
|
|
1389
1395
|
declare const getCustomTokenBalanceQueryKey: (tokenAddress?: string, address?: string) => (string | undefined)[];
|
|
1390
|
-
declare const useGetCustomTokenBalances: (address?: string) =>
|
|
1396
|
+
declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1391
1397
|
original: string;
|
|
1392
1398
|
scaled: string;
|
|
1393
1399
|
formatted: string;
|
|
@@ -1400,11 +1406,11 @@ declare const useGetCustomTokenBalances: (address?: string) => _tanstack_react_q
|
|
|
1400
1406
|
//#region src/hooks/api/wallet/useGetCustomTokenInfo.d.ts
|
|
1401
1407
|
declare const getTokenInfo$1: (tokenAddress: string, networkUrl: string) => Promise<CustomTokenInfo>;
|
|
1402
1408
|
declare const getCustomTokenInfoQueryKey: (tokenAddress: string) => string[];
|
|
1403
|
-
declare const useGetCustomTokenInfo: (tokenAddress: string) =>
|
|
1409
|
+
declare const useGetCustomTokenInfo: (tokenAddress: string) => _tanstack_react_query8.UseQueryResult<CustomTokenInfo, Error>;
|
|
1404
1410
|
//#endregion
|
|
1405
1411
|
//#region src/hooks/api/wallet/useGetErc20Balance.d.ts
|
|
1406
1412
|
declare const getErc20BalanceQueryKey: (tokenAddress: string, address?: string) => (string | undefined)[];
|
|
1407
|
-
declare const useGetErc20Balance: (tokenAddress: string, address?: string) =>
|
|
1413
|
+
declare const useGetErc20Balance: (tokenAddress: string, address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1408
1414
|
original: string;
|
|
1409
1415
|
scaled: string;
|
|
1410
1416
|
formatted: string;
|
|
@@ -1421,11 +1427,11 @@ declare const PRICE_FEED_IDS: {
|
|
|
1421
1427
|
type SupportedToken = keyof typeof PRICE_FEED_IDS;
|
|
1422
1428
|
declare const getTokenUsdPrice: (thor: ThorClient, token: SupportedToken, network: NETWORK_TYPE) => Promise<number>;
|
|
1423
1429
|
declare const getTokenUsdPriceQueryKey: (token: SupportedToken) => string[];
|
|
1424
|
-
declare const useGetTokenUsdPrice: (token: SupportedToken) =>
|
|
1430
|
+
declare const useGetTokenUsdPrice: (token: SupportedToken) => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
1425
1431
|
//#endregion
|
|
1426
1432
|
//#region src/hooks/api/wallet/useGetVot3Balance.d.ts
|
|
1427
1433
|
declare const getVot3BalanceQueryKey: (address?: string) => (string | undefined)[];
|
|
1428
|
-
declare const useGetVot3Balance: (address?: string) =>
|
|
1434
|
+
declare const useGetVot3Balance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1429
1435
|
original: string;
|
|
1430
1436
|
scaled: string;
|
|
1431
1437
|
formatted: string;
|
|
@@ -1444,7 +1450,7 @@ declare const getIsPersonQueryKey: (user: string, networkType: NETWORK_TYPE) =>
|
|
|
1444
1450
|
* @param user - The user address.
|
|
1445
1451
|
* @returns The isPerson status.
|
|
1446
1452
|
*/
|
|
1447
|
-
declare const useIsPerson: (user?: string | null) =>
|
|
1453
|
+
declare const useIsPerson: (user?: string | null) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
1448
1454
|
//#endregion
|
|
1449
1455
|
//#region src/hooks/api/wallet/useMostVotedAppsInRound.d.ts
|
|
1450
1456
|
type XApp = {
|
|
@@ -1482,7 +1488,7 @@ declare const useRefreshMetadata: (domain: string, address: string) => {
|
|
|
1482
1488
|
//#endregion
|
|
1483
1489
|
//#region src/hooks/api/wallet/useRoundXApps.d.ts
|
|
1484
1490
|
declare const getRoundXAppsQueryKey: (roundId: string, networkType: NETWORK_TYPE) => unknown[];
|
|
1485
|
-
declare const useRoundXApps: (roundId?: string) =>
|
|
1491
|
+
declare const useRoundXApps: (roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1486
1492
|
id: string;
|
|
1487
1493
|
teamWalletAddress: `0x${string}`;
|
|
1488
1494
|
name: string;
|
|
@@ -1596,7 +1602,7 @@ type XAppMetadata = {
|
|
|
1596
1602
|
* @returns The metadata of the xApp see {@link XAppMetadata}
|
|
1597
1603
|
*/
|
|
1598
1604
|
declare const getXAppMetadata: (uri: string, networkType: NETWORK_TYPE) => Promise<XAppMetadata | undefined>;
|
|
1599
|
-
declare const useXAppMetadata: (xAppId: string) =>
|
|
1605
|
+
declare const useXAppMetadata: (xAppId: string) => _tanstack_react_query8.UseQueryResult<XAppMetadata | undefined, Error>;
|
|
1600
1606
|
//#endregion
|
|
1601
1607
|
//#region src/hooks/api/wallet/useXAppShares.d.ts
|
|
1602
1608
|
/**
|
|
@@ -1611,7 +1617,7 @@ declare const getXAppsSharesQueryKey: (roundId?: number | string) => (string | n
|
|
|
1611
1617
|
* @returns the shares (% of allocation pool) for the xApps in the round { allocated: number, unallocated: number }
|
|
1612
1618
|
*
|
|
1613
1619
|
*/
|
|
1614
|
-
declare const useXAppsShares: (apps: string[], roundId?: string) =>
|
|
1620
|
+
declare const useXAppsShares: (apps: string[], roundId?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
1615
1621
|
app: string;
|
|
1616
1622
|
share: number;
|
|
1617
1623
|
unallocatedShare: number;
|
|
@@ -1633,7 +1639,7 @@ declare const getIpfsMetadataQueryKey: (networkType: NETWORK_TYPE, ipfsUri?: str
|
|
|
1633
1639
|
* @param ipfsUri - The IPFS URI
|
|
1634
1640
|
* @returns The metadata from IPFS
|
|
1635
1641
|
*/
|
|
1636
|
-
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) =>
|
|
1642
|
+
declare const useIpfsMetadata: <T$1>(ipfsUri?: string, parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<T$1>, Error>;
|
|
1637
1643
|
//#endregion
|
|
1638
1644
|
//#region src/hooks/api/ipfs/useIpfsImage.d.ts
|
|
1639
1645
|
interface IpfsImage {
|
|
@@ -1660,14 +1666,14 @@ declare const getIpfsImageQueryKey: (networkType: NETWORK_TYPE, imageIpfsUri?: n
|
|
|
1660
1666
|
* @param imageIpfsUri - The IPFS URI of the NFT media
|
|
1661
1667
|
* @returns The NFT media
|
|
1662
1668
|
*/
|
|
1663
|
-
declare const useIpfsImage: (imageIpfsUri?: null | string) =>
|
|
1669
|
+
declare const useIpfsImage: (imageIpfsUri?: null | string) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>;
|
|
1664
1670
|
/**
|
|
1665
1671
|
* Custom hook to fetch a list of IPFS images.
|
|
1666
1672
|
*
|
|
1667
1673
|
* @param imageIpfsUriList - An array of IPFS URIs for the images.
|
|
1668
1674
|
* @returns An array of queries for each IPFS image URI.
|
|
1669
1675
|
*/
|
|
1670
|
-
declare const useIpfsImageList: (imageIpfsUriList: string[]) =>
|
|
1676
|
+
declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_query8.UseQueryResult<IpfsImage, Error>[];
|
|
1671
1677
|
//#endregion
|
|
1672
1678
|
//#region src/hooks/api/ipfs/useIpfsMetadatas.d.ts
|
|
1673
1679
|
/**
|
|
@@ -1675,7 +1681,7 @@ declare const useIpfsImageList: (imageIpfsUriList: string[]) => _tanstack_react_
|
|
|
1675
1681
|
* @param ipfsUris - The IPFS URIs
|
|
1676
1682
|
* @returns The metadata from IPFS for each URI
|
|
1677
1683
|
*/
|
|
1678
|
-
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) =>
|
|
1684
|
+
declare const useIpfsMetadatas: <T$1>(ipfsUris: string[], parseJson?: boolean) => _tanstack_react_query8.UseQueryResult<T$1, Error>[];
|
|
1679
1685
|
//#endregion
|
|
1680
1686
|
//#region src/hooks/api/ipfs/useUploadImages.d.ts
|
|
1681
1687
|
declare const imageCompressionOptions: Options;
|
|
@@ -1894,7 +1900,7 @@ declare const ConnectModalProvider: ({
|
|
|
1894
1900
|
children
|
|
1895
1901
|
}: {
|
|
1896
1902
|
children: ReactNode;
|
|
1897
|
-
}) =>
|
|
1903
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1898
1904
|
//#endregion
|
|
1899
1905
|
//#region src/hooks/modals/useAccountModal.d.ts
|
|
1900
1906
|
declare const useAccountModal: () => {
|
|
@@ -1906,7 +1912,7 @@ declare const AccountModalProvider: ({
|
|
|
1906
1912
|
children
|
|
1907
1913
|
}: {
|
|
1908
1914
|
children: ReactNode;
|
|
1909
|
-
}) =>
|
|
1915
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1910
1916
|
//#endregion
|
|
1911
1917
|
//#region src/hooks/modals/useTransactionModal.d.ts
|
|
1912
1918
|
declare const useTransactionModal: () => {
|
|
@@ -1918,7 +1924,7 @@ declare const TransactionModalProvider: ({
|
|
|
1918
1924
|
children
|
|
1919
1925
|
}: {
|
|
1920
1926
|
children: ReactNode;
|
|
1921
|
-
}) =>
|
|
1927
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1922
1928
|
//#endregion
|
|
1923
1929
|
//#region src/hooks/modals/useTransactionToast.d.ts
|
|
1924
1930
|
declare const useTransactionToast: () => {
|
|
@@ -1930,7 +1936,7 @@ declare const TransactionToastProvider: ({
|
|
|
1930
1936
|
children
|
|
1931
1937
|
}: {
|
|
1932
1938
|
children: ReactNode;
|
|
1933
|
-
}) =>
|
|
1939
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1934
1940
|
//#endregion
|
|
1935
1941
|
//#region src/hooks/modals/useWalletModal.d.ts
|
|
1936
1942
|
declare const useWalletModal: () => {
|
|
@@ -1942,7 +1948,7 @@ declare const WalletModalProvider: ({
|
|
|
1942
1948
|
children
|
|
1943
1949
|
}: {
|
|
1944
1950
|
children: ReactNode;
|
|
1945
|
-
}) =>
|
|
1951
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1946
1952
|
//#endregion
|
|
1947
1953
|
//#region src/hooks/modals/useChooseNameModal.d.ts
|
|
1948
1954
|
declare const useChooseNameModal: () => {
|
|
@@ -1954,7 +1960,7 @@ declare const ChooseNameModalProvider: ({
|
|
|
1954
1960
|
children
|
|
1955
1961
|
}: {
|
|
1956
1962
|
children: ReactNode;
|
|
1957
|
-
}) =>
|
|
1963
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1958
1964
|
//#endregion
|
|
1959
1965
|
//#region src/hooks/modals/useSendTokenModal.d.ts
|
|
1960
1966
|
declare const useSendTokenModal: () => {
|
|
@@ -1966,7 +1972,7 @@ declare const SendTokenModalProvider: ({
|
|
|
1966
1972
|
children
|
|
1967
1973
|
}: {
|
|
1968
1974
|
children: ReactNode;
|
|
1969
|
-
}) =>
|
|
1975
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1970
1976
|
//#endregion
|
|
1971
1977
|
//#region src/hooks/modals/useSwapTokenModal.d.ts
|
|
1972
1978
|
type SwapTokenModalOptions = {
|
|
@@ -1983,7 +1989,7 @@ declare const SwapTokenModalProvider: ({
|
|
|
1983
1989
|
children
|
|
1984
1990
|
}: {
|
|
1985
1991
|
children: ReactNode;
|
|
1986
|
-
}) =>
|
|
1992
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1987
1993
|
//#endregion
|
|
1988
1994
|
//#region src/hooks/modals/useExploreEcosystemModal.d.ts
|
|
1989
1995
|
declare const useExploreEcosystemModal: () => {
|
|
@@ -1995,7 +2001,7 @@ declare const ExploreEcosystemModalProvider: ({
|
|
|
1995
2001
|
children
|
|
1996
2002
|
}: {
|
|
1997
2003
|
children: ReactNode;
|
|
1998
|
-
}) =>
|
|
2004
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
1999
2005
|
//#endregion
|
|
2000
2006
|
//#region src/hooks/modals/useNotificationsModal.d.ts
|
|
2001
2007
|
declare const useNotificationsModal: () => {
|
|
@@ -2007,7 +2013,7 @@ declare const NotificationsModalProvider: ({
|
|
|
2007
2013
|
children
|
|
2008
2014
|
}: {
|
|
2009
2015
|
children: ReactNode;
|
|
2010
|
-
}) =>
|
|
2016
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2011
2017
|
//#endregion
|
|
2012
2018
|
//#region src/hooks/modals/useFAQModal.d.ts
|
|
2013
2019
|
declare const useFAQModal: () => {
|
|
@@ -2019,7 +2025,7 @@ declare const FAQModalProvider: ({
|
|
|
2019
2025
|
children
|
|
2020
2026
|
}: {
|
|
2021
2027
|
children: ReactNode;
|
|
2022
|
-
}) =>
|
|
2028
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2023
2029
|
//#endregion
|
|
2024
2030
|
//#region src/hooks/modals/useAccountCustomizationModal.d.ts
|
|
2025
2031
|
declare const useAccountCustomizationModal: () => {
|
|
@@ -2031,7 +2037,7 @@ declare const AccountCustomizationModalProvider: ({
|
|
|
2031
2037
|
children
|
|
2032
2038
|
}: {
|
|
2033
2039
|
children: ReactNode;
|
|
2034
|
-
}) =>
|
|
2040
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2035
2041
|
//#endregion
|
|
2036
2042
|
//#region src/hooks/modals/useReceiveModal.d.ts
|
|
2037
2043
|
declare const useReceiveModal: () => {
|
|
@@ -2043,7 +2049,7 @@ declare const ReceiveModalProvider: ({
|
|
|
2043
2049
|
children
|
|
2044
2050
|
}: {
|
|
2045
2051
|
children: ReactNode;
|
|
2046
|
-
}) =>
|
|
2052
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2047
2053
|
//#endregion
|
|
2048
2054
|
//#region src/hooks/modals/useLoginModalContent.d.ts
|
|
2049
2055
|
type LoginModalContentConfig = {
|
|
@@ -2069,7 +2075,7 @@ declare const UpgradeSmartAccountModalProvider: ({
|
|
|
2069
2075
|
children
|
|
2070
2076
|
}: {
|
|
2071
2077
|
children: ReactNode;
|
|
2072
|
-
}) =>
|
|
2078
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2073
2079
|
//#endregion
|
|
2074
2080
|
//#region src/hooks/modals/useProfileModal.d.ts
|
|
2075
2081
|
declare const useProfileModal: () => {
|
|
@@ -2081,7 +2087,7 @@ declare const ProfileModalProvider: ({
|
|
|
2081
2087
|
children
|
|
2082
2088
|
}: {
|
|
2083
2089
|
children: ReactNode;
|
|
2084
|
-
}) =>
|
|
2090
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2085
2091
|
//#endregion
|
|
2086
2092
|
//#region src/hooks/modals/useAccountModalOptions.d.ts
|
|
2087
2093
|
declare const useAccountModalOptions: () => {
|
|
@@ -2099,7 +2105,7 @@ declare const SettingsModalProvider: ({
|
|
|
2099
2105
|
children
|
|
2100
2106
|
}: {
|
|
2101
2107
|
children: ReactNode;
|
|
2102
|
-
}) =>
|
|
2108
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
2103
2109
|
//#endregion
|
|
2104
2110
|
//#region src/hooks/notifications/types.d.ts
|
|
2105
2111
|
type NotificationAction = {
|
|
@@ -2229,7 +2235,7 @@ declare const fetchAppHubApps: () => Promise<AppHubApp[]>;
|
|
|
2229
2235
|
* );
|
|
2230
2236
|
* ```
|
|
2231
2237
|
*/
|
|
2232
|
-
declare const useAppHubApps: () =>
|
|
2238
|
+
declare const useAppHubApps: () => _tanstack_react_query8.UseQueryResult<AppHubApp[], Error>;
|
|
2233
2239
|
//#endregion
|
|
2234
2240
|
//#region src/utils/constants.d.ts
|
|
2235
2241
|
/** Tokens that cannot be swapped or transferred (e.g. governance voting tokens) */
|
|
@@ -2584,7 +2590,7 @@ declare const useCallClause: <TAbi extends Abi, TMethod extends ExtractAbiFuncti
|
|
|
2584
2590
|
method: TMethod;
|
|
2585
2591
|
args: AbiParametersToPrimitiveTypes<ExtractViewFunction<TAbi, TMethod>["inputs"], "inputs">;
|
|
2586
2592
|
queryOptions?: Omit<UseQueryOptions<ViewFunctionResult<TAbi, TMethod>, unknown, TData, ReturnType<typeof getCallClauseQueryKeyWithArgs<TAbi, TMethod>>>, "queryKey" | "queryFn">;
|
|
2587
|
-
}) =>
|
|
2593
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<TData>, unknown>;
|
|
2588
2594
|
declare const useMultipleClausesCall: <contracts extends readonly ContractFunctionParameters[], allowFailure extends boolean = false>({
|
|
2589
2595
|
thor,
|
|
2590
2596
|
calls,
|
|
@@ -2595,7 +2601,7 @@ declare const useMultipleClausesCall: <contracts extends readonly ContractFuncti
|
|
|
2595
2601
|
calls: MultipleClausesCallParameters<contracts, allowFailure>;
|
|
2596
2602
|
queryKey: string[];
|
|
2597
2603
|
enabled?: boolean;
|
|
2598
|
-
}) =>
|
|
2604
|
+
}) => _tanstack_react_query8.UseQueryResult<_tanstack_react_query8.NoInfer<MultipleClausesCallReturnType<contracts, false>>, Error>;
|
|
2599
2605
|
//#endregion
|
|
2600
2606
|
//#region src/hooks/utils/useCurrency.d.ts
|
|
2601
2607
|
/**
|
|
@@ -2719,7 +2725,7 @@ declare const useEvents: <T$1 extends Abi, K extends ContractEventName<T$1>, R>(
|
|
|
2719
2725
|
filterParams,
|
|
2720
2726
|
mapResponse,
|
|
2721
2727
|
nodeUrl
|
|
2722
|
-
}: UseEventsParams<T$1, K, R>) =>
|
|
2728
|
+
}: UseEventsParams<T$1, K, R>) => _tanstack_react_query8.UseQueryResult<R[], Error>;
|
|
2723
2729
|
//#endregion
|
|
2724
2730
|
//#region src/hooks/utils/useBuildClauses.d.ts
|
|
2725
2731
|
interface BuildClausesParams {
|
|
@@ -2871,7 +2877,7 @@ declare const useGenericDelegatorFeeEstimation: ({
|
|
|
2871
2877
|
tokens,
|
|
2872
2878
|
sendingAmount,
|
|
2873
2879
|
sendingTokenSymbol
|
|
2874
|
-
}: useGenericDelegatorFeeEstimationParams) =>
|
|
2880
|
+
}: useGenericDelegatorFeeEstimationParams) => _tanstack_react_query8.UseQueryResult<EstimationResponse & {
|
|
2875
2881
|
usedToken: string;
|
|
2876
2882
|
}, Error>;
|
|
2877
2883
|
//#endregion
|
|
@@ -2885,7 +2891,7 @@ declare const useEstimateAllTokens: ({
|
|
|
2885
2891
|
clauses,
|
|
2886
2892
|
tokens,
|
|
2887
2893
|
enabled
|
|
2888
|
-
}: UseEstimateAllTokensParams) =>
|
|
2894
|
+
}: UseEstimateAllTokensParams) => _tanstack_react_query8.UseQueryResult<Record<GasTokenType, {
|
|
2889
2895
|
cost: number;
|
|
2890
2896
|
loading: boolean;
|
|
2891
2897
|
error?: string;
|
|
@@ -2902,7 +2908,7 @@ declare const getAccountBalanceQueryKey: (address?: string) => (string | undefin
|
|
|
2902
2908
|
* @param address The address of the account to get the balance for
|
|
2903
2909
|
* @returns The account balance
|
|
2904
2910
|
*/
|
|
2905
|
-
declare const useAccountBalance: (address?: string) =>
|
|
2911
|
+
declare const useAccountBalance: (address?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
2906
2912
|
balance: string;
|
|
2907
2913
|
energy: string;
|
|
2908
2914
|
}, Error>;
|
|
@@ -2915,7 +2921,7 @@ declare const getAccountImplementationAddressQueryKey: (version?: number, networ
|
|
|
2915
2921
|
* @param version - The version of the smart account implementation
|
|
2916
2922
|
* @returns The address of the smart account implementation
|
|
2917
2923
|
*/
|
|
2918
|
-
declare const useAccountImplementationAddress: (version?: number) =>
|
|
2924
|
+
declare const useAccountImplementationAddress: (version?: number) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2919
2925
|
//#endregion
|
|
2920
2926
|
//#region src/hooks/thor/smartAccounts/useCurrentAccountImplementationVersion.d.ts
|
|
2921
2927
|
declare const getCurrentAccountImplementationVersion: (thor: ThorClient, networkType?: NETWORK_TYPE) => Promise<number>;
|
|
@@ -2924,7 +2930,7 @@ declare const getCurrentAccountImplementationVersionQueryKey: (networkType?: NET
|
|
|
2924
2930
|
* Get the current account implementation version used by the smart account factory
|
|
2925
2931
|
* @returns The current account implementation version
|
|
2926
2932
|
*/
|
|
2927
|
-
declare const useCurrentAccountImplementationVersion: () =>
|
|
2933
|
+
declare const useCurrentAccountImplementationVersion: () => _tanstack_react_query8.UseQueryResult<number, Error>;
|
|
2928
2934
|
//#endregion
|
|
2929
2935
|
//#region src/hooks/thor/smartAccounts/useGetAccountAddress.d.ts
|
|
2930
2936
|
declare const getAccountAddress: (thor: ThorClient, ownerAddress?: string, networkType?: NETWORK_TYPE) => Promise<string>;
|
|
@@ -2934,7 +2940,7 @@ declare const getAccountAddressQueryKey: (ownerAddress?: string, networkType?: N
|
|
|
2934
2940
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2935
2941
|
* @returns The address of the smart account
|
|
2936
2942
|
*/
|
|
2937
|
-
declare const useGetAccountAddress: (ownerAddress?: string) =>
|
|
2943
|
+
declare const useGetAccountAddress: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
2938
2944
|
//#endregion
|
|
2939
2945
|
//#region src/hooks/thor/smartAccounts/useGetAccountVersion.d.ts
|
|
2940
2946
|
declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress: string, networkType: NETWORK_TYPE) => unknown[];
|
|
@@ -2944,7 +2950,7 @@ declare const getAccountVersionQueryKey: (accountAddress: string, ownerAddress:
|
|
|
2944
2950
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2945
2951
|
* @returns The version of the smart account
|
|
2946
2952
|
*/
|
|
2947
|
-
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) =>
|
|
2953
|
+
declare const useGetAccountVersion: (accountAddress: string, ownerAddress: string) => _tanstack_react_query8.UseQueryResult<{
|
|
2948
2954
|
version: number;
|
|
2949
2955
|
isDeployed: boolean;
|
|
2950
2956
|
}, unknown>;
|
|
@@ -2957,7 +2963,7 @@ declare const getHasV1SmartAccountQueryKey: (ownerAddress?: string, networkType?
|
|
|
2957
2963
|
* @param ownerAddress - The address of the owner of the smart account
|
|
2958
2964
|
* @returns True if the smart account has a v1 smart account, false otherwise
|
|
2959
2965
|
*/
|
|
2960
|
-
declare const useHasV1SmartAccount: (ownerAddress?: string) =>
|
|
2966
|
+
declare const useHasV1SmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2961
2967
|
//#endregion
|
|
2962
2968
|
//#region src/hooks/thor/smartAccounts/useIsSmartAccountDeployed.d.ts
|
|
2963
2969
|
declare const getIsDeployed: (thor: ThorClient, accountAddress?: string) => Promise<boolean>;
|
|
@@ -2966,7 +2972,7 @@ declare const getIsDeployedQueryKey: (contractAddress?: string) => (string | und
|
|
|
2966
2972
|
* Check if a smart account is deployed
|
|
2967
2973
|
* @returns True if the smart account is deployed, false otherwise
|
|
2968
2974
|
*/
|
|
2969
|
-
declare const useIsSmartAccountDeployed: (accountAddress?: string) =>
|
|
2975
|
+
declare const useIsSmartAccountDeployed: (accountAddress?: string) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
2970
2976
|
//#endregion
|
|
2971
2977
|
//#region src/hooks/thor/smartAccounts/useRefreshFactoryQueries.d.ts
|
|
2972
2978
|
/**
|
|
@@ -2999,7 +3005,7 @@ declare const getSmartAccount: (thor: ThorClient, network: NETWORK_TYPE, ownerAd
|
|
|
2999
3005
|
isDeployed: boolean;
|
|
3000
3006
|
}>;
|
|
3001
3007
|
declare const getSmartAccountQueryKey: (ownerAddress?: string) => (string | undefined)[];
|
|
3002
|
-
declare const useSmartAccount: (ownerAddress?: string) =>
|
|
3008
|
+
declare const useSmartAccount: (ownerAddress?: string) => _tanstack_react_query8.UseQueryResult<{
|
|
3003
3009
|
address: undefined;
|
|
3004
3010
|
isDeployed?: undefined;
|
|
3005
3011
|
} | {
|
|
@@ -3017,7 +3023,7 @@ declare const getUpgradeRequiredQueryKey: (accountAddress: string, ownerAddress:
|
|
|
3017
3023
|
* @param targetVersion - The version of the smart account to check for
|
|
3018
3024
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3019
3025
|
*/
|
|
3020
|
-
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) =>
|
|
3026
|
+
declare const useUpgradeRequired: (accountAddress: string, ownerAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3021
3027
|
//#endregion
|
|
3022
3028
|
//#region src/hooks/thor/smartAccounts/useUpgradeRequiredForAccount.d.ts
|
|
3023
3029
|
declare const getUpgradeRequiredForAccount: (thor: ThorClient, contractAddress: string, targetVersion: number, networkType: NETWORK_TYPE) => Promise<boolean>;
|
|
@@ -3028,7 +3034,7 @@ declare const getUpgradeRequiredForAccountQueryKey: (contractAddress: string, ta
|
|
|
3028
3034
|
* @param targetVersion - The target version of the smart account
|
|
3029
3035
|
* @returns True if the smart account needs an upgrade, false otherwise
|
|
3030
3036
|
*/
|
|
3031
|
-
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) =>
|
|
3037
|
+
declare const useUpgradeRequiredForAccount: (contractAddress: string, targetVersion: number) => _tanstack_react_query8.UseQueryResult<boolean, Error>;
|
|
3032
3038
|
//#endregion
|
|
3033
3039
|
//#region src/hooks/thor/smartAccounts/useUpgradeSmartAccount.d.ts
|
|
3034
3040
|
type UseUpgradeSmartAccountVersionProps = {
|
|
@@ -3053,7 +3059,7 @@ declare const currentBlockQueryKey: () => string[];
|
|
|
3053
3059
|
* Fetches the current block from the blockchain. The block is refetched every 10 seconds.
|
|
3054
3060
|
* @returns the current block
|
|
3055
3061
|
*/
|
|
3056
|
-
declare const useCurrentBlock: () =>
|
|
3062
|
+
declare const useCurrentBlock: () => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.ExpandedBlockDetail, Error>;
|
|
3057
3063
|
//#endregion
|
|
3058
3064
|
//#region src/hooks/thor/blocks/useGetChainId.d.ts
|
|
3059
3065
|
declare const getChainId: (thor: ThorClient) => Promise<string>;
|
|
@@ -3062,7 +3068,7 @@ declare const getChainIdQueryKey: () => string[];
|
|
|
3062
3068
|
* Get the chain id
|
|
3063
3069
|
* @returns The chain id
|
|
3064
3070
|
*/
|
|
3065
|
-
declare const useGetChainId: () =>
|
|
3071
|
+
declare const useGetChainId: () => _tanstack_react_query8.UseQueryResult<string, Error>;
|
|
3066
3072
|
//#endregion
|
|
3067
3073
|
//#region src/hooks/thor/logs/logUtils.d.ts
|
|
3068
3074
|
/**
|
|
@@ -3314,7 +3320,7 @@ declare const txReceiptQueryKey: (txId: string) => string[];
|
|
|
3314
3320
|
* @param blockTimeout Optional timeout in milliseconds to stop polling for receipt
|
|
3315
3321
|
* @returns Query result containing the transaction receipt
|
|
3316
3322
|
*/
|
|
3317
|
-
declare const useTxReceipt: (txId: string, blockTimeout?: number) =>
|
|
3323
|
+
declare const useTxReceipt: (txId: string, blockTimeout?: number) => _tanstack_react_query8.UseQueryResult<_vechain_sdk_network0.TransactionReceipt, Error>;
|
|
3318
3324
|
//#endregion
|
|
3319
3325
|
//#region src/hooks/thor/transactions/useGasEstimate.d.ts
|
|
3320
3326
|
declare const useGasEstimate: (thor: ThorClient, clauses: TransactionClause[], caller: string, options?: {
|
|
@@ -3336,7 +3342,7 @@ declare const SendTokenContent: ({
|
|
|
3336
3342
|
initialAmount,
|
|
3337
3343
|
initialToAddressOrDomain,
|
|
3338
3344
|
onBack: parentOnBack
|
|
3339
|
-
}: SendTokenContentProps) =>
|
|
3345
|
+
}: SendTokenContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3340
3346
|
//#endregion
|
|
3341
3347
|
//#region src/components/AccountModal/Contents/SendToken/SendTokenSummaryContent.d.ts
|
|
3342
3348
|
type SendTokenSummaryContentProps = {
|
|
@@ -3356,7 +3362,7 @@ declare const SendTokenSummaryContent: ({
|
|
|
3356
3362
|
amount,
|
|
3357
3363
|
selectedToken,
|
|
3358
3364
|
formattedTotalAmount
|
|
3359
|
-
}: SendTokenSummaryContentProps) =>
|
|
3365
|
+
}: SendTokenSummaryContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3360
3366
|
//#endregion
|
|
3361
3367
|
//#region src/components/AccountModal/Contents/SendToken/SelectTokenContent.d.ts
|
|
3362
3368
|
type Props$18 = {
|
|
@@ -3377,7 +3383,7 @@ declare const SelectTokenContent: ({
|
|
|
3377
3383
|
onBack,
|
|
3378
3384
|
showAllTokens,
|
|
3379
3385
|
excludedTokenSymbols
|
|
3380
|
-
}: Props$18) =>
|
|
3386
|
+
}: Props$18) => react_jsx_runtime4.JSX.Element;
|
|
3381
3387
|
//#endregion
|
|
3382
3388
|
//#region src/components/AccountModal/Contents/Receive/ReceiveTokenContent.d.ts
|
|
3383
3389
|
type Props$17 = {
|
|
@@ -3385,7 +3391,7 @@ type Props$17 = {
|
|
|
3385
3391
|
};
|
|
3386
3392
|
declare const ReceiveTokenContent: ({
|
|
3387
3393
|
setCurrentContent
|
|
3388
|
-
}: Props$17) =>
|
|
3394
|
+
}: Props$17) => react_jsx_runtime4.JSX.Element;
|
|
3389
3395
|
//#endregion
|
|
3390
3396
|
//#region src/components/AccountModal/Contents/Swap/SwapTokenContent.d.ts
|
|
3391
3397
|
type Props$16 = {
|
|
@@ -3397,7 +3403,7 @@ declare const SwapTokenContent: ({
|
|
|
3397
3403
|
setCurrentContent,
|
|
3398
3404
|
fromTokenAddress,
|
|
3399
3405
|
toTokenAddress
|
|
3400
|
-
}: Props$16) =>
|
|
3406
|
+
}: Props$16) => react_jsx_runtime4.JSX.Element;
|
|
3401
3407
|
//#endregion
|
|
3402
3408
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameContent.d.ts
|
|
3403
3409
|
type ChooseNameContentProps = {
|
|
@@ -3409,7 +3415,7 @@ declare const ChooseNameContent: ({
|
|
|
3409
3415
|
setCurrentContent,
|
|
3410
3416
|
onBack,
|
|
3411
3417
|
initialContentSource
|
|
3412
|
-
}: ChooseNameContentProps) =>
|
|
3418
|
+
}: ChooseNameContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3413
3419
|
//#endregion
|
|
3414
3420
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSearchContent.d.ts
|
|
3415
3421
|
type ChooseNameSearchContentProps = {
|
|
@@ -3421,7 +3427,7 @@ declare const ChooseNameSearchContent: ({
|
|
|
3421
3427
|
name: initialName,
|
|
3422
3428
|
setCurrentContent,
|
|
3423
3429
|
initialContentSource
|
|
3424
|
-
}: ChooseNameSearchContentProps) =>
|
|
3430
|
+
}: ChooseNameSearchContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3425
3431
|
//#endregion
|
|
3426
3432
|
//#region src/components/AccountModal/Contents/ChooseName/ChooseNameSummaryContent.d.ts
|
|
3427
3433
|
type ChooseNameSummaryContentProps = {
|
|
@@ -3439,7 +3445,7 @@ declare const ChooseNameSummaryContent: ({
|
|
|
3439
3445
|
isOwnDomain,
|
|
3440
3446
|
isUnsetting,
|
|
3441
3447
|
initialContentSource
|
|
3442
|
-
}: ChooseNameSummaryContentProps) =>
|
|
3448
|
+
}: ChooseNameSummaryContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3443
3449
|
//#endregion
|
|
3444
3450
|
//#region src/components/AccountModal/Contents/FAQ/FAQContent.d.ts
|
|
3445
3451
|
type FAQContentProps = {
|
|
@@ -3449,7 +3455,7 @@ type FAQContentProps = {
|
|
|
3449
3455
|
declare const FAQContent: ({
|
|
3450
3456
|
onGoBack,
|
|
3451
3457
|
showLanguageSelector
|
|
3452
|
-
}: FAQContentProps) =>
|
|
3458
|
+
}: FAQContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3453
3459
|
//#endregion
|
|
3454
3460
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationContent.d.ts
|
|
3455
3461
|
type AccountCustomizationContentProps = {
|
|
@@ -3459,7 +3465,7 @@ type AccountCustomizationContentProps = {
|
|
|
3459
3465
|
declare const CustomizationContent: ({
|
|
3460
3466
|
setCurrentContent,
|
|
3461
3467
|
initialContentSource
|
|
3462
|
-
}: AccountCustomizationContentProps) =>
|
|
3468
|
+
}: AccountCustomizationContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3463
3469
|
//#endregion
|
|
3464
3470
|
//#region src/components/AccountModal/Contents/Profile/Customization/CustomizationSummaryContent.d.ts
|
|
3465
3471
|
type CustomizationSummaryContentProps = {
|
|
@@ -3478,7 +3484,7 @@ declare const CustomizationSummaryContent: ({
|
|
|
3478
3484
|
setCurrentContent,
|
|
3479
3485
|
changes,
|
|
3480
3486
|
onDoneRedirectContent
|
|
3481
|
-
}: CustomizationSummaryContentProps) =>
|
|
3487
|
+
}: CustomizationSummaryContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3482
3488
|
//#endregion
|
|
3483
3489
|
//#region src/components/AccountModal/Contents/Profile/ProfileContent.d.ts
|
|
3484
3490
|
type ProfileContentProps = {
|
|
@@ -3492,7 +3498,7 @@ declare const ProfileContent: ({
|
|
|
3492
3498
|
setCurrentContent,
|
|
3493
3499
|
onLogoutSuccess,
|
|
3494
3500
|
switchFeedback
|
|
3495
|
-
}: ProfileContentProps) =>
|
|
3501
|
+
}: ProfileContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3496
3502
|
//#endregion
|
|
3497
3503
|
//#region src/components/AccountModal/Contents/UpgradeSmartAccount/UpgradeSmartAccountContent.d.ts
|
|
3498
3504
|
type UpgradeSmartAccountContentProps = {
|
|
@@ -3504,7 +3510,7 @@ declare const UpgradeSmartAccountContent: ({
|
|
|
3504
3510
|
setCurrentContent,
|
|
3505
3511
|
handleClose,
|
|
3506
3512
|
initialContent
|
|
3507
|
-
}: UpgradeSmartAccountContentProps) =>
|
|
3513
|
+
}: UpgradeSmartAccountContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3508
3514
|
//#endregion
|
|
3509
3515
|
//#region src/components/AccountModal/Contents/Assets/AssetsContent.d.ts
|
|
3510
3516
|
type AssetsContentProps = {
|
|
@@ -3512,7 +3518,7 @@ type AssetsContentProps = {
|
|
|
3512
3518
|
};
|
|
3513
3519
|
declare const AssetsContent: ({
|
|
3514
3520
|
setCurrentContent
|
|
3515
|
-
}: AssetsContentProps) =>
|
|
3521
|
+
}: AssetsContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3516
3522
|
//#endregion
|
|
3517
3523
|
//#region src/components/AccountModal/Contents/Assets/ManageCustomTokenContent.d.ts
|
|
3518
3524
|
type ManageCustomTokenContentProps = {
|
|
@@ -3520,7 +3526,7 @@ type ManageCustomTokenContentProps = {
|
|
|
3520
3526
|
};
|
|
3521
3527
|
declare const ManageCustomTokenContent: ({
|
|
3522
3528
|
setCurrentContent
|
|
3523
|
-
}: ManageCustomTokenContentProps) =>
|
|
3529
|
+
}: ManageCustomTokenContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3524
3530
|
//#endregion
|
|
3525
3531
|
//#region src/components/AccountModal/Contents/Bridge/BridgeContent.d.ts
|
|
3526
3532
|
type Props$15 = {
|
|
@@ -3528,7 +3534,7 @@ type Props$15 = {
|
|
|
3528
3534
|
};
|
|
3529
3535
|
declare const BridgeContent: ({
|
|
3530
3536
|
setCurrentContent
|
|
3531
|
-
}: Props$15) =>
|
|
3537
|
+
}: Props$15) => react_jsx_runtime4.JSX.Element;
|
|
3532
3538
|
//#endregion
|
|
3533
3539
|
//#region src/components/AccountModal/Contents/KitSettings/ChangeCurrencyContent.d.ts
|
|
3534
3540
|
type ChangeCurrencyContentProps = {
|
|
@@ -3536,7 +3542,7 @@ type ChangeCurrencyContentProps = {
|
|
|
3536
3542
|
};
|
|
3537
3543
|
declare const ChangeCurrencyContent: ({
|
|
3538
3544
|
setCurrentContent
|
|
3539
|
-
}: ChangeCurrencyContentProps) =>
|
|
3545
|
+
}: ChangeCurrencyContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3540
3546
|
//#endregion
|
|
3541
3547
|
//#region src/components/AccountModal/Contents/KitSettings/LanguageSettingsContent.d.ts
|
|
3542
3548
|
type Props$14 = {
|
|
@@ -3544,7 +3550,7 @@ type Props$14 = {
|
|
|
3544
3550
|
};
|
|
3545
3551
|
declare const LanguageSettingsContent: ({
|
|
3546
3552
|
setCurrentContent
|
|
3547
|
-
}: Props$14) =>
|
|
3553
|
+
}: Props$14) => react_jsx_runtime4.JSX.Element;
|
|
3548
3554
|
//#endregion
|
|
3549
3555
|
//#region src/components/AccountModal/Contents/KitSettings/GasTokenSettingsContent.d.ts
|
|
3550
3556
|
type Props$13 = {
|
|
@@ -3552,7 +3558,7 @@ type Props$13 = {
|
|
|
3552
3558
|
};
|
|
3553
3559
|
declare const GasTokenSettingsContent: ({
|
|
3554
3560
|
setCurrentContent
|
|
3555
|
-
}: Props$13) =>
|
|
3561
|
+
}: Props$13) => react_jsx_runtime4.JSX.Element;
|
|
3556
3562
|
//#endregion
|
|
3557
3563
|
//#region src/components/AccountModal/Contents/KitSettings/SettingsContent.d.ts
|
|
3558
3564
|
type SettingsContentProps = {
|
|
@@ -3562,7 +3568,7 @@ type SettingsContentProps = {
|
|
|
3562
3568
|
declare const SettingsContent: ({
|
|
3563
3569
|
setCurrentContent,
|
|
3564
3570
|
onLogoutSuccess
|
|
3565
|
-
}: SettingsContentProps) =>
|
|
3571
|
+
}: SettingsContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3566
3572
|
//#endregion
|
|
3567
3573
|
//#region src/components/AccountModal/Contents/TermsAndPrivacy/TermsAndPrivacyContent.d.ts
|
|
3568
3574
|
type TermsAndPrivacyContentProps = {
|
|
@@ -3570,7 +3576,7 @@ type TermsAndPrivacyContentProps = {
|
|
|
3570
3576
|
};
|
|
3571
3577
|
declare const TermsAndPrivacyContent: ({
|
|
3572
3578
|
onGoBack
|
|
3573
|
-
}: TermsAndPrivacyContentProps) =>
|
|
3579
|
+
}: TermsAndPrivacyContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3574
3580
|
//#endregion
|
|
3575
3581
|
//#region src/components/AccountModal/Contents/DisconnectConfirmation/DisconnectConfirmContent.d.ts
|
|
3576
3582
|
type DisconnectConfirmContentProps = {
|
|
@@ -3586,7 +3592,7 @@ declare const DisconnectConfirmContent: ({
|
|
|
3586
3592
|
onClose,
|
|
3587
3593
|
showCloseButton,
|
|
3588
3594
|
text
|
|
3589
|
-
}: DisconnectConfirmContentProps) =>
|
|
3595
|
+
}: DisconnectConfirmContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3590
3596
|
//#endregion
|
|
3591
3597
|
//#region src/components/AccountModal/Contents/SelectWallet/SelectWalletContent.d.ts
|
|
3592
3598
|
type Props$12 = {
|
|
@@ -3599,7 +3605,7 @@ declare const SelectWalletContent: ({
|
|
|
3599
3605
|
setCurrentContent,
|
|
3600
3606
|
returnTo,
|
|
3601
3607
|
onLogoutSuccess: _onLogoutSuccess
|
|
3602
|
-
}: Props$12) =>
|
|
3608
|
+
}: Props$12) => react_jsx_runtime4.JSX.Element;
|
|
3603
3609
|
//#endregion
|
|
3604
3610
|
//#region src/components/AccountModal/Contents/SelectWallet/RemoveWalletConfirmContent.d.ts
|
|
3605
3611
|
type RemoveWalletConfirmContentProps = {
|
|
@@ -3615,7 +3621,7 @@ declare const RemoveWalletConfirmContent: ({
|
|
|
3615
3621
|
onConfirm,
|
|
3616
3622
|
onBack,
|
|
3617
3623
|
onClose
|
|
3618
|
-
}: RemoveWalletConfirmContentProps) =>
|
|
3624
|
+
}: RemoveWalletConfirmContentProps) => react_jsx_runtime4.JSX.Element;
|
|
3619
3625
|
//#endregion
|
|
3620
3626
|
//#region src/components/AccountModal/Contents/Ecosystem/Components/CategoryFilterSection.d.ts
|
|
3621
3627
|
type CategoryFilter = string | null;
|
|
@@ -3743,7 +3749,7 @@ declare const AccountModal: ({
|
|
|
3743
3749
|
isOpen,
|
|
3744
3750
|
onClose,
|
|
3745
3751
|
initialContent
|
|
3746
|
-
}: Props$11) =>
|
|
3752
|
+
}: Props$11) => react_jsx_runtime4.JSX.Element;
|
|
3747
3753
|
//#endregion
|
|
3748
3754
|
//#region src/components/AccountModal/Components/AccountDetailsButton.d.ts
|
|
3749
3755
|
interface AccountDetailsButtonProps {
|
|
@@ -3765,7 +3771,7 @@ declare const AccountDetailsButton: ({
|
|
|
3765
3771
|
onClick,
|
|
3766
3772
|
leftImage,
|
|
3767
3773
|
isActive
|
|
3768
|
-
}: AccountDetailsButtonProps) =>
|
|
3774
|
+
}: AccountDetailsButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
3769
3775
|
//#endregion
|
|
3770
3776
|
//#region src/components/AccountModal/Components/ActionButton.d.ts
|
|
3771
3777
|
type ActionButtonProps = {
|
|
@@ -3807,7 +3813,7 @@ declare const ActionButton: ({
|
|
|
3807
3813
|
extraContent,
|
|
3808
3814
|
dataTestId,
|
|
3809
3815
|
variant
|
|
3810
|
-
}: ActionButtonProps) =>
|
|
3816
|
+
}: ActionButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
3811
3817
|
//#endregion
|
|
3812
3818
|
//#region src/components/AccountModal/Components/AccountSelector.d.ts
|
|
3813
3819
|
type Props$10 = {
|
|
@@ -3827,7 +3833,7 @@ declare const AccountSelector: ({
|
|
|
3827
3833
|
onClose,
|
|
3828
3834
|
mt,
|
|
3829
3835
|
style
|
|
3830
|
-
}: Props$10) =>
|
|
3836
|
+
}: Props$10) => react_jsx_runtime4.JSX.Element;
|
|
3831
3837
|
//#endregion
|
|
3832
3838
|
//#region src/components/AccountModal/Components/BalanceSection.d.ts
|
|
3833
3839
|
declare const BalanceSection: ({
|
|
@@ -3838,7 +3844,7 @@ declare const BalanceSection: ({
|
|
|
3838
3844
|
mb?: number;
|
|
3839
3845
|
mt?: number;
|
|
3840
3846
|
onAssetsClick?: () => void;
|
|
3841
|
-
}) =>
|
|
3847
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
3842
3848
|
//#endregion
|
|
3843
3849
|
//#region src/components/AccountModal/Components/QuickActionsSection.d.ts
|
|
3844
3850
|
type Props$9 = {
|
|
@@ -3848,7 +3854,7 @@ type Props$9 = {
|
|
|
3848
3854
|
declare const QuickActionsSection: ({
|
|
3849
3855
|
mt,
|
|
3850
3856
|
setCurrentContent
|
|
3851
|
-
}: Props$9) =>
|
|
3857
|
+
}: Props$9) => react_jsx_runtime4.JSX.Element;
|
|
3852
3858
|
//#endregion
|
|
3853
3859
|
//#region src/components/AccountModal/Components/Alerts/FeatureAnnouncementCard.d.ts
|
|
3854
3860
|
type FeatureAnnouncementCardProps = {
|
|
@@ -3856,16 +3862,16 @@ type FeatureAnnouncementCardProps = {
|
|
|
3856
3862
|
};
|
|
3857
3863
|
declare const FeatureAnnouncementCard: ({
|
|
3858
3864
|
setCurrentContent
|
|
3859
|
-
}: FeatureAnnouncementCardProps) =>
|
|
3865
|
+
}: FeatureAnnouncementCardProps) => react_jsx_runtime4.JSX.Element;
|
|
3860
3866
|
//#endregion
|
|
3861
3867
|
//#region src/components/AccountModal/Components/Alerts/ExchangeWarningAlert.d.ts
|
|
3862
|
-
declare const ExchangeWarningAlert: () =>
|
|
3868
|
+
declare const ExchangeWarningAlert: () => react_jsx_runtime4.JSX.Element;
|
|
3863
3869
|
//#endregion
|
|
3864
3870
|
//#region src/components/AccountModal/Components/Alerts/DomainRequiredAlert.d.ts
|
|
3865
|
-
declare const DomainRequiredAlert: () =>
|
|
3871
|
+
declare const DomainRequiredAlert: () => react_jsx_runtime4.JSX.Element;
|
|
3866
3872
|
//#endregion
|
|
3867
3873
|
//#region src/components/AccountModal/Components/CrossAppConnectionSecurityCard.d.ts
|
|
3868
|
-
declare const CrossAppConnectionSecurityCard: () =>
|
|
3874
|
+
declare const CrossAppConnectionSecurityCard: () => react_jsx_runtime4.JSX.Element;
|
|
3869
3875
|
//#endregion
|
|
3870
3876
|
//#region src/components/common/ModalBackButton.d.ts
|
|
3871
3877
|
type BackButtonProps = {
|
|
@@ -3874,7 +3880,7 @@ type BackButtonProps = {
|
|
|
3874
3880
|
declare const ModalBackButton: ({
|
|
3875
3881
|
onClick,
|
|
3876
3882
|
...props
|
|
3877
|
-
}: BackButtonProps) =>
|
|
3883
|
+
}: BackButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
3878
3884
|
//#endregion
|
|
3879
3885
|
//#region src/components/common/AddressDisplay.d.ts
|
|
3880
3886
|
type Props$8 = {
|
|
@@ -3892,13 +3898,13 @@ declare const AddressDisplay: ({
|
|
|
3892
3898
|
showHumanAddress,
|
|
3893
3899
|
setCurrentContent,
|
|
3894
3900
|
onLogout
|
|
3895
|
-
}: Props$8) =>
|
|
3901
|
+
}: Props$8) => react_jsx_runtime4.JSX.Element;
|
|
3896
3902
|
//#endregion
|
|
3897
3903
|
//#region src/components/common/VersionFooter.d.ts
|
|
3898
3904
|
type Props$7 = {} & Omit<StackProps, 'dangerouslySetInnerHTML'>;
|
|
3899
3905
|
declare const VersionFooter: ({
|
|
3900
3906
|
...props
|
|
3901
|
-
}: Props$7) =>
|
|
3907
|
+
}: Props$7) => react_jsx_runtime4.JSX.Element;
|
|
3902
3908
|
//#endregion
|
|
3903
3909
|
//#region src/components/common/StickyHeaderContainer.d.ts
|
|
3904
3910
|
type Props$6 = {
|
|
@@ -3909,7 +3915,7 @@ declare const useStickyHeaderContext: () => {
|
|
|
3909
3915
|
};
|
|
3910
3916
|
declare const StickyHeaderContainer: ({
|
|
3911
3917
|
children
|
|
3912
|
-
}: Props$6) =>
|
|
3918
|
+
}: Props$6) => react_jsx_runtime4.JSX.Element;
|
|
3913
3919
|
//#endregion
|
|
3914
3920
|
//#region src/components/common/StickyFooterContainer.d.ts
|
|
3915
3921
|
type Props$5 = {
|
|
@@ -3917,7 +3923,7 @@ type Props$5 = {
|
|
|
3917
3923
|
};
|
|
3918
3924
|
declare const StickyFooterContainer: ({
|
|
3919
3925
|
children
|
|
3920
|
-
}: Props$5) =>
|
|
3926
|
+
}: Props$5) => react_jsx_runtime4.JSX.Element;
|
|
3921
3927
|
//#endregion
|
|
3922
3928
|
//#region src/components/common/BaseModal.d.ts
|
|
3923
3929
|
type BaseModalProps = {
|
|
@@ -3966,7 +3972,7 @@ declare const BaseModal: ({
|
|
|
3966
3972
|
mobileMaxHeight,
|
|
3967
3973
|
desktopMinHeight,
|
|
3968
3974
|
desktopMaxHeight
|
|
3969
|
-
}: BaseModalProps) =>
|
|
3975
|
+
}: BaseModalProps) => react_jsx_runtime4.JSX.Element;
|
|
3970
3976
|
//#endregion
|
|
3971
3977
|
//#region src/components/common/AssetButton.d.ts
|
|
3972
3978
|
type AssetButtonProps = ButtonProps & {
|
|
@@ -3985,7 +3991,7 @@ declare const AssetButton: ({
|
|
|
3985
3991
|
isDisabled,
|
|
3986
3992
|
onClick,
|
|
3987
3993
|
...buttonProps
|
|
3988
|
-
}: AssetButtonProps) =>
|
|
3994
|
+
}: AssetButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
3989
3995
|
//#endregion
|
|
3990
3996
|
//#region src/components/common/AddressDisplayCard.d.ts
|
|
3991
3997
|
type AddressDisplayCardProps = {
|
|
@@ -4005,7 +4011,7 @@ declare const AddressDisplayCard: ({
|
|
|
4005
4011
|
hideAddress,
|
|
4006
4012
|
balance,
|
|
4007
4013
|
tokenAddress
|
|
4008
|
-
}: AddressDisplayCardProps) =>
|
|
4014
|
+
}: AddressDisplayCardProps) => react_jsx_runtime4.JSX.Element;
|
|
4009
4015
|
//#endregion
|
|
4010
4016
|
//#region src/components/common/ModalFAQButton.d.ts
|
|
4011
4017
|
type FAQButtonProps = {
|
|
@@ -4014,13 +4020,13 @@ type FAQButtonProps = {
|
|
|
4014
4020
|
declare const ModalFAQButton: ({
|
|
4015
4021
|
onClick,
|
|
4016
4022
|
...props
|
|
4017
|
-
}: FAQButtonProps) =>
|
|
4023
|
+
}: FAQButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
4018
4024
|
//#endregion
|
|
4019
4025
|
//#region src/components/common/ScrollToTopWrapper.d.ts
|
|
4020
4026
|
declare const ScrollToTopWrapper: ({
|
|
4021
4027
|
children,
|
|
4022
4028
|
...props
|
|
4023
|
-
}: StackProps) =>
|
|
4029
|
+
}: StackProps) => react_jsx_runtime4.JSX.Element;
|
|
4024
4030
|
//#endregion
|
|
4025
4031
|
//#region src/components/common/AccountAvatar.d.ts
|
|
4026
4032
|
type AccountAvatarProps = {
|
|
@@ -4030,7 +4036,7 @@ type AccountAvatarProps = {
|
|
|
4030
4036
|
declare const AccountAvatar: ({
|
|
4031
4037
|
wallet,
|
|
4032
4038
|
props
|
|
4033
|
-
}: AccountAvatarProps) =>
|
|
4039
|
+
}: AccountAvatarProps) => react_jsx_runtime4.JSX.Element;
|
|
4034
4040
|
//#endregion
|
|
4035
4041
|
//#region src/components/common/TransactionButtonAndStatus.d.ts
|
|
4036
4042
|
type TransactionButtonAndStatusProps = {
|
|
@@ -4072,7 +4078,7 @@ declare const TransactionButtonAndStatus: ({
|
|
|
4072
4078
|
isLoadingGasEstimation,
|
|
4073
4079
|
showGasEstimationError,
|
|
4074
4080
|
context
|
|
4075
|
-
}: TransactionButtonAndStatusProps) =>
|
|
4081
|
+
}: TransactionButtonAndStatusProps) => react_jsx_runtime4.JSX.Element;
|
|
4076
4082
|
//#endregion
|
|
4077
4083
|
//#region src/components/common/ModalNotificationButton.d.ts
|
|
4078
4084
|
type NotificationButtonProps = {
|
|
@@ -4083,7 +4089,7 @@ declare const ModalNotificationButton: ({
|
|
|
4083
4089
|
onClick,
|
|
4084
4090
|
hasUnreadNotifications,
|
|
4085
4091
|
...props
|
|
4086
|
-
}: NotificationButtonProps) =>
|
|
4092
|
+
}: NotificationButtonProps) => react_jsx_runtime4.JSX.Element;
|
|
4087
4093
|
//#endregion
|
|
4088
4094
|
//#region src/components/common/GasFeeSummary.d.ts
|
|
4089
4095
|
interface GasFeeSummaryProps {
|
|
@@ -4119,7 +4125,7 @@ declare const GasFeeTokenSelector: ({
|
|
|
4119
4125
|
availableTokens,
|
|
4120
4126
|
tokenEstimations,
|
|
4121
4127
|
walletAddress
|
|
4122
|
-
}: GasFeeTokenSelectorProps) =>
|
|
4128
|
+
}: GasFeeTokenSelectorProps) => react_jsx_runtime4.JSX.Element;
|
|
4123
4129
|
//#endregion
|
|
4124
4130
|
//#region src/components/common/InlineFeedback.d.ts
|
|
4125
4131
|
type Props$4 = {
|
|
@@ -4131,7 +4137,7 @@ declare const InlineFeedback: ({
|
|
|
4131
4137
|
message,
|
|
4132
4138
|
duration,
|
|
4133
4139
|
onClose
|
|
4134
|
-
}: Props$4) =>
|
|
4140
|
+
}: Props$4) => react_jsx_runtime4.JSX.Element;
|
|
4135
4141
|
//#endregion
|
|
4136
4142
|
//#region src/components/common/WalletSwitchFeedback.d.ts
|
|
4137
4143
|
type Props$3 = {
|
|
@@ -4148,7 +4154,7 @@ type Props$3 = {
|
|
|
4148
4154
|
*/
|
|
4149
4155
|
declare const WalletSwitchFeedback: ({
|
|
4150
4156
|
showFeedback
|
|
4151
|
-
}: Props$3) =>
|
|
4157
|
+
}: Props$3) => react_jsx_runtime4.JSX.Element | null;
|
|
4152
4158
|
//#endregion
|
|
4153
4159
|
//#region src/components/UpgradeSmartAccountModal/Contents/SuccessfulOperationContent.d.ts
|
|
4154
4160
|
type SuccessfulOperationContentProps = {
|
|
@@ -4178,7 +4184,7 @@ declare const UpgradeSmartAccountModal: ({
|
|
|
4178
4184
|
isOpen,
|
|
4179
4185
|
onClose,
|
|
4180
4186
|
style
|
|
4181
|
-
}: Props$2) =>
|
|
4187
|
+
}: Props$2) => react_jsx_runtime4.JSX.Element;
|
|
4182
4188
|
//#endregion
|
|
4183
4189
|
//#region src/components/LegalDocumentsModal/LegalDocumentsModal.d.ts
|
|
4184
4190
|
type Props$1 = {
|
|
@@ -4193,7 +4199,7 @@ declare const LegalDocumentsModal: ({
|
|
|
4193
4199
|
onAgree,
|
|
4194
4200
|
handleLogout,
|
|
4195
4201
|
onlyOptionalDocuments
|
|
4196
|
-
}: Props$1) =>
|
|
4202
|
+
}: Props$1) => react_jsx_runtime4.JSX.Element;
|
|
4197
4203
|
//#endregion
|
|
4198
4204
|
//#region src/components/LegalDocumentsModal/Components/LegalDocumentItem.d.ts
|
|
4199
4205
|
type Props = {
|
|
@@ -4205,7 +4211,7 @@ declare const LegalDocumentItem: ({
|
|
|
4205
4211
|
document,
|
|
4206
4212
|
register,
|
|
4207
4213
|
isText
|
|
4208
|
-
}: Props) =>
|
|
4214
|
+
}: Props) => react_jsx_runtime4.JSX.Element;
|
|
4209
4215
|
//#endregion
|
|
4210
4216
|
//#region src/providers/ModalProvider.d.ts
|
|
4211
4217
|
type AccountModalOptions = {
|
|
@@ -4240,7 +4246,7 @@ declare const ModalProvider: ({
|
|
|
4240
4246
|
children
|
|
4241
4247
|
}: {
|
|
4242
4248
|
children: ReactNode;
|
|
4243
|
-
}) =>
|
|
4249
|
+
}) => react_jsx_runtime4.JSX.Element;
|
|
4244
4250
|
//#endregion
|
|
4245
4251
|
//#region src/config/index.d.ts
|
|
4246
4252
|
type AppConfig = {
|
|
@@ -4286,4 +4292,4 @@ type AppConfig = {
|
|
|
4286
4292
|
declare const getConfig: (env: NETWORK_TYPE) => AppConfig;
|
|
4287
4293
|
//#endregion
|
|
4288
4294
|
export { LanguageSettingsContent as $, useRefreshMetadata as $a, useAccountCustomizationModal as $i, useBuildClauses as $n, getIsDomainProtectedQueryKey as $o, resolveMediaTypeFromMimeType as $r, VechainKitProviderProps as $s, useUpgradeSmartAccount as $t, AddressDisplay as A, IpfsImage as Aa, NFTMediaType as Ac, notFoundImage as Ai, getAccountBalanceQueryKey as An, useTokenPrices as Ao, buildCallClauses as Ar, EcosystemButton as As, useMfaEnrollment as At, AccountDetailsButton as B, useXAppsShares as Ba, useNotificationAlerts as Bi, estimateGas as Bn, useGetResolverAddress as Bo, validate as Br, LegalDocumentsProvider as Bs, useTransferVET as Bt, AddressDisplayCard as C, useSwapTransaction as Ca, CURRENCY_SYMBOLS as Cc, TogglePassportCheck as Ci, getCurrentAccountImplementationVersion as Cn, useCustomTokens as Co, removeLocalStorageItem as Cr, ConnectPopover as Cs, ReceiveTokenContent as Ct, StickyHeaderContainer as D, imageCompressionOptions as Da, EnhancedClause as Dc, VECHAIN_PRIVY_APP_ID as Di, getAccountImplementationAddressQueryKey as Dn, TokenWithValue as Do, MultipleClausesCallParameters as Dr, PasskeyLoginButton as Ds, ThorClient$1 as Dt, StickyFooterContainer as E, compressImages as Ea, ENSRecords as Ec, VECHAIN_KIT_TERMS_CONFIG as Ei, getAccountImplementationAddress as En, useTotalBalance as Eo, setLocalStorageItem as Er, DappKitButton as Es, SendTokenContent as Et, FeatureAnnouncementCard as F, useIpfsImageList as Fa, TransactionStatus as Fc, useLoginWithVeChain as Fi, useGenericDelegatorFeeEstimationParams as Fn, getAvatarLegacyQueryKey as Fo, compare as Fr, ErrorContent as Fs, txReceiptQueryKey as Ft, RemoveWalletConfirmContentProps as G, useSwitchWallet as Ga, ProfileModalProvider as Gi, EcosystemShortcut as Gn, useGetTextRecords as Go, MinXNodeLevel as Gr, PrivyWalletProvider as Gs, GetEventsProps as Gt, AccountModalContentTypes as H, getXAppMetadata as Ha, SettingsModalProvider as Hi, signVip191Transaction as Hn, useUpdateTextRecord as Ho, simpleHash as Hr, ColorModeSync as Hs, useTransferERC20 as Ht, QuickActionsSection as I, getIpfsMetadata as Ia, TransactionStatusErrorType as Ic, useLoginWithOAuth$1 as Ii, useGasTokenSelection as In, useGetAvatarLegacy as Io, isInvalid as Ir, LoadingContent as Is, useTxReceipt as It, DisconnectConfirmContentProps as J, useWalletMetadata as Ja, useUpgradeSmartAccountModal as Ji, LocalStorageKey as Jn, Domain as Jo, allNodeStrengthLevelToName as Jr, LegalDocument as Js, getChainId as Jt, SelectWalletContent as K, StoredWallet as Ka, useProfileModal as Ki, useEcosystemShortcuts as Kn, getAvatarQueryKey as Ko, NodeStrengthLevelToImage as Kr, PrivyWalletProviderContextType as Ks, getAllEventLogs as Kt, BalanceSection as L, getIpfsMetadataQueryKey as La, VePassportUserStatus as Lc, useLoginWithPasskey$1 as Li, decodeRawTx as Ln, getAvatarOfAddressQueryKey as Lo, isValid as Lr, MainContent as Ls, BuildTransactionProps as Lt, CrossAppConnectionSecurityCard as M, getIpfsImage as Ma, PrivyLoginMethod as Mc, fetchAppHubApps as Mi, UseEstimateAllTokensParams as Mn, useTokenBalances as Mo, executeMultipleClausesCall as Mr, EmailLoginButton as Ms, useSetWalletRecovery as Mt, DomainRequiredAlert as N, getIpfsImageQueryKey as Na, SmartAccount as Nc, getAppHubAppsQueryKey as Ni, useEstimateAllTokens as Nn, useUnsetDomain as No, isValidUrl as Nr, ConnectionButton as Ns, useThor$1 as Nt, useStickyHeaderContext as O, useUploadImages as Oa, ExecuteBatchWithAuthorizationSignData as Oc, getENV as Oi, useAccountImplementationAddress as On, useTokensWithValues as Oo, MultipleClausesCallReturnType as Or, LoginWithGoogleButton as Os, useDAppKitWallet as Ot, ExchangeWarningAlert as P, useIpfsImage as Pa, TokenBalance as Pc, useAppHubApps as Pi, useGenericDelegatorFeeEstimation as Pn, getAvatarLegacy as Po, addPrefix as Pr, EcosystemContent as Ps, useGasEstimate as Pt, GasTokenSettingsContent as Q, useRoundXApps as Qa, AccountCustomizationModalProvider as Qi, buildSingleAuthorizationTypedData as Qn, useGetDomainsOfAddress as Qo, convertUriToUrl as Qr, VeChainKitProvider as Qs, useCurrentBlock as Qt, AccountSelector as R, useIpfsMetadata as Ra, Wallet as Rc, useSignTypedData as Ri, delegateAuthorized as Rn, useGetAvatarOfAddress as Ro, normalize as Rr, ConnectModal as Rs, useBuildTransaction as Rt, ModalFAQButton as S, useSwapQuotes as Sa, CURRENCY as Sc, TOKEN_LOGO_COMPONENTS as Si, useGetAccountAddress as Sn, useGetB3trBalance as So, isOnline as Sr, WalletDisplayVariant as Ss, SwapTokenContent as St, BaseModal as T, UploadedImage as Ta, CrossAppConnectionCache as Tc, VECHAIN_KIT_STORAGE_KEYS as Ti, useCurrentAccountImplementationVersion as Tn, useCurrentAllocationsRoundId as To, safeWindowOpen as Tr, VeChainWithPrivyLoginButton as Ts, SendTokenSummaryContent as Tt, SwitchFeedback as U, useXAppMetadata as Ua, useSettingsModal as Ui, useGenericDelegator as Un, getTextRecords as Uo, TIME as Ur, VechainKitThemeProvider as Us, UseSendTransactionReturnValue as Ut, AccountModal as V, XAppMetadata as Va, useNotifications as Vi, getDepositAccount as Vn, buildClauses as Vo, isRejectionError as Vr, useLegalDocuments as Vs, buildERC20Clauses as Vt, RemoveWalletConfirmContent as W, UseSwitchWalletReturnType as Wa, useAccountModalOptions as Wi, useCrossAppConnectionCache as Wn, getTextRecordsQueryKey as Wo, EconomicNodeStrengthLevelToName as Wr, useVechainKitThemeConfig as Ws, useSendTransaction as Wt, SettingsContent as X, useWallet$1 as Xa, ReceiveModalProvider as Xi, BuildClausesParams as Xn, getDomainsOfAddress as Xo, gmNfts as Xr, VeChainKitConfig as Xs, useGetChainId as Xt, TermsAndPrivacyContent as Y, UseWalletReturnType as Ya, useLoginModalContent as Yi, useLocalStorage as Yn, DomainsResponse as Yo, buildQueryString as Yr, LegalDocumentOptions as Ys, getChainIdQueryKey as Yt, SettingsContentProps as Z, getRoundXAppsQueryKey as Za, useReceiveModal as Zi, buildBatchAuthorizationTypedData as Zn, getDomainsOfAddressQueryKey as Zo, xNodeToGMstartingLevel as Zr, VeChainKitContext as Zs, currentBlockQueryKey as Zt, ModalNotificationButton as _, useTransactionModal as _a, GasTokenSelection as _c, ENV as _i, useHasV1SmartAccount as _n, useGetCustomTokenInfo as _o, getDocumentTitle as _r, TransactionModal as _s, ChooseNameSummaryContentProps as _t, useModal as a, useExploreEcosystemModal as aa, CostLevel as ac, isValidAddress as ai, useUpgradeRequired as an, useIsPerson as ao, useScrollToTop as ar, useEnsRecordExists as as, AssetsContent as at, AccountAvatar as b, ConnectModalProvider as ba, ENS_TEXT_RECORDS as bc, SUPPORTED_GAS_TOKENS as bi, getAccountAddress as bn, useGetCustomTokenBalances as bo, hasNavigator as br, WalletButton as bs, ChooseNameContent as bt, LegalDocumentsModal as c, SendTokenModalProvider as ca, EstimationResponse as cc, randomTransactionUser as ci, getSmartAccountQueryKey as cn, PRICE_FEED_IDS as co, useFeatureAnnouncement as cr, fetchPrivyStatus as cs, UpgradeSmartAccountContentProps as ct, UpgradeSmartAccountModalContentsTypes as d, useChooseNameModal as da, VthoPerGasAtSpeed as dc, humanAddress as di, useRefreshFactoryQueries as dn, getTokenUsdPriceQueryKey as do, useCurrency as dr, getPrivyAppInfoQueryKey as ds, CustomizationSummaryContent as dt, FAQModalProvider as ea, useVeChainKitConfig as ec, toIPFSURL as ei, getUpgradeRequiredForAccount as en, useRefreshBalances as eo, GetEventsKeyParams as er, useIsDomainProtected as es, ChangeCurrencyContent as et, UpgradeSmartAccountModalStyle as f, WalletModalProvider as fa, calculateTotalCost as fc, humanDomain as fi, getIsDeployed as fn, useGetTokenUsdPrice as fo, getCallClauseQueryKey as fr, useFetchAppInfo as fs, CustomizationSummaryContentProps as ft, GasFeeSummary as g, TransactionModalProvider as ga, GasTokenPreferences as gc, DEFAULT_PRIVY_ECOSYSTEM_APPS as gi, getHasV1SmartAccountQueryKey as gn, getTokenInfo$1 as go, copyToClipboard as gr, ShareButtons as gs, ChooseNameSummaryContent as gt, GasFeeTokenSelector as h, useTransactionToast as ha, GasTokenInfo as hc, DEFAULT_GAS_TOKEN_PREFERENCES as hi, getHasV1SmartAccount as hn, getCustomTokenInfoQueryKey as ho, useMultipleClausesCall as hr, TransactionModalContent as hs, FAQContent as ht, ModalProvider as i, ExploreEcosystemModalProvider as ia, LegalDocumentType as ic, compareListOfAddresses as ii, getUpgradeRequiredQueryKey as in, getIsPersonQueryKey as io, useEvents as ir, getEnsRecordExistsQueryKey as is, ManageCustomTokenContentProps as it, ModalBackButton as j, MAX_IMAGE_SIZE as ja, PrivyAppInfo as jc, AppHubApp as ji, useAccountBalance as jn, WalletTokenBalance as jo, executeCallClause as jr, VeChainLoginButton as js, usePrivy$1 as jt, VersionFooter as k, useIpfsMetadatas as ka, ExecuteWithAuthorizationSignData as kc, getGenericDelegatorUrl as ki, getAccountBalance as kn, ExchangeRates as ko, ViewFunctionResult as kr, PrivyButton as ks, useDAppKitWalletModal as kt, LegalDocumentsModalContentsTypes as l, useSendTokenModal as la, Rate as lc, formatTokenBalance as li, useSmartAccount as ln, SupportedToken as lo, useCurrentCurrency as lr, useFetchPrivyStatus as ls, ProfileContent as lt, InlineFeedback as m, TransactionToastProvider as ma, GasTokenEstimate as mc, isZero as mi, useIsSmartAccountDeployed as mn, useGetErc20Balance as mo, useCallClause as mr, TransactionToast as ms, CustomizationContent as mt, getConfig as n, NotificationsModalProvider as na, LegalDocumentAgreement as nc, validateIpfsUri as ni, useUpgradeRequiredForAccount as nn, XApp as no, decodeEventLog$1 as nr, useClaimVetDomain as ns, BridgeContent as nt, DAppKitWalletButton as o, SwapTokenModalProvider as oa, DepositAccount as oc, leftPadWithZeros as oi, SmartAccountReturnType as on, getVot3BalanceQueryKey as oo, useIsPWA as or, getVechainDomainQueryKey as os, AssetsContentProps as ot, WalletSwitchFeedback as p, useWalletModal as pa, formatGasCost as pc, humanNumber as pi, getIsDeployedQueryKey as pn, getErc20BalanceQueryKey as po, getCallClauseQueryKeyWithArgs as pr, AccountMainContent as ps, AccountCustomizationContentProps as pt, DisconnectConfirmContent as q, useWalletStorage as qa, UpgradeSmartAccountModalProvider as qi, useSyncableLocalStorage as qn, useGetAvatar as qo, XNodeStrengthLevelToName as qr, usePrivyWalletProvider as qs, getEventLogs as qt, AccountModalOptions as r, useNotificationsModal as ra, LegalDocumentSource as rc, compareAddresses as ri, getUpgradeRequired as rn, useMostVotedAppsInRound as ro, getEventsKey as rr, useClaimVeWorldSubdomain as rs, ManageCustomTokenContent as rt, LegalDocumentItem as s, useSwapTokenModal as sa, EstimatedGas as sc, regexPattern as si, getSmartAccount as sn, useGetVot3Balance as so, useGetNodeUrl as sr, useVechainDomain as ss, UpgradeSmartAccountContent as st, AppConfig as t, useFAQModal as ta, EnrichedLegalDocument as tc, uploadBlobToIPFS as ti, getUpgradeRequiredForAccountQueryKey as tn, MostVotedAppsInRoundReturnType as to, UseEventsParams as tr, buildVetDomainClauses as ts, ChangeCurrencyContentProps as tt, UpgradeSmartAccountModal as u, ChooseNameModalProvider as ua, TransactionCost as uc, getPicassoImage as ui, useRefreshSmartAccountQueries as un, getTokenUsdPrice as uo, useCurrentLanguage as ur, fetchPrivyAppInfo as us, ProfileContentProps as ut, TransactionButtonAndStatus as v, AccountModalProvider as va, GasTokenType as vc, NON_TRANSFERABLE_TOKEN_SYMBOLS as vi, getAccountVersionQueryKey as vn, TokenWithBalance as vo, getLocalStorageItem as vr, TransactionModalProps as vs, ChooseNameSearchContent as vt, AssetButton as w, useSingleImageUpload as wa, ConnectionSource as wc, VECHAIN_KIT_COOKIES_CONFIG as wi, getCurrentAccountImplementationVersionQueryKey as wn, getCurrentAllocationsRoundIdQueryKey as wo, safeQuerySelector as wr, LoginWithGithubButton as ws, SelectTokenContent as wt, ScrollToTopWrapper as x, useConnectModal as xa, TextRecords as xc, TOKEN_LOGOS as xi, getAccountAddressQueryKey as xn, getB3trBalanceQueryKey as xo, isBrowser as xr, WalletButtonProps as xs, ChooseNameContentProps as xt, TransactionButtonAndStatusProps as y, useAccountModal as ya, TransactionSpeed as yc, PrivyEcosystemApp as yi, useGetAccountVersion as yn, getCustomTokenBalanceQueryKey as yo, getWindowOrigin as yr, SocialIcons as ys, ChooseNameSearchContentProps as yt, ActionButton as z, getXAppsSharesQueryKey as za, useSignMessage as zi, estimateAndBuildTxBody as zn, getResolverAddressQueryKey as zo, removePrefix as zr, ConnectModalContentsTypes as zs, buildVETClauses as zt };
|
|
4289
|
-
//# sourceMappingURL=index-
|
|
4295
|
+
//# sourceMappingURL=index-CpmIWCFY.d.mts.map
|