@test-org122/hypernet-core
Version:
Hypernet Core. Represents the SDK for running the Hypernet Protocol.
13 lines (11 loc) • 398 B
text/typescript
import { PublicIdentifier, Payment, PullPayment, PushPayment } from "@interfaces/objects";
export class HypernetLink {
constructor(
public counterPartyAccount: PublicIdentifier,
public payments: Payment[],
public pushPayments: PushPayment[],
public pullPayments: PullPayment[],
public activePushPayments: PushPayment[],
public activePullPayments: PullPayment[],
) {}
}