@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.
Files changed (28) hide show
  1. package/dist/module/reduxSlices/rtkQuery/cacheTags/CacheTagTypes.d.ts.map +1 -1
  2. package/dist/module/reduxSlices/rtkQuery/cacheTags/invalidateSpecificCacheTagsForEvents.d.ts.map +1 -1
  3. package/dist/module/reduxSlices/rtkQuery/cacheTags/monitorAddressForNextEventToInvalidateCache.d.ts.map +1 -1
  4. package/dist/module/reduxSlices/rtkQuery/rpcApiSlice/endpoints/flowEndpoints.d.ts.map +1 -1
  5. package/dist/module/reduxSlices/rtkQuery/rpcApiSlice/endpoints/indexEndpoints.d.ts.map +1 -1
  6. package/dist/module/reduxSlices/rtkQuery/rpcApiSlice/endpoints/superTokenEndpoints.d.ts.map +1 -1
  7. package/dist/module/reduxSlices/rtkQuery/rpcApiSlice/rpcApiSlice.d.ts.map +1 -1
  8. package/dist/module/reduxSlices/rtkQuery/subgraphApiSlice/endpoints/baseEndpoints.d.ts.map +1 -1
  9. package/dist/module/reduxSlices/rtkQuery/subgraphApiSlice/endpoints/entityEndpoints.d.ts.map +1 -1
  10. package/dist/module/reduxSlices/rtkQuery/subgraphApiSlice/endpoints/eventEndpoints.d.ts.map +1 -1
  11. package/dist/module/reduxSlices/rtkQuery/subgraphApiSlice/provideSpecificCacheTagsFromRelevantAddresses.d.ts.map +1 -1
  12. package/dist/module/reduxSlices/rtkQuery/subgraphApiSlice/subgraphApiSlice.d.ts.map +1 -1
  13. package/dist/module/reduxSlices/transactionTrackerSlice/registerNewTransaction.d.ts.map +1 -1
  14. package/dist/module/reduxSlices/transactionTrackerSlice/thunks/initiateNewTransactionTrackingThunk.d.ts +1 -10
  15. package/dist/module/reduxSlices/transactionTrackerSlice/thunks/initiateNewTransactionTrackingThunk.d.ts.map +1 -1
  16. package/dist/module/reduxSlices/transactionTrackerSlice/thunks/initiateOldPendingTransactionsTrackingThunk.d.ts +1 -10
  17. package/dist/module/reduxSlices/transactionTrackerSlice/thunks/initiateOldPendingTransactionsTrackingThunk.d.ts.map +1 -1
  18. package/dist/module/reduxSlices/transactionTrackerSlice/thunks/trackPendingTransactionThunk.d.ts +1 -10
  19. package/dist/module/reduxSlices/transactionTrackerSlice/thunks/trackPendingTransactionThunk.d.ts.map +1 -1
  20. package/dist/module/reduxSlices/transactionTrackerSlice/transactionTrackerSlice.d.ts +368 -16
  21. package/dist/module/reduxSlices/transactionTrackerSlice/transactionTrackerSlice.d.ts.map +1 -1
  22. package/dist/module/reduxSlices/transactionTrackerSlice/trySerializeTransaction.d.ts.map +1 -1
  23. package/dist/module/sdkReduxConfig.d.ts +368 -16
  24. package/dist/module/sdkReduxConfig.d.ts.map +1 -1
  25. package/dist/module/sdkReduxInitialization.d.ts +368 -16
  26. package/dist/module/sdkReduxInitialization.d.ts.map +1 -1
  27. package/dist/module/utils.d.ts.map +1 -1
  28. package/package.json +7 -7
@@ -47,15 +47,103 @@ export declare const getTransactionTrackerSlice: () => {
47
47
  reducer: import("redux").Reducer<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>;
48
48
  actions: import("@reduxjs/toolkit").CaseReducerActions<{
49
49
  addTransaction: {
50
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, entity: import(".").TrackedTransaction): S;
51
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
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, entity: import(".").TrackedTransaction): S;
73
+ <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
74
+ ids: string[];
75
+ entities: {
76
+ [x: string]: {
77
+ id: string;
78
+ chainId: number;
79
+ hash: string;
80
+ signerAddress: string;
81
+ timestampMs: number;
82
+ status: import(".").TransactionStatus;
83
+ transactionResponse?: string | undefined;
84
+ transactionReceipt?: string | undefined;
85
+ ethersErrorCode?: import("ethers").errors | undefined;
86
+ ethersErrorMessage?: string | undefined;
87
+ title: import(".").TransactionTitle;
88
+ extraData: {
89
+ [x: string]: unknown;
90
+ };
91
+ isSubgraphInSync?: true | undefined;
92
+ blockTransactionSucceededIn?: number | undefined;
93
+ };
94
+ };
95
+ }>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
52
96
  payload: import(".").TrackedTransaction;
53
97
  type: string;
54
98
  }): S;
55
99
  };
56
100
  updateTransaction: {
57
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(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;
58
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
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: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>): S;
124
+ <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
125
+ ids: string[];
126
+ entities: {
127
+ [x: string]: {
128
+ id: string;
129
+ chainId: number;
130
+ hash: string;
131
+ signerAddress: string;
132
+ timestampMs: number;
133
+ status: import(".").TransactionStatus;
134
+ transactionResponse?: string | undefined;
135
+ transactionReceipt?: string | undefined;
136
+ ethersErrorCode?: import("ethers").errors | undefined;
137
+ ethersErrorMessage?: string | undefined;
138
+ title: import(".").TransactionTitle;
139
+ extraData: {
140
+ [x: string]: unknown;
141
+ };
142
+ isSubgraphInSync?: true | undefined;
143
+ blockTransactionSucceededIn?: number | undefined;
144
+ };
145
+ };
146
+ }>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
59
147
  payload: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>;
60
148
  type: string;
61
149
  }): S;
@@ -63,15 +151,103 @@ export declare const getTransactionTrackerSlice: () => {
63
151
  }, "superfluid_transactions">;
64
152
  caseReducers: {
65
153
  addTransaction: {
66
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, entity: import(".").TrackedTransaction): S;
67
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
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, entity: import(".").TrackedTransaction): S;
177
+ <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
178
+ ids: string[];
179
+ entities: {
180
+ [x: string]: {
181
+ id: string;
182
+ chainId: number;
183
+ hash: string;
184
+ signerAddress: string;
185
+ timestampMs: number;
186
+ status: import(".").TransactionStatus;
187
+ transactionResponse?: string | undefined;
188
+ transactionReceipt?: string | undefined;
189
+ ethersErrorCode?: import("ethers").errors | undefined;
190
+ ethersErrorMessage?: string | undefined;
191
+ title: import(".").TransactionTitle;
192
+ extraData: {
193
+ [x: string]: unknown;
194
+ };
195
+ isSubgraphInSync?: true | undefined;
196
+ blockTransactionSucceededIn?: number | undefined;
197
+ };
198
+ };
199
+ }>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
68
200
  payload: import(".").TrackedTransaction;
69
201
  type: string;
70
202
  }): S;
71
203
  };
72
204
  updateTransaction: {
73
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(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;
74
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
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: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>): S;
228
+ <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
229
+ ids: string[];
230
+ entities: {
231
+ [x: string]: {
232
+ id: string;
233
+ chainId: number;
234
+ hash: string;
235
+ signerAddress: string;
236
+ timestampMs: number;
237
+ status: import(".").TransactionStatus;
238
+ transactionResponse?: string | undefined;
239
+ transactionReceipt?: string | undefined;
240
+ ethersErrorCode?: import("ethers").errors | undefined;
241
+ ethersErrorMessage?: string | undefined;
242
+ title: import(".").TransactionTitle;
243
+ extraData: {
244
+ [x: string]: unknown;
245
+ };
246
+ isSubgraphInSync?: true | undefined;
247
+ blockTransactionSucceededIn?: number | undefined;
248
+ };
249
+ };
250
+ }>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
75
251
  payload: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>;
76
252
  type: string;
77
253
  }): S;
