@uniswap/client-liquidity 1.3.3 → 1.3.5
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.
|
@@ -126,7 +126,11 @@ export declare enum ChainId {
|
|
|
126
126
|
/**
|
|
127
127
|
* @generated from enum value: ARC = 5042;
|
|
128
128
|
*/
|
|
129
|
-
ARC = 5042
|
|
129
|
+
ARC = 5042,
|
|
130
|
+
/**
|
|
131
|
+
* @generated from enum value: INK = 57073;
|
|
132
|
+
*/
|
|
133
|
+
INK = 57073
|
|
130
134
|
}
|
|
131
135
|
/**
|
|
132
136
|
* @generated from enum uniswap.liquidity.v1.Distributor
|
|
@@ -138,6 +138,10 @@ export var ChainId;
|
|
|
138
138
|
* @generated from enum value: ARC = 5042;
|
|
139
139
|
*/
|
|
140
140
|
ChainId[ChainId["ARC"] = 5042] = "ARC";
|
|
141
|
+
/**
|
|
142
|
+
* @generated from enum value: INK = 57073;
|
|
143
|
+
*/
|
|
144
|
+
ChainId[ChainId["INK"] = 57073] = "INK";
|
|
141
145
|
})(ChainId || (ChainId = {}));
|
|
142
146
|
// Retrieve enum metadata with: proto3.getEnumType(ChainId)
|
|
143
147
|
proto3.util.setEnumType(ChainId, "uniswap.liquidity.v1.ChainId", [
|
|
@@ -167,6 +171,7 @@ proto3.util.setEnumType(ChainId, "uniswap.liquidity.v1.ChainId", [
|
|
|
167
171
|
{ no: 4217, name: "TEMPO" },
|
|
168
172
|
{ no: 4663, name: "ROBINHOOD" },
|
|
169
173
|
{ no: 5042, name: "ARC" },
|
|
174
|
+
{ no: 57073, name: "INK" },
|
|
170
175
|
]);
|
|
171
176
|
/**
|
|
172
177
|
* @generated from enum uniswap.liquidity.v1.Distributor
|
|
@@ -758,6 +758,13 @@ export declare class HookListRequest extends Message<HookListRequest> {
|
|
|
758
758
|
* @generated from field: optional int32 offset = 4;
|
|
759
759
|
*/
|
|
760
760
|
offset?: number;
|
|
761
|
+
/**
|
|
762
|
+
* When set, only return the hook entry (or entries across chains) whose
|
|
763
|
+
* address matches, case-insensitively.
|
|
764
|
+
*
|
|
765
|
+
* @generated from field: optional string address = 5;
|
|
766
|
+
*/
|
|
767
|
+
address?: string;
|
|
761
768
|
constructor(data?: PartialMessage<HookListRequest>);
|
|
762
769
|
static readonly runtime: typeof proto3;
|
|
763
770
|
static readonly typeName = "uniswap.liquidity.v2.HookListRequest";
|
|
@@ -726,6 +726,7 @@ HookListRequest.fields = proto3.util.newFieldList(() => [
|
|
|
726
726
|
{ no: 2, name: "search", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
727
727
|
{ no: 3, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
728
728
|
{ no: 4, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
729
|
+
{ no: 5, name: "address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
729
730
|
]);
|
|
730
731
|
/**
|
|
731
732
|
* @generated from message uniswap.liquidity.v2.HookListResponse
|