ethers.js/lib.commonjs/providers/provider-ipcsocket.d.ts

20 lines
674 B
TypeScript
Raw Normal View History

2023-04-25 14:04:48 +03:00
/// <reference types="node" />
2023-03-04 04:25:07 +03:00
import { SocketProvider } from "./provider-socket.js";
import type { Socket } from "net";
import type { Networkish } from "./network.js";
2023-06-02 00:52:58 +03:00
/**
* An **IpcSocketProvider** connects over an IPC socket on the host
* which provides fast access to the node, but requires the node and
* the script run on the same machine.
*/
2023-03-04 04:25:07 +03:00
export declare class IpcSocketProvider extends SocketProvider {
#private;
2023-06-02 00:52:58 +03:00
/**
* The connected socket.
*/
2023-03-04 04:25:07 +03:00
get socket(): Socket;
constructor(path: string, network?: Networkish);
destroy(): void;
_write(message: string): Promise<void>;
}
//# sourceMappingURL=provider-ipcsocket.d.ts.map