@uniswap/client-liquidity 1.4.41 → 1.4.43
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.
|
@@ -725,6 +725,22 @@ export declare class AuctionConfig extends Message<AuctionConfig> {
|
|
|
725
725
|
* @generated from field: optional string graduation_price_raise_per_token = 8;
|
|
726
726
|
*/
|
|
727
727
|
graduationPriceRaisePerToken?: string;
|
|
728
|
+
/**
|
|
729
|
+
* Optional pre-bid window. Bidding still opens at start_time_unix — this does NOT
|
|
730
|
+
* move the auction's start — but every block in [start_time_unix, prebid_end_time_unix)
|
|
731
|
+
* emits ZERO tokens, so bids accumulate against a fixed supply before distribution
|
|
732
|
+
* begins. Absolute unix seconds, like the other time fields; must be strictly between
|
|
733
|
+
* start_time_unix and end_time_unix. Omitted/0 means no pre-bid window (emission starts
|
|
734
|
+
* at the first block), which is what every client that predates this field sends.
|
|
735
|
+
*
|
|
736
|
+
* The window is expressed as a boundary rather than a duration so it stays in the same
|
|
737
|
+
* units as start/end, and so a caller can set it from the same date picker that sets them.
|
|
738
|
+
* The remaining [prebid_end_time_unix, end_time_unix) span still has to fit the emission
|
|
739
|
+
* ramp; a pre-bid window that leaves no room is rejected as a too-short auction window.
|
|
740
|
+
*
|
|
741
|
+
* @generated from field: optional uint64 prebid_end_time_unix = 9;
|
|
742
|
+
*/
|
|
743
|
+
prebidEndTimeUnix?: bigint;
|
|
728
744
|
constructor(data?: PartialMessage<AuctionConfig>);
|
|
729
745
|
static readonly runtime: typeof proto3;
|
|
730
746
|
static readonly typeName = "uniswap.liquidity.v1.AuctionConfig";
|
|
@@ -922,6 +922,7 @@ AuctionConfig.fields = proto3.util.newFieldList(() => [
|
|
|
922
922
|
{ no: 6, name: "validation_hook", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
923
923
|
{ no: 7, name: "returned_supply", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
924
924
|
{ no: 8, name: "graduation_price_raise_per_token", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
925
|
+
{ no: 9, name: "prebid_end_time_unix", kind: "scalar", T: 4 /* ScalarType.UINT64 */, opt: true },
|
|
925
926
|
]);
|
|
926
927
|
/**
|
|
927
928
|
* @generated from message uniswap.liquidity.v1.PoolConfig
|
|
@@ -1266,11 +1266,13 @@ export declare class Position extends Message<Position> {
|
|
|
1266
1266
|
*/
|
|
1267
1267
|
updatedAt: bigint;
|
|
1268
1268
|
/**
|
|
1269
|
-
* Unix seconds of the first indexed event that created this position.
|
|
1269
|
+
* Unix seconds of the first indexed event that created this position. Unset
|
|
1270
|
+
* when the creation time is unknown — no indexed row, or an Optimism
|
|
1271
|
+
* pre-regenesis position whose real creation time predates our history.
|
|
1270
1272
|
*
|
|
1271
|
-
* @generated from field: int64 created_at = 13;
|
|
1273
|
+
* @generated from field: optional int64 created_at = 13;
|
|
1272
1274
|
*/
|
|
1273
|
-
createdAt
|
|
1275
|
+
createdAt?: bigint;
|
|
1274
1276
|
/**
|
|
1275
1277
|
* Derived from the raw balance: OPEN while liquidity / lp_shares > 0.
|
|
1276
1278
|
*
|
|
@@ -1494,12 +1494,6 @@ export class Position extends Message {
|
|
|
1494
1494
|
* @generated from field: int64 updated_at = 12;
|
|
1495
1495
|
*/
|
|
1496
1496
|
this.updatedAt = protoInt64.zero;
|
|
1497
|
-
/**
|
|
1498
|
-
* Unix seconds of the first indexed event that created this position.
|
|
1499
|
-
*
|
|
1500
|
-
* @generated from field: int64 created_at = 13;
|
|
1501
|
-
*/
|
|
1502
|
-
this.createdAt = protoInt64.zero;
|
|
1503
1497
|
/**
|
|
1504
1498
|
* Derived from the raw balance: OPEN while liquidity / lp_shares > 0.
|
|
1505
1499
|
*
|
|
@@ -1549,7 +1543,7 @@ Position.fields = proto3.util.newFieldList(() => [
|
|
|
1549
1543
|
{ no: 10, name: "lp_shares", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1550
1544
|
{ no: 11, name: "position_manager_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1551
1545
|
{ no: 12, name: "updated_at", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
|
|
1552
|
-
{ no: 13, name: "created_at", kind: "scalar", T: 3 /* ScalarType.INT64
|
|
1546
|
+
{ no: 13, name: "created_at", kind: "scalar", T: 3 /* ScalarType.INT64 */, opt: true },
|
|
1553
1547
|
{ no: 14, name: "status", kind: "enum", T: proto3.getEnumType(PositionStatus) },
|
|
1554
1548
|
{ no: 15, name: "token0_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1555
1549
|
{ no: 16, name: "token1_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|