@centurion_project/client-liquidity 0.3.0-ctn.1

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.
Files changed (29) hide show
  1. package/dist/uniswap/liquidity/v1/api-LiquidityService_connectquery.d.ts +142 -0
  2. package/dist/uniswap/liquidity/v1/api-LiquidityService_connectquery.js +146 -0
  3. package/dist/uniswap/liquidity/v1/api_connect.d.ts +110 -0
  4. package/dist/uniswap/liquidity/v1/api_connect.js +114 -0
  5. package/dist/uniswap/liquidity/v1/api_pb.d.ts +833 -0
  6. package/dist/uniswap/liquidity/v1/api_pb.js +827 -0
  7. package/dist/uniswap/liquidity/v1/auction-AuctionService_connectquery.d.ts +86 -0
  8. package/dist/uniswap/liquidity/v1/auction-AuctionService_connectquery.js +90 -0
  9. package/dist/uniswap/liquidity/v1/auction_connect.d.ts +70 -0
  10. package/dist/uniswap/liquidity/v1/auction_connect.js +74 -0
  11. package/dist/uniswap/liquidity/v1/auction_pb.d.ts +337 -0
  12. package/dist/uniswap/liquidity/v1/auction_pb.js +468 -0
  13. package/dist/uniswap/liquidity/v1/types_pb.d.ts +1963 -0
  14. package/dist/uniswap/liquidity/v1/types_pb.js +2223 -0
  15. package/dist/uniswap/liquidity/v1/x_verification-XVerificationService_connectquery.d.ts +34 -0
  16. package/dist/uniswap/liquidity/v1/x_verification-XVerificationService_connectquery.js +38 -0
  17. package/dist/uniswap/liquidity/v1/x_verification_connect.d.ts +34 -0
  18. package/dist/uniswap/liquidity/v1/x_verification_connect.js +38 -0
  19. package/dist/uniswap/liquidity/v1/x_verification_pb.d.ts +96 -0
  20. package/dist/uniswap/liquidity/v1/x_verification_pb.js +154 -0
  21. package/dist/uniswap/liquidity/v2/api-LiquidityService_connectquery.d.ts +100 -0
  22. package/dist/uniswap/liquidity/v2/api-LiquidityService_connectquery.js +104 -0
  23. package/dist/uniswap/liquidity/v2/api_connect.d.ts +80 -0
  24. package/dist/uniswap/liquidity/v2/api_connect.js +84 -0
  25. package/dist/uniswap/liquidity/v2/api_pb.d.ts +660 -0
  26. package/dist/uniswap/liquidity/v2/api_pb.js +637 -0
  27. package/dist/uniswap/liquidity/v2/types_pb.d.ts +266 -0
  28. package/dist/uniswap/liquidity/v2/types_pb.js +407 -0
  29. package/package.json +11 -0
