@uniswap/client-data-api 0.0.165 → 0.0.166
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
CHANGED
|
@@ -1123,7 +1123,14 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
|
|
|
1123
1123
|
*/
|
|
1124
1124
|
page?: PageRequest;
|
|
1125
1125
|
/**
|
|
1126
|
-
*
|
|
1126
|
+
* Launchpads to serve. Empty = the server-side default scope (the
|
|
1127
|
+
* listable set plus uniswap-cca), so clients don't have to pre-scope with
|
|
1128
|
+
* ListLaunchpads. The Uniswap brand spans two ids behind one "Uniswap"
|
|
1129
|
+
* filter — uniswap-bonding-curve (instant launches) and uniswap-cca (CCA
|
|
1130
|
+
* crowd-launch auctions) — so an explicit filter naming either id expands
|
|
1131
|
+
* to the full brand set (both ids); there is no mechanism-scoped opt-out.
|
|
1132
|
+
* If a consumer ever needs one, the expansion moves client-side (the
|
|
1133
|
+
* filter chip sends both ids itself).
|
|
1127
1134
|
*
|
|
1128
1135
|
* @generated from field: repeated string launchpad_ids = 5;
|
|
1129
1136
|
*/
|
package/dist/data/v2/api_pb.js
CHANGED
|
@@ -1440,7 +1440,14 @@ export class ListLaunchesRequest extends Message {
|
|
|
1440
1440
|
*/
|
|
1441
1441
|
this.sortBy = LaunchesOrderBy.UNSPECIFIED;
|
|
1442
1442
|
/**
|
|
1443
|
-
*
|
|
1443
|
+
* Launchpads to serve. Empty = the server-side default scope (the
|
|
1444
|
+
* listable set plus uniswap-cca), so clients don't have to pre-scope with
|
|
1445
|
+
* ListLaunchpads. The Uniswap brand spans two ids behind one "Uniswap"
|
|
1446
|
+
* filter — uniswap-bonding-curve (instant launches) and uniswap-cca (CCA
|
|
1447
|
+
* crowd-launch auctions) — so an explicit filter naming either id expands
|
|
1448
|
+
* to the full brand set (both ids); there is no mechanism-scoped opt-out.
|
|
1449
|
+
* If a consumer ever needs one, the expansion moves client-side (the
|
|
1450
|
+
* filter chip sends both ids itself).
|
|
1444
1451
|
*
|
|
1445
1452
|
* @generated from field: repeated string launchpad_ids = 5;
|
|
1446
1453
|
*/
|
|
@@ -525,6 +525,15 @@ export declare class TokenListFilter extends Message<TokenListFilter> {
|
|
|
525
525
|
* @generated from field: optional bool apply_top_level_filters = 4;
|
|
526
526
|
*/
|
|
527
527
|
applyTopLevelFilters?: boolean;
|
|
528
|
+
/**
|
|
529
|
+
* Drops tokenized real-world assets, which ListRwas / ListRwaTokens serve
|
|
530
|
+
* instead. Unset means no filtering (no server-side default). An asset is
|
|
531
|
+
* dropped if any of its chain deployments is known to be an RWA; assets not
|
|
532
|
+
* yet classified are kept. EVM only — Solana RWAs are not yet flagged.
|
|
533
|
+
*
|
|
534
|
+
* @generated from field: optional bool exclude_rwas = 5;
|
|
535
|
+
*/
|
|
536
|
+
excludeRwas?: boolean;
|
|
528
537
|
constructor(data?: PartialMessage<TokenListFilter>);
|
|
529
538
|
static readonly runtime: typeof proto3;
|
|
530
539
|
static readonly typeName = "data.v2.TokenListFilter";
|
package/dist/data/v2/types_pb.js
CHANGED
|
@@ -627,6 +627,7 @@ TokenListFilter.fields = proto3.util.newFieldList(() => [
|
|
|
627
627
|
{ no: 2, name: "min_volume_1d_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
|
|
628
628
|
{ no: 3, name: "min_tvl_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
|
|
629
629
|
{ no: 4, name: "apply_top_level_filters", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
630
|
+
{ no: 5, name: "exclude_rwas", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
630
631
|
]);
|
|
631
632
|
/**
|
|
632
633
|
* @generated from message data.v2.FiatAmount
|