@uniswap/client-data-api 0.0.225 → 0.0.227

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.
@@ -1307,6 +1307,18 @@ export declare class PoolListFilter extends Message<PoolListFilter> {
1307
1307
  * @generated from field: optional bool apply_top_level_filters = 8;
1308
1308
  */
1309
1309
  applyTopLevelFilters?: boolean;
1310
+ /**
1311
+ * Restrict the listing to pools running a live allowlisted LP-incentive
1312
+ * campaign (Merkl). The campaign set is the row source; everything else —
1313
+ * spam, the quality gates above, attribute filters, sort, pagination —
1314
+ * behaves exactly as it does without this flag, so a caller wanting every
1315
+ * rewarded pool regardless of size sends include_spam true and
1316
+ * apply_top_level_filters false alongside it. Never matches V2 pools:
1317
+ * Merkl campaign types don't target them.
1318
+ *
1319
+ * @generated from field: optional bool rewards_only = 9;
1320
+ */
1321
+ rewardsOnly?: boolean;
1310
1322
  constructor(data?: PartialMessage<PoolListFilter>);
1311
1323
  static readonly runtime: typeof proto3;
1312
1324
  static readonly typeName = "data.v2.PoolListFilter";
@@ -1413,6 +1413,7 @@ PoolListFilter.fields = proto3.util.newFieldList(() => [
1413
1413
  { no: 6, name: "tick_spacing", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1414
1414
  { no: 7, name: "hooks", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1415
1415
  { no: 8, name: "apply_top_level_filters", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1416
+ { no: 9, name: "rewards_only", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1416
1417
  ]);
1417
1418
  /**
1418
1419
  * Returned by ListPools — wraps a Pool with its ranking stats.
@@ -0,0 +1,132 @@
1
+ import { MethodKind } from "@bufbuild/protobuf";
2
+ import { CheckLaunchNameTickerRequest, CheckLaunchNameTickerResponse, GetLaunchActivityStatsRequest, GetLaunchActivityStatsResponse, GetLaunchClaimsRequest, GetLaunchClaimsResponse, GetLaunchCreatorFeesRequest, GetLaunchCreatorFeesResponse, GetLaunchHoldersRequest, GetLaunchHoldersResponse, GetLiquidityForTokensRequest, GetLiquidityForTokensResponse, GetTokenTopTradersRequest, GetTokenTopTradersResponse, GetTokenTradesRequest, GetTokenTradesResponse, ListLaunchesRequest, ListLaunchesResponse, ListLaunchpadsRequest, ListLaunchpadsResponse } from "./api_pb.js";
3
+ /**
4
+ * @generated from rpc launches.v1.LaunchService.ListLaunchpads
5
+ */
6
+ export declare const listLaunchpads: {
7
+ readonly localName: "listLaunchpads";
8
+ readonly name: "ListLaunchpads";
9
+ readonly kind: MethodKind.Unary;
10
+ readonly I: typeof ListLaunchpadsRequest;
11
+ readonly O: typeof ListLaunchpadsResponse;
12
+ readonly service: {
13
+ readonly typeName: "launches.v1.LaunchService";
14
+ };
15
+ };
16
+ /**
17
+ * @generated from rpc launches.v1.LaunchService.ListLaunches
18
+ */
19
+ export declare const listLaunches: {
20
+ readonly localName: "listLaunches";
21
+ readonly name: "ListLaunches";
22
+ readonly kind: MethodKind.Unary;
23
+ readonly I: typeof ListLaunchesRequest;
24
+ readonly O: typeof ListLaunchesResponse;
25
+ readonly service: {
26
+ readonly typeName: "launches.v1.LaunchService";
27
+ };
28
+ };
29
+ /**
30
+ * @generated from rpc launches.v1.LaunchService.GetLaunchHolders
31
+ */
32
+ export declare const getLaunchHolders: {
33
+ readonly localName: "getLaunchHolders";
34
+ readonly name: "GetLaunchHolders";
35
+ readonly kind: MethodKind.Unary;
36
+ readonly I: typeof GetLaunchHoldersRequest;
37
+ readonly O: typeof GetLaunchHoldersResponse;
38
+ readonly service: {
39
+ readonly typeName: "launches.v1.LaunchService";
40
+ };
41
+ };
42
+ /**
43
+ * @generated from rpc launches.v1.LaunchService.GetLaunchActivityStats
44
+ */
45
+ export declare const getLaunchActivityStats: {
46
+ readonly localName: "getLaunchActivityStats";
47
+ readonly name: "GetLaunchActivityStats";
48
+ readonly kind: MethodKind.Unary;
49
+ readonly I: typeof GetLaunchActivityStatsRequest;
50
+ readonly O: typeof GetLaunchActivityStatsResponse;
51
+ readonly service: {
52
+ readonly typeName: "launches.v1.LaunchService";
53
+ };
54
+ };
55
+ /**
56
+ * @generated from rpc launches.v1.LaunchService.GetLaunchClaims
57
+ */
58
+ export declare const getLaunchClaims: {
59
+ readonly localName: "getLaunchClaims";
60
+ readonly name: "GetLaunchClaims";
61
+ readonly kind: MethodKind.Unary;
62
+ readonly I: typeof GetLaunchClaimsRequest;
63
+ readonly O: typeof GetLaunchClaimsResponse;
64
+ readonly service: {
65
+ readonly typeName: "launches.v1.LaunchService";
66
+ };
67
+ };
68
+ /**
69
+ * @generated from rpc launches.v1.LaunchService.GetLaunchCreatorFees
70
+ */
71
+ export declare const getLaunchCreatorFees: {
72
+ readonly localName: "getLaunchCreatorFees";
73
+ readonly name: "GetLaunchCreatorFees";
74
+ readonly kind: MethodKind.Unary;
75
+ readonly I: typeof GetLaunchCreatorFeesRequest;
76
+ readonly O: typeof GetLaunchCreatorFeesResponse;
77
+ readonly service: {
78
+ readonly typeName: "launches.v1.LaunchService";
79
+ };
80
+ };
81
+ /**
82
+ * @generated from rpc launches.v1.LaunchService.CheckLaunchNameTicker
83
+ */
84
+ export declare const checkLaunchNameTicker: {
85
+ readonly localName: "checkLaunchNameTicker";
86
+ readonly name: "CheckLaunchNameTicker";
87
+ readonly kind: MethodKind.Unary;
88
+ readonly I: typeof CheckLaunchNameTickerRequest;
89
+ readonly O: typeof CheckLaunchNameTickerResponse;
90
+ readonly service: {
91
+ readonly typeName: "launches.v1.LaunchService";
92
+ };
93
+ };
94
+ /**
95
+ * @generated from rpc launches.v1.LaunchService.GetLiquidityForTokens
96
+ */
97
+ export declare const getLiquidityForTokens: {
98
+ readonly localName: "getLiquidityForTokens";
99
+ readonly name: "GetLiquidityForTokens";
100
+ readonly kind: MethodKind.Unary;
101
+ readonly I: typeof GetLiquidityForTokensRequest;
102
+ readonly O: typeof GetLiquidityForTokensResponse;
103
+ readonly service: {
104
+ readonly typeName: "launches.v1.LaunchService";
105
+ };
106
+ };
107
+ /**
108
+ * @generated from rpc launches.v1.LaunchService.GetTokenTrades
109
+ */
110
+ export declare const getTokenTrades: {
111
+ readonly localName: "getTokenTrades";
112
+ readonly name: "GetTokenTrades";
113
+ readonly kind: MethodKind.Unary;
114
+ readonly I: typeof GetTokenTradesRequest;
115
+ readonly O: typeof GetTokenTradesResponse;
116
+ readonly service: {
117
+ readonly typeName: "launches.v1.LaunchService";
118
+ };
119
+ };
120
+ /**
121
+ * @generated from rpc launches.v1.LaunchService.GetTokenTopTraders
122
+ */
123
+ export declare const getTokenTopTraders: {
124
+ readonly localName: "getTokenTopTraders";
125
+ readonly name: "GetTokenTopTraders";
126
+ readonly kind: MethodKind.Unary;
127
+ readonly I: typeof GetTokenTopTradersRequest;
128
+ readonly O: typeof GetTokenTopTradersResponse;
129
+ readonly service: {
130
+ readonly typeName: "launches.v1.LaunchService";
131
+ };
132
+ };
@@ -0,0 +1,136 @@
1
+ // @generated by protoc-gen-connect-query v1.4.2 with parameter "target=ts"
2
+ // @generated from file launches/v1/api.proto (package launches.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+ import { MethodKind } from "@bufbuild/protobuf";
6
+ import { CheckLaunchNameTickerRequest, CheckLaunchNameTickerResponse, GetLaunchActivityStatsRequest, GetLaunchActivityStatsResponse, GetLaunchClaimsRequest, GetLaunchClaimsResponse, GetLaunchCreatorFeesRequest, GetLaunchCreatorFeesResponse, GetLaunchHoldersRequest, GetLaunchHoldersResponse, GetLiquidityForTokensRequest, GetLiquidityForTokensResponse, GetTokenTopTradersRequest, GetTokenTopTradersResponse, GetTokenTradesRequest, GetTokenTradesResponse, ListLaunchesRequest, ListLaunchesResponse, ListLaunchpadsRequest, ListLaunchpadsResponse } from "./api_pb.js";
7
+ /**
8
+ * @generated from rpc launches.v1.LaunchService.ListLaunchpads
9
+ */
10
+ export const listLaunchpads = {
11
+ localName: "listLaunchpads",
12
+ name: "ListLaunchpads",
13
+ kind: MethodKind.Unary,
14
+ I: ListLaunchpadsRequest,
15
+ O: ListLaunchpadsResponse,
16
+ service: {
17
+ typeName: "launches.v1.LaunchService"
18
+ }
19
+ };
20
+ /**
21
+ * @generated from rpc launches.v1.LaunchService.ListLaunches
22
+ */
23
+ export const listLaunches = {
24
+ localName: "listLaunches",
25
+ name: "ListLaunches",
26
+ kind: MethodKind.Unary,
27
+ I: ListLaunchesRequest,
28
+ O: ListLaunchesResponse,
29
+ service: {
30
+ typeName: "launches.v1.LaunchService"
31
+ }
32
+ };
33
+ /**
34
+ * @generated from rpc launches.v1.LaunchService.GetLaunchHolders
35
+ */
36
+ export const getLaunchHolders = {
37
+ localName: "getLaunchHolders",
38
+ name: "GetLaunchHolders",
39
+ kind: MethodKind.Unary,
40
+ I: GetLaunchHoldersRequest,
41
+ O: GetLaunchHoldersResponse,
42
+ service: {
43
+ typeName: "launches.v1.LaunchService"
44
+ }
45
+ };
46
+ /**
47
+ * @generated from rpc launches.v1.LaunchService.GetLaunchActivityStats
48
+ */
49
+ export const getLaunchActivityStats = {
50
+ localName: "getLaunchActivityStats",
51
+ name: "GetLaunchActivityStats",
52
+ kind: MethodKind.Unary,
53
+ I: GetLaunchActivityStatsRequest,
54
+ O: GetLaunchActivityStatsResponse,
55
+ service: {
56
+ typeName: "launches.v1.LaunchService"
57
+ }
58
+ };
59
+ /**
60
+ * @generated from rpc launches.v1.LaunchService.GetLaunchClaims
61
+ */
62
+ export const getLaunchClaims = {
63
+ localName: "getLaunchClaims",
64
+ name: "GetLaunchClaims",
65
+ kind: MethodKind.Unary,
66
+ I: GetLaunchClaimsRequest,
67
+ O: GetLaunchClaimsResponse,
68
+ service: {
69
+ typeName: "launches.v1.LaunchService"
70
+ }
71
+ };
72
+ /**
73
+ * @generated from rpc launches.v1.LaunchService.GetLaunchCreatorFees
74
+ */
75
+ export const getLaunchCreatorFees = {
76
+ localName: "getLaunchCreatorFees",
77
+ name: "GetLaunchCreatorFees",
78
+ kind: MethodKind.Unary,
79
+ I: GetLaunchCreatorFeesRequest,
80
+ O: GetLaunchCreatorFeesResponse,
81
+ service: {
82
+ typeName: "launches.v1.LaunchService"
83
+ }
84
+ };
85
+ /**
86
+ * @generated from rpc launches.v1.LaunchService.CheckLaunchNameTicker
87
+ */
88
+ export const checkLaunchNameTicker = {
89
+ localName: "checkLaunchNameTicker",
90
+ name: "CheckLaunchNameTicker",
91
+ kind: MethodKind.Unary,
92
+ I: CheckLaunchNameTickerRequest,
93
+ O: CheckLaunchNameTickerResponse,
94
+ service: {
95
+ typeName: "launches.v1.LaunchService"
96
+ }
97
+ };
98
+ /**
99
+ * @generated from rpc launches.v1.LaunchService.GetLiquidityForTokens
100
+ */
101
+ export const getLiquidityForTokens = {
102
+ localName: "getLiquidityForTokens",
103
+ name: "GetLiquidityForTokens",
104
+ kind: MethodKind.Unary,
105
+ I: GetLiquidityForTokensRequest,
106
+ O: GetLiquidityForTokensResponse,
107
+ service: {
108
+ typeName: "launches.v1.LaunchService"
109
+ }
110
+ };
111
+ /**
112
+ * @generated from rpc launches.v1.LaunchService.GetTokenTrades
113
+ */
114
+ export const getTokenTrades = {
115
+ localName: "getTokenTrades",
116
+ name: "GetTokenTrades",
117
+ kind: MethodKind.Unary,
118
+ I: GetTokenTradesRequest,
119
+ O: GetTokenTradesResponse,
120
+ service: {
121
+ typeName: "launches.v1.LaunchService"
122
+ }
123
+ };
124
+ /**
125
+ * @generated from rpc launches.v1.LaunchService.GetTokenTopTraders
126
+ */
127
+ export const getTokenTopTraders = {
128
+ localName: "getTokenTopTraders",
129
+ name: "GetTokenTopTraders",
130
+ kind: MethodKind.Unary,
131
+ I: GetTokenTopTradersRequest,
132
+ O: GetTokenTopTradersResponse,
133
+ service: {
134
+ typeName: "launches.v1.LaunchService"
135
+ }
136
+ };
@@ -0,0 +1,107 @@
1
+ import { CheckLaunchNameTickerRequest, CheckLaunchNameTickerResponse, GetLaunchActivityStatsRequest, GetLaunchActivityStatsResponse, GetLaunchClaimsRequest, GetLaunchClaimsResponse, GetLaunchCreatorFeesRequest, GetLaunchCreatorFeesResponse, GetLaunchHoldersRequest, GetLaunchHoldersResponse, GetLiquidityForTokensRequest, GetLiquidityForTokensResponse, GetTokenTopTradersRequest, GetTokenTopTradersResponse, GetTokenTradesRequest, GetTokenTradesResponse, ListLaunchesRequest, ListLaunchesResponse, ListLaunchpadsRequest, ListLaunchpadsResponse } from "./api_pb.js";
2
+ import { MethodKind } from "@bufbuild/protobuf";
3
+ /**
4
+ * launches.v1.LaunchService re-declares the launch-scoped read RPCs served
5
+ * today by data.v2.DataApiService (LP endpoint migration, phase 1). Every
6
+ * request/response message is copied from data/v2/api.proto with identical
7
+ * field numbers, names, and JSON names, so the two names are wire- and
8
+ * JSON-identical and callers can switch by service-name string alone. Keep
9
+ * in sync with the data.v2 twins until those RPC declarations are deleted.
10
+ *
11
+ * @generated from service launches.v1.LaunchService
12
+ */
13
+ export declare const LaunchService: {
14
+ readonly typeName: "launches.v1.LaunchService";
15
+ readonly methods: {
16
+ /**
17
+ * @generated from rpc launches.v1.LaunchService.ListLaunchpads
18
+ */
19
+ readonly listLaunchpads: {
20
+ readonly name: "ListLaunchpads";
21
+ readonly I: typeof ListLaunchpadsRequest;
22
+ readonly O: typeof ListLaunchpadsResponse;
23
+ readonly kind: MethodKind.Unary;
24
+ };
25
+ /**
26
+ * @generated from rpc launches.v1.LaunchService.ListLaunches
27
+ */
28
+ readonly listLaunches: {
29
+ readonly name: "ListLaunches";
30
+ readonly I: typeof ListLaunchesRequest;
31
+ readonly O: typeof ListLaunchesResponse;
32
+ readonly kind: MethodKind.Unary;
33
+ };
34
+ /**
35
+ * @generated from rpc launches.v1.LaunchService.GetLaunchHolders
36
+ */
37
+ readonly getLaunchHolders: {
38
+ readonly name: "GetLaunchHolders";
39
+ readonly I: typeof GetLaunchHoldersRequest;
40
+ readonly O: typeof GetLaunchHoldersResponse;
41
+ readonly kind: MethodKind.Unary;
42
+ };
43
+ /**
44
+ * @generated from rpc launches.v1.LaunchService.GetLaunchActivityStats
45
+ */
46
+ readonly getLaunchActivityStats: {
47
+ readonly name: "GetLaunchActivityStats";
48
+ readonly I: typeof GetLaunchActivityStatsRequest;
49
+ readonly O: typeof GetLaunchActivityStatsResponse;
50
+ readonly kind: MethodKind.Unary;
51
+ };
52
+ /**
53
+ * @generated from rpc launches.v1.LaunchService.GetLaunchClaims
54
+ */
55
+ readonly getLaunchClaims: {
56
+ readonly name: "GetLaunchClaims";
57
+ readonly I: typeof GetLaunchClaimsRequest;
58
+ readonly O: typeof GetLaunchClaimsResponse;
59
+ readonly kind: MethodKind.Unary;
60
+ };
61
+ /**
62
+ * @generated from rpc launches.v1.LaunchService.GetLaunchCreatorFees
63
+ */
64
+ readonly getLaunchCreatorFees: {
65
+ readonly name: "GetLaunchCreatorFees";
66
+ readonly I: typeof GetLaunchCreatorFeesRequest;
67
+ readonly O: typeof GetLaunchCreatorFeesResponse;
68
+ readonly kind: MethodKind.Unary;
69
+ };
70
+ /**
71
+ * @generated from rpc launches.v1.LaunchService.CheckLaunchNameTicker
72
+ */
73
+ readonly checkLaunchNameTicker: {
74
+ readonly name: "CheckLaunchNameTicker";
75
+ readonly I: typeof CheckLaunchNameTickerRequest;
76
+ readonly O: typeof CheckLaunchNameTickerResponse;
77
+ readonly kind: MethodKind.Unary;
78
+ };
79
+ /**
80
+ * @generated from rpc launches.v1.LaunchService.GetLiquidityForTokens
81
+ */
82
+ readonly getLiquidityForTokens: {
83
+ readonly name: "GetLiquidityForTokens";
84
+ readonly I: typeof GetLiquidityForTokensRequest;
85
+ readonly O: typeof GetLiquidityForTokensResponse;
86
+ readonly kind: MethodKind.Unary;
87
+ };
88
+ /**
89
+ * @generated from rpc launches.v1.LaunchService.GetTokenTrades
90
+ */
91
+ readonly getTokenTrades: {
92
+ readonly name: "GetTokenTrades";
93
+ readonly I: typeof GetTokenTradesRequest;
94
+ readonly O: typeof GetTokenTradesResponse;
95
+ readonly kind: MethodKind.Unary;
96
+ };
97
+ /**
98
+ * @generated from rpc launches.v1.LaunchService.GetTokenTopTraders
99
+ */
100
+ readonly getTokenTopTraders: {
101
+ readonly name: "GetTokenTopTraders";
102
+ readonly I: typeof GetTokenTopTradersRequest;
103
+ readonly O: typeof GetTokenTopTradersResponse;
104
+ readonly kind: MethodKind.Unary;
105
+ };
106
+ };
107
+ };
@@ -0,0 +1,111 @@
1
+ // @generated by protoc-gen-connect-es v1.7.0 with parameter "target=ts"
2
+ // @generated from file launches/v1/api.proto (package launches.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+ import { CheckLaunchNameTickerRequest, CheckLaunchNameTickerResponse, GetLaunchActivityStatsRequest, GetLaunchActivityStatsResponse, GetLaunchClaimsRequest, GetLaunchClaimsResponse, GetLaunchCreatorFeesRequest, GetLaunchCreatorFeesResponse, GetLaunchHoldersRequest, GetLaunchHoldersResponse, GetLiquidityForTokensRequest, GetLiquidityForTokensResponse, GetTokenTopTradersRequest, GetTokenTopTradersResponse, GetTokenTradesRequest, GetTokenTradesResponse, ListLaunchesRequest, ListLaunchesResponse, ListLaunchpadsRequest, ListLaunchpadsResponse } from "./api_pb.js";
6
+ import { MethodKind } from "@bufbuild/protobuf";
7
+ /**
8
+ * launches.v1.LaunchService re-declares the launch-scoped read RPCs served
9
+ * today by data.v2.DataApiService (LP endpoint migration, phase 1). Every
10
+ * request/response message is copied from data/v2/api.proto with identical
11
+ * field numbers, names, and JSON names, so the two names are wire- and
12
+ * JSON-identical and callers can switch by service-name string alone. Keep
13
+ * in sync with the data.v2 twins until those RPC declarations are deleted.
14
+ *
15
+ * @generated from service launches.v1.LaunchService
16
+ */
17
+ export const LaunchService = {
18
+ typeName: "launches.v1.LaunchService",
19
+ methods: {
20
+ /**
21
+ * @generated from rpc launches.v1.LaunchService.ListLaunchpads
22
+ */
23
+ listLaunchpads: {
24
+ name: "ListLaunchpads",
25
+ I: ListLaunchpadsRequest,
26
+ O: ListLaunchpadsResponse,
27
+ kind: MethodKind.Unary,
28
+ },
29
+ /**
30
+ * @generated from rpc launches.v1.LaunchService.ListLaunches
31
+ */
32
+ listLaunches: {
33
+ name: "ListLaunches",
34
+ I: ListLaunchesRequest,
35
+ O: ListLaunchesResponse,
36
+ kind: MethodKind.Unary,
37
+ },
38
+ /**
39
+ * @generated from rpc launches.v1.LaunchService.GetLaunchHolders
40
+ */
41
+ getLaunchHolders: {
42
+ name: "GetLaunchHolders",
43
+ I: GetLaunchHoldersRequest,
44
+ O: GetLaunchHoldersResponse,
45
+ kind: MethodKind.Unary,
46
+ },
47
+ /**
48
+ * @generated from rpc launches.v1.LaunchService.GetLaunchActivityStats
49
+ */
50
+ getLaunchActivityStats: {
51
+ name: "GetLaunchActivityStats",
52
+ I: GetLaunchActivityStatsRequest,
53
+ O: GetLaunchActivityStatsResponse,
54
+ kind: MethodKind.Unary,
55
+ },
56
+ /**
57
+ * @generated from rpc launches.v1.LaunchService.GetLaunchClaims
58
+ */
59
+ getLaunchClaims: {
60
+ name: "GetLaunchClaims",
61
+ I: GetLaunchClaimsRequest,
62
+ O: GetLaunchClaimsResponse,
63
+ kind: MethodKind.Unary,
64
+ },
65
+ /**
66
+ * @generated from rpc launches.v1.LaunchService.GetLaunchCreatorFees
67
+ */
68
+ getLaunchCreatorFees: {
69
+ name: "GetLaunchCreatorFees",
70
+ I: GetLaunchCreatorFeesRequest,
71
+ O: GetLaunchCreatorFeesResponse,
72
+ kind: MethodKind.Unary,
73
+ },
74
+ /**
75
+ * @generated from rpc launches.v1.LaunchService.CheckLaunchNameTicker
76
+ */
77
+ checkLaunchNameTicker: {
78
+ name: "CheckLaunchNameTicker",
79
+ I: CheckLaunchNameTickerRequest,
80
+ O: CheckLaunchNameTickerResponse,
81
+ kind: MethodKind.Unary,
82
+ },
83
+ /**
84
+ * @generated from rpc launches.v1.LaunchService.GetLiquidityForTokens
85
+ */
86
+ getLiquidityForTokens: {
87
+ name: "GetLiquidityForTokens",
88
+ I: GetLiquidityForTokensRequest,
89
+ O: GetLiquidityForTokensResponse,
90
+ kind: MethodKind.Unary,
91
+ },
92
+ /**
93
+ * @generated from rpc launches.v1.LaunchService.GetTokenTrades
94
+ */
95
+ getTokenTrades: {
96
+ name: "GetTokenTrades",
97
+ I: GetTokenTradesRequest,
98
+ O: GetTokenTradesResponse,
99
+ kind: MethodKind.Unary,
100
+ },
101
+ /**
102
+ * @generated from rpc launches.v1.LaunchService.GetTokenTopTraders
103
+ */
104
+ getTokenTopTraders: {
105
+ name: "GetTokenTopTraders",
106
+ I: GetTokenTopTradersRequest,
107
+ O: GetTokenTopTradersResponse,
108
+ kind: MethodKind.Unary,
109
+ },
110
+ }
111
+ };