import _m0 from "protobufjs/minimal"; import { AccountID, ContractID, FileID } from "./basic_types"; import { QueryHeader } from "./query_header"; import { ResponseHeader } from "./response_header"; export declare const protobufPackage = "proto"; /** * Get the IDs in the format used by transactions, given the ID in the format used by Solidity. If * the Solidity ID is for a smart contract instance, then both the ContractID and associated * AccountID will be returned. */ export interface GetBySolidityIDQuery { /** * 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 in the format used by Solidity */ solidityID: string; } /** Response when the client sends the node GetBySolidityIDQuery */ export interface GetBySolidityIDResponse { /** * Standard response from node to client, including the requested fields: cost, or state proof, * or both, or neither */ header: ResponseHeader | undefined; /** The Account ID for the cryptocurrency account */ accountID: AccountID | undefined; /** The file Id for the file */ fileID: FileID | undefined; /** * A smart contract ID for the instance (if this is included, then the associated accountID will * also be included) */ contractID: ContractID | undefined; } export declare const GetBySolidityIDQuery: { encode(message: GetBySolidityIDQuery, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GetBySolidityIDQuery; fromJSON(object: any): GetBySolidityIDQuery; toJSON(message: GetBySolidityIDQuery): unknown; create(base?: DeepPartial): GetBySolidityIDQuery; fromPartial(object: DeepPartial): GetBySolidityIDQuery; }; export declare const GetBySolidityIDResponse: { encode(message: GetBySolidityIDResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GetBySolidityIDResponse; fromJSON(object: any): GetBySolidityIDResponse; toJSON(message: GetBySolidityIDResponse): unknown; create(base?: DeepPartial): GetBySolidityIDResponse; fromPartial(object: DeepPartial): GetBySolidityIDResponse; }; 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=get_by_solidity_id.d.ts.map