import type { EthAccountsParams, EthBlockNumberParams, EthCallParams, EthChainIdParams, EthCoinbaseParams, EthEstimateGasParams, EthGasPriceParams, EthGetBalanceParams, EthGetBlockByHashParams, EthGetBlockByNumberParams, EthGetBlockTransactionCountByHashParams, EthGetBlockTransactionCountByNumberParams, EthGetCodeParams, EthGetFilterChangesParams, EthGetFilterLogsParams, EthGetLogsParams, EthGetStorageAtParams, EthGetTransactionByBlockHashAndIndexParams, EthGetTransactionByBlockNumberAndIndexParams, EthGetTransactionByHashParams, EthGetTransactionCountParams, EthGetTransactionReceiptParams, EthGetUncleByBlockHashAndIndexParams, EthGetUncleByBlockNumberAndIndexParams, EthGetUncleCountByBlockHashParams, EthGetUncleCountByBlockNumberParams, EthHashrateParams, EthMiningParams, EthNewBlockFilterParams, EthNewFilterParams, EthNewPendingTransactionFilterParams, EthProtocolVersionParams, EthSendRawTransactionParams, EthSendTransactionParams, EthSignParams, EthSignTransactionParams, EthSyncingParams, EthUninstallFilterParams } from './EthParams.js'; import type { EthAccountsResult, EthBlockNumberResult, EthCallResult, EthChainIdResult, EthCoinbaseResult, EthEstimateGasResult, EthGasPriceResult, EthGetBalanceResult, EthGetBlockByHashResult, EthGetBlockByNumberResult, EthGetBlockTransactionCountByHashResult, EthGetBlockTransactionCountByNumberResult, EthGetCodeResult, EthGetFilterChangesResult, EthGetFilterLogsResult, EthGetLogsResult, EthGetStorageAtResult, EthGetTransactionByBlockHashAndIndexResult, EthGetTransactionByBlockNumberAndIndexResult, EthGetTransactionByHashResult, EthGetTransactionCountResult, EthGetTransactionReceiptResult, EthGetUncleByBlockHashAndIndexResult, EthGetUncleByBlockNumberAndIndexResult, EthGetUncleCountByBlockHashResult, EthGetUncleCountByBlockNumberResult, EthHashrateResult, EthMiningResult, EthNewBlockFilterResult, EthNewFilterResult, EthNewPendingTransactionFilterResult, EthProtocolVersionResult, EthSendRawTransactionResult, EthSendTransactionResult, EthSignResult, EthSignTransactionResult, EthSyncingResult, EthUninstallFilterResult } from './EthResult.js'; export type EthAccountsHandler = (request?: EthAccountsParams) => Promise; export type EthBlockNumberHandler = (request?: EthBlockNumberParams) => Promise; export type EthCallHandler = (request: EthCallParams) => Promise; export type EthChainIdHandler = (request?: EthChainIdParams) => Promise; export type EthCoinbaseHandler = (request: EthCoinbaseParams) => Promise; export type EthEstimateGasHandler = (request: EthEstimateGasParams) => Promise; export type EthHashrateHandler = (request?: EthHashrateParams) => Promise; export type EthGasPriceHandler = (request?: EthGasPriceParams) => Promise; export type EthGetBalanceHandler = (request: EthGetBalanceParams) => Promise; export type EthGetBlockByHashHandler = (request: EthGetBlockByHashParams) => Promise; export type EthGetBlockByNumberHandler = (request: EthGetBlockByNumberParams) => Promise; export type EthGetBlockTransactionCountByHashHandler = (request: EthGetBlockTransactionCountByHashParams) => Promise; export type EthGetBlockTransactionCountByNumberHandler = (request: EthGetBlockTransactionCountByNumberParams) => Promise; export type EthGetCodeHandler = (request: EthGetCodeParams) => Promise; export type EthGetFilterChangesHandler = (request: EthGetFilterChangesParams) => Promise; export type EthGetFilterLogsHandler = (request: EthGetFilterLogsParams) => Promise; export type EthGetLogsHandler = (request: EthGetLogsParams) => Promise; export type EthGetStorageAtHandler = (request: EthGetStorageAtParams) => Promise; export type EthGetTransactionCountHandler = (request: EthGetTransactionCountParams) => Promise; export type EthGetUncleCountByBlockHashHandler = (request: EthGetUncleCountByBlockHashParams) => Promise; export type EthGetUncleCountByBlockNumberHandler = (request: EthGetUncleCountByBlockNumberParams) => Promise; export type EthGetTransactionByHashHandler = (request: EthGetTransactionByHashParams) => Promise; export type EthGetTransactionByBlockHashAndIndexHandler = (request: EthGetTransactionByBlockHashAndIndexParams) => Promise; export type EthGetTransactionByBlockNumberAndIndexHandler = (request: EthGetTransactionByBlockNumberAndIndexParams) => Promise; export type EthGetTransactionReceiptHandler = (request: EthGetTransactionReceiptParams) => Promise; export type EthGetUncleByBlockHashAndIndexHandler = (request: EthGetUncleByBlockHashAndIndexParams) => Promise; export type EthGetUncleByBlockNumberAndIndexHandler = (request: EthGetUncleByBlockNumberAndIndexParams) => Promise; export type EthMiningHandler = (request: EthMiningParams) => Promise; export type EthProtocolVersionHandler = (request: EthProtocolVersionParams) => Promise; export type EthSendRawTransactionHandler = (request: EthSendRawTransactionParams) => Promise; export type EthSendTransactionHandler = (request: EthSendTransactionParams) => Promise; export type EthSignHandler = (request: EthSignParams) => Promise; export type EthSignTransactionHandler = (request: EthSignTransactionParams) => Promise; export type EthSyncingHandler = (request: EthSyncingParams) => Promise; export type EthNewFilterHandler = (request: EthNewFilterParams) => Promise; export type EthNewBlockFilterHandler = (request: EthNewBlockFilterParams) => Promise; export type EthNewPendingTransactionFilterHandler = (request: EthNewPendingTransactionFilterParams) => Promise; export type EthUninstallFilterHandler = (request: EthUninstallFilterParams) => Promise; //# sourceMappingURL=EthHandler.d.ts.map