UNPKG

@signumjs/core

Version:

Principal package with functions and models for building Signum Network applications.

15 lines (14 loc) 330 B
/** * Original work Copyright (c) 2019 Burst Apps Team */ /** * ChainTime Interface * @see {@link util.ChainTime} to convert between chains timestamp and Date * @category entities * */ export interface ChainTimestamp { /** * The chains time (in seconds since the genesis block) */ readonly time: number; }