@dodoex/wallet-web3-react 0.0.4 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -24
- package/dist/index.js +2 -24
- package/dist/types/hooks/useTransactionList.d.ts +14 -254
- package/package.json +5 -4
- package/src/WalletConnect/ActivityList.tsx +1 -0
- package/src/locales/en.po +18 -18
- package/src/locales/zh.po +18 -18
|
@@ -10,25 +10,9 @@ export declare function useTransactionList({ account, chainId, }: {
|
|
|
10
10
|
account: string | undefined;
|
|
11
11
|
chainId?: number;
|
|
12
12
|
}): {
|
|
13
|
-
list:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
extend?: any | null;
|
|
17
|
-
from?: string | null;
|
|
18
|
-
id?: number | null;
|
|
19
|
-
key?: string | null;
|
|
20
|
-
type?: string | null;
|
|
21
|
-
} | null)[];
|
|
22
|
-
pendingList: ({
|
|
23
|
-
chainId?: number | null;
|
|
24
|
-
createTime?: string | null;
|
|
25
|
-
extend?: any | null;
|
|
26
|
-
from?: string | null;
|
|
27
|
-
id?: number | null;
|
|
28
|
-
key?: string | null;
|
|
29
|
-
type?: string | null;
|
|
30
|
-
} | null)[];
|
|
31
|
-
data: import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>;
|
|
13
|
+
list: any;
|
|
14
|
+
pendingList: any;
|
|
15
|
+
data: import("@tanstack/react-query").InfiniteData<unknown, unknown>;
|
|
32
16
|
error: Error;
|
|
33
17
|
isError: true;
|
|
34
18
|
isPending: false;
|
|
@@ -38,8 +22,8 @@ export declare function useTransactionList({ account, chainId, }: {
|
|
|
38
22
|
isSuccess: false;
|
|
39
23
|
isPlaceholderData: false;
|
|
40
24
|
status: "error";
|
|
41
|
-
fetchNextPage: (options?: import("@tanstack/react-query").FetchNextPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<
|
|
42
|
-
fetchPreviousPage: (options?: import("@tanstack/react-query").FetchPreviousPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<
|
|
25
|
+
fetchNextPage: (options?: import("@tanstack/react-query").FetchNextPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<unknown, unknown>, Error>>;
|
|
26
|
+
fetchPreviousPage: (options?: import("@tanstack/react-query").FetchPreviousPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<unknown, unknown>, Error>>;
|
|
43
27
|
hasNextPage: boolean;
|
|
44
28
|
hasPreviousPage: boolean;
|
|
45
29
|
isFetchNextPageError: boolean;
|
|
@@ -58,29 +42,13 @@ export declare function useTransactionList({ account, chainId, }: {
|
|
|
58
42
|
isPaused: boolean;
|
|
59
43
|
isRefetching: boolean;
|
|
60
44
|
isStale: boolean;
|
|
61
|
-
refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise<import("@tanstack/react-query").QueryObserverResult<import("@tanstack/react-query").InfiniteData<
|
|
45
|
+
refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise<import("@tanstack/react-query").QueryObserverResult<import("@tanstack/react-query").InfiniteData<unknown, unknown>, Error>>;
|
|
62
46
|
fetchStatus: import("@tanstack/react-query").FetchStatus;
|
|
63
|
-
promise: Promise<import("@tanstack/react-query").InfiniteData<
|
|
47
|
+
promise: Promise<import("@tanstack/react-query").InfiniteData<unknown, unknown>>;
|
|
64
48
|
} | {
|
|
65
|
-
list:
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
extend?: any | null;
|
|
69
|
-
from?: string | null;
|
|
70
|
-
id?: number | null;
|
|
71
|
-
key?: string | null;
|
|
72
|
-
type?: string | null;
|
|
73
|
-
} | null)[];
|
|
74
|
-
pendingList: ({
|
|
75
|
-
chainId?: number | null;
|
|
76
|
-
createTime?: string | null;
|
|
77
|
-
extend?: any | null;
|
|
78
|
-
from?: string | null;
|
|
79
|
-
id?: number | null;
|
|
80
|
-
key?: string | null;
|
|
81
|
-
type?: string | null;
|
|
82
|
-
} | null)[];
|
|
83
|
-
data: import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>;
|
|
49
|
+
list: any;
|
|
50
|
+
pendingList: any;
|
|
51
|
+
data: import("@tanstack/react-query").InfiniteData<unknown, unknown>;
|
|
84
52
|
error: null;
|
|
85
53
|
isError: false;
|
|
86
54
|
isPending: false;
|
|
@@ -92,8 +60,8 @@ export declare function useTransactionList({ account, chainId, }: {
|
|
|
92
60
|
isSuccess: true;
|
|
93
61
|
isPlaceholderData: false;
|
|
94
62
|
status: "success";
|
|
95
|
-
fetchNextPage: (options?: import("@tanstack/react-query").FetchNextPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<
|
|
96
|
-
fetchPreviousPage: (options?: import("@tanstack/react-query").FetchPreviousPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<
|
|
63
|
+
fetchNextPage: (options?: import("@tanstack/react-query").FetchNextPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<unknown, unknown>, Error>>;
|
|
64
|
+
fetchPreviousPage: (options?: import("@tanstack/react-query").FetchPreviousPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<unknown, unknown>, Error>>;
|
|
97
65
|
hasNextPage: boolean;
|
|
98
66
|
hasPreviousPage: boolean;
|
|
99
67
|
isFetchingNextPage: boolean;
|
|
@@ -110,215 +78,7 @@ export declare function useTransactionList({ account, chainId, }: {
|
|
|
110
78
|
isPaused: boolean;
|
|
111
79
|
isRefetching: boolean;
|
|
112
80
|
isStale: boolean;
|
|
113
|
-
refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise<import("@tanstack/react-query").QueryObserverResult<import("@tanstack/react-query").InfiniteData<
|
|
81
|
+
refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise<import("@tanstack/react-query").QueryObserverResult<import("@tanstack/react-query").InfiniteData<unknown, unknown>, Error>>;
|
|
114
82
|
fetchStatus: import("@tanstack/react-query").FetchStatus;
|
|
115
|
-
promise: Promise<import("@tanstack/react-query").InfiniteData<
|
|
116
|
-
} | {
|
|
117
|
-
list: ({
|
|
118
|
-
chainId?: number | null;
|
|
119
|
-
createTime?: string | null;
|
|
120
|
-
extend?: any | null;
|
|
121
|
-
from?: string | null;
|
|
122
|
-
id?: number | null;
|
|
123
|
-
key?: string | null;
|
|
124
|
-
type?: string | null;
|
|
125
|
-
} | null)[];
|
|
126
|
-
pendingList: ({
|
|
127
|
-
chainId?: number | null;
|
|
128
|
-
createTime?: string | null;
|
|
129
|
-
extend?: any | null;
|
|
130
|
-
from?: string | null;
|
|
131
|
-
id?: number | null;
|
|
132
|
-
key?: string | null;
|
|
133
|
-
type?: string | null;
|
|
134
|
-
} | null)[];
|
|
135
|
-
data: undefined;
|
|
136
|
-
error: Error;
|
|
137
|
-
isError: true;
|
|
138
|
-
isPending: false;
|
|
139
|
-
isLoading: false;
|
|
140
|
-
isLoadingError: true;
|
|
141
|
-
isRefetchError: false;
|
|
142
|
-
isFetchNextPageError: false;
|
|
143
|
-
isFetchPreviousPageError: false;
|
|
144
|
-
isSuccess: false;
|
|
145
|
-
isPlaceholderData: false;
|
|
146
|
-
status: "error";
|
|
147
|
-
fetchNextPage: (options?: import("@tanstack/react-query").FetchNextPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
148
|
-
fetchPreviousPage: (options?: import("@tanstack/react-query").FetchPreviousPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
149
|
-
hasNextPage: boolean;
|
|
150
|
-
hasPreviousPage: boolean;
|
|
151
|
-
isFetchingNextPage: boolean;
|
|
152
|
-
isFetchingPreviousPage: boolean;
|
|
153
|
-
dataUpdatedAt: number;
|
|
154
|
-
errorUpdatedAt: number;
|
|
155
|
-
failureCount: number;
|
|
156
|
-
failureReason: Error | null;
|
|
157
|
-
errorUpdateCount: number;
|
|
158
|
-
isFetched: boolean;
|
|
159
|
-
isFetchedAfterMount: boolean;
|
|
160
|
-
isFetching: boolean;
|
|
161
|
-
isInitialLoading: boolean;
|
|
162
|
-
isPaused: boolean;
|
|
163
|
-
isRefetching: boolean;
|
|
164
|
-
isStale: boolean;
|
|
165
|
-
refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise<import("@tanstack/react-query").QueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
166
|
-
fetchStatus: import("@tanstack/react-query").FetchStatus;
|
|
167
|
-
promise: Promise<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>>;
|
|
168
|
-
} | {
|
|
169
|
-
list: ({
|
|
170
|
-
chainId?: number | null;
|
|
171
|
-
createTime?: string | null;
|
|
172
|
-
extend?: any | null;
|
|
173
|
-
from?: string | null;
|
|
174
|
-
id?: number | null;
|
|
175
|
-
key?: string | null;
|
|
176
|
-
type?: string | null;
|
|
177
|
-
} | null)[];
|
|
178
|
-
pendingList: ({
|
|
179
|
-
chainId?: number | null;
|
|
180
|
-
createTime?: string | null;
|
|
181
|
-
extend?: any | null;
|
|
182
|
-
from?: string | null;
|
|
183
|
-
id?: number | null;
|
|
184
|
-
key?: string | null;
|
|
185
|
-
type?: string | null;
|
|
186
|
-
} | null)[];
|
|
187
|
-
data: undefined;
|
|
188
|
-
error: null;
|
|
189
|
-
isError: false;
|
|
190
|
-
isPending: true;
|
|
191
|
-
isLoading: true;
|
|
192
|
-
isLoadingError: false;
|
|
193
|
-
isRefetchError: false;
|
|
194
|
-
isFetchNextPageError: false;
|
|
195
|
-
isFetchPreviousPageError: false;
|
|
196
|
-
isSuccess: false;
|
|
197
|
-
isPlaceholderData: false;
|
|
198
|
-
status: "pending";
|
|
199
|
-
fetchNextPage: (options?: import("@tanstack/react-query").FetchNextPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
200
|
-
fetchPreviousPage: (options?: import("@tanstack/react-query").FetchPreviousPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
201
|
-
hasNextPage: boolean;
|
|
202
|
-
hasPreviousPage: boolean;
|
|
203
|
-
isFetchingNextPage: boolean;
|
|
204
|
-
isFetchingPreviousPage: boolean;
|
|
205
|
-
dataUpdatedAt: number;
|
|
206
|
-
errorUpdatedAt: number;
|
|
207
|
-
failureCount: number;
|
|
208
|
-
failureReason: Error | null;
|
|
209
|
-
errorUpdateCount: number;
|
|
210
|
-
isFetched: boolean;
|
|
211
|
-
isFetchedAfterMount: boolean;
|
|
212
|
-
isFetching: boolean;
|
|
213
|
-
isInitialLoading: boolean;
|
|
214
|
-
isPaused: boolean;
|
|
215
|
-
isRefetching: boolean;
|
|
216
|
-
isStale: boolean;
|
|
217
|
-
refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise<import("@tanstack/react-query").QueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
218
|
-
fetchStatus: import("@tanstack/react-query").FetchStatus;
|
|
219
|
-
promise: Promise<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>>;
|
|
220
|
-
} | {
|
|
221
|
-
list: ({
|
|
222
|
-
chainId?: number | null;
|
|
223
|
-
createTime?: string | null;
|
|
224
|
-
extend?: any | null;
|
|
225
|
-
from?: string | null;
|
|
226
|
-
id?: number | null;
|
|
227
|
-
key?: string | null;
|
|
228
|
-
type?: string | null;
|
|
229
|
-
} | null)[];
|
|
230
|
-
pendingList: ({
|
|
231
|
-
chainId?: number | null;
|
|
232
|
-
createTime?: string | null;
|
|
233
|
-
extend?: any | null;
|
|
234
|
-
from?: string | null;
|
|
235
|
-
id?: number | null;
|
|
236
|
-
key?: string | null;
|
|
237
|
-
type?: string | null;
|
|
238
|
-
} | null)[];
|
|
239
|
-
data: undefined;
|
|
240
|
-
error: null;
|
|
241
|
-
isError: false;
|
|
242
|
-
isPending: true;
|
|
243
|
-
isLoadingError: false;
|
|
244
|
-
isRefetchError: false;
|
|
245
|
-
isFetchNextPageError: false;
|
|
246
|
-
isFetchPreviousPageError: false;
|
|
247
|
-
isSuccess: false;
|
|
248
|
-
isPlaceholderData: false;
|
|
249
|
-
status: "pending";
|
|
250
|
-
fetchNextPage: (options?: import("@tanstack/react-query").FetchNextPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
251
|
-
fetchPreviousPage: (options?: import("@tanstack/react-query").FetchPreviousPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
252
|
-
hasNextPage: boolean;
|
|
253
|
-
hasPreviousPage: boolean;
|
|
254
|
-
isFetchingNextPage: boolean;
|
|
255
|
-
isFetchingPreviousPage: boolean;
|
|
256
|
-
dataUpdatedAt: number;
|
|
257
|
-
errorUpdatedAt: number;
|
|
258
|
-
failureCount: number;
|
|
259
|
-
failureReason: Error | null;
|
|
260
|
-
errorUpdateCount: number;
|
|
261
|
-
isFetched: boolean;
|
|
262
|
-
isFetchedAfterMount: boolean;
|
|
263
|
-
isFetching: boolean;
|
|
264
|
-
isLoading: boolean;
|
|
265
|
-
isInitialLoading: boolean;
|
|
266
|
-
isPaused: boolean;
|
|
267
|
-
isRefetching: boolean;
|
|
268
|
-
isStale: boolean;
|
|
269
|
-
refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise<import("@tanstack/react-query").QueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
270
|
-
fetchStatus: import("@tanstack/react-query").FetchStatus;
|
|
271
|
-
promise: Promise<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>>;
|
|
272
|
-
} | {
|
|
273
|
-
list: ({
|
|
274
|
-
chainId?: number | null;
|
|
275
|
-
createTime?: string | null;
|
|
276
|
-
extend?: any | null;
|
|
277
|
-
from?: string | null;
|
|
278
|
-
id?: number | null;
|
|
279
|
-
key?: string | null;
|
|
280
|
-
type?: string | null;
|
|
281
|
-
} | null)[];
|
|
282
|
-
pendingList: ({
|
|
283
|
-
chainId?: number | null;
|
|
284
|
-
createTime?: string | null;
|
|
285
|
-
extend?: any | null;
|
|
286
|
-
from?: string | null;
|
|
287
|
-
id?: number | null;
|
|
288
|
-
key?: string | null;
|
|
289
|
-
type?: string | null;
|
|
290
|
-
} | null)[];
|
|
291
|
-
data: import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>;
|
|
292
|
-
isError: false;
|
|
293
|
-
error: null;
|
|
294
|
-
isPending: false;
|
|
295
|
-
isLoading: false;
|
|
296
|
-
isLoadingError: false;
|
|
297
|
-
isRefetchError: false;
|
|
298
|
-
isSuccess: true;
|
|
299
|
-
isPlaceholderData: true;
|
|
300
|
-
isFetchNextPageError: false;
|
|
301
|
-
isFetchPreviousPageError: false;
|
|
302
|
-
status: "success";
|
|
303
|
-
fetchNextPage: (options?: import("@tanstack/react-query").FetchNextPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
304
|
-
fetchPreviousPage: (options?: import("@tanstack/react-query").FetchPreviousPageOptions) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
305
|
-
hasNextPage: boolean;
|
|
306
|
-
hasPreviousPage: boolean;
|
|
307
|
-
isFetchingNextPage: boolean;
|
|
308
|
-
isFetchingPreviousPage: boolean;
|
|
309
|
-
dataUpdatedAt: number;
|
|
310
|
-
errorUpdatedAt: number;
|
|
311
|
-
failureCount: number;
|
|
312
|
-
failureReason: Error | null;
|
|
313
|
-
errorUpdateCount: number;
|
|
314
|
-
isFetched: boolean;
|
|
315
|
-
isFetchedAfterMount: boolean;
|
|
316
|
-
isFetching: boolean;
|
|
317
|
-
isInitialLoading: boolean;
|
|
318
|
-
isPaused: boolean;
|
|
319
|
-
isRefetching: boolean;
|
|
320
|
-
isStale: boolean;
|
|
321
|
-
refetch: (options?: import("@tanstack/react-query").RefetchOptions) => Promise<import("@tanstack/react-query").QueryObserverResult<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>, Error>>;
|
|
322
|
-
fetchStatus: import("@tanstack/react-query").FetchStatus;
|
|
323
|
-
promise: Promise<import("@tanstack/react-query").InfiniteData<import("@dodoex/api/dist/types/gql/graphql").FetchNoticeCenterTransactionListQuery, unknown>>;
|
|
83
|
+
promise: Promise<import("@tanstack/react-query").InfiniteData<unknown, unknown>>;
|
|
324
84
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dodoex/wallet-web3-react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"source": "src/index.tsx",
|
|
5
5
|
"types": "dist/types/index.d.ts",
|
|
6
6
|
"typings": "dist/types/index.d.ts",
|
|
@@ -37,6 +37,8 @@
|
|
|
37
37
|
"@dodoex/contract-request": ">=1.x",
|
|
38
38
|
"@dodoex/dodo-contract-request": ">=1.x",
|
|
39
39
|
"@dodoex/icons": ">=2.0.2",
|
|
40
|
+
"@dodoex/api": ">=3.0.2",
|
|
41
|
+
"@dodoex/components": ">=3.0.4",
|
|
40
42
|
"react": ">=17.0.2",
|
|
41
43
|
"react-dom": ">=17.0.2"
|
|
42
44
|
},
|
|
@@ -57,8 +59,6 @@
|
|
|
57
59
|
"typescript": "^5.6.3"
|
|
58
60
|
},
|
|
59
61
|
"dependencies": {
|
|
60
|
-
"@dodoex/api": "^3.0.2",
|
|
61
|
-
"@dodoex/components": "^3.0.3",
|
|
62
62
|
"@lingui/macro": "^4.11.4",
|
|
63
63
|
"@lingui/react": "^4.11.4",
|
|
64
64
|
"@tanstack/react-query": "^5.18.1",
|
|
@@ -69,4 +69,5 @@
|
|
|
69
69
|
"qrcode.react": "^4.2.0",
|
|
70
70
|
"react-infinite-scroller": "^1.2.6"
|
|
71
71
|
}
|
|
72
|
-
}
|
|
72
|
+
}
|
|
73
|
+
|
package/src/locales/en.po
CHANGED
|
@@ -25,7 +25,7 @@ msgstr "Account"
|
|
|
25
25
|
msgid "Activity"
|
|
26
26
|
msgstr "Activity"
|
|
27
27
|
|
|
28
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
28
|
+
#: src/WalletConnect/ActivityList.tsx:388
|
|
29
29
|
msgid "Add Liquidity"
|
|
30
30
|
msgstr "Add Liquidity"
|
|
31
31
|
|
|
@@ -33,7 +33,7 @@ msgstr "Add Liquidity"
|
|
|
33
33
|
msgid "Address"
|
|
34
34
|
msgstr "Address"
|
|
35
35
|
|
|
36
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
36
|
+
#: src/WalletConnect/ActivityList.tsx:369
|
|
37
37
|
msgid "Approve"
|
|
38
38
|
msgstr "Approve"
|
|
39
39
|
|
|
@@ -60,7 +60,7 @@ msgstr "Check your email and click the link to complete login"
|
|
|
60
60
|
msgid "Choose existing passkey"
|
|
61
61
|
msgstr "Choose existing passkey"
|
|
62
62
|
|
|
63
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
63
|
+
#: src/WalletConnect/ActivityList.tsx:403
|
|
64
64
|
msgid "Claim Rewards"
|
|
65
65
|
msgstr "Claim Rewards"
|
|
66
66
|
|
|
@@ -96,7 +96,7 @@ msgstr "Copied"
|
|
|
96
96
|
msgid "Copy wallet address"
|
|
97
97
|
msgstr "Copy wallet address"
|
|
98
98
|
|
|
99
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
99
|
+
#: src/WalletConnect/ActivityList.tsx:405
|
|
100
100
|
msgid "Create Liquidity Mining"
|
|
101
101
|
msgstr "Create Liquidity Mining"
|
|
102
102
|
|
|
@@ -104,7 +104,7 @@ msgstr "Create Liquidity Mining"
|
|
|
104
104
|
msgid "Create new passkey"
|
|
105
105
|
msgstr "Create new passkey"
|
|
106
106
|
|
|
107
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
107
|
+
#: src/WalletConnect/ActivityList.tsx:400
|
|
108
108
|
msgid "End mining\\n"
|
|
109
109
|
msgstr "End mining\\n"
|
|
110
110
|
|
|
@@ -112,7 +112,7 @@ msgstr "End mining\\n"
|
|
|
112
112
|
msgid "Enter email"
|
|
113
113
|
msgstr "Enter email"
|
|
114
114
|
|
|
115
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
115
|
+
#: src/WalletConnect/ActivityList.tsx:356
|
|
116
116
|
msgid "Failed"
|
|
117
117
|
msgstr "Failed"
|
|
118
118
|
|
|
@@ -140,7 +140,7 @@ msgstr "Invalid wallet address"
|
|
|
140
140
|
msgid "Last connection"
|
|
141
141
|
msgstr "Last connection"
|
|
142
142
|
|
|
143
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
143
|
+
#: src/WalletConnect/ActivityList.tsx:271
|
|
144
144
|
msgid "Loading more"
|
|
145
145
|
msgstr "Loading more"
|
|
146
146
|
|
|
@@ -177,11 +177,11 @@ msgstr "On-chain transaction records"
|
|
|
177
177
|
msgid "or"
|
|
178
178
|
msgstr "or"
|
|
179
179
|
|
|
180
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
180
|
+
#: src/WalletConnect/ActivityList.tsx:357
|
|
181
181
|
msgid "Pending"
|
|
182
182
|
msgstr "Pending"
|
|
183
183
|
|
|
184
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
184
|
+
#: src/WalletConnect/ActivityList.tsx:396
|
|
185
185
|
msgid "Pool Creation"
|
|
186
186
|
msgstr "Pool Creation"
|
|
187
187
|
|
|
@@ -194,23 +194,23 @@ msgstr "Receive"
|
|
|
194
194
|
msgid "Receiver address"
|
|
195
195
|
msgstr "Receiver address"
|
|
196
196
|
|
|
197
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
197
|
+
#: src/WalletConnect/ActivityList.tsx:392
|
|
198
198
|
msgid "Remove Liquidity"
|
|
199
199
|
msgstr "Remove Liquidity"
|
|
200
200
|
|
|
201
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
202
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
201
|
+
#: src/WalletConnect/ActivityList.tsx:358
|
|
202
|
+
#: src/WalletConnect/ActivityList.tsx:368
|
|
203
203
|
msgid "Reset"
|
|
204
204
|
msgstr "Reset"
|
|
205
205
|
|
|
206
206
|
#: src/WalletConnect/AccountPage.tsx:203
|
|
207
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
207
|
+
#: src/WalletConnect/ActivityList.tsx:408
|
|
208
208
|
#: src/WalletConnect/SendTokenPage.tsx:116
|
|
209
209
|
#: src/WalletConnect/SendTokenPage.tsx:244
|
|
210
210
|
msgid "Send"
|
|
211
211
|
msgstr "Send"
|
|
212
212
|
|
|
213
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
213
|
+
#: src/WalletConnect/ActivityList.tsx:398
|
|
214
214
|
msgid "Stake"
|
|
215
215
|
msgstr "Stake"
|
|
216
216
|
|
|
@@ -218,11 +218,11 @@ msgstr "Stake"
|
|
|
218
218
|
msgid "Submit"
|
|
219
219
|
msgstr "Submit"
|
|
220
220
|
|
|
221
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
221
|
+
#: src/WalletConnect/ActivityList.tsx:355
|
|
222
222
|
msgid "Succeeded"
|
|
223
223
|
msgstr "Succeeded"
|
|
224
224
|
|
|
225
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
225
|
+
#: src/WalletConnect/ActivityList.tsx:382
|
|
226
226
|
msgid "Swap"
|
|
227
227
|
msgstr "Swap"
|
|
228
228
|
|
|
@@ -234,7 +234,7 @@ msgstr ""
|
|
|
234
234
|
"The Ledger Device is locked\n"
|
|
235
235
|
"Please unlock from the device"
|
|
236
236
|
|
|
237
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
237
|
+
#: src/WalletConnect/ActivityList.tsx:135
|
|
238
238
|
msgid "This is empty"
|
|
239
239
|
msgstr "This is empty"
|
|
240
240
|
|
|
@@ -242,7 +242,7 @@ msgstr "This is empty"
|
|
|
242
242
|
msgid "Token"
|
|
243
243
|
msgstr "Token"
|
|
244
244
|
|
|
245
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
245
|
+
#: src/WalletConnect/ActivityList.tsx:384
|
|
246
246
|
msgid "Transfer"
|
|
247
247
|
msgstr "Transfer"
|
|
248
248
|
|
package/src/locales/zh.po
CHANGED
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
|
25
25
|
msgid "Activity"
|
|
26
26
|
msgstr ""
|
|
27
27
|
|
|
28
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
28
|
+
#: src/WalletConnect/ActivityList.tsx:388
|
|
29
29
|
msgid "Add Liquidity"
|
|
30
30
|
msgstr ""
|
|
31
31
|
|
|
@@ -33,7 +33,7 @@ msgstr ""
|
|
|
33
33
|
msgid "Address"
|
|
34
34
|
msgstr ""
|
|
35
35
|
|
|
36
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
36
|
+
#: src/WalletConnect/ActivityList.tsx:369
|
|
37
37
|
msgid "Approve"
|
|
38
38
|
msgstr ""
|
|
39
39
|
|
|
@@ -60,7 +60,7 @@ msgstr ""
|
|
|
60
60
|
msgid "Choose existing passkey"
|
|
61
61
|
msgstr ""
|
|
62
62
|
|
|
63
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
63
|
+
#: src/WalletConnect/ActivityList.tsx:403
|
|
64
64
|
msgid "Claim Rewards"
|
|
65
65
|
msgstr ""
|
|
66
66
|
|
|
@@ -96,7 +96,7 @@ msgstr ""
|
|
|
96
96
|
msgid "Copy wallet address"
|
|
97
97
|
msgstr ""
|
|
98
98
|
|
|
99
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
99
|
+
#: src/WalletConnect/ActivityList.tsx:405
|
|
100
100
|
msgid "Create Liquidity Mining"
|
|
101
101
|
msgstr ""
|
|
102
102
|
|
|
@@ -104,7 +104,7 @@ msgstr ""
|
|
|
104
104
|
msgid "Create new passkey"
|
|
105
105
|
msgstr ""
|
|
106
106
|
|
|
107
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
107
|
+
#: src/WalletConnect/ActivityList.tsx:400
|
|
108
108
|
msgid "End mining\\n"
|
|
109
109
|
msgstr ""
|
|
110
110
|
|
|
@@ -112,7 +112,7 @@ msgstr ""
|
|
|
112
112
|
msgid "Enter email"
|
|
113
113
|
msgstr ""
|
|
114
114
|
|
|
115
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
115
|
+
#: src/WalletConnect/ActivityList.tsx:356
|
|
116
116
|
msgid "Failed"
|
|
117
117
|
msgstr ""
|
|
118
118
|
|
|
@@ -140,7 +140,7 @@ msgstr ""
|
|
|
140
140
|
msgid "Last connection"
|
|
141
141
|
msgstr ""
|
|
142
142
|
|
|
143
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
143
|
+
#: src/WalletConnect/ActivityList.tsx:271
|
|
144
144
|
msgid "Loading more"
|
|
145
145
|
msgstr ""
|
|
146
146
|
|
|
@@ -177,11 +177,11 @@ msgstr ""
|
|
|
177
177
|
msgid "or"
|
|
178
178
|
msgstr ""
|
|
179
179
|
|
|
180
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
180
|
+
#: src/WalletConnect/ActivityList.tsx:357
|
|
181
181
|
msgid "Pending"
|
|
182
182
|
msgstr ""
|
|
183
183
|
|
|
184
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
184
|
+
#: src/WalletConnect/ActivityList.tsx:396
|
|
185
185
|
msgid "Pool Creation"
|
|
186
186
|
msgstr ""
|
|
187
187
|
|
|
@@ -194,23 +194,23 @@ msgstr ""
|
|
|
194
194
|
msgid "Receiver address"
|
|
195
195
|
msgstr ""
|
|
196
196
|
|
|
197
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
197
|
+
#: src/WalletConnect/ActivityList.tsx:392
|
|
198
198
|
msgid "Remove Liquidity"
|
|
199
199
|
msgstr ""
|
|
200
200
|
|
|
201
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
202
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
201
|
+
#: src/WalletConnect/ActivityList.tsx:358
|
|
202
|
+
#: src/WalletConnect/ActivityList.tsx:368
|
|
203
203
|
msgid "Reset"
|
|
204
204
|
msgstr ""
|
|
205
205
|
|
|
206
206
|
#: src/WalletConnect/AccountPage.tsx:203
|
|
207
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
207
|
+
#: src/WalletConnect/ActivityList.tsx:408
|
|
208
208
|
#: src/WalletConnect/SendTokenPage.tsx:116
|
|
209
209
|
#: src/WalletConnect/SendTokenPage.tsx:244
|
|
210
210
|
msgid "Send"
|
|
211
211
|
msgstr ""
|
|
212
212
|
|
|
213
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
213
|
+
#: src/WalletConnect/ActivityList.tsx:398
|
|
214
214
|
msgid "Stake"
|
|
215
215
|
msgstr ""
|
|
216
216
|
|
|
@@ -218,11 +218,11 @@ msgstr ""
|
|
|
218
218
|
msgid "Submit"
|
|
219
219
|
msgstr ""
|
|
220
220
|
|
|
221
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
221
|
+
#: src/WalletConnect/ActivityList.tsx:355
|
|
222
222
|
msgid "Succeeded"
|
|
223
223
|
msgstr ""
|
|
224
224
|
|
|
225
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
225
|
+
#: src/WalletConnect/ActivityList.tsx:382
|
|
226
226
|
msgid "Swap"
|
|
227
227
|
msgstr ""
|
|
228
228
|
|
|
@@ -232,7 +232,7 @@ msgid ""
|
|
|
232
232
|
"Please unlock from the device"
|
|
233
233
|
msgstr ""
|
|
234
234
|
|
|
235
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
235
|
+
#: src/WalletConnect/ActivityList.tsx:135
|
|
236
236
|
msgid "This is empty"
|
|
237
237
|
msgstr ""
|
|
238
238
|
|
|
@@ -240,7 +240,7 @@ msgstr ""
|
|
|
240
240
|
msgid "Token"
|
|
241
241
|
msgstr ""
|
|
242
242
|
|
|
243
|
-
#: src/WalletConnect/ActivityList.tsx:
|
|
243
|
+
#: src/WalletConnect/ActivityList.tsx:384
|
|
244
244
|
msgid "Transfer"
|
|
245
245
|
msgstr ""
|
|
246
246
|
|