UNPKG

@test-org122/hypernet-core

Version:

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

9 lines (7 loc) 335 B
import { HypernetLink, Payment, ResultAsync } from "@interfaces/objects"; import { CoreUninitializedError, InvalidParametersError } from "@interfaces/objects/errors"; export interface ILinkUtils { paymentsToHypernetLinks( payments: Payment[], ): ResultAsync<HypernetLink[], CoreUninitializedError | InvalidParametersError>; }