UNPKG

@signumjs/core

Version:

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

15 lines (14 loc) 589 B
/** * Copyright (c) 2022 Signum Network */ import { ChainService } from '../../../service/chainService'; import { GetContractMapValuesByFirstKeyArgs } from '../../../typings/args'; import { ContractMapValueList } from '../../../typings/contractMapValueList'; /** * Use with {@link ApiComposer} and belongs to {@link ContractApi}. * * See details at {@link ContractApi.getContractMapValuesByFirstKey} * * @category factories */ export declare const getContractMapValuesByFirstKey: (service: ChainService) => (args: GetContractMapValuesByFirstKeyArgs) => Promise<ContractMapValueList>;