@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.
- package/dist/uniswap/liquidity/v1/api-LiquidityService_connectquery.d.ts +142 -0
- package/dist/uniswap/liquidity/v1/api-LiquidityService_connectquery.js +146 -0
- package/dist/uniswap/liquidity/v1/api_connect.d.ts +110 -0
- package/dist/uniswap/liquidity/v1/api_connect.js +114 -0
- package/dist/uniswap/liquidity/v1/api_pb.d.ts +833 -0
- package/dist/uniswap/liquidity/v1/api_pb.js +827 -0
- package/dist/uniswap/liquidity/v1/auction-AuctionService_connectquery.d.ts +86 -0
- package/dist/uniswap/liquidity/v1/auction-AuctionService_connectquery.js +90 -0
- package/dist/uniswap/liquidity/v1/auction_connect.d.ts +70 -0
- package/dist/uniswap/liquidity/v1/auction_connect.js +74 -0
- package/dist/uniswap/liquidity/v1/auction_pb.d.ts +337 -0
- package/dist/uniswap/liquidity/v1/auction_pb.js +468 -0
- package/dist/uniswap/liquidity/v1/types_pb.d.ts +1963 -0
- package/dist/uniswap/liquidity/v1/types_pb.js +2223 -0
- package/dist/uniswap/liquidity/v1/x_verification-XVerificationService_connectquery.d.ts +34 -0
- package/dist/uniswap/liquidity/v1/x_verification-XVerificationService_connectquery.js +38 -0
- package/dist/uniswap/liquidity/v1/x_verification_connect.d.ts +34 -0
- package/dist/uniswap/liquidity/v1/x_verification_connect.js +38 -0
- package/dist/uniswap/liquidity/v1/x_verification_pb.d.ts +96 -0
- package/dist/uniswap/liquidity/v1/x_verification_pb.js +154 -0
- package/dist/uniswap/liquidity/v2/api-LiquidityService_connectquery.d.ts +100 -0
- package/dist/uniswap/liquidity/v2/api-LiquidityService_connectquery.js +104 -0
- package/dist/uniswap/liquidity/v2/api_connect.d.ts +80 -0
- package/dist/uniswap/liquidity/v2/api_connect.js +84 -0
- package/dist/uniswap/liquidity/v2/api_pb.d.ts +660 -0
- package/dist/uniswap/liquidity/v2/api_pb.js +637 -0
- package/dist/uniswap/liquidity/v2/types_pb.d.ts +266 -0
- package/dist/uniswap/liquidity/v2/types_pb.js +407 -0
- package/package.json +11 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { MethodIdempotency, MethodKind } from "@bufbuild/protobuf";
|
|
2
|
+
import { ClaimTokensRequest, ClaimTokensResponse, ExitBidAndClaimTokensRequest, ExitBidAndClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse, TokenCountAllocatedToLpForAuctionRequest, TokenCountAllocatedToLpForAuctionResponse, VerifyWalletRequest, VerifyWalletResponse } from "./auction_pb.js";
|
|
3
|
+
/**
|
|
4
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.SubmitBid
|
|
5
|
+
*/
|
|
6
|
+
export declare const submitBid: {
|
|
7
|
+
readonly localName: "submitBid";
|
|
8
|
+
readonly name: "SubmitBid";
|
|
9
|
+
readonly kind: MethodKind.Unary;
|
|
10
|
+
readonly I: typeof SubmitBidRequest;
|
|
11
|
+
readonly O: typeof SubmitBidResponse;
|
|
12
|
+
readonly idempotency: MethodIdempotency.NoSideEffects;
|
|
13
|
+
readonly service: {
|
|
14
|
+
readonly typeName: "uniswap.liquidity.v1.AuctionService";
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.ExitBidPosition
|
|
19
|
+
*/
|
|
20
|
+
export declare const exitBidPosition: {
|
|
21
|
+
readonly localName: "exitBidPosition";
|
|
22
|
+
readonly name: "ExitBidPosition";
|
|
23
|
+
readonly kind: MethodKind.Unary;
|
|
24
|
+
readonly I: typeof ExitBidPositionRequest;
|
|
25
|
+
readonly O: typeof ExitBidPositionResponse;
|
|
26
|
+
readonly idempotency: MethodIdempotency.NoSideEffects;
|
|
27
|
+
readonly service: {
|
|
28
|
+
readonly typeName: "uniswap.liquidity.v1.AuctionService";
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.ClaimTokens
|
|
33
|
+
*/
|
|
34
|
+
export declare const claimTokens: {
|
|
35
|
+
readonly localName: "claimTokens";
|
|
36
|
+
readonly name: "ClaimTokens";
|
|
37
|
+
readonly kind: MethodKind.Unary;
|
|
38
|
+
readonly I: typeof ClaimTokensRequest;
|
|
39
|
+
readonly O: typeof ClaimTokensResponse;
|
|
40
|
+
readonly idempotency: MethodIdempotency.NoSideEffects;
|
|
41
|
+
readonly service: {
|
|
42
|
+
readonly typeName: "uniswap.liquidity.v1.AuctionService";
|
|
43
|
+
};
|
|
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
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.VerifyWallet
|
|
75
|
+
*/
|
|
76
|
+
export declare const verifyWallet: {
|
|
77
|
+
readonly localName: "verifyWallet";
|
|
78
|
+
readonly name: "VerifyWallet";
|
|
79
|
+
readonly kind: MethodKind.Unary;
|
|
80
|
+
readonly I: typeof VerifyWalletRequest;
|
|
81
|
+
readonly O: typeof VerifyWalletResponse;
|
|
82
|
+
readonly idempotency: MethodIdempotency.NoSideEffects;
|
|
83
|
+
readonly service: {
|
|
84
|
+
readonly typeName: "uniswap.liquidity.v1.AuctionService";
|
|
85
|
+
};
|
|
86
|
+
};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-query v1.4.2 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 { MethodIdempotency, MethodKind } from "@bufbuild/protobuf";
|
|
6
|
+
import { ClaimTokensRequest, ClaimTokensResponse, ExitBidAndClaimTokensRequest, ExitBidAndClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse, TokenCountAllocatedToLpForAuctionRequest, TokenCountAllocatedToLpForAuctionResponse, VerifyWalletRequest, VerifyWalletResponse } from "./auction_pb.js";
|
|
7
|
+
/**
|
|
8
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.SubmitBid
|
|
9
|
+
*/
|
|
10
|
+
export const submitBid = {
|
|
11
|
+
localName: "submitBid",
|
|
12
|
+
name: "SubmitBid",
|
|
13
|
+
kind: MethodKind.Unary,
|
|
14
|
+
I: SubmitBidRequest,
|
|
15
|
+
O: SubmitBidResponse,
|
|
16
|
+
idempotency: MethodIdempotency.NoSideEffects,
|
|
17
|
+
service: {
|
|
18
|
+
typeName: "uniswap.liquidity.v1.AuctionService"
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.ExitBidPosition
|
|
23
|
+
*/
|
|
24
|
+
export const exitBidPosition = {
|
|
25
|
+
localName: "exitBidPosition",
|
|
26
|
+
name: "ExitBidPosition",
|
|
27
|
+
kind: MethodKind.Unary,
|
|
28
|
+
I: ExitBidPositionRequest,
|
|
29
|
+
O: ExitBidPositionResponse,
|
|
30
|
+
idempotency: MethodIdempotency.NoSideEffects,
|
|
31
|
+
service: {
|
|
32
|
+
typeName: "uniswap.liquidity.v1.AuctionService"
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.ClaimTokens
|
|
37
|
+
*/
|
|
38
|
+
export const claimTokens = {
|
|
39
|
+
localName: "claimTokens",
|
|
40
|
+
name: "ClaimTokens",
|
|
41
|
+
kind: MethodKind.Unary,
|
|
42
|
+
I: ClaimTokensRequest,
|
|
43
|
+
O: ClaimTokensResponse,
|
|
44
|
+
idempotency: MethodIdempotency.NoSideEffects,
|
|
45
|
+
service: {
|
|
46
|
+
typeName: "uniswap.liquidity.v1.AuctionService"
|
|
47
|
+
}
|
|
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
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.VerifyWallet
|
|
79
|
+
*/
|
|
80
|
+
export const verifyWallet = {
|
|
81
|
+
localName: "verifyWallet",
|
|
82
|
+
name: "VerifyWallet",
|
|
83
|
+
kind: MethodKind.Unary,
|
|
84
|
+
I: VerifyWalletRequest,
|
|
85
|
+
O: VerifyWalletResponse,
|
|
86
|
+
idempotency: MethodIdempotency.NoSideEffects,
|
|
87
|
+
service: {
|
|
88
|
+
typeName: "uniswap.liquidity.v1.AuctionService"
|
|
89
|
+
}
|
|
90
|
+
};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { ClaimTokensRequest, ClaimTokensResponse, ExitBidAndClaimTokensRequest, ExitBidAndClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse, TokenCountAllocatedToLpForAuctionRequest, TokenCountAllocatedToLpForAuctionResponse, VerifyWalletRequest, VerifyWalletResponse } from "./auction_pb.js";
|
|
2
|
+
import { MethodIdempotency, MethodKind } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* @generated from service uniswap.liquidity.v1.AuctionService
|
|
5
|
+
*/
|
|
6
|
+
export declare const AuctionService: {
|
|
7
|
+
readonly typeName: "uniswap.liquidity.v1.AuctionService";
|
|
8
|
+
readonly methods: {
|
|
9
|
+
/**
|
|
10
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.SubmitBid
|
|
11
|
+
*/
|
|
12
|
+
readonly submitBid: {
|
|
13
|
+
readonly name: "SubmitBid";
|
|
14
|
+
readonly I: typeof SubmitBidRequest;
|
|
15
|
+
readonly O: typeof SubmitBidResponse;
|
|
16
|
+
readonly kind: MethodKind.Unary;
|
|
17
|
+
readonly idempotency: MethodIdempotency.NoSideEffects;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.ExitBidPosition
|
|
21
|
+
*/
|
|
22
|
+
readonly exitBidPosition: {
|
|
23
|
+
readonly name: "ExitBidPosition";
|
|
24
|
+
readonly I: typeof ExitBidPositionRequest;
|
|
25
|
+
readonly O: typeof ExitBidPositionResponse;
|
|
26
|
+
readonly kind: MethodKind.Unary;
|
|
27
|
+
readonly idempotency: MethodIdempotency.NoSideEffects;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.ClaimTokens
|
|
31
|
+
*/
|
|
32
|
+
readonly claimTokens: {
|
|
33
|
+
readonly name: "ClaimTokens";
|
|
34
|
+
readonly I: typeof ClaimTokensRequest;
|
|
35
|
+
readonly O: typeof ClaimTokensResponse;
|
|
36
|
+
readonly kind: MethodKind.Unary;
|
|
37
|
+
readonly idempotency: MethodIdempotency.NoSideEffects;
|
|
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
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.VerifyWallet
|
|
61
|
+
*/
|
|
62
|
+
readonly verifyWallet: {
|
|
63
|
+
readonly name: "VerifyWallet";
|
|
64
|
+
readonly I: typeof VerifyWalletRequest;
|
|
65
|
+
readonly O: typeof VerifyWalletResponse;
|
|
66
|
+
readonly kind: MethodKind.Unary;
|
|
67
|
+
readonly idempotency: MethodIdempotency.NoSideEffects;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.7.0 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 { ClaimTokensRequest, ClaimTokensResponse, ExitBidAndClaimTokensRequest, ExitBidAndClaimTokensResponse, ExitBidPositionRequest, ExitBidPositionResponse, SubmitBidRequest, SubmitBidResponse, TokenCountAllocatedToLpForAuctionRequest, TokenCountAllocatedToLpForAuctionResponse, VerifyWalletRequest, VerifyWalletResponse } from "./auction_pb.js";
|
|
6
|
+
import { MethodIdempotency, MethodKind } from "@bufbuild/protobuf";
|
|
7
|
+
/**
|
|
8
|
+
* @generated from service uniswap.liquidity.v1.AuctionService
|
|
9
|
+
*/
|
|
10
|
+
export const AuctionService = {
|
|
11
|
+
typeName: "uniswap.liquidity.v1.AuctionService",
|
|
12
|
+
methods: {
|
|
13
|
+
/**
|
|
14
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.SubmitBid
|
|
15
|
+
*/
|
|
16
|
+
submitBid: {
|
|
17
|
+
name: "SubmitBid",
|
|
18
|
+
I: SubmitBidRequest,
|
|
19
|
+
O: SubmitBidResponse,
|
|
20
|
+
kind: MethodKind.Unary,
|
|
21
|
+
idempotency: MethodIdempotency.NoSideEffects,
|
|
22
|
+
},
|
|
23
|
+
/**
|
|
24
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.ExitBidPosition
|
|
25
|
+
*/
|
|
26
|
+
exitBidPosition: {
|
|
27
|
+
name: "ExitBidPosition",
|
|
28
|
+
I: ExitBidPositionRequest,
|
|
29
|
+
O: ExitBidPositionResponse,
|
|
30
|
+
kind: MethodKind.Unary,
|
|
31
|
+
idempotency: MethodIdempotency.NoSideEffects,
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.ClaimTokens
|
|
35
|
+
*/
|
|
36
|
+
claimTokens: {
|
|
37
|
+
name: "ClaimTokens",
|
|
38
|
+
I: ClaimTokensRequest,
|
|
39
|
+
O: ClaimTokensResponse,
|
|
40
|
+
kind: MethodKind.Unary,
|
|
41
|
+
idempotency: MethodIdempotency.NoSideEffects,
|
|
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
|
+
},
|
|
63
|
+
/**
|
|
64
|
+
* @generated from rpc uniswap.liquidity.v1.AuctionService.VerifyWallet
|
|
65
|
+
*/
|
|
66
|
+
verifyWallet: {
|
|
67
|
+
name: "VerifyWallet",
|
|
68
|
+
I: VerifyWalletRequest,
|
|
69
|
+
O: VerifyWalletResponse,
|
|
70
|
+
kind: MethodKind.Unary,
|
|
71
|
+
idempotency: MethodIdempotency.NoSideEffects,
|
|
72
|
+
},
|
|
73
|
+
}
|
|
74
|
+
};
|
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
3
|
+
import { AuctionValidation, BidToExit, ChainId, TransactionRequest } from "./types_pb.js";
|
|
4
|
+
/**
|
|
5
|
+
* REQUESTS & RESPONSES
|
|
6
|
+
*
|
|
7
|
+
* @generated from message uniswap.liquidity.v1.SubmitBidRequest
|
|
8
|
+
*/
|
|
9
|
+
export declare class SubmitBidRequest extends Message<SubmitBidRequest> {
|
|
10
|
+
/**
|
|
11
|
+
* @generated from field: string maxPrice = 1;
|
|
12
|
+
*/
|
|
13
|
+
maxPrice: string;
|
|
14
|
+
/**
|
|
15
|
+
* @generated from field: optional bool exactIn = 2;
|
|
16
|
+
*/
|
|
17
|
+
exactIn?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* @generated from field: string amount = 3;
|
|
20
|
+
*/
|
|
21
|
+
amount: string;
|
|
22
|
+
/**
|
|
23
|
+
* @generated from field: string walletAddress = 4;
|
|
24
|
+
*/
|
|
25
|
+
walletAddress: string;
|
|
26
|
+
/**
|
|
27
|
+
* @generated from field: string auctionContractAddress = 5;
|
|
28
|
+
*/
|
|
29
|
+
auctionContractAddress: string;
|
|
30
|
+
/**
|
|
31
|
+
* @generated from field: optional string hookData = 6;
|
|
32
|
+
*/
|
|
33
|
+
hookData?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @generated from field: uniswap.liquidity.v1.ChainId chain_id = 7;
|
|
36
|
+
*/
|
|
37
|
+
chainId: ChainId;
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: optional bool simulate_transaction = 8;
|
|
40
|
+
*/
|
|
41
|
+
simulateTransaction?: boolean;
|
|
42
|
+
constructor(data?: PartialMessage<SubmitBidRequest>);
|
|
43
|
+
static readonly runtime: typeof proto3;
|
|
44
|
+
static readonly typeName = "uniswap.liquidity.v1.SubmitBidRequest";
|
|
45
|
+
static readonly fields: FieldList;
|
|
46
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubmitBidRequest;
|
|
47
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubmitBidRequest;
|
|
48
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubmitBidRequest;
|
|
49
|
+
static equals(a: SubmitBidRequest | PlainMessage<SubmitBidRequest> | undefined, b: SubmitBidRequest | PlainMessage<SubmitBidRequest> | undefined): boolean;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* @generated from message uniswap.liquidity.v1.SubmitBidResponse
|
|
53
|
+
*/
|
|
54
|
+
export declare class SubmitBidResponse extends Message<SubmitBidResponse> {
|
|
55
|
+
/**
|
|
56
|
+
* @generated from field: string request_id = 1;
|
|
57
|
+
*/
|
|
58
|
+
requestId: string;
|
|
59
|
+
/**
|
|
60
|
+
* @generated from field: uniswap.liquidity.v1.TransactionRequest bid = 2;
|
|
61
|
+
*/
|
|
62
|
+
bid?: TransactionRequest;
|
|
63
|
+
/**
|
|
64
|
+
* @generated from field: optional string gasFee = 3;
|
|
65
|
+
*/
|
|
66
|
+
gasFee?: string;
|
|
67
|
+
constructor(data?: PartialMessage<SubmitBidResponse>);
|
|
68
|
+
static readonly runtime: typeof proto3;
|
|
69
|
+
static readonly typeName = "uniswap.liquidity.v1.SubmitBidResponse";
|
|
70
|
+
static readonly fields: FieldList;
|
|
71
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubmitBidResponse;
|
|
72
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubmitBidResponse;
|
|
73
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubmitBidResponse;
|
|
74
|
+
static equals(a: SubmitBidResponse | PlainMessage<SubmitBidResponse> | undefined, b: SubmitBidResponse | PlainMessage<SubmitBidResponse> | undefined): boolean;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* @generated from message uniswap.liquidity.v1.ExitBidPositionRequest
|
|
78
|
+
*/
|
|
79
|
+
export declare class ExitBidPositionRequest extends Message<ExitBidPositionRequest> {
|
|
80
|
+
/**
|
|
81
|
+
* @generated from field: string bidId = 1;
|
|
82
|
+
*/
|
|
83
|
+
bidId: string;
|
|
84
|
+
/**
|
|
85
|
+
* @generated from field: string auctionContractAddress = 2;
|
|
86
|
+
*/
|
|
87
|
+
auctionContractAddress: string;
|
|
88
|
+
/**
|
|
89
|
+
* @generated from field: uniswap.liquidity.v1.ChainId chain_id = 3;
|
|
90
|
+
*/
|
|
91
|
+
chainId: ChainId;
|
|
92
|
+
/**
|
|
93
|
+
* @generated from field: string walletAddress = 4;
|
|
94
|
+
*/
|
|
95
|
+
walletAddress: string;
|
|
96
|
+
/**
|
|
97
|
+
* @generated from field: optional bool simulate_transaction = 5;
|
|
98
|
+
*/
|
|
99
|
+
simulateTransaction?: boolean;
|
|
100
|
+
constructor(data?: PartialMessage<ExitBidPositionRequest>);
|
|
101
|
+
static readonly runtime: typeof proto3;
|
|
102
|
+
static readonly typeName = "uniswap.liquidity.v1.ExitBidPositionRequest";
|
|
103
|
+
static readonly fields: FieldList;
|
|
104
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExitBidPositionRequest;
|
|
105
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExitBidPositionRequest;
|
|
106
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExitBidPositionRequest;
|
|
107
|
+
static equals(a: ExitBidPositionRequest | PlainMessage<ExitBidPositionRequest> | undefined, b: ExitBidPositionRequest | PlainMessage<ExitBidPositionRequest> | undefined): boolean;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* @generated from message uniswap.liquidity.v1.ExitBidPositionResponse
|
|
111
|
+
*/
|
|
112
|
+
export declare class ExitBidPositionResponse extends Message<ExitBidPositionResponse> {
|
|
113
|
+
/**
|
|
114
|
+
* @generated from field: string request_id = 1;
|
|
115
|
+
*/
|
|
116
|
+
requestId: string;
|
|
117
|
+
/**
|
|
118
|
+
* @generated from field: uniswap.liquidity.v1.TransactionRequest exitBid = 2;
|
|
119
|
+
*/
|
|
120
|
+
exitBid?: TransactionRequest;
|
|
121
|
+
/**
|
|
122
|
+
* @generated from field: optional string gasFee = 3;
|
|
123
|
+
*/
|
|
124
|
+
gasFee?: string;
|
|
125
|
+
constructor(data?: PartialMessage<ExitBidPositionResponse>);
|
|
126
|
+
static readonly runtime: typeof proto3;
|
|
127
|
+
static readonly typeName = "uniswap.liquidity.v1.ExitBidPositionResponse";
|
|
128
|
+
static readonly fields: FieldList;
|
|
129
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExitBidPositionResponse;
|
|
130
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExitBidPositionResponse;
|
|
131
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExitBidPositionResponse;
|
|
132
|
+
static equals(a: ExitBidPositionResponse | PlainMessage<ExitBidPositionResponse> | undefined, b: ExitBidPositionResponse | PlainMessage<ExitBidPositionResponse> | undefined): boolean;
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* @generated from message uniswap.liquidity.v1.ClaimTokensRequest
|
|
136
|
+
*/
|
|
137
|
+
export declare class ClaimTokensRequest extends Message<ClaimTokensRequest> {
|
|
138
|
+
/**
|
|
139
|
+
* @generated from field: repeated string bids = 1;
|
|
140
|
+
*/
|
|
141
|
+
bids: string[];
|
|
142
|
+
/**
|
|
143
|
+
* @generated from field: string auction_contract_address = 2;
|
|
144
|
+
*/
|
|
145
|
+
auctionContractAddress: string;
|
|
146
|
+
/**
|
|
147
|
+
* @generated from field: uniswap.liquidity.v1.ChainId chain_id = 3;
|
|
148
|
+
*/
|
|
149
|
+
chainId: ChainId;
|
|
150
|
+
/**
|
|
151
|
+
* @generated from field: optional bool simulate_transaction = 4;
|
|
152
|
+
*/
|
|
153
|
+
simulateTransaction?: boolean;
|
|
154
|
+
/**
|
|
155
|
+
* @generated from field: string wallet_address = 5;
|
|
156
|
+
*/
|
|
157
|
+
walletAddress: string;
|
|
158
|
+
/**
|
|
159
|
+
* @generated from field: optional bool should_claim_all = 6;
|
|
160
|
+
*/
|
|
161
|
+
shouldClaimAll?: boolean;
|
|
162
|
+
constructor(data?: PartialMessage<ClaimTokensRequest>);
|
|
163
|
+
static readonly runtime: typeof proto3;
|
|
164
|
+
static readonly typeName = "uniswap.liquidity.v1.ClaimTokensRequest";
|
|
165
|
+
static readonly fields: FieldList;
|
|
166
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClaimTokensRequest;
|
|
167
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClaimTokensRequest;
|
|
168
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClaimTokensRequest;
|
|
169
|
+
static equals(a: ClaimTokensRequest | PlainMessage<ClaimTokensRequest> | undefined, b: ClaimTokensRequest | PlainMessage<ClaimTokensRequest> | undefined): boolean;
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
* @generated from message uniswap.liquidity.v1.ClaimTokensResponse
|
|
173
|
+
*/
|
|
174
|
+
export declare class ClaimTokensResponse extends Message<ClaimTokensResponse> {
|
|
175
|
+
/**
|
|
176
|
+
* @generated from field: string request_id = 1;
|
|
177
|
+
*/
|
|
178
|
+
requestId: string;
|
|
179
|
+
/**
|
|
180
|
+
* @generated from field: uniswap.liquidity.v1.TransactionRequest claim_tokens = 2;
|
|
181
|
+
*/
|
|
182
|
+
claimTokens?: TransactionRequest;
|
|
183
|
+
/**
|
|
184
|
+
* @generated from field: optional string gas_fee = 3;
|
|
185
|
+
*/
|
|
186
|
+
gasFee?: string;
|
|
187
|
+
constructor(data?: PartialMessage<ClaimTokensResponse>);
|
|
188
|
+
static readonly runtime: typeof proto3;
|
|
189
|
+
static readonly typeName = "uniswap.liquidity.v1.ClaimTokensResponse";
|
|
190
|
+
static readonly fields: FieldList;
|
|
191
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClaimTokensResponse;
|
|
192
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClaimTokensResponse;
|
|
193
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClaimTokensResponse;
|
|
194
|
+
static equals(a: ClaimTokensResponse | PlainMessage<ClaimTokensResponse> | undefined, b: ClaimTokensResponse | PlainMessage<ClaimTokensResponse> | undefined): boolean;
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* @generated from message uniswap.liquidity.v1.ExitBidAndClaimTokensRequest
|
|
198
|
+
*/
|
|
199
|
+
export declare class ExitBidAndClaimTokensRequest extends Message<ExitBidAndClaimTokensRequest> {
|
|
200
|
+
/**
|
|
201
|
+
* @generated from field: repeated uniswap.liquidity.v1.BidToExit bids = 1;
|
|
202
|
+
*/
|
|
203
|
+
bids: BidToExit[];
|
|
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
|
+
}
|
|
296
|
+
/**
|
|
297
|
+
* @generated from message uniswap.liquidity.v1.VerifyWalletRequest
|
|
298
|
+
*/
|
|
299
|
+
export declare class VerifyWalletRequest extends Message<VerifyWalletRequest> {
|
|
300
|
+
/**
|
|
301
|
+
* @generated from field: string wallet_address = 1;
|
|
302
|
+
*/
|
|
303
|
+
walletAddress: string;
|
|
304
|
+
/**
|
|
305
|
+
* @generated from field: string auction_address = 2;
|
|
306
|
+
*/
|
|
307
|
+
auctionAddress: string;
|
|
308
|
+
/**
|
|
309
|
+
* @generated from field: uniswap.liquidity.v1.ChainId chain_id = 3;
|
|
310
|
+
*/
|
|
311
|
+
chainId: ChainId;
|
|
312
|
+
constructor(data?: PartialMessage<VerifyWalletRequest>);
|
|
313
|
+
static readonly runtime: typeof proto3;
|
|
314
|
+
static readonly typeName = "uniswap.liquidity.v1.VerifyWalletRequest";
|
|
315
|
+
static readonly fields: FieldList;
|
|
316
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VerifyWalletRequest;
|
|
317
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VerifyWalletRequest;
|
|
318
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VerifyWalletRequest;
|
|
319
|
+
static equals(a: VerifyWalletRequest | PlainMessage<VerifyWalletRequest> | undefined, b: VerifyWalletRequest | PlainMessage<VerifyWalletRequest> | undefined): boolean;
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* @generated from message uniswap.liquidity.v1.VerifyWalletResponse
|
|
323
|
+
*/
|
|
324
|
+
export declare class VerifyWalletResponse extends Message<VerifyWalletResponse> {
|
|
325
|
+
/**
|
|
326
|
+
* @generated from field: repeated uniswap.liquidity.v1.AuctionValidation validations = 1;
|
|
327
|
+
*/
|
|
328
|
+
validations: AuctionValidation[];
|
|
329
|
+
constructor(data?: PartialMessage<VerifyWalletResponse>);
|
|
330
|
+
static readonly runtime: typeof proto3;
|
|
331
|
+
static readonly typeName = "uniswap.liquidity.v1.VerifyWalletResponse";
|
|
332
|
+
static readonly fields: FieldList;
|
|
333
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VerifyWalletResponse;
|
|
334
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VerifyWalletResponse;
|
|
335
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VerifyWalletResponse;
|
|
336
|
+
static equals(a: VerifyWalletResponse | PlainMessage<VerifyWalletResponse> | undefined, b: VerifyWalletResponse | PlainMessage<VerifyWalletResponse> | undefined): boolean;
|
|
337
|
+
}
|