@uniswap/client-data-api 0.0.238 → 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
|
package/dist/data/v2/api_pb.d.ts
CHANGED
|
@@ -853,6 +853,13 @@ export declare class GetTokenMultiChainRequest extends Message<GetTokenMultiChai
|
|
|
853
853
|
* @generated from field: optional uint32 canonical_chain_id = 3;
|
|
854
854
|
*/
|
|
855
855
|
canonicalChainId?: number;
|
|
856
|
+
/**
|
|
857
|
+
* External-consumer request: internally-sourced fields are omitted and SVM
|
|
858
|
+
* group members are not served (see GetTokenRequest.external).
|
|
859
|
+
*
|
|
860
|
+
* @generated from field: bool external = 4;
|
|
861
|
+
*/
|
|
862
|
+
external: boolean;
|
|
856
863
|
constructor(data?: PartialMessage<GetTokenMultiChainRequest>);
|
|
857
864
|
static readonly runtime: typeof proto3;
|
|
858
865
|
static readonly typeName = "data.v2.GetTokenMultiChainRequest";
|
|
@@ -906,6 +913,13 @@ export declare class GetTokensMultiChainRequest extends Message<GetTokensMultiCh
|
|
|
906
913
|
* @generated from field: optional uint32 canonical_chain_id = 3;
|
|
907
914
|
*/
|
|
908
915
|
canonicalChainId?: number;
|
|
916
|
+
/**
|
|
917
|
+
* External-consumer request: internally-sourced fields are omitted and SVM
|
|
918
|
+
* group members are not served (see GetTokenRequest.external).
|
|
919
|
+
*
|
|
920
|
+
* @generated from field: bool external = 4;
|
|
921
|
+
*/
|
|
922
|
+
external: boolean;
|
|
909
923
|
constructor(data?: PartialMessage<GetTokensMultiChainRequest>);
|
|
910
924
|
static readonly runtime: typeof proto3;
|
|
911
925
|
static readonly typeName = "data.v2.GetTokensMultiChainRequest";
|
package/dist/data/v2/api_pb.js
CHANGED
|
@@ -1010,6 +1010,13 @@ export class GetTokenMultiChainRequest extends Message {
|
|
|
1010
1010
|
* @generated from oneof data.v2.GetTokenMultiChainRequest.identifier
|
|
1011
1011
|
*/
|
|
1012
1012
|
this.identifier = { case: undefined };
|
|
1013
|
+
/**
|
|
1014
|
+
* External-consumer request: internally-sourced fields are omitted and SVM
|
|
1015
|
+
* group members are not served (see GetTokenRequest.external).
|
|
1016
|
+
*
|
|
1017
|
+
* @generated from field: bool external = 4;
|
|
1018
|
+
*/
|
|
1019
|
+
this.external = false;
|
|
1013
1020
|
proto3.util.initPartial(data, this);
|
|
1014
1021
|
}
|
|
1015
1022
|
static fromBinary(bytes, options) {
|
|
@@ -1031,6 +1038,7 @@ GetTokenMultiChainRequest.fields = proto3.util.newFieldList(() => [
|
|
|
1031
1038
|
{ no: 1, name: "multichain_id", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "identifier" },
|
|
1032
1039
|
{ no: 2, name: "token", kind: "message", T: TokenIdentifier, oneof: "identifier" },
|
|
1033
1040
|
{ no: 3, name: "canonical_chain_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
|
|
1041
|
+
{ no: 4, name: "external", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1034
1042
|
]);
|
|
1035
1043
|
/**
|
|
1036
1044
|
* @generated from message data.v2.GetTokenMultiChainResponse
|
|
@@ -1068,6 +1076,13 @@ export class GetTokensMultiChainRequest extends Message {
|
|
|
1068
1076
|
* @generated from oneof data.v2.GetTokensMultiChainRequest.identifier
|
|
1069
1077
|
*/
|
|
1070
1078
|
this.identifier = { case: undefined };
|
|
1079
|
+
/**
|
|
1080
|
+
* External-consumer request: internally-sourced fields are omitted and SVM
|
|
1081
|
+
* group members are not served (see GetTokenRequest.external).
|
|
1082
|
+
*
|
|
1083
|
+
* @generated from field: bool external = 4;
|
|
1084
|
+
*/
|
|
1085
|
+
this.external = false;
|
|
1071
1086
|
proto3.util.initPartial(data, this);
|
|
1072
1087
|
}
|
|
1073
1088
|
static fromBinary(bytes, options) {
|
|
@@ -1089,6 +1104,7 @@ GetTokensMultiChainRequest.fields = proto3.util.newFieldList(() => [
|
|
|
1089
1104
|
{ no: 1, name: "multichain_ids", kind: "message", T: MultichainIdList, oneof: "identifier" },
|
|
1090
1105
|
{ no: 2, name: "tokens", kind: "message", T: TokenIdentifierList, oneof: "identifier" },
|
|
1091
1106
|
{ no: 3, name: "canonical_chain_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
|
|
1107
|
+
{ no: 4, name: "external", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1092
1108
|
]);
|
|
1093
1109
|
/**
|
|
1094
1110
|
* @generated from message data.v2.MultichainIdList
|
|
@@ -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
|