UNPKG

@logosnetwork/logos-webwallet-sdk

Version:

Create Logos wallets with or without a full Logos node

30 lines (29 loc) 908 B
import TokenRequest, { TokenRequestOptions, TokenRequestJSON } from './TokenRequest'; export interface IssueAdditionalOptions extends TokenRequestOptions { amount?: string; } export interface IssueAdditionalJSON extends TokenRequestJSON { amount?: string; } export default class IssueAdditional extends TokenRequest { private _amount; constructor(options?: IssueAdditionalOptions); /** * Return the amount you are adding * @type {string} */ amount: string; /** * Returns calculated hash or Builds the request and calculates the hash * * @throws An exception if missing parameters or invalid parameters * @type {string} * @readonly */ readonly hash: string; /** * Returns the request JSON ready for broadcast to the Logos Network * @returns {IssueAdditionalJSON} JSON request */ toJSON(): IssueAdditionalJSON; }