UNPKG

@test-org122/hypernet-core

Version:

Hypernet Core. Represents the SDK for running the Hypernet Protocol.

11 lines (9 loc) 379 B
import { NodeError } from "@connext/vector-types"; import { HypernetLink, ResultAsync } from "@interfaces/objects"; import { CoreUninitializedError, RouterChannelUnknownError } from "@interfaces/objects/errors"; export interface ILinkService { /** * */ getLinks(): ResultAsync<HypernetLink[], RouterChannelUnknownError | CoreUninitializedError | NodeError | Error>; }