@test-org122/hypernet-core
Version:
Hypernet Core. Represents the SDK for running the Hypernet Protocol.
18 lines (16 loc) • 547 B
text/typescript
import { EthereumAddress } from "@test-org122/utils/src/objects/EthereumAddress";
import { IMessageTransferData } from "./MessageTransferData";
import { PublicIdentifier } from "./PublicIdentifier";
import { IRate } from "./Rate";
export interface IHypernetOfferDetails extends IMessageTransferData {
paymentId: string;
creationDate: number;
to: PublicIdentifier;
from: PublicIdentifier;
requiredStake: string;
paymentAmount: string;
merchantUrl: string;
paymentToken: EthereumAddress;
expirationDate: number;
rate?: IRate;
}