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

20 lines
674 B
TypeScript
Raw Normal View History

2023-04-22 12:54:45 +03:00
/// <reference types="node" />
2022-09-05 23:57:11 +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.
*/
2022-09-05 23:57:11 +03:00
export declare class IpcSocketProvider extends SocketProvider {
#private;
2023-06-02 00:52:58 +03:00
/**
* The connected socket.
*/
2022-09-05 23:57:11 +03:00
get socket(): Socket;
constructor(path: string, network?: Networkish);
2022-12-31 00:35:04 +03:00
destroy(): void;
2022-09-05 23:57:11 +03:00
_write(message: string): Promise<void>;
}
//# sourceMappingURL=provider-ipcsocket.d.ts.map