@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
14 lines (13 loc) • 413 B
TypeScript
/**
* Copyright (c) 2020 Burst Apps Team
*/
import { ChainService } from '../../../service';
import { RewardRecipient } from '../../..';
/**
* Use with {@link ApiComposer} and belongs to {@link AccountApi}.
*
* See details at {@link AccountApi.getRewardRecipient}
*
* @category factories
*/
export declare const getRewardRecipient: (service: ChainService) => (accountId: string) => Promise<RewardRecipient>;