bitcore-node
Version:
A blockchain indexing node with extended capabilities using bitcore
17 lines (16 loc) • 327 B
text/typescript
export interface IBlock {
chain: string;
confirmations?: number;
network: string;
height: number;
hash: string;
time: Date;
timeNormalized: Date;
previousBlockHash: string;
nextBlockHash: string;
transactions?: string[];
transactionCount: number;
size: number;
reward: number;
processed: boolean;
}