@uniswap/client-liquidity 0.0.16 → 0.0.18

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.
@@ -1,5 +1,5 @@
1
1
  import { MethodIdempotency, MethodKind } from "@bufbuild/protobuf";
2
- import { ClaimTokensRequest, ClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse } from "./auction_pb.js";
2
+ import { ClaimTokensRequest, ClaimTokensResponse, ExitBidAndClaimTokensRequest, ExitBidAndClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse, TokenCountAllocatedToLpForAuctionRequest, TokenCountAllocatedToLpForAuctionResponse } from "./auction_pb.js";
3
3
  /**
4
4
  * @generated from rpc uniswap.liquidity.v1.AuctionService.SubmitBid
5
5
  */
@@ -42,3 +42,31 @@ export declare const claimTokens: {
42
42
  readonly typeName: "uniswap.liquidity.v1.AuctionService";
43
43
  };
44
44
  };
45
+ /**
46
+ * @generated from rpc uniswap.liquidity.v1.AuctionService.ExitBidAndClaimTokens
47
+ */
48
+ export declare const exitBidAndClaimTokens: {
49
+ readonly localName: "exitBidAndClaimTokens";
50
+ readonly name: "ExitBidAndClaimTokens";
51
+ readonly kind: MethodKind.Unary;
52
+ readonly I: typeof ExitBidAndClaimTokensRequest;
53
+ readonly O: typeof ExitBidAndClaimTokensResponse;
54
+ readonly idempotency: MethodIdempotency.NoSideEffects;
55
+ readonly service: {
56
+ readonly typeName: "uniswap.liquidity.v1.AuctionService";
57
+ };
58
+ };
59
+ /**
60
+ * @generated from rpc uniswap.liquidity.v1.AuctionService.TokenCountAllocatedToLpForAuction
61
+ */
62
+ export declare const tokenCountAllocatedToLpForAuction: {
63
+ readonly localName: "tokenCountAllocatedToLpForAuction";
64
+ readonly name: "TokenCountAllocatedToLpForAuction";
65
+ readonly kind: MethodKind.Unary;
66
+ readonly I: typeof TokenCountAllocatedToLpForAuctionRequest;
67
+ readonly O: typeof TokenCountAllocatedToLpForAuctionResponse;
68
+ readonly idempotency: MethodIdempotency.NoSideEffects;
69
+ readonly service: {
70
+ readonly typeName: "uniswap.liquidity.v1.AuctionService";
71
+ };
72
+ };
@@ -3,7 +3,7 @@
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
5
5
  import { MethodIdempotency, MethodKind } from "@bufbuild/protobuf";
6
- import { ClaimTokensRequest, ClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse } from "./auction_pb.js";
6
+ import { ClaimTokensRequest, ClaimTokensResponse, ExitBidAndClaimTokensRequest, ExitBidAndClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse, TokenCountAllocatedToLpForAuctionRequest, TokenCountAllocatedToLpForAuctionResponse } from "./auction_pb.js";
7
7
  /**
8
8
  * @generated from rpc uniswap.liquidity.v1.AuctionService.SubmitBid
9
9
  */
@@ -46,3 +46,31 @@ export const claimTokens = {
46
46
  typeName: "uniswap.liquidity.v1.AuctionService"
47
47
  }
48
48
  };