@@ -0,0 +1,468 @@
1
+ // @generated by protoc-gen-es v1.10.1 with parameter "target=ts"
2
+ // @generated from file uniswap/liquidity/v1/auction.proto (package uniswap.liquidity.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+ import { Message, proto3 } from "@bufbuild/protobuf";
6
+ import { AuctionValidation, BidToExit, ChainId, TransactionRequest } from "./types_pb.js";
7
+ /**
8
+ * REQUESTS & RESPONSES
9
+ *
10
+ * @generated from message uniswap.liquidity.v1.SubmitBidRequest
11
+ */
12
+ export class SubmitBidRequest extends Message {
13
+ constructor(data) {
14
+ super();
15
+ /**
16
+ * @generated from field: string maxPrice = 1;
17
+ */
18
+ this.maxPrice = "";
19
+ /**
20
+ * @generated from field: string amount = 3;
21
+ */
22
+ this.amount = "";
23
+ /**
24
+ * @generated from field: string walletAddress = 4;
25
+ */
26
+ this.walletAddress = "";
27
+ /**
28
+ * @generated from field: string auctionContractAddress = 5;
29
+ */
30
+ this.auctionContractAddress = "";
31
+ /**
32
+ * @generated from field: uniswap.liquidity.v1.ChainId chain_id = 7;
33
+ */
34
+ this.chainId = ChainId.CHAIN_ID_UNSPECIFIED;
35
+ proto3.util.initPartial(data, this);
36
+ }
37
+ static fromBinary(bytes, options) {
38
+ return new SubmitBidRequest().fromBinary(bytes, options);
39
+ }
40
+ static fromJson(jsonValue, options) {
41
+ return new SubmitBidRequest().fromJson(jsonValue, options);
42
+ }
43
+ static fromJsonString(jsonString, options) {
44
+ return new SubmitBidRequest().fromJsonString(jsonString, options);
45
+ }
46
+ static equals(a, b) {
47
+ return proto3.util.equals(SubmitBidRequest, a, b);
48
+ }
49
+ }
50
+ SubmitBidRequest.runtime = proto3;
51
+ SubmitBidRequest.typeName = "uniswap.liquidity.v1.SubmitBidRequest";
52
+ SubmitBidRequest.fields = proto3.util.newFieldList(() => [
53
+ { no: 1, name: "maxPrice", kind: "scalar", T: 9 /* ScalarType.STRING */ },
54
+ { no: 2, name: "exactIn", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
55
+ { no: 3, name: "amount", kind: "scalar", T: 9 /* ScalarType.STRING */ },
56
+ { no: 4, name: "walletAddress", kind: "scalar", T: 9 /* ScalarType.STRING */ },
57
+ { no: 5, name: "auctionContractAddress", kind: "scalar", T: 9 /* ScalarType.STRING */ },
58
+ { no: 6, name: "hookData", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
59
+ { no: 7, name: "chain_id", kind: "enum", T: proto3.getEnumType(ChainId) },
60
+ { no: 8, name: "simulate_transaction", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
61
+ ]);
62
+ /**
63
+ * @generated from message uniswap.liquidity.v1.SubmitBidResponse
64
+ */
65
+ export class SubmitBidResponse extends Message {
66
+ constructor(data) {
67
+ super();
68
+ /**
69
+ * @generated from field: string request_id = 1;
70
+ */
71
+ this.requestId = "";
72
+ proto3.util.initPartial(data, this);
73
+ }
74
+ static fromBinary(bytes, options) {
75
+ return new SubmitBidResponse().fromBinary(bytes, options);
76
+ }
77
+ static fromJson(jsonValue, options) {
78
+ return new SubmitBidResponse().fromJson(jsonValue, options);
79
+ }
80
+ static fromJsonString(jsonString, options) {
81
+ return new SubmitBidResponse().fromJsonString(jsonString, options);
82
+ }
83
+ static equals(a, b) {
84
+ return proto3.util.equals(SubmitBidResponse, a, b);
85
+ }
86
+ }
87
+ SubmitBidResponse.runtime = proto3;
88
+ SubmitBidResponse.typeName = "uniswap.liquidity.v1.SubmitBidResponse";
89
+ SubmitBidResponse.fields = proto3.util.newFieldList(() => [
90
+ { no: 1, name: "request_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
91
+ { no: 2, name: "bid", kind: "message", T: TransactionRequest },
92
+ { no: 3, name: "gasFee", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
93
+ ]);
94
+ /**
95
+ * @generated from message uniswap.liquidity.v1.ExitBidPositionRequest
96
+ */
97
+ export class ExitBidPositionRequest extends Message {
98
+ constructor(data) {
99
+ super();
100
+ /**
101
+ * @generated from field: string bidId = 1;
102
+ */
103
+ this.bidId = "";
104
+ /**
105
+ * @generated from field: string auctionContractAddress = 2;
106
+ */
107
+ this.auctionContractAddress = "";
108
+ /**
109
+ * @generated from field: uniswap.liquidity.v1.ChainId chain_id = 3;
110
+ */
111
+ this.chainId = ChainId.CHAIN_ID_UNSPECIFIED;
112
+ /**
113
+ * @generated from field: string walletAddress = 4;
114
+ */
115
+ this.walletAddress = "";
116
+ proto3.util.initPartial(data, this);
117
+ }
118
+ static fromBinary(bytes, options) {
119
+ return new ExitBidPositionRequest().fromBinary(bytes, options);
120
+ }
121
+ static fromJson(jsonValue, options) {
122
+ return new ExitBidPositionRequest().fromJson(jsonValue, options);
123
+ }
124
+ static fromJsonString(jsonString, options) {
125
+ return new ExitBidPositionRequest().fromJsonString(jsonString, options);
126
+ }
127
+ static equals(a, b) {
128
+ return proto3.util.equals(ExitBidPositionRequest, a, b);
129
+ }
130
+ }
131
+ ExitBidPositionRequest.runtime = proto3;
132
+ ExitBidPositionRequest.typeName = "uniswap.liquidity.v1.ExitBidPositionRequest";
133
+ ExitBidPositionRequest.fields = proto3.util.newFieldList(() => [
134
+ { no: 1, name: "bidId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
135
+ { no: 2, name: "auctionContractAddress", kind: "scalar", T: 9 /* ScalarType.STRING */ },
136
+ { no: 3, name: "chain_id", kind: "enum", T: proto3.getEnumType(ChainId) },
137
+ { no: 4, name: "walletAddress", kind: "scalar", T: 9 /* ScalarType.STRING */ },
138
+ { no: 5, name: "simulate_transaction", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
139
+ ]);
140
+ /**
141
+ * @generated from message uniswap.liquidity.v1.ExitBidPositionResponse
142
+ */
143
+ export class ExitBidPositionResponse extends Message {
144
+ constructor(data) {
145
+ super();
146
+ /**
147
+ * @generated from field: string request_id = 1;
148
+ */
149
+ this.requestId = "";
150
+ proto3.util.initPartial(data, this);
151
+ }
152
+ static fromBinary(bytes, options) {
153
+ return new ExitBidPositionResponse().fromBinary(bytes, options);
154
+ }
155
+ static fromJson(jsonValue, options) {
156
+ return new ExitBidPositionResponse().fromJson(jsonValue, options);
157
+ }
158
+ static fromJsonString(jsonString, options) {
159
+ return new ExitBidPositionResponse().fromJsonString(jsonString, options);
160
+ }
161
+ static equals(a, b) {
162
+ return proto3.util.equals(ExitBidPositionResponse, a, b);
163
+ }
164
+ }
165
+ ExitBidPositionResponse.runtime = proto3;
166
+ ExitBidPositionResponse.typeName = "uniswap.liquidity.v1.ExitBidPositionResponse";
167
+ ExitBidPositionResponse.fields = proto3.util.newFieldList(() => [
168
+ { no: 1, name: "request_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
169
+ { no: 2, name: "exitBid", kind: "message", T: TransactionRequest },
170
+ { no: 3, name: "gasFee", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
171
+ ]);
172
+ /**
173
+ * @generated from message uniswap.liquidity.v1.ClaimTokensRequest
174
+ */
175
+ export class ClaimTokensRequest extends Message {
176
+ constructor(data) {
177
+ super();
178
+ /**
179
+ * @generated from field: repeated string bids = 1;
180
+ */
181
+ this.bids = [];
182
+ /**
183
+ * @generated from field: string auction_contract_address = 2;
184
+ */
185
+ this.auctionContractAddress = "";
186
+ /**
187
+ * @generated from field: uniswap.liquidity.v1.ChainId chain_id = 3;
188
+ */
189
+ this.chainId = ChainId.CHAIN_ID_UNSPECIFIED;
190
+ /**
191
+ * @generated from field: string wallet_address = 5;
192
+ */
193
+ this.walletAddress = "";
194
+ proto3.util.initPartial(data, this);
195
+ }
196
+ static fromBinary(bytes, options) {
197
+ return new ClaimTokensRequest().fromBinary(bytes, options);
198
+ }
199
+ static fromJson(jsonValue, options) {
200
+ return new ClaimTokensRequest().fromJson(jsonValue, options);
201
+ }
202
+ static fromJsonString(jsonString, options) {
203
+ return new ClaimTokensRequest().fromJsonString(jsonString, options);
204
+ }
205
+ static equals(a, b) {
206
+ return proto3.util.equals(ClaimTokensRequest, a, b);
207
+ }
208
+ }
209
+ ClaimTokensRequest.runtime = proto3;
210
+ ClaimTokensRequest.typeName = "uniswap.liquidity.v1.ClaimTokensRequest";
211
+ ClaimTokensRequest.fields = proto3.util.newFieldList(() => [
212
+ { no: 1, name: "bids", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
213
+ { no: 2, name: "auction_contract_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
214
+ { no: 3, name: "chain_id", kind: "enum", T: proto3.getEnumType(ChainId) },
215
+ { no: 4, name: "simulate_transaction", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
216
+ { no: 5, name: "wallet_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
217
+ { no: 6, name: "should_claim_all", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
218
+ ]);
219
+ /**
220
+ * @generated from message uniswap.liquidity.v1.ClaimTokensResponse
221
+ */
222
+ export class ClaimTokensResponse extends Message {
223
+ constructor(data) {
224
+ super();
225
+ /**
226
+ * @generated from field: string request_id = 1;
227
+ */
228
+ this.requestId = "";
229
+ proto3.util.initPartial(data, this);
230
+ }
231
+ static fromBinary(bytes, options) {
232
+ return new ClaimTokensResponse().fromBinary(bytes, options);
233
+ }
234
+ static fromJson(jsonValue, options) {
235
+ return new ClaimTokensResponse().fromJson(jsonValue, options);
236
+ }
237
+ static fromJsonString(jsonString, options) {
238
+ return new ClaimTokensResponse().fromJsonString(jsonString, options);
239
+ }
240
+ static equals(a, b) {
241
+ return proto3.util.equals(ClaimTokensResponse, a, b);
242
+ }
243
+ }
244
+ ClaimTokensResponse.runtime = proto3;
245
+ ClaimTokensResponse.typeName = "uniswap.liquidity.v1.ClaimTokensResponse";
246
+ ClaimTokensResponse.fields = proto3.util.newFieldList(() => [
247
+ { no: 1, name: "request_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
248
+ { no: 2, name: "claim_tokens", kind: "message", T: TransactionRequest },
249
+ { no: 3, name: "gas_fee", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
250
+ ]);
251
+ /**
252
+ * @generated from message uniswap.liquidity.v1.ExitBidAndClaimTokensRequest
253
+ */
254
+ export class ExitBidAndClaimTokensRequest extends Message {
255
+ constructor(data) {
256
+ super();
257
+ /**
258
+ * @generated from field: repeated uniswap.liquidity.v1.BidToExit bids = 1;
259
+ */
260
+ this.bids = [];
261
+ /**
262
+ * @generated from field: string auction_contract_address = 2;
263
+ */
264
+ this.auctionContractAddress = "";
265
+ /**
266
+ * @generated from field: uniswap.liquidity.v1.ChainId chain_id = 3;
267
+ */
268
+ this.chainId = ChainId.CHAIN_ID_UNSPECIFIED;
269
+ /**
270
+ * @generated from field: string wallet_address = 4;
271
+ */
272
+ this.walletAddress = "";
273
+ proto3.util.initPartial(data, this);
274
+ }
275
+ static fromBinary(bytes, options) {
276
+ return new ExitBidAndClaimTokensRequest().fromBinary(bytes, options);
277
+ }
278
+ static fromJson(jsonValue, options) {
279
+ return new ExitBidAndClaimTokensRequest().fromJson(jsonValue, options);
280
+ }
281
+ static fromJsonString(jsonString, options) {
282
+ return new ExitBidAndClaimTokensRequest().fromJsonString(jsonString, options);
283
+ }
284
+ static equals(a, b) {
285
+ return proto3.util.equals(ExitBidAndClaimTokensRequest, a, b);
286
+ }
287
+ }
288
+ ExitBidAndClaimTokensRequest.runtime = proto3;
289
+ ExitBidAndClaimTokensRequest.typeName = "uniswap.liquidity.v1.ExitBidAndClaimTokensRequest";
290
+ ExitBidAndClaimTokensRequest.fields = proto3.util.newFieldList(() => [
291
+ { no: 1, name: "bids", kind: "message", T: BidToExit, repeated: true },
292
+ { no: 2, name: "auction_contract_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
293
+ { no: 3, name: "chain_id", kind: "enum", T: proto3.getEnumType(ChainId) },
294
+ { no: 4, name: "wallet_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
295
+ { no: 5, name: "simulate_transaction", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
296
+ ]);
297
+ /**
298
+ * @generated from message uniswap.liquidity.v1.ExitBidAndClaimTokensResponse
299
+ */
300
+ export class ExitBidAndClaimTokensResponse extends Message {
301
+ constructor(data) {
302
+ super();
303
+ /**
304
+ * @generated from field: string request_id = 1;
305
+ */
306
+ this.requestId = "";
307
+ proto3.util.initPartial(data, this);
308
+ }
309
+ static fromBinary(bytes, options) {
310
+ return new ExitBidAndClaimTokensResponse().fromBinary(bytes, options);
311
+ }
312
+ static fromJson(jsonValue, options) {
313
+ return new ExitBidAndClaimTokensResponse().fromJson(jsonValue, options);
314
+ }
315
+ static fromJsonString(jsonString, options) {
316
+ return new ExitBidAndClaimTokensResponse().fromJsonString(jsonString, options);
317
+ }
318
+ static equals(a, b) {
319
+ return proto3.util.equals(ExitBidAndClaimTokensResponse, a, b);
320
+ }
321
+ }
322
+ ExitBidAndClaimTokensResponse.runtime = proto3;
323
+ ExitBidAndClaimTokensResponse.typeName = "uniswap.liquidity.v1.ExitBidAndClaimTokensResponse";
324
+ ExitBidAndClaimTokensResponse.fields = proto3.util.newFieldList(() => [
325
+ { no: 1, name: "request_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
326
+ { no: 2, name: "exit_bid_and_claim_tokens", kind: "message", T: TransactionRequest },
327
+ { no: 3, name: "gas_fee", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
328
+ ]);
329
+ /**
330
+ * @generated from message uniswap.liquidity.v1.TokenCountAllocatedToLpForAuctionRequest
331
+ */
332
+ export class TokenCountAllocatedToLpForAuctionRequest extends Message {
333
+ constructor(data) {
334
+ super();
335
+ /**
336
+ * @generated from field: string auctionContractAddress = 1;
337
+ */
338
+ this.auctionContractAddress = "";
339
+ /**
340
+ * @generated from field: uniswap.liquidity.v1.ChainId chain_id = 2;
341
+ */
342
+ this.chainId = ChainId.CHAIN_ID_UNSPECIFIED;
343
+ proto3.util.initPartial(data, this);
344
+ }
345
+ static fromBinary(bytes, options) {
346
+ return new TokenCountAllocatedToLpForAuctionRequest().fromBinary(bytes, options);
347
+ }
348
+ static fromJson(jsonValue, options) {
349
+ return new TokenCountAllocatedToLpForAuctionRequest().fromJson(jsonValue, options);
350
+ }
351
+ static fromJsonString(jsonString, options) {
352
+ return new TokenCountAllocatedToLpForAuctionRequest().fromJsonString(jsonString, options);
353
+ }
354
+ static equals(a, b) {
355
+ return proto3.util.equals(TokenCountAllocatedToLpForAuctionRequest, a, b);
356
+ }
357
+ }
358
+ TokenCountAllocatedToLpForAuctionRequest.runtime = proto3;
359
+ TokenCountAllocatedToLpForAuctionRequest.typeName = "uniswap.liquidity.v1.TokenCountAllocatedToLpForAuctionRequest";
360
+ TokenCountAllocatedToLpForAuctionRequest.fields = proto3.util.newFieldList(() => [
361
+ { no: 1, name: "auctionContractAddress", kind: "scalar", T: 9 /* ScalarType.STRING */ },
362
+ { no: 2, name: "chain_id", kind: "enum", T: proto3.getEnumType(ChainId) },
363
+ ]);
364
+ /**
365
+ * @generated from message uniswap.liquidity.v1.TokenCountAllocatedToLpForAuctionResponse
366
+ */
367
+ export class TokenCountAllocatedToLpForAuctionResponse extends Message {
368
+ constructor(data) {
369
+ super();
370
+ /**
371
+ * @generated from field: string request_id = 1;
372
+ */
373
+ this.requestId = "";
374
+ /**
375
+ * @generated from field: string token_count_allocated_to_lp = 2;
376
+ */
377
+ this.tokenCountAllocatedToLp = "";
378
+ proto3.util.initPartial(data, this);
379
+ }
380
+ static fromBinary(bytes, options) {
381
+ return new TokenCountAllocatedToLpForAuctionResponse().fromBinary(bytes, options);
382
+ }
383
+ static fromJson(jsonValue, options) {
384
+ return new TokenCountAllocatedToLpForAuctionResponse().fromJson(jsonValue, options);
385
+ }
386
+ static fromJsonString(jsonString, options) {
387
+ return new TokenCountAllocatedToLpForAuctionResponse().fromJsonString(jsonString, options);
388
+ }
389
+ static equals(a, b) {
390
+ return proto3.util.equals(TokenCountAllocatedToLpForAuctionResponse, a, b);
391
+ }
392
+ }
393
+ TokenCountAllocatedToLpForAuctionResponse.runtime = proto3;
394
+ TokenCountAllocatedToLpForAuctionResponse.typeName = "uniswap.liquidity.v1.TokenCountAllocatedToLpForAuctionResponse";
395
+ TokenCountAllocatedToLpForAuctionResponse.fields = proto3.util.newFieldList(() => [
396
+ { no: 1, name: "request_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
397
+ { no: 2, name: "token_count_allocated_to_lp", kind: "scalar", T: 9 /* ScalarType.STRING */ },
398
+ ]);
399
+ /**
400
+ * @generated from message uniswap.liquidity.v1.VerifyWalletRequest
401
+ */
402
+ export class VerifyWalletRequest extends Message {
403
+ constructor(data) {
404
+ super();
405
+ /**
406
+ * @generated from field: string wallet_address = 1;
407
+ */
408
+ this.walletAddress = "";
409
+ /**
410
+ * @generated from field: string auction_address = 2;
411
+ */
412
+ this.auctionAddress = "";
413
+ /**
414
+ * @generated from field: uniswap.liquidity.v1.ChainId chain_id = 3;
415
+ */
416
+ this.chainId = ChainId.CHAIN_ID_UNSPECIFIED;
417
+ proto3.util.initPartial(data, this);
418
+ }
419
+ static fromBinary(bytes, options) {
420
+ return new VerifyWalletRequest().fromBinary(bytes, options);
421
+ }
422
+ static fromJson(jsonValue, options) {
423
+ return new VerifyWalletRequest().fromJson(jsonValue, options);
424
+ }
425
+ static fromJsonString(jsonString, options) {
426
+ return new VerifyWalletRequest().fromJsonString(jsonString, options);
427
+ }
428
+ static equals(a, b) {
429
+ return proto3.util.equals(VerifyWalletRequest, a, b);
430
+ }
431
+ }
432
+ VerifyWalletRequest.runtime = proto3;
433
+ VerifyWalletRequest.typeName = "uniswap.liquidity.v1.VerifyWalletRequest";
434
+ VerifyWalletRequest.fields = proto3.util.newFieldList(() => [
435
+ { no: 1, name: "wallet_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
436
+ { no: 2, name: "auction_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
437
+ { no: 3, name: "chain_id", kind: "enum", T: proto3.getEnumType(ChainId) },
438
+ ]);
439
+ /**
440
+ * @generated from message uniswap.liquidity.v1.VerifyWalletResponse
441
+ */
442
+ export class VerifyWalletResponse extends Message {
443
+ constructor(data) {
444
+ super();
445
+ /**
446
+ * @generated from field: repeated uniswap.liquidity.v1.AuctionValidation validations = 1;
447
+ */
448
+ this.validations = [];
449
+ proto3.util.initPartial(data, this);
450
+ }
451
+ static fromBinary(bytes, options) {
452
+ return new VerifyWalletResponse().fromBinary(bytes, options);
453
+ }
454
+ static fromJson(jsonValue, options) {
455
+ return new VerifyWalletResponse().fromJson(jsonValue, options);
456
+ }
457
+ static fromJsonString(jsonString, options) {
458
+ return new VerifyWalletResponse().fromJsonString(jsonString, options);
459
+ }
460
+ static equals(a, b) {
461
+ return proto3.util.equals(VerifyWalletResponse, a, b);
462
+ }
463
+ }
464
+ VerifyWalletResponse.runtime = proto3;
465
+ VerifyWalletResponse.typeName = "uniswap.liquidity.v1.VerifyWalletResponse";
466
+ VerifyWalletResponse.fields = proto3.util.newFieldList(() => [
467
+ { no: 1, name: "validations", kind: "message", T: AuctionValidation, repeated: true },
468
+ ]);