UNPKG

@fruitsjs/core

Version:

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

18 lines (17 loc) 376 B
/** * Peer Interface * @module core * */ export interface Peer { announcedAddress: string; application: string; blacklisted: boolean; downloadedVolume: number; lastUpdated: number; platform: string; requestProcessingTime: number; shareAddress: boolean; state: number; uploadedVolume: boolean; version: string; }