UNPKG

@fruitsjs/core

Version:

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

27 lines (26 loc) 571 B
/** * The contract interface * @module core */ export interface Contract { creator: string; creatorRS: string; at: string; atRS: string; atVersion: number; name: string; description: string; machineCode: string; machineData: string; balanceNQT: string; prevBalanceNQT: string; nextBlock: number; frozen: boolean; running: boolean; stopped: boolean; finished: boolean; dead: boolean; minActivation: string; creationBlock: number; requestProcessingTime: number; }