@node-dlc/bitcoin
Version:
21 lines (19 loc) • 372 B
text/typescript
import { Tx } from './Tx';
export type Block = {
hash: string;
strippedsize: number;
size: number;
weight: number;
height: number;
version: number;
versionHex: string;
merkelroot: string;
time: number;
mediantime: number;
chainwork: string;
previousblockhash: string;
nextblockhash: string;
bits: string;
difficulty: string;
txs: Tx[];
};