@uniswap/client-data-api 0.0.231 → 0.0.232
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.
|
@@ -231,6 +231,24 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
231
231
|
* @generated from field: repeated string token_addresses = 11;
|
|
232
232
|
*/
|
|
233
233
|
tokenAddresses: string[];
|
|
234
|
+
/**
|
|
235
|
+
* "Fees paid to me": keep only launches whose CURRENT fee beneficiary is
|
|
236
|
+
* this address — the holder of the launch's BeneficiaryVault NFT, as
|
|
237
|
+
* served on BondingCurve.fee_beneficiary. Any case accepted; a non-address
|
|
238
|
+
* fails with INVALID_ARGUMENT. Empty/absent applies no filter.
|
|
239
|
+
*
|
|
240
|
+
* Separate from creator_address, not OR'd with it: the beneficiary is a
|
|
241
|
+
* payee that moves with the NFT, the creator is the immutable launch-tx
|
|
242
|
+
* sender. Callers wanting both issue both reads.
|
|
243
|
+
*
|
|
244
|
+
* Coverage is uniswap-bonding-curve ONLY — a uniswap-cca launch mints its
|
|
245
|
+
* vault NFT lazily from the creator's later claim, so it has no
|
|
246
|
+
* launch-anchored beneficiary and serves no fee_beneficiary. Rejected with
|
|
247
|
+
* sort_by = TRENDING, same contract as creator_address.
|
|
248
|
+
*
|
|
249
|
+
* @generated from field: optional string fee_beneficiary = 12;
|
|
250
|
+
*/
|
|
251
|
+
feeBeneficiary?: string;
|
|
234
252
|
constructor(data?: PartialMessage<ListLaunchesRequest>);
|
|
235
253
|
static readonly runtime: typeof proto3;
|
|
236
254
|
static readonly typeName = "launches.v1.ListLaunchesRequest";
|
|
@@ -232,6 +232,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
|
|
|
232
232
|
{ no: 9, name: "creator_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
233
233
|
{ no: 10, name: "linked_x_only", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
234
234
|
{ no: 11, name: "token_addresses", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
235
|
+
{ no: 12, name: "fee_beneficiary", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
235
236
|
]);
|
|
236
237
|
/**
|
|
237
238
|
* @generated from message launches.v1.ListLaunchesResponse
|