@superfluid-finance/sdk-redux 0.7.0 → 0.7.1-dev.030d123.0
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/module/reduxSlices/rtkQuery/cacheTags/CacheTagTypes.d.ts.map +1 -1
- package/dist/module/reduxSlices/rtkQuery/cacheTags/invalidateSpecificCacheTagsForEvents.d.ts.map +1 -1
- package/dist/module/reduxSlices/rtkQuery/cacheTags/monitorAddressForNextEventToInvalidateCache.d.ts.map +1 -1
- package/dist/module/reduxSlices/rtkQuery/rpcApiSlice/endpoints/flowEndpoints.d.ts.map +1 -1
- package/dist/module/reduxSlices/rtkQuery/rpcApiSlice/endpoints/indexEndpoints.d.ts.map +1 -1
- package/dist/module/reduxSlices/rtkQuery/rpcApiSlice/endpoints/superTokenEndpoints.d.ts.map +1 -1
- package/dist/module/reduxSlices/rtkQuery/rpcApiSlice/rpcApiSlice.d.ts.map +1 -1
- package/dist/module/reduxSlices/rtkQuery/subgraphApiSlice/endpoints/baseEndpoints.d.ts.map +1 -1
- package/dist/module/reduxSlices/rtkQuery/subgraphApiSlice/endpoints/entityEndpoints.d.ts.map +1 -1
- package/dist/module/reduxSlices/rtkQuery/subgraphApiSlice/endpoints/eventEndpoints.d.ts.map +1 -1
- package/dist/module/reduxSlices/rtkQuery/subgraphApiSlice/provideSpecificCacheTagsFromRelevantAddresses.d.ts.map +1 -1
- package/dist/module/reduxSlices/rtkQuery/subgraphApiSlice/subgraphApiSlice.d.ts.map +1 -1
- package/dist/module/reduxSlices/transactionTrackerSlice/registerNewTransaction.d.ts.map +1 -1
- package/dist/module/reduxSlices/transactionTrackerSlice/thunks/initiateNewTransactionTrackingThunk.d.ts +1 -10
- package/dist/module/reduxSlices/transactionTrackerSlice/thunks/initiateNewTransactionTrackingThunk.d.ts.map +1 -1
- package/dist/module/reduxSlices/transactionTrackerSlice/thunks/initiateOldPendingTransactionsTrackingThunk.d.ts +1 -10
- package/dist/module/reduxSlices/transactionTrackerSlice/thunks/initiateOldPendingTransactionsTrackingThunk.d.ts.map +1 -1
- package/dist/module/reduxSlices/transactionTrackerSlice/thunks/trackPendingTransactionThunk.d.ts +1 -10
- package/dist/module/reduxSlices/transactionTrackerSlice/thunks/trackPendingTransactionThunk.d.ts.map +1 -1
- package/dist/module/reduxSlices/transactionTrackerSlice/transactionTrackerSlice.d.ts +368 -16
- package/dist/module/reduxSlices/transactionTrackerSlice/transactionTrackerSlice.d.ts.map +1 -1
- package/dist/module/reduxSlices/transactionTrackerSlice/trySerializeTransaction.d.ts.map +1 -1
- package/dist/module/sdkReduxConfig.d.ts +368 -16
- package/dist/module/sdkReduxConfig.d.ts.map +1 -1
- package/dist/module/sdkReduxInitialization.d.ts +368 -16
- package/dist/module/sdkReduxInitialization.d.ts.map +1 -1
- package/dist/module/utils.d.ts.map +1 -1
- package/package.json +7 -7
|
@@ -24,15 +24,103 @@ export declare const initializeTransactionTrackerSlice: () => {
|
|
|
24
24
|
reducer: import("redux").Reducer<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>;
|
|
25
25
|
actions: import("@reduxjs/toolkit").CaseReducerActions<{
|
|
26
26
|
addTransaction: {
|
|
27
|
-
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> |
|
|
28
|
-
|
|
27
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
28
|
+
ids: string[];
|
|
29
|
+
entities: {
|
|
30
|
+
[x: string]: {
|
|
31
|
+
id: string;
|
|
32
|
+
chainId: number;
|
|
33
|
+
hash: string;
|
|
34
|
+
signerAddress: string;
|
|
35
|
+
timestampMs: number;
|
|
36
|
+
status: import(".").TransactionStatus;
|
|
37
|
+
transactionResponse?: string | undefined;
|
|
38
|
+
transactionReceipt?: string | undefined;
|
|
39
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
40
|
+
ethersErrorMessage?: string | undefined;
|
|
41
|
+
title: import(".").TransactionTitle;
|
|
42
|
+
extraData: {
|
|
43
|
+
[x: string]: unknown;
|
|
44
|
+
};
|
|
45
|
+
isSubgraphInSync?: true | undefined;
|
|
46
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, entity: import(".").TrackedTransaction): S;
|
|
50
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
51
|
+
ids: string[];
|
|
52
|
+
entities: {
|
|
53
|
+
[x: string]: {
|
|
54
|
+
id: string;
|
|
55
|
+
chainId: number;
|
|
56
|
+
hash: string;
|
|
57
|
+
signerAddress: string;
|
|
58
|
+
timestampMs: number;
|
|
59
|
+
status: import(".").TransactionStatus;
|
|
60
|
+
transactionResponse?: string | undefined;
|
|
61
|
+
transactionReceipt?: string | undefined;
|
|
62
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
63
|
+
ethersErrorMessage?: string | undefined;
|
|
64
|
+
title: import(".").TransactionTitle;
|
|
65
|
+
extraData: {
|
|
66
|
+
[x: string]: unknown;
|
|
67
|
+
};
|
|
68
|
+
isSubgraphInSync?: true | undefined;
|
|
69
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
|
|
29
73
|
payload: import(".").TrackedTransaction;
|
|
30
74
|
type: string;
|
|
31
75
|
}): S;
|
|
32
76
|
};
|
|
33
77
|
updateTransaction: {
|
|
34
|
-
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> |
|
|
35
|
-
|
|
78
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
79
|
+
ids: string[];
|
|
80
|
+
entities: {
|
|
81
|
+
[x: string]: {
|
|
82
|
+
id: string;
|
|
83
|
+
chainId: number;
|
|
84
|
+
hash: string;
|
|
85
|
+
signerAddress: string;
|
|
86
|
+
timestampMs: number;
|
|
87
|
+
status: import(".").TransactionStatus;
|
|
88
|
+
transactionResponse?: string | undefined;
|
|
89
|
+
transactionReceipt?: string | undefined;
|
|
90
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
91
|
+
ethersErrorMessage?: string | undefined;
|
|
92
|
+
title: import(".").TransactionTitle;
|
|
93
|
+
extraData: {
|
|
94
|
+
[x: string]: unknown;
|
|
95
|
+
};
|
|
96
|
+
isSubgraphInSync?: true | undefined;
|
|
97
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>): S;
|
|
101
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
102
|
+
ids: string[];
|
|
103
|
+
entities: {
|
|
104
|
+
[x: string]: {
|
|
105
|
+
id: string;
|
|
106
|
+
chainId: number;
|
|
107
|
+
hash: string;
|
|
108
|
+
signerAddress: string;
|
|
109
|
+
timestampMs: number;
|
|
110
|
+
status: import(".").TransactionStatus;
|
|
111
|
+
transactionResponse?: string | undefined;
|
|
112
|
+
transactionReceipt?: string | undefined;
|
|
113
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
114
|
+
ethersErrorMessage?: string | undefined;
|
|
115
|
+
title: import(".").TransactionTitle;
|
|
116
|
+
extraData: {
|
|
117
|
+
[x: string]: unknown;
|
|
118
|
+
};
|
|
119
|
+
isSubgraphInSync?: true | undefined;
|
|
120
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
|
|
36
124
|
payload: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>;
|
|
37
125
|
type: string;
|
|
38
126
|
}): S;
|
|
@@ -40,15 +128,103 @@ export declare const initializeTransactionTrackerSlice: () => {
|
|
|
40
128
|
}, "superfluid_transactions">;
|
|
41
129
|
caseReducers: {
|
|
42
130
|
addTransaction: {
|
|
43
|
-
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> |
|
|
44
|
-
|
|
131
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
132
|
+
ids: string[];
|
|
133
|
+
entities: {
|
|
134
|
+
[x: string]: {
|
|
135
|
+
id: string;
|
|
136
|
+
chainId: number;
|
|
137
|
+
hash: string;
|
|
138
|
+
signerAddress: string;
|
|
139
|
+
timestampMs: number;
|
|
140
|
+
status: import(".").TransactionStatus;
|
|
141
|
+
transactionResponse?: string | undefined;
|
|
142
|
+
transactionReceipt?: string | undefined;
|
|
143
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
144
|
+
ethersErrorMessage?: string | undefined;
|
|
145
|
+
title: import(".").TransactionTitle;
|
|
146
|
+
extraData: {
|
|
147
|
+
[x: string]: unknown;
|
|
148
|
+
};
|
|
149
|
+
isSubgraphInSync?: true | undefined;
|
|
150
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, entity: import(".").TrackedTransaction): S;
|
|
154
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
155
|
+
ids: string[];
|
|
156
|
+
entities: {
|
|
157
|
+
[x: string]: {
|
|
158
|
+
id: string;
|
|
159
|
+
chainId: number;
|
|
160
|
+
hash: string;
|
|
161
|
+
signerAddress: string;
|
|
162
|
+
timestampMs: number;
|
|
163
|
+
status: import(".").TransactionStatus;
|
|
164
|
+
transactionResponse?: string | undefined;
|
|
165
|
+
transactionReceipt?: string | undefined;
|
|
166
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
167
|
+
ethersErrorMessage?: string | undefined;
|
|
168
|
+
title: import(".").TransactionTitle;
|
|
169
|
+
extraData: {
|
|
170
|
+
[x: string]: unknown;
|
|
171
|
+
};
|
|
172
|
+
isSubgraphInSync?: true | undefined;
|
|
173
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
|
|
45
177
|
payload: import(".").TrackedTransaction;
|
|
46
178
|
type: string;
|
|
47
179
|
}): S;
|
|
48
180
|
};
|
|
49
181
|
updateTransaction: {
|
|
50
|
-
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> |
|
|
51
|
-
|
|
182
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
183
|
+
ids: string[];
|
|
184
|
+
entities: {
|
|
185
|
+
[x: string]: {
|
|
186
|
+
id: string;
|
|
187
|
+
chainId: number;
|
|
188
|
+
hash: string;
|
|
189
|
+
signerAddress: string;
|
|
190
|
+
timestampMs: number;
|
|
191
|
+
status: import(".").TransactionStatus;
|
|
192
|
+
transactionResponse?: string | undefined;
|
|
193
|
+
transactionReceipt?: string | undefined;
|
|
194
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
195
|
+
ethersErrorMessage?: string | undefined;
|
|
196
|
+
title: import(".").TransactionTitle;
|
|
197
|
+
extraData: {
|
|
198
|
+
[x: string]: unknown;
|
|
199
|
+
};
|
|
200
|
+
isSubgraphInSync?: true | undefined;
|
|
201
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>): S;
|
|
205
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
206
|
+
ids: string[];
|
|
207
|
+
entities: {
|
|
208
|
+
[x: string]: {
|
|
209
|
+
id: string;
|
|
210
|
+
chainId: number;
|
|
211
|
+
hash: string;
|
|
212
|
+
signerAddress: string;
|
|
213
|
+
timestampMs: number;
|
|
214
|
+
status: import(".").TransactionStatus;
|
|
215
|
+
transactionResponse?: string | undefined;
|
|
216
|
+
transactionReceipt?: string | undefined;
|
|
217
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
218
|
+
ethersErrorMessage?: string | undefined;
|
|
219
|
+
title: import(".").TransactionTitle;
|
|
220
|
+
extraData: {
|
|
221
|
+
[x: string]: unknown;
|
|
222
|
+
};
|
|
223
|
+
isSubgraphInSync?: true | undefined;
|
|
224
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
|
|
52
228
|
payload: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>;
|
|
53
229
|
type: string;
|
|
54
230
|
}): S;
|
|
@@ -60,15 +236,103 @@ export declare const initializeTransactionTrackerSlice: () => {
|
|
|
60
236
|
selectors: {};
|
|
61
237
|
injectInto<NewReducerPath extends string = "superfluid_transactions">(this: import("@reduxjs/toolkit").Slice<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>, {
|
|
62
238
|
addTransaction: {
|
|
63
|
-
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> |
|
|
64
|
-
|
|
239
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
240
|
+
ids: string[];
|
|
241
|
+
entities: {
|
|
242
|
+
[x: string]: {
|
|
243
|
+
id: string;
|
|
244
|
+
chainId: number;
|
|
245
|
+
hash: string;
|
|
246
|
+
signerAddress: string;
|
|
247
|
+
timestampMs: number;
|
|
248
|
+
status: import(".").TransactionStatus;
|
|
249
|
+
transactionResponse?: string | undefined;
|
|
250
|
+
transactionReceipt?: string | undefined;
|
|
251
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
252
|
+
ethersErrorMessage?: string | undefined;
|
|
253
|
+
title: import(".").TransactionTitle;
|
|
254
|
+
extraData: {
|
|
255
|
+
[x: string]: unknown;
|
|
256
|
+
};
|
|
257
|
+
isSubgraphInSync?: true | undefined;
|
|
258
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, entity: import(".").TrackedTransaction): S;
|
|
262
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
263
|
+
ids: string[];
|
|
264
|
+
entities: {
|
|
265
|
+
[x: string]: {
|
|
266
|
+
id: string;
|
|
267
|
+
chainId: number;
|
|
268
|
+
hash: string;
|
|
269
|
+
signerAddress: string;
|
|
270
|
+
timestampMs: number;
|
|
271
|
+
status: import(".").TransactionStatus;
|
|
272
|
+
transactionResponse?: string | undefined;
|
|
273
|
+
transactionReceipt?: string | undefined;
|
|
274
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
275
|
+
ethersErrorMessage?: string | undefined;
|
|
276
|
+
title: import(".").TransactionTitle;
|
|
277
|
+
extraData: {
|
|
278
|
+
[x: string]: unknown;
|
|
279
|
+
};
|
|
280
|
+
isSubgraphInSync?: true | undefined;
|
|
281
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
|
|
65
285
|
payload: import(".").TrackedTransaction;
|
|
66
286
|
type: string;
|
|
67
287
|
}): S;
|
|
68
288
|
};
|
|
69
289
|
updateTransaction: {
|
|
70
|
-
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> |
|
|
71
|
-
|
|
290
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
291
|
+
ids: string[];
|
|
292
|
+
entities: {
|
|
293
|
+
[x: string]: {
|
|
294
|
+
id: string;
|
|
295
|
+
chainId: number;
|
|
296
|
+
hash: string;
|
|
297
|
+
signerAddress: string;
|
|
298
|
+
timestampMs: number;
|
|
299
|
+
status: import(".").TransactionStatus;
|
|
300
|
+
transactionResponse?: string | undefined;
|
|
301
|
+
transactionReceipt?: string | undefined;
|
|
302
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
303
|
+
ethersErrorMessage?: string | undefined;
|
|
304
|
+
title: import(".").TransactionTitle;
|
|
305
|
+
extraData: {
|
|
306
|
+
[x: string]: unknown;
|
|
307
|
+
};
|
|
308
|
+
isSubgraphInSync?: true | undefined;
|
|
309
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
310
|
+
};
|
|
311
|
+
};
|
|
312
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>): S;
|
|
313
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
314
|
+
ids: string[];
|
|
315
|
+
entities: {
|
|
316
|
+
[x: string]: {
|
|
317
|
+
id: string;
|
|
318
|
+
chainId: number;
|
|
319
|
+
hash: string;
|
|
320
|
+
signerAddress: string;
|
|
321
|
+
timestampMs: number;
|
|
322
|
+
status: import(".").TransactionStatus;
|
|
323
|
+
transactionResponse?: string | undefined;
|
|
324
|
+
transactionReceipt?: string | undefined;
|
|
325
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
326
|
+
ethersErrorMessage?: string | undefined;
|
|
327
|
+
title: import(".").TransactionTitle;
|
|
328
|
+
extraData: {
|
|
329
|
+
[x: string]: unknown;
|
|
330
|
+
};
|
|
331
|
+
isSubgraphInSync?: true | undefined;
|
|
332
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
333
|
+
};
|
|
334
|
+
};
|
|
335
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
|
|
72
336
|
payload: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>;
|
|
73
337
|
type: string;
|
|
74
338
|
}): S;
|
|
@@ -86,15 +350,103 @@ export declare const initializeTransactionTrackerSlice: () => {
|
|
|
86
350
|
reducerPath?: NewReducerPath | undefined;
|
|
87
351
|
}) | undefined): Omit<import("@reduxjs/toolkit").Slice<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>, {
|
|
88
352
|
addTransaction: {
|
|
89
|
-
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> |
|
|
90
|
-
|
|
353
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
354
|
+
ids: string[];
|
|
355
|
+
entities: {
|
|
356
|
+
[x: string]: {
|
|
357
|
+
id: string;
|
|
358
|
+
chainId: number;
|
|
359
|
+
hash: string;
|
|
360
|
+
signerAddress: string;
|
|
361
|
+
timestampMs: number;
|
|
362
|
+
status: import(".").TransactionStatus;
|
|
363
|
+
transactionResponse?: string | undefined;
|
|
364
|
+
transactionReceipt?: string | undefined;
|
|
365
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
366
|
+
ethersErrorMessage?: string | undefined;
|
|
367
|
+
title: import(".").TransactionTitle;
|
|
368
|
+
extraData: {
|
|
369
|
+
[x: string]: unknown;
|
|
370
|
+
};
|
|
371
|
+
isSubgraphInSync?: true | undefined;
|
|
372
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, entity: import(".").TrackedTransaction): S;
|
|
376
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
377
|
+
ids: string[];
|
|
378
|
+
entities: {
|
|
379
|
+
[x: string]: {
|
|
380
|
+
id: string;
|
|
381
|
+
chainId: number;
|
|
382
|
+
hash: string;
|
|
383
|
+
signerAddress: string;
|
|
384
|
+
timestampMs: number;
|
|
385
|
+
status: import(".").TransactionStatus;
|
|
386
|
+
transactionResponse?: string | undefined;
|
|
387
|
+
transactionReceipt?: string | undefined;
|
|
388
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
389
|
+
ethersErrorMessage?: string | undefined;
|
|
390
|
+
title: import(".").TransactionTitle;
|
|
391
|
+
extraData: {
|
|
392
|
+
[x: string]: unknown;
|
|
393
|
+
};
|
|
394
|
+
isSubgraphInSync?: true | undefined;
|
|
395
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
396
|
+
};
|
|
397
|
+
};
|
|
398
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
|
|
91
399
|
payload: import(".").TrackedTransaction;
|
|
92
400
|
type: string;
|
|
93
401
|
}): S;
|
|
94
402
|
};
|
|
95
403
|
updateTransaction: {
|
|
96
|
-
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> |
|
|
97
|
-
|
|
404
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
405
|
+
ids: string[];
|
|
406
|
+
entities: {
|
|
407
|
+
[x: string]: {
|
|
408
|
+
id: string;
|
|
409
|
+
chainId: number;
|
|
410
|
+
hash: string;
|
|
411
|
+
signerAddress: string;
|
|
412
|
+
timestampMs: number;
|
|
413
|
+
status: import(".").TransactionStatus;
|
|
414
|
+
transactionResponse?: string | undefined;
|
|
415
|
+
transactionReceipt?: string | undefined;
|
|
416
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
417
|
+
ethersErrorMessage?: string | undefined;
|
|
418
|
+
title: import(".").TransactionTitle;
|
|
419
|
+
extraData: {
|
|
420
|
+
[x: string]: unknown;
|
|
421
|
+
};
|
|
422
|
+
isSubgraphInSync?: true | undefined;
|
|
423
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
424
|
+
};
|
|
425
|
+
};
|
|
426
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>): S;
|
|
427
|
+
<S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
|
|
428
|
+
ids: string[];
|
|
429
|
+
entities: {
|
|
430
|
+
[x: string]: {
|
|
431
|
+
id: string;
|
|
432
|
+
chainId: number;
|
|
433
|
+
hash: string;
|
|
434
|
+
signerAddress: string;
|
|
435
|
+
timestampMs: number;
|
|
436
|
+
status: import(".").TransactionStatus;
|
|
437
|
+
transactionResponse?: string | undefined;
|
|
438
|
+
transactionReceipt?: string | undefined;
|
|
439
|
+
ethersErrorCode?: import("ethers").errors | undefined;
|
|
440
|
+
ethersErrorMessage?: string | undefined;
|
|
441
|
+
title: import(".").TransactionTitle;
|
|
442
|
+
extraData: {
|
|
443
|
+
[x: string]: unknown;
|
|
444
|
+
};
|
|
445
|
+
isSubgraphInSync?: true | undefined;
|
|
446
|
+
blockTransactionSucceededIn?: number | undefined;
|
|
447
|
+
};
|
|
448
|
+
};
|
|
449
|
+
}>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
|
|
98
450
|
payload: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>;
|
|
99
451
|
type: string;
|
|
100
452
|
}): S;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdkReduxInitialization.d.ts","sourceRoot":"","sources":["../../src/sdkReduxInitialization.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,SAAS,EAAC,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAC,KAAK,SAAS,EAAC,MAAM,8BAA8B,CAAC;AAE5D,OAAO,EAAC,KAAK,UAAU,EAAC,MAAM,mCAAmC,CAAC;AAMlE;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB,GAAI,CAAC,SAAS,UAAU,
|
|
1
|
+
{"version":3,"file":"sdkReduxInitialization.d.ts","sourceRoot":"","sources":["../../src/sdkReduxInitialization.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,SAAS,EAAC,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAC,KAAK,SAAS,EAAC,MAAM,8BAA8B,CAAC;AAE5D,OAAO,EAAC,KAAK,UAAU,EAAC,MAAM,mCAAmC,CAAC;AAMlE;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB,GAAI,CAAC,SAAS,UAAU,EAAE,WAAW,SAAS,CAAC,CAAC,CAAC,8NAIlF,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,0BAA0B,GAAI,CAAC,SAAS,UAAU,EAAE,WAAW,SAAS,CAAC,CAAC,CAAC,mOAIvF,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAay9mE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CATvgnE,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,GAAI,SAAS,MAAM,EAAE,WAAW,CAAC,MAAM,OAAO,CAAC,SAAS,CAAC,CAAC,GAAG,SAAS,SAC1D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,eAAO,MAAM,SAAS,GAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,eAAO,MAAM,SAAS,GAAI,CAAC,EAAE,KAAK,CAAC,MAAQ,CAAC;AAE5C;;;;GAIG;AACH,wBAAgB,QAAQ,CAAC,CAAC,EAAE,SAAS,EAAE,OAAO,GAAG,OAAO,EAAE,WAAW,EAAE,MAAM,CAAC,EAAE,GAAG,CAAC,EAAE,CAErF;AAED;;;GAGG;AACH,oBAAY,gBAAgB;IACxB,SAAS,OAAO;IAChB,WAAW,OAAO;IAClB,aAAa,QAAQ;IACrB,SAAS,QAAQ;IACjB,UAAU,SAAS;IACnB,YAAY,SAAS;IACrB,WAAW,SAAS;CACvB;AAED;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAG,WAAoB,CAAC;AAEzD;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAG,QAAiB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superfluid-finance/sdk-redux",
|
|
3
3
|
"description": "SDK Redux for streamlined front-end application development with Superfluid Protocol",
|
|
4
|
-
"version": "0.7.0",
|
|
5
|
-
"bugs": "https://github.com/superfluid-
|
|
4
|
+
"version": "0.7.1-dev.030d123.0",
|
|
5
|
+
"bugs": "https://github.com/superfluid-org/protocol-monorepo/issues",
|
|
6
6
|
"config": {
|
|
7
7
|
"commitizen": {
|
|
8
8
|
"path": "cz-conventional-changelog"
|
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"graphql-request": "6.1.0",
|
|
13
|
-
"promise-retry": "2.0.1",
|
|
14
13
|
"lodash.memoize": "4.1.2",
|
|
15
|
-
"lodash.uniqby": "4.7.0"
|
|
14
|
+
"lodash.uniqby": "4.7.0",
|
|
15
|
+
"promise-retry": "2.0.1"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@reduxjs/toolkit": "^2",
|
|
19
|
-
"@types/
|
|
20
|
-
"@types/lodash.memoize": "^4.1.7",
|
|
19
|
+
"@types/lodash.memoize": "^4.1.9",
|
|
21
20
|
"@types/lodash.uniqby": "^4.7.9",
|
|
21
|
+
"@types/promise-retry": "^1.1.6",
|
|
22
22
|
"@types/react": "^19",
|
|
23
23
|
"@types/react-dom": "^19",
|
|
24
24
|
"react": "^19",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"repository": {
|
|
46
46
|
"type": "git",
|
|
47
|
-
"url": "https://github.com/superfluid-
|
|
47
|
+
"url": "https://github.com/superfluid-org/protocol-monorepo.git",
|
|
48
48
|
"directory": "packages/sdk-redux"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|