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