UNPKG

@signumjs/core

Version:

Principal package with functions and models for building Signum Network applications.

15 lines (14 loc) 452 B
/** * Original work Copyright (c) 2018 PoC-Consortium * Modified work Copyright (c) 2019 Burst Apps Team */ import { ChainService } from '../../../service/chainService'; import { BlockId } from '../../..'; /** * Use with {@link ApiComposer} and belongs to {@link BlockApi}. * * See details at {@link BlockApi.getBlockId} * * @category factories */ export declare const getBlockId: (service: ChainService) => (height: number) => Promise<BlockId>;