@fruitsjs/core
Version:
Principal package with functions and models for building Fruits Eco-Blockchain applications.
27 lines (24 loc) • 569 B
text/typescript
import {DefaultSendArgs} from './defaultSendArgs';
/**
* The argument object for [[AssetApi.transferAsset]]
*
* @module core
*/
export interface TransferAssetArgs extends DefaultSendArgs {
/**
* The assets id to be transferred
*/
asset: string;
/**
* he amount of assets to be transferred
*/
quantity: string | number;
/**
* The id of the recipient
*/
recipientId: string;
/**
* The _optional_ recipients public key in hex format.
*/
recipientPublicKey?: string;
}