@uniswap/client-liquidity 0.3.4 → 0.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.
@@ -404,6 +404,10 @@ export declare class IncreasePositionRequest extends Message<IncreasePositionReq
404
404
  * @generated from field: optional bool include_approval_simulation = 14;
405
405
  */
406
406
  includeApprovalSimulation?: boolean;
407
+ /**
408
+ * @generated from field: optional string native_token_balance = 15;
409
+ */
410
+ nativeTokenBalance?: string;
407
411
  constructor(data?: PartialMessage<IncreasePositionRequest>);
408
412
  static readonly runtime: typeof proto3;
409
413
  static readonly typeName = "uniswap.liquidity.v2.IncreasePositionRequest";
@@ -437,6 +441,10 @@ export declare class IncreasePositionResponse extends Message<IncreasePositionRe
437
441
  * @generated from field: optional string gas_fee = 5;
438
442
  */
439
443
  gasFee?: string;
444
+ /**
445
+ * @generated from field: optional float slippage = 6;
446
+ */
447
+ slippage?: number;
440
448
  constructor(data?: PartialMessage<IncreasePositionResponse>);
441
449
  static readonly runtime: typeof proto3;
442
450
  static readonly typeName = "uniswap.liquidity.v2.IncreasePositionResponse";
@@ -404,6 +404,7 @@ IncreasePositionRequest.fields = proto3.util.newFieldList(() => [
404
404
  { no: 12, name: "signature", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
405
405
  { no: 13, name: "urgency", kind: "enum", T: proto3.getEnumType(GasUrgency), opt: true },
406
406
  { no: 14, name: "include_approval_simulation", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
407
+ { no: 15, name: "native_token_balance", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
407
408
  ]);
408
409
  /**
409
410
  * @generated from message uniswap.liquidity.v2.IncreasePositionResponse
@@ -438,6 +439,7 @@ IncreasePositionResponse.fields = proto3.util.newFieldList(() => [
438
439
  { no: 3, name: "token_1", kind: "message", T: LPToken },
439
440
  { no: 4, name: "increase", kind: "message", T: TransactionRequest },
440
441
  { no: 5, name: "gas_fee", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
442
+ { no: 6, name: "slippage", kind: "scalar", T: 2 /* ScalarType.FLOAT */, opt: true },
441
443
  ]);
442
444
  /**
443
445
  * CreatePosition (V3/V4)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-liquidity",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },