@uniswap/client-data-api 0.0.38 → 0.0.39
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.
|
@@ -293,7 +293,13 @@ export declare enum TransactionTypeFilter {
|
|
|
293
293
|
*
|
|
294
294
|
* @generated from enum value: TRANSACTION_TYPE_FILTER_CREATE_POOL = 10;
|
|
295
295
|
*/
|
|
296
|
-
CREATE_POOL = 10
|
|
296
|
+
CREATE_POOL = 10,
|
|
297
|
+
/**
|
|
298
|
+
* Limit orders (UniswapX only)
|
|
299
|
+
*
|
|
300
|
+
* @generated from enum value: TRANSACTION_TYPE_FILTER_LIMIT_ORDER = 11;
|
|
301
|
+
*/
|
|
302
|
+
LIMIT_ORDER = 11
|
|
297
303
|
}
|
|
298
304
|
/**
|
|
299
305
|
* @generated from enum data.v1.OnChainTransactionStatus
|
package/dist/data/v1/types_pb.js
CHANGED
|
@@ -370,6 +370,12 @@ export var TransactionTypeFilter;
|
|
|
370
370
|
* @generated from enum value: TRANSACTION_TYPE_FILTER_CREATE_POOL = 10;
|
|
371
371
|
*/
|
|
372
372
|
TransactionTypeFilter[TransactionTypeFilter["CREATE_POOL"] = 10] = "CREATE_POOL";
|
|
373
|
+
/**
|
|
374
|
+
* Limit orders (UniswapX only)
|
|
375
|
+
*
|
|
376
|
+
* @generated from enum value: TRANSACTION_TYPE_FILTER_LIMIT_ORDER = 11;
|
|
377
|
+
*/
|
|
378
|
+
TransactionTypeFilter[TransactionTypeFilter["LIMIT_ORDER"] = 11] = "LIMIT_ORDER";
|
|
373
379
|
})(TransactionTypeFilter || (TransactionTypeFilter = {}));
|
|
374
380
|
// Retrieve enum metadata with: proto3.getEnumType(TransactionTypeFilter)
|
|
375
381
|
proto3.util.setEnumType(TransactionTypeFilter, "data.v1.TransactionTypeFilter", [
|
|
@@ -384,6 +390,7 @@ proto3.util.setEnumType(TransactionTypeFilter, "data.v1.TransactionTypeFilter",
|
|
|
384
390
|
{ no: 8, name: "TRANSACTION_TYPE_FILTER_CLAIM" },
|
|
385
391
|
{ no: 9, name: "TRANSACTION_TYPE_FILTER_MINT" },
|
|
386
392
|
{ no: 10, name: "TRANSACTION_TYPE_FILTER_CREATE_POOL" },
|
|
393
|
+
{ no: 11, name: "TRANSACTION_TYPE_FILTER_LIMIT_ORDER" },
|
|
387
394
|
]);
|
|
388
395
|
/**
|
|
389
396
|
* @generated from enum data.v1.OnChainTransactionStatus
|