49
+ /**
50
+ * @generated from rpc uniswap.liquidity.v1.AuctionService.ExitBidAndClaimTokens
51
+ */
52
+ export const exitBidAndClaimTokens = {
53
+ localName: "exitBidAndClaimTokens",
54
+ name: "ExitBidAndClaimTokens",
55
+ kind: MethodKind.Unary,
56
+ I: ExitBidAndClaimTokensRequest,
57
+ O: ExitBidAndClaimTokensResponse,
58
+ idempotency: MethodIdempotency.NoSideEffects,
59
+ service: {
60
+ typeName: "uniswap.liquidity.v1.AuctionService"
61
+ }
62
+ };
63
+ /**
64
+ * @generated from rpc uniswap.liquidity.v1.AuctionService.TokenCountAllocatedToLpForAuction
65
+ */
66
+ export const tokenCountAllocatedToLpForAuction = {
67
+ localName: "tokenCountAllocatedToLpForAuction",
68
+ name: "TokenCountAllocatedToLpForAuction",
69
+ kind: MethodKind.Unary,
70
+ I: TokenCountAllocatedToLpForAuctionRequest,
71
+ O: TokenCountAllocatedToLpForAuctionResponse,
72
+ idempotency: MethodIdempotency.NoSideEffects,
73
+ service: {
74
+ typeName: "uniswap.liquidity.v1.AuctionService"
75
+ }
76
+ };
@@ -1,4 +1,4 @@
1
- import { ClaimTokensRequest, ClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse } from "./auction_pb.js";
1
+ import { ClaimTokensRequest, ClaimTokensResponse, ExitBidAndClaimTokensRequest, ExitBidAndClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse, TokenCountAllocatedToLpForAuctionRequest, TokenCountAllocatedToLpForAuctionResponse } from "./auction_pb.js";
2
2
  import { MethodIdempotency, MethodKind } from "@bufbuild/protobuf";
3
3
  /**
4
4
  * @generated from service uniswap.liquidity.v1.AuctionService
@@ -36,5 +36,25 @@ export declare const AuctionService: {
36
36
  readonly kind: MethodKind.Unary;
37
37
  readonly idempotency: MethodIdempotency.NoSideEffects;
38
38
  };
39
+ /**
40
+ * @generated from rpc uniswap.liquidity.v1.AuctionService.ExitBidAndClaimTokens
41
+ */
42
+ readonly exitBidAndClaimTokens: {
43
+ readonly name: "ExitBidAndClaimTokens";
44
+ readonly I: typeof ExitBidAndClaimTokensRequest;
45
+ readonly O: typeof ExitBidAndClaimTokensResponse;
46
+ readonly kind: MethodKind.Unary;
47
+ readonly idempotency: MethodIdempotency.NoSideEffects;
48
+ };
49
+ /**
50
+ * @generated from rpc uniswap.liquidity.v1.AuctionService.TokenCountAllocatedToLpForAuction
51
+ */
52
+ readonly tokenCountAllocatedToLpForAuction: {
53
+ readonly name: "TokenCountAllocatedToLpForAuction";
54
+ readonly I: typeof TokenCountAllocatedToLpForAuctionRequest;
55
+ readonly O: typeof TokenCountAllocatedToLpForAuctionResponse;
56
+ readonly kind: MethodKind.Unary;
57
+ readonly idempotency: MethodIdempotency.NoSideEffects;
58
+ };
39
59
  };
40
60
  };
@@ -2,7 +2,7 @@
2
2
  // @generated from file uniswap/liquidity/v1/auction.proto (package uniswap.liquidity.v1, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
5
- import { ClaimTokensRequest, ClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse } from "./auction_pb.js";
5
+ import { ClaimTokensRequest, ClaimTokensResponse, ExitBidAndClaimTokensRequest, ExitBidAndClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse, TokenCountAllocatedToLpForAuctionRequest, TokenCountAllocatedToLpForAuctionResponse } from "./auction_pb.js";
6
6
  import { MethodIdempotency, MethodKind } from "@bufbuild/protobuf";
