@uniswap/client-liquidity 0.3.0 → 0.3.1
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
|