UNPKG

@fruitsjs/core

Version:

Principal package with functions and models for building Fruits Eco-Blockchain applications.

13 lines (12 loc) 341 B
import { Attachment } from '../attachment'; export interface CreateSubscriptionArgs { amountPlanck: string; feePlanck: string; frequency: number; recipientId: string; recipientPublicKey?: string; senderPublicKey: string; senderPrivateKey: string; attachment?: Attachment; deadline?: number; }