@uniswap/client-data-api 0.0.146 → 0.0.147
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.
|
@@ -1503,6 +1503,35 @@ export declare class Launch extends Message<Launch> {
|
|
|
1503
1503
|
* @generated from field: optional int32 buyers_last_1h = 17;
|
|
1504
1504
|
*/
|
|
1505
1505
|
buyersLast1h?: number;
|
|
1506
|
+
/**
|
|
1507
|
+
* Exact on-chain holder count of the launch token, computed at query time
|
|
1508
|
+
* over the raw launch-transfers feed (ClickHouse, reorg-excluded):
|
|
1509
|
+
* addresses with a positive net balance, contracts included, burn sinks
|
|
1510
|
+
* like 0x…dEaD included while they hold a balance — raw Etherscan-style
|
|
1511
|
+
* semantics. Present only for tokens created via the Uniswap token
|
|
1512
|
+
* factory (CCA + bonding-curve launches, whose transfers the feed
|
|
1513
|
+
* whitelists); absent — never 0 — while the token has no ingested
|
|
1514
|
+
* transfers or when the enrichment fails.
|
|
1515
|
+
*
|
|
1516
|
+
* @generated from field: optional int32 holder_count = 18;
|
|
1517
|
+
*/
|
|
1518
|
+
holderCount?: number;
|
|
1519
|
+
/**
|
|
1520
|
+
* Cumulative burned amount of the launch token, split by burn sink and
|
|
1521
|
+
* computed from the same transfer feed. Raw uint256 base units as decimal
|
|
1522
|
+
* strings; total burned = burned_to_zero + burned_to_dead. Because burn
|
|
1523
|
+
* addresses never spend, a holders-excluding-burn count is
|
|
1524
|
+
* client-derivable as holder_count - (burned_to_dead > 0 ? 1 : 0). Same
|
|
1525
|
+
* presence rule as holder_count (absent without ingested transfers), but
|
|
1526
|
+
* once the token has transfers a genuine "0" is served.
|
|
1527
|
+
*
|
|
1528
|
+
* @generated from field: optional string burned_to_zero = 19;
|
|
1529
|
+
*/
|
|
1530
|
+
burnedToZero?: string;
|
|
1531
|
+
/**
|
|
1532
|
+
* @generated from field: optional string burned_to_dead = 20;
|
|
1533
|
+
*/
|
|
1534
|
+
burnedToDead?: string;
|
|
1506
1535
|
constructor(data?: PartialMessage<Launch>);
|
|
1507
1536
|
static readonly runtime: typeof proto3;
|
|
1508
1537
|
static readonly typeName = "data.v2.Launch";
|
package/dist/data/v2/types_pb.js
CHANGED
|
@@ -1652,6 +1652,9 @@ Launch.fields = proto3.util.newFieldList(() => [
|
|
|
1652
1652
|
{ no: 15, name: "x_handle", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1653
1653
|
{ no: 16, name: "unique_buyer_count", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
1654
1654
|
{ no: 17, name: "buyers_last_1h", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
1655
|
+
{ no: 18, name: "holder_count", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
1656
|
+
{ no: 19, name: "burned_to_zero", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1657
|
+
{ no: 20, name: "burned_to_dead", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1655
1658
|
]);
|
|
1656
1659
|
/**
|
|
1657
1660
|
* Bonding-curve lifecycle overlay for launches attributed to the Uniswap
|