@uniswap/client-data-api 0.0.227 → 0.0.228
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/api_pb.d.ts +18 -0
- package/dist/data/v2/api_pb.js +1 -0
- package/package.json +1 -1
package/dist/data/v2/api_pb.d.ts
CHANGED
|
@@ -1272,6 +1272,24 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
1272
1272
|
* @generated from field: repeated string token_addresses = 11;
|
|
1273
1273
|
*/
|
|
1274
1274
|
tokenAddresses: string[];
|
|
1275
|
+
/**
|
|
1276
|
+
* "Fees paid to me": keep only launches whose CURRENT fee beneficiary is
|
|
1277
|
+
* this address — the holder of the launch's BeneficiaryVault NFT, as
|
|
1278
|
+
* served on BondingCurve.fee_beneficiary. Any case accepted; a non-address
|
|
1279
|
+
* fails with INVALID_ARGUMENT. Empty/absent applies no filter.
|
|
1280
|
+
*
|
|
1281
|
+
* Separate from creator_address, not OR'd with it: the beneficiary is a
|
|
1282
|
+
* payee that moves with the NFT, the creator is the immutable launch-tx
|
|
1283
|
+
* sender. Callers wanting both issue both reads.
|
|
1284
|
+
*
|
|
1285
|
+
* Coverage is uniswap-bonding-curve ONLY — a uniswap-cca launch mints its
|
|
1286
|
+
* vault NFT lazily from the creator's later claim, so it has no
|
|
1287
|
+
* launch-anchored beneficiary and serves no fee_beneficiary. Rejected with
|
|
1288
|
+
* sort_by = TRENDING, same contract as creator_address.
|
|
1289
|
+
*
|
|
1290
|
+
* @generated from field: optional string fee_beneficiary = 12;
|
|
1291
|
+
*/
|
|
1292
|
+
feeBeneficiary?: string;
|
|
1275
1293
|
constructor(data?: PartialMessage<ListLaunchesRequest>);
|
|
1276
1294
|
static readonly runtime: typeof proto3;
|
|
1277
1295
|
static readonly typeName = "data.v2.ListLaunchesRequest";
|
package/dist/data/v2/api_pb.js
CHANGED
|
@@ -1517,6 +1517,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
|
|
|
1517
1517
|
{ no: 9, name: "creator_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1518
1518
|
{ no: 10, name: "linked_x_only", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1519
1519
|
{ no: 11, name: "token_addresses", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
1520
|
+
{ no: 12, name: "fee_beneficiary", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1520
1521
|
]);
|
|
1521
1522
|
/**
|
|
1522
1523
|
* @generated from message data.v2.ListLaunchesResponse
|