@uniswap/client-data-api 0.0.184 → 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.
|
|
@@ -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).
|