@fruitsjs/core
Version:
Principal package with functions and models for building Fruits Eco-Blockchain applications.
27 lines (26 loc) • 894 B
TypeScript
export interface Block {
readonly baseTarget: number;
readonly block: string;
readonly blockReward: string;
readonly blockRewardNQT: string;
readonly blockSignature: string;
readonly generator: string;
readonly generatorRS: string;
readonly generationSignature: string;
readonly generatorPublicKey: string;
readonly height: number;
readonly nextBlock: string;
readonly nonce: string;
readonly numberOfTransactions: number;
readonly payloadHash: string;
readonly payloadLength: number;
readonly previousBlock: string;
readonly previousBlockHash: string;
readonly requestProcessingTime: number;
readonly scoopNum: number;
readonly timestamp: number;
readonly totalAmountNQT: string;
readonly totalFeeNQT: string;
readonly transactions: string[];
readonly version: number;
}