@matchain/matchid-sdk-react 0.1.48-alpha.7 → 0.1.48-alpha.9
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/icon/index.d.mts +1 -1
- package/dist/assets/icon/index.d.ts +1 -1
- package/dist/{chunk-2CK7JQWH.mjs → chunk-CI63DTB6.mjs} +240 -41
- package/dist/chunk-CI63DTB6.mjs.map +1 -0
- package/dist/{chunk-YXPWZXPT.mjs → chunk-T72FT5NB.mjs} +2 -2
- package/dist/components/index.d.mts +3 -3
- package/dist/components/index.d.ts +3 -3
- package/dist/components/index.js +3 -2
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +1 -1
- package/dist/hooks/api/index.d.mts +2 -2
- package/dist/hooks/api/index.d.ts +2 -2
- package/dist/hooks/api/index.js +33 -2
- package/dist/hooks/api/index.js.map +1 -1
- package/dist/hooks/api/index.mjs +2 -2
- package/dist/hooks/index.d.mts +3 -2
- package/dist/hooks/index.d.ts +3 -2
- package/dist/hooks/index.js +299 -41
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/{index-B8DYrhSW.d.mts → index-B7A0lN0C.d.mts} +12 -4
- package/dist/{index-DCeOyAw8.d.ts → index-Bbn2Stvu.d.ts} +2 -2
- package/dist/index-Bz53bbI_.d.ts +3268 -0
- package/dist/{index-DbG5IjhP.d.mts → index-CB4j_ONH.d.mts} +1 -1
- package/dist/{index-B-s1k4Da.d.mts → index-CKyWWkzU.d.mts} +3 -2
- package/dist/{index-BZrddrq-.d.mts → index-C_S7k6z2.d.mts} +2 -2
- package/dist/{index-BHvCA7F9.d.ts → index-D-uNr-JV.d.ts} +2 -2
- package/dist/index-DDV4F9ka.d.mts +3268 -0
- package/dist/{index-DG_gyw1q.d.ts → index-DV_mRu4y.d.ts} +3 -2
- package/dist/{index-Bzcc-y8m.d.ts → index-DcxdJ0m2.d.ts} +1 -1
- package/dist/{index-BvLpvebq.d.mts → index-Dzvj-uGt.d.mts} +2 -2
- package/dist/{index-Cwx2p8th.d.ts → index-dhPbMbvL.d.ts} +12 -4
- package/dist/index.css +11 -0
- package/dist/index.d.mts +8 -7
- package/dist/index.d.ts +8 -7
- package/dist/index.js +244 -45
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/{types-CHkU0WHZ.d.mts → types-B4BYNw8B.d.mts} +13 -2
- package/dist/{types-CHkU0WHZ.d.ts → types-B4BYNw8B.d.ts} +13 -2
- package/dist/ui/index.d.mts +3 -3
- package/dist/ui/index.d.ts +3 -3
- package/example/src/pages/Wallet/components/MatchWallet.tsx +2 -1
- package/package.json +1 -1
- package/dist/chunk-2CK7JQWH.mjs.map +0 -1
- package/dist/index-DaEFoDv_.d.ts +0 -187
- package/dist/index-DktvxNJc.d.mts +0 -187
- /package/dist/{chunk-YXPWZXPT.mjs.map → chunk-T72FT5NB.mjs.map} +0 -0
package/dist/index-DaEFoDv_.d.ts
DELETED
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
import { g as ISocialLoginMethod, h as OverviewInfo, C as CEXType, i as LoginMethodType, I as IMatchEvents, U as UserChainType, j as UserTransactionType } from './types-CHkU0WHZ.js';
|
|
2
|
-
import * as viem from 'viem';
|
|
3
|
-
import { Account, WalletClientConfig, createWalletClient, SignableMessage, Hex, TransactionSerializable, DeployContractParameters, SendTransactionParameters, WriteContractParameters, Chain } from 'viem';
|
|
4
|
-
import { C as ChainType } from './mpc-CTbBWHld.js';
|
|
5
|
-
import { Hash } from 'viem/types/misc';
|
|
6
|
-
import { Abi } from 'abitype';
|
|
7
|
-
import React, { ReactNode } from 'react';
|
|
8
|
-
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
9
|
-
|
|
10
|
-
declare const LOGIN_METHOD_MAP: {
|
|
11
|
-
email: string;
|
|
12
|
-
evm: string;
|
|
13
|
-
sol: string;
|
|
14
|
-
btc: string;
|
|
15
|
-
ton: string;
|
|
16
|
-
tron: string;
|
|
17
|
-
google: string;
|
|
18
|
-
facebook: string;
|
|
19
|
-
x: string;
|
|
20
|
-
telegram: string;
|
|
21
|
-
github: string;
|
|
22
|
-
discord: string;
|
|
23
|
-
linkedin: string;
|
|
24
|
-
youtube: string;
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
declare function useUserInfo(): {
|
|
28
|
-
loginByMethod: (method: ISocialLoginMethod) => Promise<Window | null>;
|
|
29
|
-
loginByTelegram: () => Promise<Window | null>;
|
|
30
|
-
loginByTwitter: () => Promise<Window | null>;
|
|
31
|
-
loginByGoogle: () => Promise<Window | null>;
|
|
32
|
-
loginByWallet: () => Promise<Window | null>;
|
|
33
|
-
loginByEmail: ({ email, code }: {
|
|
34
|
-
email: string;
|
|
35
|
-
code: string;
|
|
36
|
-
}) => Promise<boolean>;
|
|
37
|
-
bindWallet: () => Promise<Window | null>;
|
|
38
|
-
bindTelegram: () => Promise<void>;
|
|
39
|
-
token: string;
|
|
40
|
-
mid: string;
|
|
41
|
-
did: string;
|
|
42
|
-
address: string;
|
|
43
|
-
isLogin: boolean;
|
|
44
|
-
logout: () => Promise<void>;
|
|
45
|
-
getLoginEmailCode: (email: string) => Promise<string>;
|
|
46
|
-
refreshOverview: () => Promise<void>;
|
|
47
|
-
overview: OverviewInfo | null;
|
|
48
|
-
bindCex: (type: CEXType) => void;
|
|
49
|
-
username: string;
|
|
50
|
-
auth: () => Promise<any>;
|
|
51
|
-
login: (method: LoginMethodType | "wallet", extra?: {
|
|
52
|
-
[key: string]: any;
|
|
53
|
-
}) => Promise<void | Window | null>;
|
|
54
|
-
bind: (method: LoginMethodType | "wallet", extra?: {
|
|
55
|
-
[key: string]: any;
|
|
56
|
-
}) => Promise<void | Window | null>;
|
|
57
|
-
getAuthInfo: (method: keyof typeof LOGIN_METHOD_MAP) => Promise<unknown>;
|
|
58
|
-
};
|
|
59
|
-
|
|
60
|
-
declare function useMatchEvents(handlers: IMatchEvents): void;
|
|
61
|
-
|
|
62
|
-
type isRecoveredType = () => Promise<boolean>;
|
|
63
|
-
type signMessageType = (params: {
|
|
64
|
-
message: SignableMessage;
|
|
65
|
-
chainType?: ChainType;
|
|
66
|
-
}) => Promise<Hex>;
|
|
67
|
-
type signTransactionType = (params: {
|
|
68
|
-
transaction: TransactionSerializable;
|
|
69
|
-
chainType?: ChainType;
|
|
70
|
-
chain: {
|
|
71
|
-
id: number;
|
|
72
|
-
name: string;
|
|
73
|
-
nativeCurrency: {
|
|
74
|
-
name: string;
|
|
75
|
-
symbol: string;
|
|
76
|
-
decimals: number;
|
|
77
|
-
};
|
|
78
|
-
rpcUrls: {
|
|
79
|
-
[key: string]: any;
|
|
80
|
-
};
|
|
81
|
-
};
|
|
82
|
-
}) => Promise<`0x02${string}` | `0x01${string}` | `0x03${string}` | `0x04${string}` | viem.TransactionSerializedLegacy>;
|
|
83
|
-
type SendTransactionReturnType = Hash;
|
|
84
|
-
type SendTransactionParametersType = Omit<SendTransactionParameters, 'account'>;
|
|
85
|
-
type SendTransactionType = (transaction: SendTransactionParametersType) => Promise<SendTransactionReturnType>;
|
|
86
|
-
type DeployContractReturnType = SendTransactionReturnType;
|
|
87
|
-
type DeployContractType = <const abi extends Abi | readonly unknown[]>(parameters: DeployContractParameters<abi>) => Promise<DeployContractReturnType>;
|
|
88
|
-
type WriteContractParametersType = Omit<WriteContractParameters, 'account' | 'chain'> & {
|
|
89
|
-
chain?: Chain;
|
|
90
|
-
};
|
|
91
|
-
type WriteContractReturnType = SendTransactionReturnType;
|
|
92
|
-
type WriteContractType = (params: WriteContractParametersType) => Promise<WriteContractReturnType>;
|
|
93
|
-
interface UseWalletReturnType {
|
|
94
|
-
walletReady: boolean;
|
|
95
|
-
isRecovered: isRecoveredType;
|
|
96
|
-
signMessage: signMessageType;
|
|
97
|
-
signTransaction: signTransactionType;
|
|
98
|
-
address: string;
|
|
99
|
-
evmAccount: Account | undefined;
|
|
100
|
-
createWalletClient: (parameters: Omit<WalletClientConfig, 'account'>) => Omit<ReturnType<typeof createWalletClient>, 'sendTransaction' | 'deployContract' | 'writeContract'> & {
|
|
101
|
-
sendTransaction: SendTransactionType;
|
|
102
|
-
deployContract: DeployContractType;
|
|
103
|
-
writeContract: WriteContractType;
|
|
104
|
-
} | undefined;
|
|
105
|
-
}
|
|
106
|
-
declare function useWallet(): UseWalletReturnType;
|
|
107
|
-
|
|
108
|
-
declare function useCopyClipboard(timeout?: number): [boolean, (toCopy: string) => void];
|
|
109
|
-
|
|
110
|
-
interface ModalContextType {
|
|
111
|
-
show: (content: (props: {
|
|
112
|
-
close: () => void;
|
|
113
|
-
}) => ReactNode) => void;
|
|
114
|
-
open: (props: {
|
|
115
|
-
title: ReactNode;
|
|
116
|
-
content: React.ComponentType<{
|
|
117
|
-
close: () => void;
|
|
118
|
-
}>;
|
|
119
|
-
}) => void;
|
|
120
|
-
}
|
|
121
|
-
declare function useModal(): ModalContextType;
|
|
122
|
-
|
|
123
|
-
interface ToastContextType {
|
|
124
|
-
show: (options: {
|
|
125
|
-
icon?: ReactNode;
|
|
126
|
-
timeout?: number;
|
|
127
|
-
text: ReactNode;
|
|
128
|
-
}) => void;
|
|
129
|
-
success: (text: ReactNode, timeout?: number) => void;
|
|
130
|
-
error: (text: ReactNode, timeout?: number) => void;
|
|
131
|
-
}
|
|
132
|
-
declare function useToast(): ToastContextType;
|
|
133
|
-
|
|
134
|
-
declare function useMatchChain(): {
|
|
135
|
-
list: UserChainType[] | undefined;
|
|
136
|
-
chainId: number | null;
|
|
137
|
-
setChainId: (chainId: number) => void;
|
|
138
|
-
chain: UserChainType | null | undefined;
|
|
139
|
-
explorerLink: (url: string) => string;
|
|
140
|
-
showChangeNetwork: () => void;
|
|
141
|
-
};
|
|
142
|
-
|
|
143
|
-
declare function useMatchWallet(): {
|
|
144
|
-
showReceiveModal: () => void;
|
|
145
|
-
};
|
|
146
|
-
declare function useMatchWalletRecords({ pageSize }: {
|
|
147
|
-
pageSize?: number;
|
|
148
|
-
}): {
|
|
149
|
-
items: UserTransactionType[];
|
|
150
|
-
fetchMoreData: () => Promise<void>;
|
|
151
|
-
hasMore: boolean;
|
|
152
|
-
};
|
|
153
|
-
|
|
154
|
-
declare function useReceipt({ chainId, hash }: {
|
|
155
|
-
chainId: number;
|
|
156
|
-
hash: string;
|
|
157
|
-
}): _tanstack_react_query.UseQueryResult<any, Error>;
|
|
158
|
-
|
|
159
|
-
declare function useTransaction({ chainId, hash }: {
|
|
160
|
-
chainId: number;
|
|
161
|
-
hash: string;
|
|
162
|
-
}): _tanstack_react_query.UseQueryResult<any, Error>;
|
|
163
|
-
|
|
164
|
-
declare function useDownMd(): boolean;
|
|
165
|
-
|
|
166
|
-
declare const useLayout_useDownMd: typeof useDownMd;
|
|
167
|
-
declare namespace useLayout {
|
|
168
|
-
export { useLayout_useDownMd as useDownMd };
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
declare const index_useCopyClipboard: typeof useCopyClipboard;
|
|
172
|
-
declare const index_useLayout: typeof useLayout;
|
|
173
|
-
declare const index_useMatchChain: typeof useMatchChain;
|
|
174
|
-
declare const index_useMatchEvents: typeof useMatchEvents;
|
|
175
|
-
declare const index_useMatchWallet: typeof useMatchWallet;
|
|
176
|
-
declare const index_useMatchWalletRecords: typeof useMatchWalletRecords;
|
|
177
|
-
declare const index_useModal: typeof useModal;
|
|
178
|
-
declare const index_useReceipt: typeof useReceipt;
|
|
179
|
-
declare const index_useToast: typeof useToast;
|
|
180
|
-
declare const index_useTransaction: typeof useTransaction;
|
|
181
|
-
declare const index_useUserInfo: typeof useUserInfo;
|
|
182
|
-
declare const index_useWallet: typeof useWallet;
|
|
183
|
-
declare namespace index {
|
|
184
|
-
export { index_useCopyClipboard as useCopyClipboard, index_useLayout as useLayout, index_useMatchChain as useMatchChain, index_useMatchEvents as useMatchEvents, index_useMatchWallet as useMatchWallet, index_useMatchWalletRecords as useMatchWalletRecords, index_useModal as useModal, index_useReceipt as useReceipt, index_useToast as useToast, index_useTransaction as useTransaction, index_useUserInfo as useUserInfo, index_useWallet as useWallet };
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
export { useMatchEvents as a, useWallet as b, useCopyClipboard as c, useModal as d, useToast as e, useMatchChain as f, useMatchWallet as g, useMatchWalletRecords as h, index as i, useReceipt as j, useTransaction as k, useLayout as l, useUserInfo as u };
|
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
import { g as ISocialLoginMethod, h as OverviewInfo, C as CEXType, i as LoginMethodType, I as IMatchEvents, U as UserChainType, j as UserTransactionType } from './types-CHkU0WHZ.mjs';
|
|
2
|
-
import * as viem from 'viem';
|
|
3
|
-
import { Account, WalletClientConfig, createWalletClient, SignableMessage, Hex, TransactionSerializable, DeployContractParameters, SendTransactionParameters, WriteContractParameters, Chain } from 'viem';
|
|
4
|
-
import { C as ChainType } from './mpc-CTbBWHld.mjs';
|
|
5
|
-
import { Hash } from 'viem/types/misc';
|
|
6
|
-
import { Abi } from 'abitype';
|
|
7
|
-
import React, { ReactNode } from 'react';
|
|
8
|
-
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
9
|
-
|
|
10
|
-
declare const LOGIN_METHOD_MAP: {
|
|
11
|
-
email: string;
|
|
12
|
-
evm: string;
|
|
13
|
-
sol: string;
|
|
14
|
-
btc: string;
|
|
15
|
-
ton: string;
|
|
16
|
-
tron: string;
|
|
17
|
-
google: string;
|
|
18
|
-
facebook: string;
|
|
19
|
-
x: string;
|
|
20
|
-
telegram: string;
|
|
21
|
-
github: string;
|
|
22
|
-
discord: string;
|
|
23
|
-
linkedin: string;
|
|
24
|
-
youtube: string;
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
declare function useUserInfo(): {
|
|
28
|
-
loginByMethod: (method: ISocialLoginMethod) => Promise<Window | null>;
|
|
29
|
-
loginByTelegram: () => Promise<Window | null>;
|
|
30
|
-
loginByTwitter: () => Promise<Window | null>;
|
|
31
|
-
loginByGoogle: () => Promise<Window | null>;
|
|
32
|
-
loginByWallet: () => Promise<Window | null>;
|
|
33
|
-
loginByEmail: ({ email, code }: {
|
|
34
|
-
email: string;
|
|
35
|
-
code: string;
|
|
36
|
-
}) => Promise<boolean>;
|
|
37
|
-
bindWallet: () => Promise<Window | null>;
|
|
38
|
-
bindTelegram: () => Promise<void>;
|
|
39
|
-
token: string;
|
|
40
|
-
mid: string;
|
|
41
|
-
did: string;
|
|
42
|
-
address: string;
|
|
43
|
-
isLogin: boolean;
|
|
44
|
-
logout: () => Promise<void>;
|
|
45
|
-
getLoginEmailCode: (email: string) => Promise<string>;
|
|
46
|
-
refreshOverview: () => Promise<void>;
|
|
47
|
-
overview: OverviewInfo | null;
|
|
48
|
-
bindCex: (type: CEXType) => void;
|
|
49
|
-
username: string;
|
|
50
|
-
auth: () => Promise<any>;
|
|
51
|
-
login: (method: LoginMethodType | "wallet", extra?: {
|
|
52
|
-
[key: string]: any;
|
|
53
|
-
}) => Promise<void | Window | null>;
|
|
54
|
-
bind: (method: LoginMethodType | "wallet", extra?: {
|
|
55
|
-
[key: string]: any;
|
|
56
|
-
}) => Promise<void | Window | null>;
|
|
57
|
-
getAuthInfo: (method: keyof typeof LOGIN_METHOD_MAP) => Promise<unknown>;
|
|
58
|
-
};
|
|
59
|
-
|
|
60
|
-
declare function useMatchEvents(handlers: IMatchEvents): void;
|
|
61
|
-
|
|
62
|
-
type isRecoveredType = () => Promise<boolean>;
|
|
63
|
-
type signMessageType = (params: {
|
|
64
|
-
message: SignableMessage;
|
|
65
|
-
chainType?: ChainType;
|
|
66
|
-
}) => Promise<Hex>;
|
|
67
|
-
type signTransactionType = (params: {
|
|
68
|
-
transaction: TransactionSerializable;
|
|
69
|
-
chainType?: ChainType;
|
|
70
|
-
chain: {
|
|
71
|
-
id: number;
|
|
72
|
-
name: string;
|
|
73
|
-
nativeCurrency: {
|
|
74
|
-
name: string;
|
|
75
|
-
symbol: string;
|
|
76
|
-
decimals: number;
|
|
77
|
-
};
|
|
78
|
-
rpcUrls: {
|
|
79
|
-
[key: string]: any;
|
|
80
|
-
};
|
|
81
|
-
};
|
|
82
|
-
}) => Promise<`0x02${string}` | `0x01${string}` | `0x03${string}` | `0x04${string}` | viem.TransactionSerializedLegacy>;
|
|
83
|
-
type SendTransactionReturnType = Hash;
|
|
84
|
-
type SendTransactionParametersType = Omit<SendTransactionParameters, 'account'>;
|
|
85
|
-
type SendTransactionType = (transaction: SendTransactionParametersType) => Promise<SendTransactionReturnType>;
|
|
86
|
-
type DeployContractReturnType = SendTransactionReturnType;
|
|
87
|
-
type DeployContractType = <const abi extends Abi | readonly unknown[]>(parameters: DeployContractParameters<abi>) => Promise<DeployContractReturnType>;
|
|
88
|
-
type WriteContractParametersType = Omit<WriteContractParameters, 'account' | 'chain'> & {
|
|
89
|
-
chain?: Chain;
|
|
90
|
-
};
|
|
91
|
-
type WriteContractReturnType = SendTransactionReturnType;
|
|
92
|
-
type WriteContractType = (params: WriteContractParametersType) => Promise<WriteContractReturnType>;
|
|
93
|
-
interface UseWalletReturnType {
|
|
94
|
-
walletReady: boolean;
|
|
95
|
-
isRecovered: isRecoveredType;
|
|
96
|
-
signMessage: signMessageType;
|
|
97
|
-
signTransaction: signTransactionType;
|
|
98
|
-
address: string;
|
|
99
|
-
evmAccount: Account | undefined;
|
|
100
|
-
createWalletClient: (parameters: Omit<WalletClientConfig, 'account'>) => Omit<ReturnType<typeof createWalletClient>, 'sendTransaction' | 'deployContract' | 'writeContract'> & {
|
|
101
|
-
sendTransaction: SendTransactionType;
|
|
102
|
-
deployContract: DeployContractType;
|
|
103
|
-
writeContract: WriteContractType;
|
|
104
|
-
} | undefined;
|
|
105
|
-
}
|
|
106
|
-
declare function useWallet(): UseWalletReturnType;
|
|
107
|
-
|
|
108
|
-
declare function useCopyClipboard(timeout?: number): [boolean, (toCopy: string) => void];
|
|
109
|
-
|
|
110
|
-
interface ModalContextType {
|
|
111
|
-
show: (content: (props: {
|
|
112
|
-
close: () => void;
|
|
113
|
-
}) => ReactNode) => void;
|
|
114
|
-
open: (props: {
|
|
115
|
-
title: ReactNode;
|
|
116
|
-
content: React.ComponentType<{
|
|
117
|
-
close: () => void;
|
|
118
|
-
}>;
|
|
119
|
-
}) => void;
|
|
120
|
-
}
|
|
121
|
-
declare function useModal(): ModalContextType;
|
|
122
|
-
|
|
123
|
-
interface ToastContextType {
|
|
124
|
-
show: (options: {
|
|
125
|
-
icon?: ReactNode;
|
|
126
|
-
timeout?: number;
|
|
127
|
-
text: ReactNode;
|
|
128
|
-
}) => void;
|
|
129
|
-
success: (text: ReactNode, timeout?: number) => void;
|
|
130
|
-
error: (text: ReactNode, timeout?: number) => void;
|
|
131
|
-
}
|
|
132
|
-
declare function useToast(): ToastContextType;
|
|
133
|
-
|
|
134
|
-
declare function useMatchChain(): {
|
|
135
|
-
list: UserChainType[] | undefined;
|
|
136
|
-
chainId: number | null;
|
|
137
|
-
setChainId: (chainId: number) => void;
|
|
138
|
-
chain: UserChainType | null | undefined;
|
|
139
|
-
explorerLink: (url: string) => string;
|
|
140
|
-
showChangeNetwork: () => void;
|
|
141
|
-
};
|
|
142
|
-
|
|
143
|
-
declare function useMatchWallet(): {
|
|
144
|
-
showReceiveModal: () => void;
|
|
145
|
-
};
|
|
146
|
-
declare function useMatchWalletRecords({ pageSize }: {
|
|
147
|
-
pageSize?: number;
|
|
148
|
-
}): {
|
|
149
|
-
items: UserTransactionType[];
|
|
150
|
-
fetchMoreData: () => Promise<void>;
|
|
151
|
-
hasMore: boolean;
|
|
152
|
-
};
|
|
153
|
-
|
|
154
|
-
declare function useReceipt({ chainId, hash }: {
|
|
155
|
-
chainId: number;
|
|
156
|
-
hash: string;
|
|
157
|
-
}): _tanstack_react_query.UseQueryResult<any, Error>;
|
|
158
|
-
|
|
159
|
-
declare function useTransaction({ chainId, hash }: {
|
|
160
|
-
chainId: number;
|
|
161
|
-
hash: string;
|
|
162
|
-
}): _tanstack_react_query.UseQueryResult<any, Error>;
|
|
163
|
-
|
|
164
|
-
declare function useDownMd(): boolean;
|
|
165
|
-
|
|
166
|
-
declare const useLayout_useDownMd: typeof useDownMd;
|
|
167
|
-
declare namespace useLayout {
|
|
168
|
-
export { useLayout_useDownMd as useDownMd };
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
declare const index_useCopyClipboard: typeof useCopyClipboard;
|
|
172
|
-
declare const index_useLayout: typeof useLayout;
|
|
173
|
-
declare const index_useMatchChain: typeof useMatchChain;
|
|
174
|
-
declare const index_useMatchEvents: typeof useMatchEvents;
|
|
175
|
-
declare const index_useMatchWallet: typeof useMatchWallet;
|
|
176
|
-
declare const index_useMatchWalletRecords: typeof useMatchWalletRecords;
|
|
177
|
-
declare const index_useModal: typeof useModal;
|
|
178
|
-
declare const index_useReceipt: typeof useReceipt;
|
|
179
|
-
declare const index_useToast: typeof useToast;
|
|
180
|
-
declare const index_useTransaction: typeof useTransaction;
|
|
181
|
-
declare const index_useUserInfo: typeof useUserInfo;
|
|
182
|
-
declare const index_useWallet: typeof useWallet;
|
|
183
|
-
declare namespace index {
|
|
184
|
-
export { index_useCopyClipboard as useCopyClipboard, index_useLayout as useLayout, index_useMatchChain as useMatchChain, index_useMatchEvents as useMatchEvents, index_useMatchWallet as useMatchWallet, index_useMatchWalletRecords as useMatchWalletRecords, index_useModal as useModal, index_useReceipt as useReceipt, index_useToast as useToast, index_useTransaction as useTransaction, index_useUserInfo as useUserInfo, index_useWallet as useWallet };
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
export { useMatchEvents as a, useWallet as b, useCopyClipboard as c, useModal as d, useToast as e, useMatchChain as f, useMatchWallet as g, useMatchWalletRecords as h, index as i, useReceipt as j, useTransaction as k, useLayout as l, useUserInfo as u };
|
|
File without changes
|