UNPKG

@fruitsjs/core

Version:

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

12 lines (11 loc) 271 B
/** * ChainTime Interface * @see [[util.ChainTime]] to convert between chains timestamp and Date * @module core * */ export interface ChainTimestamp { /** * The chains time (in seconds since the genesis block) */ readonly time: number; }