Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@waves/money-like-to-node

Package Overview
Dependencies
Maintainers
14
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@waves/money-like-to-node - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

11

dist/toNodeEntities/issue.d.ts

@@ -6,7 +6,8 @@ import { TYPES } from '../constants';

export declare const issue: (data: IWavesGuiIssue) => TWithPartialFee<IIssueTransaction<string>>;
export interface IWavesGuiIssue extends IDefaultGuiTx<typeof TYPES.ISSUE> {
interface IIssue extends IDefaultGuiTx<typeof TYPES.ISSUE> {
name: string;
description: string;
precision: number;
quantity: TLong;
precision?: number;
decimals?: number;
reissuable: boolean;

@@ -16,1 +17,7 @@ chainId: number;

}
export declare type IWavesGuiIssue = IIssue & {
decimals: number;
} | IIssue & {
precision: number;
};
export {};

2

dist/toNodeEntities/issue.js

@@ -17,3 +17,3 @@ "use strict";

var utils_1 = require("../utils");
exports.issue = factory_1.factory(__assign({}, general_1.getDefaultTransform(), { name: utils_1.prop('name'), description: utils_1.prop('description'), decimals: utils_1.prop('precision'), quantity: utils_1.pipe(utils_1.prop('quantity'), utils_1.getCoins), reissuable: utils_1.prop('reissuable'), chainId: utils_1.prop('chainId'), script: utils_1.prop('script') }));
exports.issue = factory_1.factory(__assign({}, general_1.getDefaultTransform(), { name: utils_1.prop('name'), description: utils_1.prop('description'), decimals: function (data) { return utils_1.prop('decimals', data) || utils_1.prop('precision', data) || 0; }, quantity: utils_1.pipe(utils_1.prop('quantity'), utils_1.getCoins), reissuable: utils_1.prop('reissuable'), chainId: utils_1.prop('chainId'), script: utils_1.prop('script') }));
//# sourceMappingURL=issue.js.map
{
"name": "@waves/money-like-to-node",
"version": "0.1.3",
"version": "0.1.4",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "typings": "dist/index.d.ts",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc