UNPKG

@signumjs/core

Version:

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

17 lines (16 loc) 586 B
/** * Original work Copyright (c) 2022 Signum Network */ import { ChainService } from '../../../service'; import { GetAssetOpenOrdersPerAssetArgs } from '../../../typings/args'; import { AssetBidOrderList } from '../../../typings/assetBidOrderList'; /** * * Use with {@link ApiComposer} and belongs to {@link AssetApi.getOpenBidOrdersPerAsset}. * * See details at {@link AssetApi.getOpenBidOrdersPerAsset} * * * @category factories */ export declare const getOpenBidOrdersPerAsset: (service: ChainService) => (args: GetAssetOpenOrdersPerAssetArgs) => Promise<AssetBidOrderList>;