import { TransactionInfo } from "../../core/transaction/info.js"; import { NotFound } from "@ethernauta/core"; import * as valibot3132 from "valibot"; import { InferOutput } from "valibot"; import { Readable } from "@ethernauta/transport"; //#region src/method/transaction/get-transaction-by-block-number-and-index.d.ts declare const ParametersSchema: valibot3132.UnionSchema<[valibot3132.TupleSchema<[valibot3132.UnionSchema<[valibot3132.SchemaWithPipe | undefined>, valibot3132.BrandAction<`0x${string}`, "Uint">]>, valibot3132.UnionSchema<[valibot3132.LiteralSchema<"earliest", undefined>, valibot3132.LiteralSchema<"finalized", undefined>, valibot3132.LiteralSchema<"safe", undefined>, valibot3132.LiteralSchema<"latest", undefined>, valibot3132.LiteralSchema<"pending", undefined>], undefined>], undefined>, valibot3132.SchemaWithPipe | undefined>, valibot3132.BrandAction<`0x${string}`, "Uint">]>], undefined>, valibot3132.ObjectSchema<{ readonly blockNumberOrTag: valibot3132.UnionSchema<[valibot3132.SchemaWithPipe | undefined>, valibot3132.BrandAction<`0x${string}`, "Uint">]>, valibot3132.UnionSchema<[valibot3132.LiteralSchema<"earliest", undefined>, valibot3132.LiteralSchema<"finalized", undefined>, valibot3132.LiteralSchema<"safe", undefined>, valibot3132.LiteralSchema<"latest", undefined>, valibot3132.LiteralSchema<"pending", undefined>], undefined>], undefined>; readonly transactionIndex: valibot3132.SchemaWithPipe | undefined>, valibot3132.BrandAction<`0x${string}`, "Uint">]>; }, undefined>], undefined>; type Parameters = InferOutput; /** * @returns The transaction information or null if not found */ declare function eth_getTransactionByBlockNumberAndIndex(_parameters: Parameters): Readable; //#endregion export { eth_getTransactionByBlockNumberAndIndex }; //# sourceMappingURL=get-transaction-by-block-number-and-index.d.ts.map