UNPKG

@signumjs/core

Version:

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

15 lines (14 loc) 534 B
/** * Original work Copyright (c) 2022 Signum Network */ import { ChainService } from '../../../service'; import { GetAssetTradesPerAssetArgs } from '../../../typings/args'; import { AssetTradeList } from '../../../typings/assetTradeList'; /** * Use with {@link ApiComposer} and belongs to {@link AssetApi}. * * See details at {@link AssetApi.getAssetTradesPerAsset} * * @category factories */ export declare const getAssetTradesPerAsset: (service: ChainService) => (args: GetAssetTradesPerAssetArgs) => Promise<AssetTradeList>;