@uniswap/client-data-api 0.0.239 → 0.0.241
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.
|
@@ -696,6 +696,14 @@ export declare class Auction extends Message<Auction> {
|
|
|
696
696
|
* @generated from field: repeated data.v1.LaunchBadge badges = 57;
|
|
697
697
|
*/
|
|
698
698
|
badges: LaunchBadge[];
|
|
699
|
+
/**
|
|
700
|
+
* Wall-clock time of start_block: the exact block timestamp once mined,
|
|
701
|
+
* otherwise an estimate. Unset when neither is available. Populated under
|
|
702
|
+
* the same rules as estimated_end_time.
|
|
703
|
+
*
|
|
704
|
+
* @generated from field: optional google.protobuf.Timestamp estimated_start_time = 58;
|
|
705
|
+
*/
|
|
706
|
+
estimatedStartTime?: Timestamp;
|
|
699
707
|
constructor(data?: PartialMessage<Auction>);
|
|
700
708
|
static readonly runtime: typeof proto3;
|
|
701
709
|
static readonly typeName = "data.v1.Auction";
|
|
@@ -717,6 +717,7 @@ Auction.fields = proto3.util.newFieldList(() => [
|
|
|
717
717
|
{ no: 55, name: "tick_spacing", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
718
718
|
{ no: 56, name: "hooks", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
719
719
|
{ no: 57, name: "badges", kind: "message", T: LaunchBadge, repeated: true },
|
|
720
|
+
{ no: 58, name: "estimated_start_time", kind: "message", T: Timestamp, opt: true },
|
|
720
721
|
]);
|
|
721
722
|
/**
|
|
722
723
|
* One badge earned by a launch's token — the data.v1 twin of
|
|
@@ -225,8 +225,8 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
225
225
|
* creator_address.
|
|
226
226
|
*
|
|
227
227
|
* CCA rows additionally inherit the crowd-launch feed's
|
|
228
|
-
* `is_quick_launch = true` gate; an unclassified or institutional
|
|
229
|
-
*
|
|
228
|
+
* `is_quick_launch = true` gate; an unclassified or institutional auction
|
|
229
|
+
* will not match unless include_all_launches is set.
|
|
230
230
|
*
|
|
231
231
|
* @generated from field: repeated string token_addresses = 11;
|
|
232
232
|
*/
|
|
@@ -249,6 +249,13 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
249
249
|
* @generated from field: optional string fee_beneficiary = 12;
|
|
250
250
|
*/
|
|
251
251
|
feeBeneficiary?: string;
|
|
252
|
+
/**
|
|
253
|
+
* Also return institutional and unclassified CCA launches. Only applies
|
|
254
|
+
* with token_addresses; ignored otherwise.
|
|
255
|
+
*
|
|
256
|
+
* @generated from field: optional bool include_all_launches = 13;
|
|
257
|
+
*/
|
|
258
|
+
includeAllLaunches?: boolean;
|
|
252
259
|
constructor(data?: PartialMessage<ListLaunchesRequest>);
|
|
253
260
|
static readonly runtime: typeof proto3;
|
|
254
261
|
static readonly typeName = "launches.v1.ListLaunchesRequest";
|
|
@@ -197,8 +197,8 @@ export class ListLaunchesRequest extends Message {
|
|
|
197
197
|
* creator_address.
|
|
198
198
|
*
|
|
199
199
|
* CCA rows additionally inherit the crowd-launch feed's
|
|
200
|
-
* `is_quick_launch = true` gate; an unclassified or institutional
|
|
201
|
-
*
|
|
200
|
+
* `is_quick_launch = true` gate; an unclassified or institutional auction
|
|
201
|
+
* will not match unless include_all_launches is set.
|
|
202
202
|
*
|
|
203
203
|
* @generated from field: repeated string token_addresses = 11;
|
|
204
204
|
*/
|
|
@@ -233,6 +233,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
|
|
|
233
233
|
{ no: 10, name: "linked_x_only", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
234
234
|
{ no: 11, name: "token_addresses", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
235
235
|
{ no: 12, name: "fee_beneficiary", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
236
|
+
{ no: 13, name: "include_all_launches", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
236
237
|
]);
|
|
237
238
|
/**
|
|
238
239
|
* @generated from message launches.v1.ListLaunchesResponse
|