import _m0 from "protobufjs/minimal"; import { TransactionID } from "./basic_types"; import { QueryHeader } from "./query_header"; import { ResponseHeader } from "./response_header"; import { TransactionReceipt } from "./transaction_receipt"; export declare const protobufPackage = "proto"; /** * Get the receipt of a transaction, given its transaction ID. Once a transaction reaches consensus, * then information about whether it succeeded or failed will be available until the end of the * receipt period. Before and after the receipt period, and for a transaction that was never * submitted, the receipt is unknown. This query is free (the payment field is left empty). No * State proof is available for this response */ export interface TransactionGetReceiptQuery { /** * Standard info sent from client to node, including the signed payment, and what kind of * response is requested (cost, state proof, both, or neither). */ header: QueryHeader | undefined; /** The ID of the transaction for which the receipt is requested. */ transactionID: TransactionID | undefined; /** * Whether receipts of processing duplicate transactions should be returned along with the * receipt of processing the first consensus transaction with the given id whose status was * neither INVALID_NODE_ACCOUNT nor INVALID_PAYER_SIGNATURE; or, if no * such receipt exists, the receipt of processing the first transaction to reach consensus with * the given transaction id. */ includeDuplicates: boolean; /** * Whether the response should include the receipts of any child transactions spawned by the * top-level transaction with the given transactionID. */ includeChildReceipts: boolean; } /** * Response when the client sends the node TransactionGetReceiptQuery. If it created a new entity * (account, file, or smart contract instance) then one of the three ID fields will be filled in * with the ID of the new entity. Sometimes a single transaction will create more than one new * entity, such as when a new contract instance is created, and this also creates the new account * that it owned by that instance. No State proof is available for this response */ export interface TransactionGetReceiptResponse { /** * Standard response from node to client, including the requested fields: cost, or state proof, * or both, or neither */ header: ResponseHeader | undefined; /** * Either the receipt of processing the first consensus transaction with the given id whose * status was neither INVALID_NODE_ACCOUNT nor INVALID_PAYER_SIGNATURE; * or, if no such receipt exists, the receipt of processing the first transaction to * reach consensus with the given transaction id. */ receipt: TransactionReceipt | undefined; /** The receipts of processing all transactions with the given id, in consensus time order. */ duplicateTransactionReceipts: TransactionReceipt[]; /** * The receipts (if any) of all child transactions spawned by the transaction with the * given top-level id, in consensus order. Always empty if the top-level status is UNKNOWN. */ childTransactionReceipts: TransactionReceipt[]; } export declare const TransactionGetReceiptQuery: { encode(message: TransactionGetReceiptQuery, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): TransactionGetReceiptQuery; fromJSON(object: any): TransactionGetReceiptQuery; toJSON(message: TransactionGetReceiptQuery): unknown; create(base?: DeepPartial): TransactionGetReceiptQuery; fromPartial(object: DeepPartial): TransactionGetReceiptQuery; }; export declare const TransactionGetReceiptResponse: { encode(message: TransactionGetReceiptResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): TransactionGetReceiptResponse; fromJSON(object: any): TransactionGetReceiptResponse; toJSON(message: TransactionGetReceiptResponse): unknown; create(base?: DeepPartial): TransactionGetReceiptResponse; fromPartial(object: DeepPartial): TransactionGetReceiptResponse; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends { $case: string; } ? { [K in keyof Omit]?: DeepPartial; } & { $case: T["$case"]; } : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {}; //# sourceMappingURL=transaction_get_receipt.d.ts.map