7
7
  /**
8
8
  * @generated from service uniswap.liquidity.v1.AuctionService
@@ -40,5 +40,25 @@ export const AuctionService = {
40
40
  kind: MethodKind.Unary,
41
41
  idempotency: MethodIdempotency.NoSideEffects,
42
42
  },
43
+ /**
44
+ * @generated from rpc uniswap.liquidity.v1.AuctionService.ExitBidAndClaimTokens
45
+ */
46
+ exitBidAndClaimTokens: {
47
+ name: "ExitBidAndClaimTokens",
48
+ I: ExitBidAndClaimTokensRequest,
49
+ O: ExitBidAndClaimTokensResponse,
50
+ kind: MethodKind.Unary,
51
+ idempotency: MethodIdempotency.NoSideEffects,
52
+ },
53
+ /**
54
+ * @generated from rpc uniswap.liquidity.v1.AuctionService.TokenCountAllocatedToLpForAuction
55
+ */
56
+ tokenCountAllocatedToLpForAuction: {
57
+ name: "TokenCountAllocatedToLpForAuction",
58
+ I: TokenCountAllocatedToLpForAuctionRequest,
59
+ O: TokenCountAllocatedToLpForAuctionResponse,
60
+ kind: MethodKind.Unary,
61
+ idempotency: MethodIdempotency.NoSideEffects,
62
+ },
43
63
  }
44
64
  };
@@ -193,3 +193,103 @@ export declare class ClaimTokensResponse extends Message<ClaimTokensResponse> {
193
193
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClaimTokensResponse;
194
194
  static equals(a: ClaimTokensResponse | PlainMessage<ClaimTokensResponse> | undefined, b: ClaimTokensResponse | PlainMessage<ClaimTokensResponse> | undefined): boolean;
195
195
  }
