@fruitsjs/core
Version:
Principal package with functions and models for building Fruits Eco-Blockchain applications.
18 lines (17 loc) • 509 B
TypeScript
import { Attachment } from '../attachment';
export interface IssueAssetArgs {
amountPlanck: string;
decimals: number;
description: string;
name: string;
quantity: string | number;
senderPublicKey: string;
senderPrivateKey: string;
attachment?: Attachment;
deadline?: number;
encryptToSelfMessageData?: string;
encryptToSelfMessageNonce?: string;
messageToEncryptToSelfIsText?: boolean;
referenceTransactionHash: string;
icon: string;
}