@@ -83,15 +259,103 @@ export declare const getTransactionTrackerSlice: () => {
83
259
  selectors: {};
84
260
  injectInto<NewReducerPath extends string = "superfluid_transactions">(this: import("@reduxjs/toolkit").Slice<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>, {
85
261
  addTransaction: {
86
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, entity: import(".").TrackedTransaction): S;
87
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
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, entity: import(".").TrackedTransaction): S;
285
+ <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
286
+ ids: string[];
287
+ entities: {
288
+ [x: string]: {
289
+ id: string;
290
+ chainId: number;
291
+ hash: string;
292
+ signerAddress: string;
293
+ timestampMs: number;
294
+ status: import(".").TransactionStatus;
295
+ transactionResponse?: string | undefined;
296
+ transactionReceipt?: string | undefined;
297
+ ethersErrorCode?: import("ethers").errors | undefined;
298
+ ethersErrorMessage?: string | undefined;
299
+ title: import(".").TransactionTitle;
300
+ extraData: {
301
+ [x: string]: unknown;
302
+ };
303
+ isSubgraphInSync?: true | undefined;
304
+ blockTransactionSucceededIn?: number | undefined;
305
+ };
306
+ };
307
+ }>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
88
308
  payload: import(".").TrackedTransaction;
89
309
  type: string;
90
310
  }): S;
91
311
  };
92
312
  updateTransaction: {
93
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(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;
94
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
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: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>): S;
336
+ <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
337
+ ids: string[];
338
+ entities: {
339
+ [x: string]: {
340
+ id: string;
341
+ chainId: number;
342
+ hash: string;
343
+ signerAddress: string;
344
+ timestampMs: number;
345
+ status: import(".").TransactionStatus;
346
+ transactionResponse?: string | undefined;
347
+ transactionReceipt?: string | undefined;
348
+ ethersErrorCode?: import("ethers").errors | undefined;
349
+ ethersErrorMessage?: string | undefined;
350
+ title: import(".").TransactionTitle;
351
+ extraData: {
352
+ [x: string]: unknown;
353
+ };
354
+ isSubgraphInSync?: true | undefined;
355
+ blockTransactionSucceededIn?: number | undefined;
356
+ };
357
+ };
358
+ }>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
95
359
  payload: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>;
96
360
  type: string;
97
361
  }): S;
@@ -109,15 +373,103 @@ export declare const getTransactionTrackerSlice: () => {
109
373
  reducerPath?: NewReducerPath | undefined;
110
374
  }) | undefined): Omit<import("@reduxjs/toolkit").Slice<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>, {
111
375
  addTransaction: {
112
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, entity: import(".").TrackedTransaction): S;
113
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
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, entity: import(".").TrackedTransaction): S;
399
+ <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
400
+ ids: string[];
401
+ entities: {
402
+ [x: string]: {
403
+ id: string;
404
+ chainId: number;
405
+ hash: string;
406
+ signerAddress: string;
407
+ timestampMs: number;
408
+ status: import(".").TransactionStatus;
409
+ transactionResponse?: string | undefined;
410
+ transactionReceipt?: string | undefined;
411
+ ethersErrorCode?: import("ethers").errors | undefined;
412
+ ethersErrorMessage?: string | undefined;
413
+ title: import(".").TransactionTitle;
414
+ extraData: {
415
+ [x: string]: unknown;
416
+ };
417
+ isSubgraphInSync?: true | undefined;
418
+ blockTransactionSucceededIn?: number | undefined;
419
+ };
420
+ };
421
+ }>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, action: {
114
422
  payload: import(".").TrackedTransaction;
115
423
  type: string;
116
424
  }): S;
117
425
  };
