ipfs storage for images and other nontext items. for use with etica - runs on etica network and currencys
https://collect.etica-stats.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
783 B
21 lines
783 B
/// <reference types="node" /> |
|
import { SocketProvider } from "./provider-socket.js"; |
|
import type { Socket } from "net"; |
|
import type { JsonRpcApiProviderOptions } from "./provider-jsonrpc.js"; |
|
import type { Networkish } from "./network.js"; |
|
/** |
|
* 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. |
|
*/ |
|
export declare class IpcSocketProvider extends SocketProvider { |
|
#private; |
|
/** |
|
* The connected socket. |
|
*/ |
|
get socket(): Socket; |
|
constructor(path: string, network?: Networkish, options?: JsonRpcApiProviderOptions); |
|
destroy(): void; |
|
_write(message: string): Promise<void>; |
|
} |
|
//# sourceMappingURL=provider-ipcsocket.d.ts.map
|