UNPKG

@node-dlc/bitcoin

Version:
20 lines (19 loc) 403 B
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[]; };