Socket
Socket
Sign inDemoInstall

mina-ledger-js

Package Overview
Dependencies
3
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.3 to 1.0.4

2

dist/lib.js

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

var feeHex = this.pad(fee.toString(16), 16);
var nonceHex = this.pad(nonce, 8);
var nonceHex = this.pad(Number(nonce).toString(16).toUpperCase(), 8);
var validUntilHex = this.pad(validUntil.toString(16), 8);

@@ -94,0 +94,0 @@ var memoHex = this.convertMemo(memo);

{
"name": "mina-ledger-js",
"version": "1.0.0",
"version": "1.0.3",
"lockfileVersion": 1,

@@ -5,0 +5,0 @@ "requires": true,

{
"name": "mina-ledger-js",
"version": "1.0.3",
"version": "1.0.4",
"description": "JS API for Mina App (Ledger Nano S/X)",

@@ -5,0 +5,0 @@ "license": "Apache-2.0",

@@ -81,3 +81,3 @@ import {

const feeHex = this.pad(fee.toString(16), 16);
const nonceHex = this.pad(nonce, 8);
const nonceHex = this.pad(Number(nonce).toString(16).toUpperCase(), 8);
const validUntilHex = this.pad(validUntil.toString(16), 8);

@@ -84,0 +84,0 @@ const memoHex = this.convertMemo(memo);

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc