import { BaseRpcRequest, Rpc } from '../rpc'; import { Data } from '../primitives'; /** * https://github.com/ethereum/wiki/wiki/JSON-RPC#web3_clientversion */ export interface Web3ClientVersionRequest extends BaseRpcRequest { method: 'web3_clientVersion'; params: []; } export declare type Web3ClientVersion = Rpc; export declare type Web3Method = Web3ClientVersion;