UNPKG

blockchain-api

Version:

API utilities for interacting with the Exatechl2 blockchain

13 lines (12 loc) 305 B
import { FormattedBlock } from './utils'; export interface BlockInsight { icon: string; title: string; description: string; } /** * * @param {FormattedBlock} blockData * @returns {BlockInsight[]} */ export declare function generateBlockInsights(blockData: FormattedBlock): BlockInsight[];