118
426
  updateTransaction: {
119
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(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;
120
- <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | import("immer").WritableDraft<import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string>>>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
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: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>): S;
450
+ <S extends import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> | {
451
+ ids: string[];
452
+ entities: {
453
+ [x: string]: {
454
+ id: string;
455
+ chainId: number;
456
+ hash: string;
457
+ signerAddress: string;
458
+ timestampMs: number;
459
+ status: import(".").TransactionStatus;
460
+ transactionResponse?: string | undefined;
461
+ transactionReceipt?: string | undefined;
462
+ ethersErrorCode?: import("ethers").errors | undefined;
463
+ ethersErrorMessage?: string | undefined;
464
+ title: import(".").TransactionTitle;
465
+ extraData: {
466
+ [x: string]: unknown;
467
+ };
468
+ isSubgraphInSync?: true | undefined;
469
+ blockTransactionSucceededIn?: number | undefined;
470
+ };
471
+ };
472
+ }>(state: boolean extends (S extends never ? true : false) ? import("@reduxjs/toolkit").EntityState<import(".").TrackedTransaction, string> : S, update: {
121
473
  payload: import("@reduxjs/toolkit").Update<import(".").TrackedTransaction, string>;
122
474
  type: string;
123
475
  }): S;
@@ -1 +1 @@
1
- {"version":3,"file":"sdkReduxConfig.d.ts","sourceRoot":"","sources":["../../src/sdkReduxConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,SAAS,EAAC,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAC,KAAK,MAAM,EAAC,MAAM,QAAQ,CAAC;AAKnC,OAAO,EAAC,KAAK,gBAAgB,EAAC,MAAM,gDAAgD,CAAC;AACrF,OAAO,EAAC,KAAK,qBAAqB,EAAC,MAAM,0DAA0D,CAAC;AACpG,OAAO,EAAC,KAAK,uBAAuB,EAAC,MAAM,+DAA+D,CAAC;AAE3G,UAAU,gBAAgB;IACtB,YAAY,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,OAAO,CAAC,SAAS,CAAC,CAAC;IACtD,YAAY,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,kBAAkB,EAAE,SAAS,GAAG,CAAC,MAAM,OAAO,CAAC,SAAS,CAAC,CAAC,KAAK,IAAI,CAAC;CACvG;AAED,UAAU,kBAAkB;IACxB,cAAc,EAAE,MAAM,gBAAgB,CAAC;IACvC,cAAc,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAC;CACnD;AAED,UAAU,uBAAuB;IAC7B,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;IACjD,mBAAmB,EAAE,CAAC,GAAG,EAAE,qBAAqB,KAAK,IAAI,CAAC;CAC7D;AAED,UAAU,8BAA8B;IACpC,0BAA0B,EAAE,MAAM,uBAAuB,CAAC;IAC1D,0BAA0B,EAAE,CAAC,KAAK,EAAE,uBAAuB,KAAK,IAAI,CAAC;CACxE;AAED;;GAEG;AACH,MAAM,CAAC,OAAO,OAAO,cACjB,YAAW,gBAAgB,EAAE,kBAAkB,EAAE,uBAAuB,EAAE,8BAA8B;IAExG,WAAW,EAAE,gBAAgB,GAAG,SAAS,CAAC;IAC1C,gBAAgB,EAAE,qBAAqB,GAAG,SAAS,CAAC;IACpD,uBAAuB,EAAE,uBAAuB,GAAG,SAAS,CAAC;IAC7D,0BAA0B,oBAAyB,OAAO,CAAC,SAAS,CAAC,EAAI;IACzE,uBAAuB,oBAAyB,OAAO,CAAC,MAAM,CAAC,EAAI;IAEnE,MAAM,CAAC,oBAAoB,IAAI,cAAc;IAO7C,cAAc,IAAI,gBAAgB;IAOlC,mBAAmB,IAAI,qBAAqB;IAO5C,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC;IASjD,0BAA0B,IAAI,uBAAuB;IASrD,cAAc,CAAC,KAAK,EAAE,gBAAgB,GAAG,IAAI;IAS7C,mBAAmB,CAAC,KAAK,EAAE,qBAAqB,GAAG,IAAI;IASvD,YAAY,CAAC,OAAO,EAAE,MAAM,EAAE,iBAAiB,EAAE,SAAS,GAAG,CAAC,MAAM,OAAO,CAAC,SAAS,CAAC,CAAC;IAQvF,0BAA0B,CAAC,KAAK,EAAE,uBAAuB,GAAG,IAAI;CAQnE;AAED,eAAO,MAAM,SAAS,4CAAsC,CAAC;AAC7D,eAAO,MAAM,cAAc,qSAAqC,CAAC;AACjE,eAAO,MAAM,mBAAmB,0SAA0C,CAAC;AAC3E,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQ826D,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAR9z6D,CAAC;AACzF,eAAO,MAAM,YAAY,YAAa,MAAM,uBAAsC,CAAC;AACnF,eAAO,MAAM,iBAAiB,YAAa,MAAM,uGAGL,CAAC"}
1
+ {"version":3,"file":"sdkReduxConfig.d.ts","sourceRoot":"","sources":["../../src/sdkReduxConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,SAAS,EAAC,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAC,KAAK,MAAM,EAAC,MAAM,QAAQ,CAAC;AAKnC,OAAO,EAAC,KAAK,gBAAgB,EAAC,MAAM,gDAAgD,CAAC;AACrF,OAAO,EAAC,KAAK,qBAAqB,EAAC,MAAM,0DAA0D,CAAC;AACpG,OAAO,EAAC,KAAK,uBAAuB,EAAC,MAAM,+DAA+D,CAAC;AAE3G,UAAU,gBAAgB;IACtB,YAAY,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,OAAO,CAAC,SAAS,CAAC,CAAC;IACtD,YAAY,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,kBAAkB,EAAE,SAAS,GAAG,CAAC,MAAM,OAAO,CAAC,SAAS,CAAC,CAAC,KAAK,IAAI,CAAC;CACvG;AAED,UAAU,kBAAkB;IACxB,cAAc,EAAE,MAAM,gBAAgB,CAAC;IACvC,cAAc,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,IAAI,CAAC;CACnD;AAED,UAAU,uBAAuB;IAC7B,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;IACjD,mBAAmB,EAAE,CAAC,GAAG,EAAE,qBAAqB,KAAK,IAAI,CAAC;CAC7D;AAED,UAAU,8BAA8B;IACpC,0BAA0B,EAAE,MAAM,uBAAuB,CAAC;IAC1D,0BAA0B,EAAE,CAAC,KAAK,EAAE,uBAAuB,KAAK,IAAI,CAAC;CACxE;AAED;;GAEG;AACH,MAAM,CAAC,OAAO,OAAO,cACjB,YAAW,gBAAgB,EAAE,kBAAkB,EAAE,uBAAuB,EAAE,8BAA8B;IAExG,WAAW,EAAE,gBAAgB,GAAG,SAAS,CAAC;IAC1C,gBAAgB,EAAE,qBAAqB,GAAG,SAAS,CAAC;IACpD,uBAAuB,EAAE,uBAAuB,GAAG,SAAS,CAAC;IAC7D,0BAA0B,oBAAyB,OAAO,CAAC,SAAS,CAAC,EAAI;IACzE,uBAAuB,oBAAyB,OAAO,CAAC,MAAM,CAAC,EAAI;IAEnE,MAAM,CAAC,oBAAoB,IAAI,cAAc;IAO7C,cAAc,IAAI,gBAAgB;IAOlC,mBAAmB,IAAI,qBAAqB;IAO5C,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC;IASjD,0BAA0B,IAAI,uBAAuB;IASrD,cAAc,CAAC,KAAK,EAAE,gBAAgB,GAAG,IAAI;IAS7C,mBAAmB,CAAC,KAAK,EAAE,qBAAqB,GAAG,IAAI;IASvD,YAAY,CAAC,OAAO,EAAE,MAAM,EAAE,iBAAiB,EAAE,SAAS,GAAG,CAAC,MAAM,OAAO,CAAC,SAAS,CAAC,CAAC;IAQvF,0BAA0B,CAAC,KAAK,EAAE,uBAAuB,GAAG,IAAI;CAQnE;AAED,eAAO,MAAM,SAAS,4CAAsC,CAAC;AAC7D,eAAO,MAAM,cAAc,qSAAqC,CAAC;AACjE,eAAO,MAAM,mBAAmB,0SAA0C,CAAC;AAC3E,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQkthE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CARlqhE,CAAC;AACzF,eAAO,MAAM,YAAY,GAAI,SAAS,MAAM,uBAAsC,CAAC;AACnF,eAAO,MAAM,iBAAiB,GAAI,SAAS,MAAM,uGAGL,CAAC"}