@uniswap/client-liquidity 0.3.0 → 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.
|
@@ -198,6 +198,10 @@ export declare class CreateClassicPositionRequest extends Message<CreateClassicP
|
|
|
198
198
|
* @generated from field: optional uniswap.liquidity.v2.GasUrgency urgency = 10;
|
|
199
199
|
*/
|
|
200
200
|
urgency?: GasUrgency;
|
|
201
|
+
/**
|
|
202
|
+
* @generated from field: optional bool include_approval_simulation = 11;
|
|
203
|
+
*/
|
|
204
|
+
includeApprovalSimulation?: boolean;
|
|
201
205
|
constructor(data?: PartialMessage<CreateClassicPositionRequest>);
|
|
202
206
|
static readonly runtime: typeof proto3;
|
|
203
207
|
static readonly typeName = "uniswap.liquidity.v2.CreateClassicPositionRequest";
|
|
@@ -396,6 +400,10 @@ export declare class IncreasePositionRequest extends Message<IncreasePositionReq
|
|
|
396
400
|
* @generated from field: optional uniswap.liquidity.v2.GasUrgency urgency = 13;
|
|
397
401
|
*/
|
|
398
402
|
urgency?: GasUrgency;
|
|
403
|
+
/**
|
|
404
|
+
* @generated from field: optional bool include_approval_simulation = 14;
|
|
405
|
+
*/
|
|
406
|
+
includeApprovalSimulation?: boolean;
|
|
399
407
|
constructor(data?: PartialMessage<IncreasePositionRequest>);
|
|
400
408
|
static readonly runtime: typeof proto3;
|
|
401
409
|
static readonly typeName = "uniswap.liquidity.v2.IncreasePositionRequest";
|
|
@@ -530,6 +538,10 @@ export declare class CreatePositionRequest extends Message<CreatePositionRequest
|
|
|
530
538
|
* @generated from field: optional string native_token_balance = 16;
|
|
531
539
|
*/
|
|
532
540
|
nativeTokenBalance?: string;
|
|
541
|
+
/**
|
|
542
|
+
* @generated from field: optional bool include_approval_simulation = 17;
|
|
543
|
+
*/
|
|
544
|
+
includeApprovalSimulation?: boolean;
|
|
533
545
|
constructor(data?: PartialMessage<CreatePositionRequest>);
|
|
534
546
|
static readonly runtime: typeof proto3;
|
|
535
547
|
static readonly typeName = "uniswap.liquidity.v2.CreatePositionRequest";
|
|
@@ -211,6 +211,7 @@ CreateClassicPositionRequest.fields = proto3.util.newFieldList(() => [
|
|
|
211
211
|
{ no: 8, name: "deadline", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
212
212
|
{ no: 9, name: "simulate_transaction", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
213
213
|
{ no: 10, name: "urgency", kind: "enum", T: proto3.getEnumType(GasUrgency), opt: true },
|
|
214
|
+
{ no: 11, name: "include_approval_simulation", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
214
215
|
]);
|
|
215
216
|
/**
|
|
216
217
|
* @generated from message uniswap.liquidity.v2.CreateClassicPositionResponse
|
|
@@ -402,6 +403,7 @@ IncreasePositionRequest.fields = proto3.util.newFieldList(() => [
|
|
|
402
403
|
{ no: 11, name: "v4_batch_permit_data", kind: "message", T: PermitBatchData, opt: true },
|
|
403
404
|
{ no: 12, name: "signature", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
404
405
|
{ no: 13, name: "urgency", kind: "enum", T: proto3.getEnumType(GasUrgency), opt: true },
|
|
406
|
+
{ no: 14, name: "include_approval_simulation", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
405
407
|
]);
|
|
406
408
|
/**
|
|
407
409
|
* @generated from message uniswap.liquidity.v2.IncreasePositionResponse
|
|
@@ -499,6 +501,7 @@ CreatePositionRequest.fields = proto3.util.newFieldList(() => [
|
|
|
499
501
|
{ no: 14, name: "batch_permit_data", kind: "message", T: PermitBatchData, opt: true },
|
|
500
502
|
{ no: 15, name: "signature", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
501
503
|
{ no: 16, name: "native_token_balance", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
504
|
+
{ no: 17, name: "include_approval_simulation", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
502
505
|
]);
|
|
503
506
|
/**
|
|
504
507
|
* @generated from message uniswap.liquidity.v2.CreatePositionResponse
|
|
@@ -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
|