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

conseiljs

Package Overview
Dependencies
Maintainers
5
Versions
159
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

conseiljs - npm Package Compare versions

Comparing version 5.2.2 to 5.2.3

4

dist/chain/tezos/TezosNodeWriter.js

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

try {
gas += (parseInt(c['metadata']['operation_result']['consumed_milligas']) / 1000) || 0;
gas += Math.ceil(parseInt(c['metadata']['operation_result']['consumed_milligas']) / 1000) || 0;
storageCost += parseInt(c['metadata']['operation_result']['paid_storage_size_diff']) || 0;

@@ -434,3 +434,3 @@ if (c.kind === 'origination' || c['metadata']['operation_result']['allocated_destination_contract']) {

const result = internalOperation['result'];
gas += (parseInt(result['consumed_milligas']) / 1000) || 0;
gas += Math.ceil(parseInt(result['consumed_milligas']) / 1000) || 0;
storageCost += parseInt(result['paid_storage_size_diff']) || 0;

@@ -437,0 +437,0 @@ if (internalOperation.kind === 'origination') {

{
"name": "conseiljs",
"version": "5.2.2",
"version": "5.2.3",
"description": "Client-side library for Tezos dApp development.",

@@ -5,0 +5,0 @@ "browser": "dist/index-web.js",

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