196
+ /**
197
+ * @generated from message uniswap.liquidity.v1.ExitBidAndClaimTokensRequest
198
+ */
199
+ export declare class ExitBidAndClaimTokensRequest extends Message<ExitBidAndClaimTokensRequest> {
200
+ /**
201
+ * @generated from field: string bid_id = 1;
202
+ */
203
+ bidId: string;
204
+ /**
205
+ * @generated from field: string auction_contract_address = 2;
206
+ */
207
+ auctionContractAddress: string;
208
+ /**
209
+ * @generated from field: uniswap.liquidity.v1.ChainId chain_id = 3;
210
+ */
211
+ chainId: ChainId;
212
+ /**
213
+ * @generated from field: string wallet_address = 4;
214
+ */
215
+ walletAddress: string;
216
+ /**
217
+ * @generated from field: optional bool simulate_transaction = 5;
218
+ */
219
+ simulateTransaction?: boolean;
220
+ constructor(data?: PartialMessage<ExitBidAndClaimTokensRequest>);
221
+ static readonly runtime: typeof proto3;
222
+ static readonly typeName = "uniswap.liquidity.v1.ExitBidAndClaimTokensRequest";
223
+ static readonly fields: FieldList;
224
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExitBidAndClaimTokensRequest;
225
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExitBidAndClaimTokensRequest;
226
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExitBidAndClaimTokensRequest;
227
+ static equals(a: ExitBidAndClaimTokensRequest | PlainMessage<ExitBidAndClaimTokensRequest> | undefined, b: ExitBidAndClaimTokensRequest | PlainMessage<ExitBidAndClaimTokensRequest> | undefined): boolean;
228
+ }
229
+ /**
230
+ * @generated from message uniswap.liquidity.v1.ExitBidAndClaimTokensResponse
231
+ */
232
+ export declare class ExitBidAndClaimTokensResponse extends Message<ExitBidAndClaimTokensResponse> {
233
+ /**
234
+ * @generated from field: string request_id = 1;
235
+ */
236
+ requestId: string;
237
+ /**
238
+ * @generated from field: uniswap.liquidity.v1.TransactionRequest exit_bid_and_claim_tokens = 2;
239
+ */
240
+ exitBidAndClaimTokens?: TransactionRequest;
241
+ /**
242
+ * @generated from field: optional string gas_fee = 3;
243
+ */
244
+ gasFee?: string;
245
+ constructor(data?: PartialMessage<ExitBidAndClaimTokensResponse>);
246
+ static readonly runtime: typeof proto3;
247
+ static readonly typeName = "uniswap.liquidity.v1.ExitBidAndClaimTokensResponse";
248
+ static readonly fields: FieldList;
249
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExitBidAndClaimTokensResponse;
250
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExitBidAndClaimTokensResponse;
251
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExitBidAndClaimTokensResponse;
252
+ static equals(a: ExitBidAndClaimTokensResponse | PlainMessage<ExitBidAndClaimTokensResponse> | undefined, b: ExitBidAndClaimTokensResponse | PlainMessage<ExitBidAndClaimTokensResponse> | undefined): boolean;
253
+ }
254
+ /**
255
+ * @generated from message uniswap.liquidity.v1.TokenCountAllocatedToLpForAuctionRequest
256
+ */
257
+ export declare class TokenCountAllocatedToLpForAuctionRequest extends Message<TokenCountAllocatedToLpForAuctionRequest> {
258
+ /**
259
+ * @generated from field: string auctionContractAddress = 1;
260
+ */
261
+ auctionContractAddress: string;
262
+ /**
263
+ * @generated from field: uniswap.liquidity.v1.ChainId chain_id = 2;
264
+ */
265
+ chainId: ChainId;
266
+ constructor(data?: PartialMessage<TokenCountAllocatedToLpForAuctionRequest>);
267
+ static readonly runtime: typeof proto3;
268
+ static readonly typeName = "uniswap.liquidity.v1.TokenCountAllocatedToLpForAuctionRequest";
269
+ static readonly fields: FieldList;
270
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TokenCountAllocatedToLpForAuctionRequest;
271
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TokenCountAllocatedToLpForAuctionRequest;
272
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TokenCountAllocatedToLpForAuctionRequest;
273
+ static equals(a: TokenCountAllocatedToLpForAuctionRequest | PlainMessage<TokenCountAllocatedToLpForAuctionRequest> | undefined, b: TokenCountAllocatedToLpForAuctionRequest | PlainMessage<TokenCountAllocatedToLpForAuctionRequest> | undefined): boolean;
274
+ }
275
+ /**
276
+ * @generated from message uniswap.liquidity.v1.TokenCountAllocatedToLpForAuctionResponse
277
+ */
278
+ export declare class TokenCountAllocatedToLpForAuctionResponse extends Message<TokenCountAllocatedToLpForAuctionResponse> {
279
+ /**
280
+ * @generated from field: string request_id = 1;
281
+ */
282
+ requestId: string;
283
+ /**
284
+ * @generated from field: string token_count_allocated_to_lp = 2;
285
+ */
286
+ tokenCountAllocatedToLp: string;
287
+ constructor(data?: PartialMessage<TokenCountAllocatedToLpForAuctionResponse>);
288
+ static readonly runtime: typeof proto3;
289
+ static readonly typeName = "uniswap.liquidity.v1.TokenCountAllocatedToLpForAuctionResponse";
290
+ static readonly fields: FieldList;
291
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TokenCountAllocatedToLpForAuctionResponse;
292
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TokenCountAllocatedToLpForAuctionResponse;
293
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TokenCountAllocatedToLpForAuctionResponse;
294
+ static equals(a: TokenCountAllocatedToLpForAuctionResponse | PlainMessage<TokenCountAllocatedToLpForAuctionResponse> | undefined, b: TokenCountAllocatedToLpForAuctionResponse | PlainMessage<TokenCountAllocatedToLpForAuctionResponse> | undefined): boolean;
295
+ }
@@ -248,3 +248,151 @@ ClaimTokensResponse.fields = proto3.util.newFieldList(() => [
248
248
  { no: 2, name: "claim_tokens", kind: "message", T: TransactionRequest },
249
249
  { no: 3, name: "gas_fee", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
250
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: string bid_id = 1;
259
+ */
260
+ this.bidId = "";
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: "bid_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
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
+ ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-liquidity",
3
- "version": "0.0.16",
3
+ "version": "0.0.18",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },