@uniswap/client-data-api 0.0.145 → 0.0.146
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.
|
@@ -1456,6 +1456,53 @@ export declare class Launch extends Message<Launch> {
|
|
|
1456
1456
|
* @generated from field: optional data.v2.BondingCurveInfo bonding_curve = 11;
|
|
1457
1457
|
*/
|
|
1458
1458
|
bondingCurve?: BondingCurveInfo;
|
|
1459
|
+
/**
|
|
1460
|
+
* Launchpad token metadata (12-15), joined from launched_tokens — present
|
|
1461
|
+
* only for launches whose token was created via the Uniswap token factory
|
|
1462
|
+
* (CCA and bonding-curve launches); other launchpads' tokens have no row
|
|
1463
|
+
* and serve unset. Verification gating mirrors v1 GetAuction
|
|
1464
|
+
* (AuctionsBL.enrichWithLaunchpadMetadata): the description is on-chain
|
|
1465
|
+
* creator text at the same trust level as name/symbol, served ungated.
|
|
1466
|
+
*
|
|
1467
|
+
* @generated from field: optional string token_description = 12;
|
|
1468
|
+
*/
|
|
1469
|
+
tokenDescription?: string;
|
|
1470
|
+
/**
|
|
1471
|
+
* The launch tx's from address (launched_tokens.creator_wallet),
|
|
1472
|
+
* EIP-55 checksummed. Public on-chain data, served ungated.
|
|
1473
|
+
*
|
|
1474
|
+
* @generated from field: optional string creator_address = 13;
|
|
1475
|
+
*/
|
|
1476
|
+
creatorAddress?: string;
|
|
1477
|
+
/**
|
|
1478
|
+
* Creator-declared project website. Served only once website verification
|
|
1479
|
+
* passes; verification is deferred today (status stays 'pending', same
|
|
1480
|
+
* rule that keeps the token mirror's homepageUrl null), so this stays
|
|
1481
|
+
* unset until that ships.
|
|
1482
|
+
*
|
|
1483
|
+
* @generated from field: optional string website_url = 14;
|
|
1484
|
+
*/
|
|
1485
|
+
websiteUrl?: string;
|
|
1486
|
+
/**
|
|
1487
|
+
* X handle, only when its inline-at-ingest Ed25519 verification passed.
|
|
1488
|
+
*
|
|
1489
|
+
* @generated from field: optional string x_handle = 15;
|
|
1490
|
+
*/
|
|
1491
|
+
xHandle?: string;
|
|
1492
|
+
/**
|
|
1493
|
+
* Bonding-curve launches only (16-17): distinct wallets (swap tx senders)
|
|
1494
|
+
* that bought the launch token on its curve pool — all-time and trailing
|
|
1495
|
+
* hour. Served from ClickHouse v4 swaps; absent (never 0) when the stats
|
|
1496
|
+
* source fails or for non-curve launches, so clients can tell degraded
|
|
1497
|
+
* from a real zero.
|
|
1498
|
+
*
|
|
1499
|
+
* @generated from field: optional int32 unique_buyer_count = 16;
|
|
1500
|
+
*/
|
|
1501
|
+
uniqueBuyerCount?: number;
|
|
1502
|
+
/**
|
|
1503
|
+
* @generated from field: optional int32 buyers_last_1h = 17;
|
|
1504
|
+
*/
|
|
1505
|
+
buyersLast1h?: number;
|
|
1459
1506
|
constructor(data?: PartialMessage<Launch>);
|
|
1460
1507
|
static readonly runtime: typeof proto3;
|
|
1461
1508
|
static readonly typeName = "data.v2.Launch";
|
package/dist/data/v2/types_pb.js
CHANGED
|
@@ -1646,6 +1646,12 @@ Launch.fields = proto3.util.newFieldList(() => [
|
|
|
1646
1646
|
{ no: 9, name: "auction_end_block", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1647
1647
|
{ no: 10, name: "bidder_count", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
1648
1648
|
{ no: 11, name: "bonding_curve", kind: "message", T: BondingCurveInfo, opt: true },
|
|
1649
|
+
{ no: 12, name: "token_description", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1650
|
+
{ no: 13, name: "creator_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1651
|
+
{ no: 14, name: "website_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1652
|
+
{ no: 15, name: "x_handle", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1653
|
+
{ no: 16, name: "unique_buyer_count", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
1654
|
+
{ no: 17, name: "buyers_last_1h", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
1649
1655
|
]);
|
|
1650
1656
|
/**
|
|
1651
1657
|
* Bonding-curve lifecycle overlay for launches attributed to the Uniswap
|