@uniswap/client-data-api 0.0.188 → 0.0.190

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.
@@ -1780,8 +1780,13 @@ export declare class GetLaunchCreatorFeesResponse extends Message<GetLaunchCreat
1780
1780
  * deployed and live on the same chain (Robinhood Chain runs two), and a
1781
1781
  * launch's fees only ever flow through the one its strategy was wired to.
1782
1782
  * Clients MUST call the address in this field — a hardcoded per-chain
1783
- * splitter silently targets the wrong generation. Unset when the launch
1784
- * has neither an indexed launch row nor a fee event yet.
1783
+ * splitter silently targets the wrong generation.
1784
+ *
1785
+ * Set for every launch this endpoint serves: where the indexed launch row
1786
+ * carries no position recipient (a crowd launch, which never gets a row,
1787
+ * or a row predating the column) the server falls back to the resolved
1788
+ * strategy's own immutable FeeSplitter. Clients no longer need to gate the
1789
+ * displayed figure down to the settled balance on an unset splitter.
1785
1790
  *
1786
1791
  * @generated from field: optional string fee_splitter = 7;
1787
1792
  */
@@ -1789,8 +1794,14 @@ export declare class GetLaunchCreatorFeesResponse extends Message<GetLaunchCreat
1789
1794
  /**
1790
1795
  * The launch's own UERC20BeneficiaryVault (EIP-55) — the contract that
1791
1796
  * custodies the creator's share and that claim(position_token_id, 0, 0)
1792
- * is sent to. Per launch for the same reason fee_splitter is. Unset until
1793
- * the position's beneficiary NFT has been ingested.
1797
+ * is sent to. Per launch for the same reason fee_splitter is.
1798
+ *
1799
+ * Read from fee_splitter's OWN on-chain splits, so this vault and that
1800
+ * splitter are a matched pair by construction rather than two independent
1801
+ * lookups that can name contracts from different generations. Falls back
1802
+ * to the indexed beneficiary NFT when that read is unavailable. Unset only
1803
+ * when creator fees are off (no vault exists) or neither source has one
1804
+ * yet.
1794
1805
  *
1795
1806
  * @generated from field: optional string beneficiary_vault = 8;
1796
1807
  */
@@ -1088,6 +1088,20 @@ export declare class Pool extends Message<Pool> {
1088
1088
  * @generated from field: optional string liquidity = 12;
1089
1089
  */
1090
1090
  liquidity?: string;
1091
+ /**
1092
+ * Protocol fee (pips): additive on top of the LP fee for V4, a carve-out
1093
+ * of the fee tier for V2/V3. Unset when unavailable.
1094
+ *
1095
+ * @generated from field: optional uint32 protocol_fee = 13;
1096
+ */
1097
+ protocolFee?: number;
1098
+ /**
1099
+ * Effective (all-in) fee (pips): V4 fee_tier + protocol_fee; V2/V3 the fee
1100
+ * tier. Unset when protocol_fee is unavailable (incl. V4 dynamic-fee).
1101
+ *
1102
+ * @generated from field: optional uint32 effective_fee = 14;
1103
+ */
1104
+ effectiveFee?: number;
1091
1105
  constructor(data?: PartialMessage<Pool>);
1092
1106
  static readonly runtime: typeof proto3;
1093
1107
  static readonly typeName = "data.v2.Pool";
@@ -1214,6 +1214,8 @@ Pool.fields = proto3.util.newFieldList(() => [
1214
1214
  { no: 10, name: "current_tick", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1215
1215
  { no: 11, name: "sqrt_price_x96", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1216
1216
  { no: 12, name: "liquidity", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1217
+ { no: 13, name: "protocol_fee", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
1218
+ { no: 14, name: "effective_fee", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
1217
1219
  ]);
1218
1220
  /**
1219
1221
  * @generated from message data.v2.PoolTokenFilter
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.188",
3
+ "version": "0.0.190",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },