@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
15 lines (14 loc) • 543 B
TypeScript
/**
* Copyright (c) 2019 Burst Apps Team
*/
import { ChainService } from '../../../service/chainService';
import { ContractIdList } from '../../../typings/contractIdList';
import { GetAllContractIdsArgs } from '../../../typings/args/getAllContractIdsArgs';
/**
* Use with {@link ApiComposer} and belongs to {@link ContractApi}.
*
* See details at {@link ContractApi.getAllContractIds}
*
* @category factories
*/
export declare const getAllContractIds: (service: ChainService) => (args?: GetAllContractIdsArgs) => Promise<ContractIdList>;