UNPKG

@signumjs/core

Version:

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

15 lines (14 loc) 520 B
/** * Copyright (c) 2019 Burst Apps Team */ import { ChainService } from '../../../service/chainService'; import { BlockList } from '../../../typings/blockList'; import { GetAccountBlocksArgs } from '../../../typings/args/getAccountBlocksArgs'; /** * Use with {@link ApiComposer} and belongs to {@link AccountApi}. * * See details at {@link AccountApi.getAccountBlocks} * * @category factories */ export declare const getAccountBlocks: (service: ChainService) => (args: GetAccountBlocksArgs) => Promise<BlockList>;