@uniswap/client-data-api 0.0.213 → 0.0.215

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.
@@ -643,6 +643,15 @@ export declare class Auction extends Message<Auction> {
643
643
  * @generated from field: optional string fdv_usd = 50;
644
644
  */
645
645
  fdvUsd?: string;
646
+ /**
647
+ * Whether the auctioned token is on the compliance blocklist (Aurora
648
+ * canonical_tokens.is_blocked — the same source v2 GetToken's
649
+ * safety.is_blocked serves). Fail-safe: false when the token has no
650
+ * canonical row or the read failed, so an outage never blocks a token.
651
+ *
652
+ * @generated from field: bool is_blocked = 51;
653
+ */
654
+ isBlocked: boolean;
646
655
  constructor(data?: PartialMessage<Auction>);
647
656
  static readonly runtime: typeof proto3;
648
657
  static readonly typeName = "data.v1.Auction";
@@ -623,6 +623,15 @@ export class Auction extends Message {
623
623
  * @generated from field: bool is_quick_launch = 46;
624
624
  */
625
625
  this.isQuickLaunch = false;
626
+ /**
627
+ * Whether the auctioned token is on the compliance blocklist (Aurora
628
+ * canonical_tokens.is_blocked — the same source v2 GetToken's
629
+ * safety.is_blocked serves). Fail-safe: false when the token has no
630
+ * canonical row or the read failed, so an outage never blocks a token.
631
+ *
632
+ * @generated from field: bool is_blocked = 51;
633
+ */
634
+ this.isBlocked = false;
626
635
  proto3.util.initPartial(data, this);
627
636
  }
628
637
  static fromBinary(bytes, options) {
@@ -691,6 +700,7 @@ Auction.fields = proto3.util.newFieldList(() => [
691
700
  { no: 48, name: "x_profile_image_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
692
701
  { no: 49, name: "x_verified", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
693
702
  { no: 50, name: "fdv_usd", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
703
+ { no: 51, name: "is_blocked", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
694
704
  ]);
695
705
  /**
696
706
  * Response containing auctions.
@@ -1257,7 +1257,9 @@ export declare class PoolListFilter extends Message<PoolListFilter> {
1257
1257
  * ListTokens' exact rule; fails closed on a missing price), and discovery
1258
1258
  * (each token native, on a token list, or confidence >= 0.2 WITH 1D token
1259
1259
  * volume in ListTokens' discovery band [10K, 30M] — its exact
1260
- * on-list-or-earned-trust rule).
1260
+ * on-list-or-earned-trust rule), and balance (the pool's claimed TVL
1261
+ * must be backed on both sides: side-valuation ratio at or above the
1262
+ * protocol-stats 1:500 rule; unknown fails open).
1261
1263
  *
1262
1264
  * @generated from field: optional bool apply_top_level_filters = 8;
1263
1265
  */
@@ -1541,6 +1543,15 @@ export declare class LaunchToken extends Message<LaunchToken> {
1541
1543
  * @generated from field: optional string logo_url = 5;
1542
1544
  */
1543
1545
  logoUrl?: string;
1546
+ /**
1547
+ * Safety classification from Aurora canonical_tokens — the same source and
1548
+ * shape GetToken serves (safety.is_blocked carries the compliance
1549
+ * blocklist). Unset when the token has no canonical row yet (fresh
1550
+ * launches lag ingestion) or the read failed: treat as not blocked.
1551
+ *
1552
+ * @generated from field: data.v2.TokenSafety safety = 6;
1553
+ */
1554
+ safety?: TokenSafety;
1544
1555
  constructor(data?: PartialMessage<LaunchToken>);
1545
1556
  static readonly runtime: typeof proto3;
1546
1557
  static readonly typeName = "data.v2.LaunchToken";
@@ -1701,6 +1701,7 @@ LaunchToken.fields = proto3.util.newFieldList(() => [
1701
1701
  { no: 3, name: "symbol", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1702
1702
  { no: 4, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1703
1703
  { no: 5, name: "logo_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1704
+ { no: 6, name: "safety", kind: "message", T: TokenSafety },
1704
1705
  ]);
1705
1706
  /**
1706
1707
  * Live USD stats for a launch's pool/token. Each field is unset when its
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.213",
3
+ "version": "0.0.215",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },