@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
15 lines (14 loc) • 555 B
TypeScript
/**
* Original work Copyright (c) 2022 Signum Network
*/
import { ChainService } from '../../../service';
import { AssetTransferList } from '../../../typings/assetTransferList';
import { GetAssetTransfersPerAssetArgs } from '../../../typings/args';
/**
* Use with {@link ApiComposer} and belongs to {@link AssetApi}.
*
* See details at {@link AssetApi.getAssetTransfersPerAsset}
*
* @category factories
*/
export declare const getAssetTransfersPerAsset: (service: ChainService) => (args: GetAssetTransfersPerAssetArgs) => Promise<AssetTransferList>;