|
5 | 5 |
|
6 | 6 | import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
7 | 7 | import { Message, proto3 } from "@bufbuild/protobuf";
|
8 |
| -import type { Params } from "./params_pb.js"; |
9 | 8 | import type { ForeignCoins } from "./foreign_coins_pb.js";
|
10 | 9 | import type { PageRequest, PageResponse } from "../cosmos/base/query/v1beta1/pagination_pb.js";
|
11 | 10 | import type { SystemContract } from "./system_contract_pb.js";
|
12 | 11 |
|
13 |
| -/** |
14 |
| - * QueryParamsRequest is request type for the Query/Params RPC method. |
15 |
| - * |
16 |
| - * @generated from message zetachain.zetacore.fungible.QueryParamsRequest |
17 |
| - */ |
18 |
| -export declare class QueryParamsRequest extends Message<QueryParamsRequest> { |
19 |
| - constructor(data?: PartialMessage<QueryParamsRequest>); |
20 |
| - |
21 |
| - static readonly runtime: typeof proto3; |
22 |
| - static readonly typeName = "zetachain.zetacore.fungible.QueryParamsRequest"; |
23 |
| - static readonly fields: FieldList; |
24 |
| - |
25 |
| - static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QueryParamsRequest; |
26 |
| - |
27 |
| - static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QueryParamsRequest; |
28 |
| - |
29 |
| - static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QueryParamsRequest; |
30 |
| - |
31 |
| - static equals(a: QueryParamsRequest | PlainMessage<QueryParamsRequest> | undefined, b: QueryParamsRequest | PlainMessage<QueryParamsRequest> | undefined): boolean; |
32 |
| -} |
33 |
| - |
34 |
| -/** |
35 |
| - * QueryParamsResponse is response type for the Query/Params RPC method. |
36 |
| - * |
37 |
| - * @generated from message zetachain.zetacore.fungible.QueryParamsResponse |
38 |
| - */ |
39 |
| -export declare class QueryParamsResponse extends Message<QueryParamsResponse> { |
40 |
| - /** |
41 |
| - * params holds all the parameters of this module. |
42 |
| - * |
43 |
| - * @generated from field: zetachain.zetacore.fungible.Params params = 1; |
44 |
| - */ |
45 |
| - params?: Params; |
46 |
| - |
47 |
| - constructor(data?: PartialMessage<QueryParamsResponse>); |
48 |
| - |
49 |
| - static readonly runtime: typeof proto3; |
50 |
| - static readonly typeName = "zetachain.zetacore.fungible.QueryParamsResponse"; |
51 |
| - static readonly fields: FieldList; |
52 |
| - |
53 |
| - static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QueryParamsResponse; |
54 |
| - |
55 |
| - static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QueryParamsResponse; |
56 |
| - |
57 |
| - static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QueryParamsResponse; |
58 |
| - |
59 |
| - static equals(a: QueryParamsResponse | PlainMessage<QueryParamsResponse> | undefined, b: QueryParamsResponse | PlainMessage<QueryParamsResponse> | undefined): boolean; |
60 |
| -} |
61 |
| - |
62 | 12 | /**
|
63 | 13 | * @generated from message zetachain.zetacore.fungible.QueryGetForeignCoinsRequest
|
64 | 14 | */
|
|
0 commit comments