UNPKG

@signumjs/core

Version:

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

12 lines (11 loc) 299 B
import { DefaultSendArgs } from './defaultSendArgs'; /** * The argument object for {@link AccountApi.setRewardRecipient} * * @param recipientId The recipients id, i.e. pool address * * @category args */ export interface SetRewardRecipientArgs extends DefaultSendArgs { recipientId: string; }