export interface HashAndHeight { height: number; hash: string; } export interface DatabaseState { height: number; hash: string; top: HashAndHeight[]; nonce: number; } export interface FinalTxInfo { prevHead: HashAndHeight; nextHead: HashAndHeight; } export interface HotTxInfo { finalizedHead: HashAndHeight; baseHead: HashAndHeight; newBlocks: HashAndHeight[]; } //# sourceMappingURL=interfaces.d.ts.map