2018-07-24 02:21:42 +03:00
|
|
|
import { JsonRpcProvider } from './json-rpc-provider';
|
2018-07-31 01:59:52 +03:00
|
|
|
import { Networkish } from '../utils/networks';
|
2018-07-24 02:21:42 +03:00
|
|
|
export declare class IpcProvider extends JsonRpcProvider {
|
|
|
|
readonly path: string;
|
|
|
|
constructor(path: string, network?: Networkish);
|
|
|
|
send(method: string, params: any): Promise<any>;
|
|
|
|
}
|