@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.
@@ -0,0 +1,47 @@
1
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
+ import { Message, proto3 } from "@bufbuild/protobuf";
3
+ /**
4
+ * Standard pagination request fields. Embed in any paginated List request.
5
+ * page_size: max items per page; each endpoint defines its own default and cap.
6
+ * page_token: opaque cursor from a previous response; omit for the first page.
7
+ *
8
+ * @generated from message launches.v1.PageRequest
9
+ */
10
+ export declare class PageRequest extends Message<PageRequest> {
11
+ /**
12
+ * @generated from field: optional uint32 page_size = 1;
13
+ */
14
+ pageSize?: number;
15
+ /**
16
+ * @generated from field: optional string page_token = 2;
17
+ */
18
+ pageToken?: string;
19
+ constructor(data?: PartialMessage<PageRequest>);
20
+ static readonly runtime: typeof proto3;
21
+ static readonly typeName = "launches.v1.PageRequest";
22
+ static readonly fields: FieldList;
23
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PageRequest;
24
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PageRequest;
25
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PageRequest;
26
+ static equals(a: PageRequest | PlainMessage<PageRequest> | undefined, b: PageRequest | PlainMessage<PageRequest> | undefined): boolean;
27
+ }
28
+ /**
29
+ * Standard pagination response fields. Embed in any paginated List response.
30
+ * next_page_token absent means this is the last page.
31
+ *
32
+ * @generated from message launches.v1.PageResponse
33
+ */
34
+ export declare class PageResponse extends Message<PageResponse> {
35
+ /**
36
+ * @generated from field: optional string next_page_token = 1;
37
+ */
38
+ nextPageToken?: string;
39
+ constructor(data?: PartialMessage<PageResponse>);
40
+ static readonly runtime: typeof proto3;
41
+ static readonly typeName = "launches.v1.PageResponse";
42
+ static readonly fields: FieldList;
43
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PageResponse;
44
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PageResponse;
45
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PageResponse;
46
+ static equals(a: PageResponse | PlainMessage<PageResponse> | undefined, b: PageResponse | PlainMessage<PageResponse> | undefined): boolean;
47
+ }
@@ -0,0 +1,65 @@
1
+ // @generated by protoc-gen-es v1.10.1 with parameter "target=ts"
2
+ // @generated from file launches/v1/common.proto (package launches.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+ import { Message, proto3 } from "@bufbuild/protobuf";
6
+ /**
7
+ * Standard pagination request fields. Embed in any paginated List request.
8
+ * page_size: max items per page; each endpoint defines its own default and cap.
9
+ * page_token: opaque cursor from a previous response; omit for the first page.
10
+ *
11
+ * @generated from message launches.v1.PageRequest
12
+ */
13
+ export class PageRequest extends Message {
14
+ constructor(data) {
15
+ super();
16
+ proto3.util.initPartial(data, this);
17
+ }
18
+ static fromBinary(bytes, options) {
19
+ return new PageRequest().fromBinary(bytes, options);
20
+ }
21
+ static fromJson(jsonValue, options) {
22
+ return new PageRequest().fromJson(jsonValue, options);
23
+ }
24
+ static fromJsonString(jsonString, options) {
25
+ return new PageRequest().fromJsonString(jsonString, options);
26
+ }
27
+ static equals(a, b) {
28
+ return proto3.util.equals(PageRequest, a, b);
29
+ }
30
+ }
31
+ PageRequest.runtime = proto3;
32
+ PageRequest.typeName = "launches.v1.PageRequest";
33
+ PageRequest.fields = proto3.util.newFieldList(() => [
34
+ { no: 1, name: "page_size", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
35
+ { no: 2, name: "page_token", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
36
+ ]);
37
+ /**
38
+ * Standard pagination response fields. Embed in any paginated List response.
39
+ * next_page_token absent means this is the last page.
40
+ *
41
+ * @generated from message launches.v1.PageResponse
42
+ */
43
+ export class PageResponse extends Message {
44
+ constructor(data) {
45
+ super();
46
+ proto3.util.initPartial(data, this);
47
+ }
48
+ static fromBinary(bytes, options) {
49
+ return new PageResponse().fromBinary(bytes, options);
50
+ }
51
+ static fromJson(jsonValue, options) {
52
+ return new PageResponse().fromJson(jsonValue, options);
53
+ }
54
+ static fromJsonString(jsonString, options) {
55
+ return new PageResponse().fromJsonString(jsonString, options);
56
+ }
57
+ static equals(a, b) {
58
+ return proto3.util.equals(PageResponse, a, b);
59
+ }
60
+ }
61
+ PageResponse.runtime = proto3;
62
+ PageResponse.typeName = "launches.v1.PageResponse";
63
+ PageResponse.fields = proto3.util.newFieldList(() => [
64
+ { no: 1, name: "next_page_token", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
65
+ ]);
@@ -0,0 +1,54 @@
1
+ import { MethodKind } from "@bufbuild/protobuf";
2
+ import { CreatePendingTokenFactoryTokenRequest, CreatePendingTokenFactoryTokenResponse, CreateTokenFactoryPresignedUrlRequest, CreateTokenFactoryPresignedUrlResponse, SubmitTokenFactoryTokenRequest, SubmitTokenFactoryTokenResponse, VerifyTokenFactoryImageRequest, VerifyTokenFactoryImageResponse } from "./token_factory_pb.js";
3
+ /**
4
+ * @generated from rpc launches.v1.TokenFactoryService.CreatePendingTokenFactoryToken
5
+ */
6
+ export declare const createPendingTokenFactoryToken: {
7
+ readonly localName: "createPendingTokenFactoryToken";
8
+ readonly name: "CreatePendingTokenFactoryToken";
9
+ readonly kind: MethodKind.Unary;
10
+ readonly I: typeof CreatePendingTokenFactoryTokenRequest;
11
+ readonly O: typeof CreatePendingTokenFactoryTokenResponse;
12
+ readonly service: {
13
+ readonly typeName: "launches.v1.TokenFactoryService";
14
+ };
15
+ };
16
+ /**
17
+ * @generated from rpc launches.v1.TokenFactoryService.SubmitTokenFactoryToken
18
+ */
19
+ export declare const submitTokenFactoryToken: {
20
+ readonly localName: "submitTokenFactoryToken";
21
+ readonly name: "SubmitTokenFactoryToken";
22
+ readonly kind: MethodKind.Unary;
23
+ readonly I: typeof SubmitTokenFactoryTokenRequest;
24
+ readonly O: typeof SubmitTokenFactoryTokenResponse;
25
+ readonly service: {
26
+ readonly typeName: "launches.v1.TokenFactoryService";
27
+ };
28
+ };
29
+ /**
30
+ * @generated from rpc launches.v1.TokenFactoryService.CreateTokenFactoryPresignedUrl
31
+ */
32
+ export declare const createTokenFactoryPresignedUrl: {
33
+ readonly localName: "createTokenFactoryPresignedUrl";
34
+ readonly name: "CreateTokenFactoryPresignedUrl";
35
+ readonly kind: MethodKind.Unary;
36
+ readonly I: typeof CreateTokenFactoryPresignedUrlRequest;
37
+ readonly O: typeof CreateTokenFactoryPresignedUrlResponse;
38
+ readonly service: {
39
+ readonly typeName: "launches.v1.TokenFactoryService";
40
+ };
41
+ };
42
+ /**
43
+ * @generated from rpc launches.v1.TokenFactoryService.VerifyTokenFactoryImage
44
+ */
45
+ export declare const verifyTokenFactoryImage: {
46
+ readonly localName: "verifyTokenFactoryImage";
47
+ readonly name: "VerifyTokenFactoryImage";
48
+ readonly kind: MethodKind.Unary;
49
+ readonly I: typeof VerifyTokenFactoryImageRequest;
50
+ readonly O: typeof VerifyTokenFactoryImageResponse;
51
+ readonly service: {
52
+ readonly typeName: "launches.v1.TokenFactoryService";
53
+ };
54
+ };
@@ -0,0 +1,58 @@
1
+ // @generated by protoc-gen-connect-query v1.4.2 with parameter "target=ts"
2
+ // @generated from file launches/v1/token_factory.proto (package launches.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+ import { MethodKind } from "@bufbuild/protobuf";
6
+ import { CreatePendingTokenFactoryTokenRequest, CreatePendingTokenFactoryTokenResponse, CreateTokenFactoryPresignedUrlRequest, CreateTokenFactoryPresignedUrlResponse, SubmitTokenFactoryTokenRequest, SubmitTokenFactoryTokenResponse, VerifyTokenFactoryImageRequest, VerifyTokenFactoryImageResponse } from "./token_factory_pb.js";
7
+ /**
8
+ * @generated from rpc launches.v1.TokenFactoryService.CreatePendingTokenFactoryToken
9
+ */
10
+ export const createPendingTokenFactoryToken = {
11
+ localName: "createPendingTokenFactoryToken",
12
+ name: "CreatePendingTokenFactoryToken",
13
+ kind: MethodKind.Unary,
14
+ I: CreatePendingTokenFactoryTokenRequest,
15
+ O: CreatePendingTokenFactoryTokenResponse,
16
+ service: {
17
+ typeName: "launches.v1.TokenFactoryService"
18
+ }
19
+ };
20
+ /**
21
+ * @generated from rpc launches.v1.TokenFactoryService.SubmitTokenFactoryToken
22
+ */
23
+ export const submitTokenFactoryToken = {
24
+ localName: "submitTokenFactoryToken",
25
+ name: "SubmitTokenFactoryToken",
26
+ kind: MethodKind.Unary,
27
+ I: SubmitTokenFactoryTokenRequest,
28
+ O: SubmitTokenFactoryTokenResponse,
29
+ service: {
30
+ typeName: "launches.v1.TokenFactoryService"
31
+ }
32
+ };
33
+ /**
34
+ * @generated from rpc launches.v1.TokenFactoryService.CreateTokenFactoryPresignedUrl
35
+ */
36
+ export const createTokenFactoryPresignedUrl = {
37
+ localName: "createTokenFactoryPresignedUrl",
38
+ name: "CreateTokenFactoryPresignedUrl",
39
+ kind: MethodKind.Unary,
40
+ I: CreateTokenFactoryPresignedUrlRequest,
41
+ O: CreateTokenFactoryPresignedUrlResponse,
42
+ service: {
43
+ typeName: "launches.v1.TokenFactoryService"
44
+ }
45
+ };
46
+ /**
47
+ * @generated from rpc launches.v1.TokenFactoryService.VerifyTokenFactoryImage
48
+ */
49
+ export const verifyTokenFactoryImage = {
50
+ localName: "verifyTokenFactoryImage",
51
+ name: "VerifyTokenFactoryImage",
52
+ kind: MethodKind.Unary,
53
+ I: VerifyTokenFactoryImageRequest,
54
+ O: VerifyTokenFactoryImageResponse,
55
+ service: {
56
+ typeName: "launches.v1.TokenFactoryService"
57
+ }
58
+ };
@@ -0,0 +1,52 @@
1
+ import { CreatePendingTokenFactoryTokenRequest, CreatePendingTokenFactoryTokenResponse, CreateTokenFactoryPresignedUrlRequest, CreateTokenFactoryPresignedUrlResponse, SubmitTokenFactoryTokenRequest, SubmitTokenFactoryTokenResponse, VerifyTokenFactoryImageRequest, VerifyTokenFactoryImageResponse } from "./token_factory_pb.js";
2
+ import { MethodKind } from "@bufbuild/protobuf";
3
+ /**
4
+ * launches.v1.TokenFactoryService re-declares the token-factory RPCs served
5
+ * today by data.v1.DataApiService (LP endpoint migration, phase 1). Messages
6
+ * are copied from data/v1/api.proto with identical field numbers, names, and
7
+ * JSON names — wire- and JSON-identical to the data.v1 twins. Keep in sync
8
+ * until those RPC declarations are deleted.
9
+ *
10
+ * @generated from service launches.v1.TokenFactoryService
11
+ */
12
+ export declare const TokenFactoryService: {
13
+ readonly typeName: "launches.v1.TokenFactoryService";
14
+ readonly methods: {
15
+ /**
16
+ * @generated from rpc launches.v1.TokenFactoryService.CreatePendingTokenFactoryToken
17
+ */
18
+ readonly createPendingTokenFactoryToken: {
19
+ readonly name: "CreatePendingTokenFactoryToken";
20
+ readonly I: typeof CreatePendingTokenFactoryTokenRequest;
21
+ readonly O: typeof CreatePendingTokenFactoryTokenResponse;
22
+ readonly kind: MethodKind.Unary;
23
+ };
24
+ /**
25
+ * @generated from rpc launches.v1.TokenFactoryService.SubmitTokenFactoryToken
26
+ */
27
+ readonly submitTokenFactoryToken: {
28
+ readonly name: "SubmitTokenFactoryToken";
29
+ readonly I: typeof SubmitTokenFactoryTokenRequest;
30
+ readonly O: typeof SubmitTokenFactoryTokenResponse;
31
+ readonly kind: MethodKind.Unary;
32
+ };
33
+ /**
34
+ * @generated from rpc launches.v1.TokenFactoryService.CreateTokenFactoryPresignedUrl
35
+ */
36
+ readonly createTokenFactoryPresignedUrl: {
37
+ readonly name: "CreateTokenFactoryPresignedUrl";
38
+ readonly I: typeof CreateTokenFactoryPresignedUrlRequest;
39
+ readonly O: typeof CreateTokenFactoryPresignedUrlResponse;
40
+ readonly kind: MethodKind.Unary;
41
+ };
42
+ /**
43
+ * @generated from rpc launches.v1.TokenFactoryService.VerifyTokenFactoryImage
44
+ */
45
+ readonly verifyTokenFactoryImage: {
46
+ readonly name: "VerifyTokenFactoryImage";
47
+ readonly I: typeof VerifyTokenFactoryImageRequest;
48
+ readonly O: typeof VerifyTokenFactoryImageResponse;
49
+ readonly kind: MethodKind.Unary;
50
+ };
51
+ };
52
+ };
@@ -0,0 +1,56 @@
1
+ // @generated by protoc-gen-connect-es v1.7.0 with parameter "target=ts"
2
+ // @generated from file launches/v1/token_factory.proto (package launches.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+ import { CreatePendingTokenFactoryTokenRequest, CreatePendingTokenFactoryTokenResponse, CreateTokenFactoryPresignedUrlRequest, CreateTokenFactoryPresignedUrlResponse, SubmitTokenFactoryTokenRequest, SubmitTokenFactoryTokenResponse, VerifyTokenFactoryImageRequest, VerifyTokenFactoryImageResponse } from "./token_factory_pb.js";
6
+ import { MethodKind } from "@bufbuild/protobuf";
7
+ /**
8
+ * launches.v1.TokenFactoryService re-declares the token-factory RPCs served
9
+ * today by data.v1.DataApiService (LP endpoint migration, phase 1). Messages
10
+ * are copied from data/v1/api.proto with identical field numbers, names, and
11
+ * JSON names — wire- and JSON-identical to the data.v1 twins. Keep in sync
12
+ * until those RPC declarations are deleted.
13
+ *
14
+ * @generated from service launches.v1.TokenFactoryService
15
+ */
16
+ export const TokenFactoryService = {
17
+ typeName: "launches.v1.TokenFactoryService",
18
+ methods: {
19
+ /**
20
+ * @generated from rpc launches.v1.TokenFactoryService.CreatePendingTokenFactoryToken
21
+ */
22
+ createPendingTokenFactoryToken: {
23
+ name: "CreatePendingTokenFactoryToken",
24
+ I: CreatePendingTokenFactoryTokenRequest,
25
+ O: CreatePendingTokenFactoryTokenResponse,
26
+ kind: MethodKind.Unary,
27
+ },
28
+ /**
29
+ * @generated from rpc launches.v1.TokenFactoryService.SubmitTokenFactoryToken
30
+ */
31
+ submitTokenFactoryToken: {
32
+ name: "SubmitTokenFactoryToken",
33
+ I: SubmitTokenFactoryTokenRequest,
34
+ O: SubmitTokenFactoryTokenResponse,
35
+ kind: MethodKind.Unary,
36
+ },
37
+ /**
38
+ * @generated from rpc launches.v1.TokenFactoryService.CreateTokenFactoryPresignedUrl
39
+ */
40
+ createTokenFactoryPresignedUrl: {
41
+ name: "CreateTokenFactoryPresignedUrl",
42
+ I: CreateTokenFactoryPresignedUrlRequest,
43
+ O: CreateTokenFactoryPresignedUrlResponse,
44
+ kind: MethodKind.Unary,
45
+ },
46
+ /**
47
+ * @generated from rpc launches.v1.TokenFactoryService.VerifyTokenFactoryImage
48
+ */
49
+ verifyTokenFactoryImage: {
50
+ name: "VerifyTokenFactoryImage",
51
+ I: VerifyTokenFactoryImageRequest,
52
+ O: VerifyTokenFactoryImageResponse,
53
+ kind: MethodKind.Unary,
54
+ },
55
+ }
56
+ };
@@ -0,0 +1,205 @@
1
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
+ import { Message, proto3 } from "@bufbuild/protobuf";
3
+ /**
4
+ * @generated from message launches.v1.CreatePendingTokenFactoryTokenRequest
5
+ */
6
+ export declare class CreatePendingTokenFactoryTokenRequest extends Message<CreatePendingTokenFactoryTokenRequest> {
7
+ /**
8
+ * @generated from field: string request_id = 1;
9
+ */
10
+ requestId: string;
11
+ /**
12
+ * @generated from field: string token_address = 2;
13
+ */
14
+ tokenAddress: string;
15
+ /**
16
+ * @generated from field: uint32 chain_id = 3;
17
+ */
18
+ chainId: number;
19
+ /**
20
+ * @generated from field: string token_name = 4;
21
+ */
22
+ tokenName: string;
23
+ /**
24
+ * @generated from field: string token_symbol = 5;
25
+ */
26
+ tokenSymbol: string;
27
+ /**
28
+ * @generated from field: string image_url = 6;
29
+ */
30
+ imageUrl: string;
31
+ /**
32
+ * @generated from field: uint32 decimals = 7;
33
+ */
34
+ decimals: number;
35
+ /**
36
+ * @generated from field: optional string description = 8;
37
+ */
38
+ description?: string;
39
+ /**
40
+ * @generated from field: optional string website_url = 9;
41
+ */
42
+ websiteUrl?: string;
43
+ /**
44
+ * @generated from field: optional string x_url = 10;
45
+ */
46
+ xUrl?: string;
47
+ constructor(data?: PartialMessage<CreatePendingTokenFactoryTokenRequest>);
48
+ static readonly runtime: typeof proto3;
49
+ static readonly typeName = "launches.v1.CreatePendingTokenFactoryTokenRequest";
50
+ static readonly fields: FieldList;
51
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePendingTokenFactoryTokenRequest;
52
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePendingTokenFactoryTokenRequest;
53
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePendingTokenFactoryTokenRequest;
54
+ static equals(a: CreatePendingTokenFactoryTokenRequest | PlainMessage<CreatePendingTokenFactoryTokenRequest> | undefined, b: CreatePendingTokenFactoryTokenRequest | PlainMessage<CreatePendingTokenFactoryTokenRequest> | undefined): boolean;
55
+ }
56
+ /**
57
+ * @generated from message launches.v1.CreatePendingTokenFactoryTokenResponse
58
+ */
59
+ export declare class CreatePendingTokenFactoryTokenResponse extends Message<CreatePendingTokenFactoryTokenResponse> {
60
+ /**
61
+ * @generated from field: uint32 chain_id = 1;
62
+ */
63
+ chainId: number;
64
+ /**
65
+ * @generated from field: string address = 2;
66
+ */
67
+ address: string;
68
+ constructor(data?: PartialMessage<CreatePendingTokenFactoryTokenResponse>);
69
+ static readonly runtime: typeof proto3;
70
+ static readonly typeName = "launches.v1.CreatePendingTokenFactoryTokenResponse";
71
+ static readonly fields: FieldList;
72
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePendingTokenFactoryTokenResponse;
73
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePendingTokenFactoryTokenResponse;
74
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePendingTokenFactoryTokenResponse;
75
+ static equals(a: CreatePendingTokenFactoryTokenResponse | PlainMessage<CreatePendingTokenFactoryTokenResponse> | undefined, b: CreatePendingTokenFactoryTokenResponse | PlainMessage<CreatePendingTokenFactoryTokenResponse> | undefined): boolean;
76
+ }
77
+ /**
78
+ * @generated from message launches.v1.SubmitTokenFactoryTokenRequest
79
+ */
80
+ export declare class SubmitTokenFactoryTokenRequest extends Message<SubmitTokenFactoryTokenRequest> {
81
+ /**
82
+ * @generated from field: string request_id = 1;
83
+ */
84
+ requestId: string;
85
+ constructor(data?: PartialMessage<SubmitTokenFactoryTokenRequest>);
86
+ static readonly runtime: typeof proto3;
87
+ static readonly typeName = "launches.v1.SubmitTokenFactoryTokenRequest";
88
+ static readonly fields: FieldList;
89
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubmitTokenFactoryTokenRequest;
90
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubmitTokenFactoryTokenRequest;
91
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubmitTokenFactoryTokenRequest;
92
+ static equals(a: SubmitTokenFactoryTokenRequest | PlainMessage<SubmitTokenFactoryTokenRequest> | undefined, b: SubmitTokenFactoryTokenRequest | PlainMessage<SubmitTokenFactoryTokenRequest> | undefined): boolean;
93
+ }
94
+ /**
95
+ * @generated from message launches.v1.SubmitTokenFactoryTokenResponse
96
+ */
97
+ export declare class SubmitTokenFactoryTokenResponse extends Message<SubmitTokenFactoryTokenResponse> {
98
+ /**
99
+ * @generated from field: uint32 chain_id = 1;
100
+ */
101
+ chainId: number;
102
+ /**
103
+ * @generated from field: string address = 2;
104
+ */
105
+ address: string;
106
+ constructor(data?: PartialMessage<SubmitTokenFactoryTokenResponse>);
107
+ static readonly runtime: typeof proto3;
108
+ static readonly typeName = "launches.v1.SubmitTokenFactoryTokenResponse";
109
+ static readonly fields: FieldList;
110
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubmitTokenFactoryTokenResponse;
111
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubmitTokenFactoryTokenResponse;
112
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubmitTokenFactoryTokenResponse;
113
+ static equals(a: SubmitTokenFactoryTokenResponse | PlainMessage<SubmitTokenFactoryTokenResponse> | undefined, b: SubmitTokenFactoryTokenResponse | PlainMessage<SubmitTokenFactoryTokenResponse> | undefined): boolean;
114
+ }
115
+ /**
116
+ * @generated from message launches.v1.CreateTokenFactoryPresignedUrlRequest
117
+ */
118
+ export declare class CreateTokenFactoryPresignedUrlRequest extends Message<CreateTokenFactoryPresignedUrlRequest> {
119
+ /**
120
+ * @generated from field: string file_name = 1;
121
+ */
122
+ fileName: string;
123
+ constructor(data?: PartialMessage<CreateTokenFactoryPresignedUrlRequest>);
124
+ static readonly runtime: typeof proto3;
125
+ static readonly typeName = "launches.v1.CreateTokenFactoryPresignedUrlRequest";
126
+ static readonly fields: FieldList;
127
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateTokenFactoryPresignedUrlRequest;
128
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateTokenFactoryPresignedUrlRequest;
129
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateTokenFactoryPresignedUrlRequest;
130
+ static equals(a: CreateTokenFactoryPresignedUrlRequest | PlainMessage<CreateTokenFactoryPresignedUrlRequest> | undefined, b: CreateTokenFactoryPresignedUrlRequest | PlainMessage<CreateTokenFactoryPresignedUrlRequest> | undefined): boolean;
131
+ }
132
+ /**
133
+ * @generated from message launches.v1.CreateTokenFactoryPresignedUrlResponse
134
+ */
135
+ export declare class CreateTokenFactoryPresignedUrlResponse extends Message<CreateTokenFactoryPresignedUrlResponse> {
136
+ /**
137
+ * @generated from field: string url = 1;
138
+ */
139
+ url: string;
140
+ constructor(data?: PartialMessage<CreateTokenFactoryPresignedUrlResponse>);
141
+ static readonly runtime: typeof proto3;
142
+ static readonly typeName = "launches.v1.CreateTokenFactoryPresignedUrlResponse";
143
+ static readonly fields: FieldList;
144
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateTokenFactoryPresignedUrlResponse;
145
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateTokenFactoryPresignedUrlResponse;
146
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateTokenFactoryPresignedUrlResponse;
147
+ static equals(a: CreateTokenFactoryPresignedUrlResponse | PlainMessage<CreateTokenFactoryPresignedUrlResponse> | undefined, b: CreateTokenFactoryPresignedUrlResponse | PlainMessage<CreateTokenFactoryPresignedUrlResponse> | undefined): boolean;
148
+ }
149
+ /**
150
+ * @generated from message launches.v1.VerifyTokenFactoryImageRequest
151
+ */
152
+ export declare class VerifyTokenFactoryImageRequest extends Message<VerifyTokenFactoryImageRequest> {
153
+ /**
154
+ * @generated from field: string cid = 1;
155
+ */
156
+ cid: string;
157
+ constructor(data?: PartialMessage<VerifyTokenFactoryImageRequest>);
158
+ static readonly runtime: typeof proto3;
159
+ static readonly typeName = "launches.v1.VerifyTokenFactoryImageRequest";
160
+ static readonly fields: FieldList;
161
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VerifyTokenFactoryImageRequest;
162
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VerifyTokenFactoryImageRequest;
163
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VerifyTokenFactoryImageRequest;
164
+ static equals(a: VerifyTokenFactoryImageRequest | PlainMessage<VerifyTokenFactoryImageRequest> | undefined, b: VerifyTokenFactoryImageRequest | PlainMessage<VerifyTokenFactoryImageRequest> | undefined): boolean;
165
+ }
166
+ /**
167
+ * @generated from message launches.v1.VerifyTokenFactoryImageResponse
168
+ */
169
+ export declare class VerifyTokenFactoryImageResponse extends Message<VerifyTokenFactoryImageResponse> {
170
+ /**
171
+ * @generated from field: launches.v1.VerifyTokenFactoryImageResponse.Status status = 1;
172
+ */
173
+ status: VerifyTokenFactoryImageResponse_Status;
174
+ /**
175
+ * empty when APPROVED; enum-style slug otherwise
176
+ *
177
+ * @generated from field: string blocked_reason = 2;
178
+ */
179
+ blockedReason: string;
180
+ constructor(data?: PartialMessage<VerifyTokenFactoryImageResponse>);
181
+ static readonly runtime: typeof proto3;
182
+ static readonly typeName = "launches.v1.VerifyTokenFactoryImageResponse";
183
+ static readonly fields: FieldList;
184
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VerifyTokenFactoryImageResponse;
185
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VerifyTokenFactoryImageResponse;
186
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VerifyTokenFactoryImageResponse;
187
+ static equals(a: VerifyTokenFactoryImageResponse | PlainMessage<VerifyTokenFactoryImageResponse> | undefined, b: VerifyTokenFactoryImageResponse | PlainMessage<VerifyTokenFactoryImageResponse> | undefined): boolean;
188
+ }
189
+ /**
190
+ * @generated from enum launches.v1.VerifyTokenFactoryImageResponse.Status
191
+ */
192
+ export declare enum VerifyTokenFactoryImageResponse_Status {
193
+ /**
194
+ * @generated from enum value: STATUS_UNSPECIFIED = 0;
195
+ */
196
+ UNSPECIFIED = 0,
197
+ /**
198
+ * @generated from enum value: STATUS_APPROVED = 1;
199
+ */
200
+ APPROVED = 1,
201
+ /**
202
+ * @generated from enum value: STATUS_BLOCKED = 2;
203
+ */
204
+ BLOCKED = 2
205
+ }