@uniswap/client-data-api 0.0.144 → 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.
- package/dist/data/v2/types_pb.d.ts +60 -1
- package/dist/data/v2/types_pb.js +21 -0
- package/package.json +1 -1
|
@@ -307,7 +307,19 @@ export declare enum LaunchesOrderBy {
|
|
|
307
307
|
/**
|
|
308
308
|
* @generated from enum value: LAUNCHES_ORDER_BY_VOLUME_1D = 2;
|
|
309
309
|
*/
|
|
310
|
-
VOLUME_1D = 2
|
|
310
|
+
VOLUME_1D = 2,
|
|
311
|
+
/**
|
|
312
|
+
* @generated from enum value: LAUNCHES_ORDER_BY_TVL = 3;
|
|
313
|
+
*/
|
|
314
|
+
TVL = 3,
|
|
315
|
+
/**
|
|
316
|
+
* @generated from enum value: LAUNCHES_ORDER_BY_PRICE_CHANGE_1H = 4;
|
|
317
|
+
*/
|
|
318
|
+
PRICE_CHANGE_1H = 4,
|
|
319
|
+
/**
|
|
320
|
+
* @generated from enum value: LAUNCHES_ORDER_BY_PRICE_CHANGE_1D = 5;
|
|
321
|
+
*/
|
|
322
|
+
PRICE_CHANGE_1D = 5
|
|
311
323
|
}
|
|
312
324
|
/**
|
|
313
325
|
* The trade's direction from the trader's perspective: BUY = the trader
|
|
@@ -1444,6 +1456,53 @@ export declare class Launch extends Message<Launch> {
|
|
|
1444
1456
|
* @generated from field: optional data.v2.BondingCurveInfo bonding_curve = 11;
|
|
1445
1457
|
*/
|
|
1446
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;
|
|
1447
1506
|
constructor(data?: PartialMessage<Launch>);
|
|
1448
1507
|
static readonly runtime: typeof proto3;
|
|
1449
1508
|
static readonly typeName = "data.v2.Launch";
|
package/dist/data/v2/types_pb.js
CHANGED
|
@@ -395,12 +395,27 @@ export var LaunchesOrderBy;
|
|
|
395
395
|
* @generated from enum value: LAUNCHES_ORDER_BY_VOLUME_1D = 2;
|
|
396
396
|
*/
|
|
397
397
|
LaunchesOrderBy[LaunchesOrderBy["VOLUME_1D"] = 2] = "VOLUME_1D";
|
|
398
|
+
/**
|
|
399
|
+
* @generated from enum value: LAUNCHES_ORDER_BY_TVL = 3;
|
|
400
|
+
*/
|
|
401
|
+
LaunchesOrderBy[LaunchesOrderBy["TVL"] = 3] = "TVL";
|
|
402
|
+
/**
|
|
403
|
+
* @generated from enum value: LAUNCHES_ORDER_BY_PRICE_CHANGE_1H = 4;
|
|
404
|
+
*/
|
|
405
|
+
LaunchesOrderBy[LaunchesOrderBy["PRICE_CHANGE_1H"] = 4] = "PRICE_CHANGE_1H";
|
|
406
|
+
/**
|
|
407
|
+
* @generated from enum value: LAUNCHES_ORDER_BY_PRICE_CHANGE_1D = 5;
|
|
408
|
+
*/
|
|
409
|
+
LaunchesOrderBy[LaunchesOrderBy["PRICE_CHANGE_1D"] = 5] = "PRICE_CHANGE_1D";
|
|
398
410
|
})(LaunchesOrderBy || (LaunchesOrderBy = {}));
|
|
399
411
|
// Retrieve enum metadata with: proto3.getEnumType(LaunchesOrderBy)
|
|
400
412
|
proto3.util.setEnumType(LaunchesOrderBy, "data.v2.LaunchesOrderBy", [
|
|
401
413
|
{ no: 0, name: "LAUNCHES_ORDER_BY_UNSPECIFIED" },
|
|
402
414
|
{ no: 1, name: "LAUNCHES_ORDER_BY_LAUNCHED_AT" },
|
|
403
415
|
{ no: 2, name: "LAUNCHES_ORDER_BY_VOLUME_1D" },
|
|
416
|
+
{ no: 3, name: "LAUNCHES_ORDER_BY_TVL" },
|
|
417
|
+
{ no: 4, name: "LAUNCHES_ORDER_BY_PRICE_CHANGE_1H" },
|
|
418
|
+
{ no: 5, name: "LAUNCHES_ORDER_BY_PRICE_CHANGE_1D" },
|
|
404
419
|
]);
|
|
405
420
|
/**
|
|
406
421
|
* The trade's direction from the trader's perspective: BUY = the trader
|
|
@@ -1631,6 +1646,12 @@ Launch.fields = proto3.util.newFieldList(() => [
|
|
|
1631
1646
|
{ no: 9, name: "auction_end_block", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1632
1647
|
{ no: 10, name: "bidder_count", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
1633
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 },
|
|
1634
1655
|
]);
|
|
1635
1656
|
/**
|
|
1636
1657
|
* Bonding-curve lifecycle overlay for launches attributed to the Uniswap
|