@uniswap/client-data-api 0.0.67 → 0.0.68
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/v1/api_pb.d.ts
CHANGED
|
@@ -824,9 +824,9 @@ export declare class ListPoolsRequest extends Message<ListPoolsRequest> {
|
|
|
824
824
|
*/
|
|
825
825
|
token0: string;
|
|
826
826
|
/**
|
|
827
|
-
* @generated from field: string token1 = 3;
|
|
827
|
+
* @generated from field: optional string token1 = 3;
|
|
828
828
|
*/
|
|
829
|
-
token1
|
|
829
|
+
token1?: string;
|
|
830
830
|
/**
|
|
831
831
|
* @generated from field: repeated pools.v1.ProtocolVersion protocol_versions = 4;
|
|
832
832
|
*/
|
|
@@ -855,6 +855,10 @@ export declare class ListPoolsRequest extends Message<ListPoolsRequest> {
|
|
|
855
855
|
* @generated from field: optional bool include_volume_30d = 10;
|
|
856
856
|
*/
|
|
857
857
|
includeVolume30d?: boolean;
|
|
858
|
+
/**
|
|
859
|
+
* @generated from field: optional bool filter_spam = 11;
|
|
860
|
+
*/
|
|
861
|
+
filterSpam?: boolean;
|
|
858
862
|
constructor(data?: PartialMessage<ListPoolsRequest>);
|
|
859
863
|
static readonly runtime: typeof proto3;
|
|
860
864
|
static readonly typeName = "data.v1.ListPoolsRequest";
|
package/dist/data/v1/api_pb.js
CHANGED
|
@@ -1192,10 +1192,6 @@ export class ListPoolsRequest extends Message {
|
|
|
1192
1192
|
* @generated from field: string token0 = 2;
|
|
1193
1193
|
*/
|
|
1194
1194
|
this.token0 = "";
|
|
1195
|
-
/**
|
|
1196
|
-
* @generated from field: string token1 = 3;
|
|
1197
|
-
*/
|
|
1198
|
-
this.token1 = "";
|
|
1199
1195
|
/**
|
|
1200
1196
|
* @generated from field: repeated pools.v1.ProtocolVersion protocol_versions = 4;
|
|
1201
1197
|
*/
|
|
@@ -1220,7 +1216,7 @@ ListPoolsRequest.typeName = "data.v1.ListPoolsRequest";
|
|
|
1220
1216
|
ListPoolsRequest.fields = proto3.util.newFieldList(() => [
|
|
1221
1217
|
{ no: 1, name: "chain_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
1222
1218
|
{ no: 2, name: "token0", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1223
|
-
{ no: 3, name: "token1", kind: "scalar", T: 9 /* ScalarType.STRING
|
|
1219
|
+
{ no: 3, name: "token1", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1224
1220
|
{ no: 4, name: "protocol_versions", kind: "enum", T: proto3.getEnumType(ProtocolVersion), repeated: true },
|
|
1225
1221
|
{ no: 5, name: "fee", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
|
|
1226
1222
|
{ no: 6, name: "tick_spacing", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
@@ -1228,6 +1224,7 @@ ListPoolsRequest.fields = proto3.util.newFieldList(() => [
|
|
|
1228
1224
|
{ no: 8, name: "page_size", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
|
|
1229
1225
|
{ no: 9, name: "page_token", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1230
1226
|
{ no: 10, name: "include_volume_30d", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1227
|
+
{ no: 11, name: "filter_spam", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1231
1228
|
]);
|
|
1232
1229
|
/**
|
|
1233
1230
|
* @generated from message data.v1.ListPoolsResponse
|