@uniswap/client-liquidity 0.3.1 → 0.3.2

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.
@@ -213,6 +213,10 @@ export declare class PositionPriceBounds extends Message<PositionPriceBounds> {
213
213
  * @generated from field: string max_price = 2;
214
214
  */
215
215
  maxPrice: string;
216
+ /**
217
+ * @generated from field: string quoted_token_address = 3;
218
+ */
219
+ quotedTokenAddress: string;
216
220
  constructor(data?: PartialMessage<PositionPriceBounds>);
217
221
  static readonly runtime: typeof proto3;
218
222
  static readonly typeName = "uniswap.liquidity.v2.PositionPriceBounds";
@@ -314,6 +314,10 @@ export class PositionPriceBounds extends Message {
314
314
  * @generated from field: string max_price = 2;
315
315
  */
316
316
  this.maxPrice = "";
317
+ /**
318
+ * @generated from field: string quoted_token_address = 3;
319
+ */
320
+ this.quotedTokenAddress = "";
317
321
  proto3.util.initPartial(data, this);
318
322
  }
319
323
  static fromBinary(bytes, options) {
@@ -334,6 +338,7 @@ PositionPriceBounds.typeName = "uniswap.liquidity.v2.PositionPriceBounds";
334
338
  PositionPriceBounds.fields = proto3.util.newFieldList(() => [
335
339
  { no: 1, name: "min_price", kind: "scalar", T: 9 /* ScalarType.STRING */ },
336
340
  { no: 2, name: "max_price", kind: "scalar", T: 9 /* ScalarType.STRING */ },
341
+ { no: 3, name: "quoted_token_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
337
342
  ]);
338
343
  /**
339
344
  * @generated from message uniswap.liquidity.v2.PositionTickBounds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-liquidity",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },