@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
22 lines (21 loc) • 531 B
TypeScript
import { DefaultSendArgs } from './defaultSendArgs';
/**
* The argument object for {@link AssetApi.transferAssetOwnership}
*
*
* @category args
*/
export interface TransferAssetOwnershipArgs extends DefaultSendArgs {
/**
* The id of the recipient, i.e. new owner
*/
recipientId: string;
/**
* The full hash of the token issuance transaction
*/
referencedTransactionFullHash: string;
/**
* The _optional_ recipients public key in hex format.
*/
recipientPublicKey?: string;
}