|
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 { CctxStatus, CrossChainTx } from "./cross_chain_tx_pb.js"; |
8 | 9 | import type { TSS } from "./tss_pb.js";
|
9 | 10 | import type { Params } from "./params_pb.js";
|
10 | 11 | import type { OutTxTracker } from "./out_tx_tracker_pb.js";
|
11 | 12 | import type { PageRequest, PageResponse } from "../cosmos/base/query/v1beta1/pagination_pb.js";
|
12 | 13 | import type { InTxTracker } from "./in_tx_tracker_pb.js";
|
13 | 14 | import type { InTxHashToCctx } from "./in_tx_hash_to_cctx_pb.js";
|
14 |
| -import type { CrossChainTx } from "./cross_chain_tx_pb.js"; |
15 | 15 | import type { GasPrice } from "./gas_price_pb.js";
|
16 | 16 | import type { ChainNonces } from "./chain_nonces_pb.js";
|
17 | 17 | import type { PendingNonces } from "./nonce_to_cctx_pb.js";
|
18 | 18 | import type { LastBlockHeight } from "./last_block_height_pb.js";
|
19 | 19 |
|
| 20 | +/** |
| 21 | + * @generated from message zetachain.zetacore.crosschain.QueryCctxByStatusRequest |
| 22 | + */ |
| 23 | +export declare class QueryCctxByStatusRequest extends Message<QueryCctxByStatusRequest> { |
| 24 | + /** |
| 25 | + * @generated from field: zetachain.zetacore.crosschain.CctxStatus status = 1; |
| 26 | + */ |
| 27 | + status: CctxStatus; |
| 28 | + |
| 29 | + constructor(data?: PartialMessage<QueryCctxByStatusRequest>); |
| 30 | + |
| 31 | + static readonly runtime: typeof proto3; |
| 32 | + static readonly typeName = "zetachain.zetacore.crosschain.QueryCctxByStatusRequest"; |
| 33 | + static readonly fields: FieldList; |
| 34 | + |
| 35 | + static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QueryCctxByStatusRequest; |
| 36 | + |
| 37 | + static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QueryCctxByStatusRequest; |
| 38 | + |
| 39 | + static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QueryCctxByStatusRequest; |
| 40 | + |
| 41 | + static equals(a: QueryCctxByStatusRequest | PlainMessage<QueryCctxByStatusRequest> | undefined, b: QueryCctxByStatusRequest | PlainMessage<QueryCctxByStatusRequest> | undefined): boolean; |
| 42 | +} |
| 43 | + |
| 44 | +/** |
| 45 | + * @generated from message zetachain.zetacore.crosschain.QueryCctxByStatusResponse |
| 46 | + */ |
| 47 | +export declare class QueryCctxByStatusResponse extends Message<QueryCctxByStatusResponse> { |
| 48 | + /** |
| 49 | + * @generated from field: repeated zetachain.zetacore.crosschain.CrossChainTx CrossChainTx = 1; |
| 50 | + */ |
| 51 | + CrossChainTx: CrossChainTx[]; |
| 52 | + |
| 53 | + constructor(data?: PartialMessage<QueryCctxByStatusResponse>); |
| 54 | + |
| 55 | + static readonly runtime: typeof proto3; |
| 56 | + static readonly typeName = "zetachain.zetacore.crosschain.QueryCctxByStatusResponse"; |
| 57 | + static readonly fields: FieldList; |
| 58 | + |
| 59 | + static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): QueryCctxByStatusResponse; |
| 60 | + |
| 61 | + static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): QueryCctxByStatusResponse; |
| 62 | + |
| 63 | + static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): QueryCctxByStatusResponse; |
| 64 | + |
| 65 | + static equals(a: QueryCctxByStatusResponse | PlainMessage<QueryCctxByStatusResponse> | undefined, b: QueryCctxByStatusResponse | PlainMessage<QueryCctxByStatusResponse> | undefined): boolean; |
| 66 | +} |
| 67 | + |
20 | 68 | /**
|
21 | 69 | * @generated from message zetachain.zetacore.crosschain.QueryTssHistoryRequest
|
22 | 70 | */
|
|
0 commit comments