UNPKG

@signumjs/core

Version:

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

15 lines (14 loc) 538 B
/** * Copyright (c) 2019 Burst Apps Team */ import { ChainService } from '../../../service/chainService'; import { GetAllContractsByCodeHashArgs } from '../../../typings/args'; import { ContractList } from '../../../typings/contractList'; /** * Use with {@link ApiComposer} and belongs to {@link ContractApi}. * * See details at {@link ContractApi.getAllContractIds} * * @category factories */ export declare const getAllContractsByCodeHash: (service: ChainService) => (args: GetAllContractsByCodeHashArgs) => Promise<ContractList>;