import { TransactionInfo } from "../../core/transaction/info.js"; import { NotFound } from "@ethernauta/core"; import * as valibot3123 from "valibot"; import { InferOutput } from "valibot"; import { Readable } from "@ethernauta/transport"; //#region src/method/transaction/get-transaction-by-hash.d.ts declare const ParametersSchema: valibot3123.UnionSchema<[valibot3123.TupleSchema<[valibot3123.SchemaWithPipe, valibot3123.BrandAction<`0x${string}`, "Hash32">]>], undefined>, valibot3123.ObjectSchema<{ readonly transactionHash: valibot3123.SchemaWithPipe, valibot3123.BrandAction<`0x${string}`, "Hash32">]>; }, undefined>], undefined>; type Parameters = InferOutput; /** * @returns The transaction information or null if not found */ declare function eth_getTransactionByHash(_parameters: Parameters): Readable; //#endregion export { eth_getTransactionByHash }; //# sourceMappingURL=get-transaction-by-hash.d.ts.map