@fruitsjs/core
Version:
Principal package with functions and models for building Fruits Eco-Blockchain applications.
32 lines (30 loc) • 934 B
text/typescript
/**
* Block
* @module core
*/
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;
}