@uniswap/client-data-api 0.0.183 → 0.0.188
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.
|
@@ -591,6 +591,24 @@ export declare class Auction extends Message<Auction> {
|
|
|
591
591
|
* @generated from field: optional google.protobuf.Timestamp estimated_end_time = 47;
|
|
592
592
|
*/
|
|
593
593
|
estimatedEndTime?: Timestamp;
|
|
594
|
+
/**
|
|
595
|
+
* X profile image URL of the verified launcher account, captured from the
|
|
596
|
+
* launch's signed x-verification claims. Same gate as x_handle: served only
|
|
597
|
+
* when the inline-at-ingest Ed25519 verification passed. Unset for launches
|
|
598
|
+
* that predate claim capture (backfill pending) or carry no avatar.
|
|
599
|
+
*
|
|
600
|
+
* @generated from field: optional string x_profile_image_url = 48;
|
|
601
|
+
*/
|
|
602
|
+
xProfileImageUrl?: string;
|
|
603
|
+
/**
|
|
604
|
+
* Whether the launcher's X account was verified (blue check) when captured.
|
|
605
|
+
* Tri-state via presence: unset = unknown (pre-feature launch, not yet
|
|
606
|
+
* backfilled), false = X reported not verified, true = verified. Same
|
|
607
|
+
* x_handle_status gate as x_handle / x_profile_image_url.
|
|
608
|
+
*
|
|
609
|
+
* @generated from field: optional bool x_verified = 49;
|
|
610
|
+
*/
|
|
611
|
+
xVerified?: boolean;
|
|
594
612
|
constructor(data?: PartialMessage<Auction>);
|
|
595
613
|
static readonly runtime: typeof proto3;
|
|
596
614
|
static readonly typeName = "data.v1.Auction";
|
|
@@ -655,6 +655,8 @@ Auction.fields = proto3.util.newFieldList(() => [
|
|
|
655
655
|
{ no: 45, name: "pool_owner", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
656
656
|
{ no: 46, name: "is_quick_launch", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
657
657
|
{ no: 47, name: "estimated_end_time", kind: "message", T: Timestamp, opt: true },
|
|
658
|
+
{ no: 48, name: "x_profile_image_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
659
|
+
{ no: 49, name: "x_verified", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
658
660
|
]);
|
|
659
661
|
/**
|
|
660
662
|
* Response containing auctions.
|
package/dist/data/v2/api_pb.d.ts
CHANGED
|
@@ -1175,6 +1175,26 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
1175
1175
|
* @generated from field: optional string query = 8;
|
|
1176
1176
|
*/
|
|
1177
1177
|
query?: string;
|
|
1178
|
+
/**
|
|
1179
|
+
* "My launches": keep only launches created by this wallet — the same
|
|
1180
|
+
* address served as Launch.creator_address (launched_tokens.creator_wallet,
|
|
1181
|
+
* the launch tx's from address). Any case is accepted; the server
|
|
1182
|
+
* EIP-55-checksums it before comparing, and rejects a non-address with
|
|
1183
|
+
* INVALID_ARGUMENT. Empty/absent applies no filter.
|
|
1184
|
+
*
|
|
1185
|
+
* Coverage is the Uniswap launchpads only (uniswap-cca crowd-launch
|
|
1186
|
+
* auctions + uniswap-bonding-curve instant launches). Third-party-launchpad
|
|
1187
|
+
* launches are served from a materialized table with no creator column and
|
|
1188
|
+
* are dropped from a creator-filtered read — they carry no
|
|
1189
|
+
* Launch.creator_address today either, so nothing filterable is lost.
|
|
1190
|
+
*
|
|
1191
|
+
* Not supported with sort_by = TRENDING: that ranking is built from a
|
|
1192
|
+
* candidate scan with no creator column, so the combination is rejected
|
|
1193
|
+
* rather than served unfiltered or silently re-sorted.
|
|
1194
|
+
*
|
|
1195
|
+
* @generated from field: optional string creator_address = 9;
|
|
1196
|
+
*/
|
|
1197
|
+
creatorAddress?: string;
|
|
1178
1198
|
constructor(data?: PartialMessage<ListLaunchesRequest>);
|
|
1179
1199
|
static readonly runtime: typeof proto3;
|
|
1180
1200
|
static readonly typeName = "data.v2.ListLaunchesRequest";
|
package/dist/data/v2/api_pb.js
CHANGED
|
@@ -1479,6 +1479,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
|
|
|
1479
1479
|
{ no: 6, name: "filter", kind: "message", T: LaunchListFilter, opt: true },
|
|
1480
1480
|
{ no: 7, name: "ascending", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1481
1481
|
{ no: 8, name: "query", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1482
|
+
{ no: 9, name: "creator_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1482
1483
|
]);
|
|
1483
1484
|
/**
|
|
1484
1485
|
* @generated from message data.v2.ListLaunchesResponse
|
|
@@ -1722,6 +1722,24 @@ export declare class Launch extends Message<Launch> {
|
|
|
1722
1722
|
* @generated from field: optional int64 auction_end_time = 21;
|
|
1723
1723
|
*/
|
|
1724
1724
|
auctionEndTime?: bigint;
|
|
1725
|
+
/**
|
|
1726
|
+
* X profile image URL of the verified launcher account, captured from the
|
|
1727
|
+
* launch's signed x-verification claims. Same gate as x_handle: served only
|
|
1728
|
+
* when the inline-at-ingest Ed25519 verification passed. Unset for launches
|
|
1729
|
+
* that predate claim capture (backfill pending) or carry no avatar.
|
|
1730
|
+
*
|
|
1731
|
+
* @generated from field: optional string x_profile_image_url = 22;
|
|
1732
|
+
*/
|
|
1733
|
+
xProfileImageUrl?: string;
|
|
1734
|
+
/**
|
|
1735
|
+
* Whether the launcher's X account was verified (blue check) when captured.
|
|
1736
|
+
* Tri-state via presence: unset = unknown (pre-feature launch, not yet
|
|
1737
|
+
* backfilled), false = X reported not verified, true = verified. Same
|
|
1738
|
+
* x_handle_status gate as x_handle / x_profile_image_url.
|
|
1739
|
+
*
|
|
1740
|
+
* @generated from field: optional bool x_verified = 23;
|
|
1741
|
+
*/
|
|
1742
|
+
xVerified?: boolean;
|
|
1725
1743
|
constructor(data?: PartialMessage<Launch>);
|
|
1726
1744
|
static readonly runtime: typeof proto3;
|
|
1727
1745
|
static readonly typeName = "data.v2.Launch";
|
package/dist/data/v2/types_pb.js
CHANGED
|
@@ -1789,6 +1789,8 @@ Launch.fields = proto3.util.newFieldList(() => [
|
|
|
1789
1789
|
{ no: 19, name: "burned_to_zero", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1790
1790
|
{ no: 20, name: "burned_to_dead", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1791
1791
|
{ no: 21, name: "auction_end_time", kind: "scalar", T: 3 /* ScalarType.INT64 */, opt: true },
|
|
1792
|
+
{ no: 22, name: "x_profile_image_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1793
|
+
{ no: 23, name: "x_verified", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1792
1794
|
]);
|
|
1793
1795
|
/**
|
|
1794
1796
|
* One row of a launch token's holder list (GetLaunchHolders).
|